mac80211: Update to version 5.8-rc2-1
[openwrt/openwrt.git] / package / network / utils / iw / patches / 001-nl80211_h_sync.patch
1 --- a/nl80211.h
2 +++ b/nl80211.h
3 @@ -11,7 +11,7 @@
4 * Copyright 2008 Jouni Malinen <jouni.malinen@atheros.com>
5 * Copyright 2008 Colin McCabe <colin@cozybit.com>
6 * Copyright 2015-2017 Intel Deutschland GmbH
7 - * Copyright (C) 2018-2019 Intel Corporation
8 + * Copyright (C) 2018-2020 Intel Corporation
9 *
10 * Permission to use, copy, modify, and/or distribute this software for any
11 * purpose with or without fee is hereby granted, provided that the above
12 @@ -249,6 +249,45 @@
13 */
14
15 /**
16 + * DOC: VLAN offload support for setting group keys and binding STAs to VLANs
17 + *
18 + * By setting @NL80211_EXT_FEATURE_VLAN_OFFLOAD flag drivers can indicate they
19 + * support offloading VLAN functionality in a manner where the driver exposes a
20 + * single netdev that uses VLAN tagged frames and separate VLAN-specific netdevs
21 + * can then be added using RTM_NEWLINK/IFLA_VLAN_ID similarly to the Ethernet
22 + * case. Frames received from stations that are not assigned to any VLAN are
23 + * delivered on the main netdev and frames to such stations can be sent through
24 + * that main netdev.
25 + *
26 + * %NL80211_CMD_NEW_KEY (for group keys), %NL80211_CMD_NEW_STATION, and
27 + * %NL80211_CMD_SET_STATION will optionally specify vlan_id using
28 + * %NL80211_ATTR_VLAN_ID.
29 + */
30 +
31 +/**
32 + * DOC: TID configuration
33 + *
34 + * TID config support can be checked in the %NL80211_ATTR_TID_CONFIG
35 + * attribute given in wiphy capabilities.
36 + *
37 + * The necessary configuration parameters are mentioned in
38 + * &enum nl80211_tid_config_attr and it will be passed to the
39 + * %NL80211_CMD_SET_TID_CONFIG command in %NL80211_ATTR_TID_CONFIG.
40 + *
41 + * If the configuration needs to be applied for specific peer then the MAC
42 + * address of the peer needs to be passed in %NL80211_ATTR_MAC, otherwise the
43 + * configuration will be applied for all the connected peers in the vif except
44 + * any peers that have peer specific configuration for the TID by default; if
45 + * the %NL80211_TID_CONFIG_ATTR_OVERRIDE flag is set, peer specific values
46 + * will be overwritten.
47 + *
48 + * All this configuration is valid only for STA's current connection
49 + * i.e. the configuration will be reset to default when the STA connects back
50 + * after disconnection/roaming, and this configuration will be cleared when
51 + * the interface goes down.
52 + */
53 +
54 +/**
55 * enum nl80211_commands - supported nl80211 commands
56 *
57 * @NL80211_CMD_UNSPEC: unspecified command to catch errors
58 @@ -257,13 +296,14 @@
59 * to get a list of all present wiphys.
60 * @NL80211_CMD_SET_WIPHY: set wiphy parameters, needs %NL80211_ATTR_WIPHY or
61 * %NL80211_ATTR_IFINDEX; can be used to set %NL80211_ATTR_WIPHY_NAME,
62 - * %NL80211_ATTR_WIPHY_TXQ_PARAMS, %NL80211_ATTR_WIPHY_FREQ (and the
63 - * attributes determining the channel width; this is used for setting
64 - * monitor mode channel), %NL80211_ATTR_WIPHY_RETRY_SHORT,
65 - * %NL80211_ATTR_WIPHY_RETRY_LONG, %NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
66 - * and/or %NL80211_ATTR_WIPHY_RTS_THRESHOLD.
67 - * However, for setting the channel, see %NL80211_CMD_SET_CHANNEL
68 - * instead, the support here is for backward compatibility only.
69 + * %NL80211_ATTR_WIPHY_TXQ_PARAMS, %NL80211_ATTR_WIPHY_FREQ,
70 + * %NL80211_ATTR_WIPHY_FREQ_OFFSET (and the attributes determining the
71 + * channel width; this is used for setting monitor mode channel),
72 + * %NL80211_ATTR_WIPHY_RETRY_SHORT, %NL80211_ATTR_WIPHY_RETRY_LONG,
73 + * %NL80211_ATTR_WIPHY_FRAG_THRESHOLD, and/or
74 + * %NL80211_ATTR_WIPHY_RTS_THRESHOLD. However, for setting the channel,
75 + * see %NL80211_CMD_SET_CHANNEL instead, the support here is for backward
76 + * compatibility only.
77 * @NL80211_CMD_NEW_WIPHY: Newly created wiphy, response to get request
78 * or rename notification. Has attributes %NL80211_ATTR_WIPHY and
79 * %NL80211_ATTR_WIPHY_NAME.
80 @@ -312,7 +352,8 @@
81 * %NL80211_ATTR_AUTH_TYPE, %NL80211_ATTR_INACTIVITY_TIMEOUT,
82 * %NL80211_ATTR_ACL_POLICY and %NL80211_ATTR_MAC_ADDRS.
83 * The channel to use can be set on the interface or be given using the
84 - * %NL80211_ATTR_WIPHY_FREQ and the attributes determining channel width.
85 + * %NL80211_ATTR_WIPHY_FREQ and %NL80211_ATTR_WIPHY_FREQ_OFFSET, and the
86 + * attributes determining channel width.
87 * @NL80211_CMD_NEW_BEACON: old alias for %NL80211_CMD_START_AP
88 * @NL80211_CMD_STOP_AP: Stop AP operation on the given interface
89 * @NL80211_CMD_DEL_BEACON: old alias for %NL80211_CMD_STOP_AP
90 @@ -497,11 +538,12 @@
91 * interface. %NL80211_ATTR_MAC is used to specify PeerSTAAddress (and
92 * BSSID in case of station mode). %NL80211_ATTR_SSID is used to specify
93 * the SSID (mainly for association, but is included in authentication
94 - * request, too, to help BSS selection. %NL80211_ATTR_WIPHY_FREQ is used
95 - * to specify the frequence of the channel in MHz. %NL80211_ATTR_AUTH_TYPE
96 - * is used to specify the authentication type. %NL80211_ATTR_IE is used to
97 - * define IEs (VendorSpecificInfo, but also including RSN IE and FT IEs)
98 - * to be added to the frame.
99 + * request, too, to help BSS selection. %NL80211_ATTR_WIPHY_FREQ +
100 + * %NL80211_ATTR_WIPHY_FREQ_OFFSET is used to specify the frequence of the
101 + * channel in MHz. %NL80211_ATTR_AUTH_TYPE is used to specify the
102 + * authentication type. %NL80211_ATTR_IE is used to define IEs
103 + * (VendorSpecificInfo, but also including RSN IE and FT IEs) to be added
104 + * to the frame.
105 * When used as an event, this reports reception of an Authentication
106 * frame in station and IBSS modes when the local MLME processed the
107 * frame, i.e., it was for the local STA and was received in correct
108 @@ -556,8 +598,9 @@
109 * requests to connect to a specified network but without separating
110 * auth and assoc steps. For this, you need to specify the SSID in a
111 * %NL80211_ATTR_SSID attribute, and can optionally specify the association
112 - * IEs in %NL80211_ATTR_IE, %NL80211_ATTR_AUTH_TYPE, %NL80211_ATTR_USE_MFP,
113 - * %NL80211_ATTR_MAC, %NL80211_ATTR_WIPHY_FREQ, %NL80211_ATTR_CONTROL_PORT,
114 + * IEs in %NL80211_ATTR_IE, %NL80211_ATTR_AUTH_TYPE,
115 + * %NL80211_ATTR_USE_MFP, %NL80211_ATTR_MAC, %NL80211_ATTR_WIPHY_FREQ,
116 + * %NL80211_ATTR_WIPHY_FREQ_OFFSET, %NL80211_ATTR_CONTROL_PORT,
117 * %NL80211_ATTR_CONTROL_PORT_ETHERTYPE,
118 * %NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT,
119 * %NL80211_ATTR_CONTROL_PORT_OVER_NL80211, %NL80211_ATTR_MAC_HINT, and
120 @@ -571,6 +614,14 @@
121 * set of BSSID,frequency parameters is used (i.e., either the enforcing
122 * %NL80211_ATTR_MAC,%NL80211_ATTR_WIPHY_FREQ or the less strict
123 * %NL80211_ATTR_MAC_HINT and %NL80211_ATTR_WIPHY_FREQ_HINT).
124 + * Driver shall not modify the IEs specified through %NL80211_ATTR_IE if
125 + * %NL80211_ATTR_MAC is included. However, if %NL80211_ATTR_MAC_HINT is
126 + * included, these IEs through %NL80211_ATTR_IE are specified by the user
127 + * space based on the best possible BSS selected. Thus, if the driver ends
128 + * up selecting a different BSS, it can modify these IEs accordingly (e.g.
129 + * userspace asks the driver to perform PMKSA caching with BSS1 and the
130 + * driver ends up selecting BSS2 with different PMKSA cache entry; RSNIE
131 + * has to get updated with the apt PMKID).
132 * %NL80211_ATTR_PREV_BSSID can be used to request a reassociation within
133 * the ESS in case the device is already associated and an association with
134 * a different BSS is desired.
135 @@ -640,6 +691,10 @@
136 * four bytes for vendor frames including the OUI. The registration
137 * cannot be dropped, but is removed automatically when the netlink
138 * socket is closed. Multiple registrations can be made.
139 + * The %NL80211_ATTR_RECEIVE_MULTICAST flag attribute can be given if
140 + * %NL80211_EXT_FEATURE_MULTICAST_REGISTRATIONS is available, in which
141 + * case the registration can also be modified to include/exclude the
142 + * flag, rather than requiring unregistration to change it.
143 * @NL80211_CMD_REGISTER_ACTION: Alias for @NL80211_CMD_REGISTER_FRAME for
144 * backward compatibility
145 * @NL80211_CMD_FRAME: Management frame TX request and RX notification. This
146 @@ -739,7 +794,7 @@
147 * various triggers. These triggers can be configured through this
148 * command with the %NL80211_ATTR_WOWLAN_TRIGGERS attribute. For
149 * more background information, see
150 - * http://wireless.kernel.org/en/users/Documentation/WoWLAN.
151 + * https://wireless.wiki.kernel.org/en/users/Documentation/WoWLAN.
152 * The @NL80211_CMD_SET_WOWLAN command can also be used as a notification
153 * from the driver reporting the wakeup reason. In this case, the
154 * @NL80211_ATTR_WOWLAN_TRIGGERS attribute will contain the reason
155 @@ -1101,6 +1156,20 @@
156 * peer MAC address and %NL80211_ATTR_FRAME is used to specify the frame
157 * content. The frame is ethernet data.
158 *
159 + * @NL80211_CMD_SET_TID_CONFIG: Data frame TID specific configuration
160 + * is passed using %NL80211_ATTR_TID_CONFIG attribute.
161 + *
162 + * @NL80211_CMD_UNPROT_BEACON: Unprotected or incorrectly protected Beacon
163 + * frame. This event is used to indicate that a received Beacon frame was
164 + * dropped because it did not include a valid MME MIC while beacon
165 + * protection was enabled (BIGTK configured in station mode).
166 + *
167 + * @NL80211_CMD_CONTROL_PORT_FRAME_TX_STATUS: Report TX status of a control
168 + * port frame transmitted with %NL80211_CMD_CONTROL_PORT_FRAME.
169 + * %NL80211_ATTR_COOKIE identifies the TX command and %NL80211_ATTR_FRAME
170 + * includes the contents of the frame. %NL80211_ATTR_ACK flag is included
171 + * if the recipient acknowledged the frame.
172 + *
173 * @NL80211_CMD_MAX: highest used command number
174 * @__NL80211_CMD_AFTER_LAST: internal use
175 */
176 @@ -1325,6 +1394,12 @@ enum nl80211_commands {
177
178 NL80211_CMD_PROBE_MESH_LINK,
179
180 + NL80211_CMD_SET_TID_CONFIG,
181 +
182 + NL80211_CMD_UNPROT_BEACON,
183 +
184 + NL80211_CMD_CONTROL_PORT_FRAME_TX_STATUS,
185 +
186 /* add new commands above here */
187
188 /* used to define NL80211_CMD_MAX below */
189 @@ -1370,7 +1445,8 @@ enum nl80211_commands {
190 * of &enum nl80211_chan_width, describing the channel width. See the
191 * documentation of the enum for more information.
192 * @NL80211_ATTR_CENTER_FREQ1: Center frequency of the first part of the
193 - * channel, used for anything but 20 MHz bandwidth
194 + * channel, used for anything but 20 MHz bandwidth. In S1G this is the
195 + * operating channel center frequency.
196 * @NL80211_ATTR_CENTER_FREQ2: Center frequency of the second part of the
197 * channel, used only for 80+80 MHz bandwidth
198 * @NL80211_ATTR_WIPHY_CHANNEL_TYPE: included with NL80211_ATTR_WIPHY_FREQ
199 @@ -1580,7 +1656,8 @@ enum nl80211_commands {
200 * flag is included, then control port frames are sent over NL80211 instead
201 * using %CMD_CONTROL_PORT_FRAME. If control port routing over NL80211 is
202 * to be used then userspace must also use the %NL80211_ATTR_SOCKET_OWNER
203 - * flag.
204 + * flag. When used with %NL80211_ATTR_CONTROL_PORT_NO_PREAUTH, pre-auth
205 + * frames are not forwared over the control port.
206 *
207 * @NL80211_ATTR_TESTDATA: Testmode data blob, passed through to the driver.
208 * We recommend using nested, driver-specific attributes within this.
209 @@ -2373,6 +2450,64 @@ enum nl80211_commands {
210 * the allowed channel bandwidth configurations. (u8 attribute)
211 * Defined by IEEE P802.11ay/D4.0 section 9.4.2.251, Table 13.
212 *
213 + * @NL80211_ATTR_VLAN_ID: VLAN ID (1..4094) for the station and VLAN group key
214 + * (u16).
215 + *
216 + * @NL80211_ATTR_HE_BSS_COLOR: nested attribute for BSS Color Settings.
217 + *
218 + * @NL80211_ATTR_IFTYPE_AKM_SUITES: nested array attribute, with each entry
219 + * using attributes from &enum nl80211_iftype_akm_attributes. This
220 + * attribute is sent in a response to %NL80211_CMD_GET_WIPHY indicating
221 + * supported AKM suites capability per interface. AKMs advertised in
222 + * %NL80211_ATTR_AKM_SUITES are default capabilities if AKM suites not
223 + * advertised for a specific interface type.
224 + *
225 + * @NL80211_ATTR_TID_CONFIG: TID specific configuration in a
226 + * nested attribute with &enum nl80211_tid_config_attr sub-attributes;
227 + * on output (in wiphy attributes) it contains only the feature sub-
228 + * attributes.
229 + *
230 + * @NL80211_ATTR_CONTROL_PORT_NO_PREAUTH: disable preauth frame rx on control
231 + * port in order to forward/receive them as ordinary data frames.
232 + *
233 + * @NL80211_ATTR_PMK_LIFETIME: Maximum lifetime for PMKSA in seconds (u32,
234 + * dot11RSNAConfigPMKReauthThreshold; 0 is not a valid value).
235 + * An optional parameter configured through %NL80211_CMD_SET_PMKSA.
236 + * Drivers that trigger roaming need to know the lifetime of the
237 + * configured PMKSA for triggering the full vs. PMKSA caching based
238 + * authentication. This timeout helps authentication methods like SAE,
239 + * where PMK gets updated only by going through a full (new SAE)
240 + * authentication instead of getting updated during an association for EAP
241 + * authentication. No new full authentication within the PMK expiry shall
242 + * result in a disassociation at the end of the lifetime.
243 + *
244 + * @NL80211_ATTR_PMK_REAUTH_THRESHOLD: Reauthentication threshold time, in
245 + * terms of percentage of %NL80211_ATTR_PMK_LIFETIME
246 + * (u8, dot11RSNAConfigPMKReauthThreshold, 1..100). This is an optional
247 + * parameter configured through %NL80211_CMD_SET_PMKSA. Requests the
248 + * driver to trigger a full authentication roam (without PMKSA caching)
249 + * after the reauthentication threshold time, but before the PMK lifetime
250 + * has expired.
251 + *
252 + * Authentication methods like SAE need to be able to generate a new PMKSA
253 + * entry without having to force a disconnection after the PMK timeout. If
254 + * no roaming occurs between the reauth threshold and PMK expiration,
255 + * disassociation is still forced.
256 + * @NL80211_ATTR_RECEIVE_MULTICAST: multicast flag for the
257 + * %NL80211_CMD_REGISTER_FRAME command, see the description there.
258 + * @NL80211_ATTR_WIPHY_FREQ_OFFSET: offset of the associated
259 + * %NL80211_ATTR_WIPHY_FREQ in positive KHz. Only valid when supplied with
260 + * an %NL80211_ATTR_WIPHY_FREQ_OFFSET.
261 + * @NL80211_ATTR_CENTER_FREQ1_OFFSET: Center frequency offset in KHz for the
262 + * first channel segment specified in %NL80211_ATTR_CENTER_FREQ1.
263 + * @NL80211_ATTR_SCAN_FREQ_KHZ: nested attribute with KHz frequencies
264 + *
265 + * @NL80211_ATTR_HE_6GHZ_CAPABILITY: HE 6 GHz Band Capability element (from
266 + * association request when used with NL80211_CMD_NEW_STATION).
267 + *
268 + * @NL80211_ATTR_WIPHY_ANTENNA_GAIN: Configured antenna gain. Used to reduce
269 + * transmit power to stay within regulatory limits. u32, dBi.
270 + *
271 * @NUM_NL80211_ATTR: total number of nl80211_attrs available
272 * @NL80211_ATTR_MAX: highest attribute number currently defined
273 * @__NL80211_ATTR_AFTER_LAST: internal use
274 @@ -2835,6 +2970,28 @@ enum nl80211_attrs {
275 NL80211_ATTR_WIPHY_EDMG_CHANNELS,
276 NL80211_ATTR_WIPHY_EDMG_BW_CONFIG,
277
278 + NL80211_ATTR_VLAN_ID,
279 +
280 + NL80211_ATTR_HE_BSS_COLOR,
281 +
282 + NL80211_ATTR_IFTYPE_AKM_SUITES,
283 +
284 + NL80211_ATTR_TID_CONFIG,
285 +
286 + NL80211_ATTR_CONTROL_PORT_NO_PREAUTH,
287 +
288 + NL80211_ATTR_PMK_LIFETIME,
289 + NL80211_ATTR_PMK_REAUTH_THRESHOLD,
290 +
291 + NL80211_ATTR_RECEIVE_MULTICAST,
292 + NL80211_ATTR_WIPHY_FREQ_OFFSET,
293 + NL80211_ATTR_CENTER_FREQ1_OFFSET,
294 + NL80211_ATTR_SCAN_FREQ_KHZ,
295 +
296 + NL80211_ATTR_HE_6GHZ_CAPABILITY,
297 +
298 + NL80211_ATTR_WIPHY_ANTENNA_GAIN,
299 +
300 /* add attributes here, update the policy in nl80211.c */
301
302 __NL80211_ATTR_AFTER_LAST,
303 @@ -3413,6 +3570,8 @@ enum nl80211_mpath_info {
304 * defined in HE capabilities IE
305 * @NL80211_BAND_IFTYPE_ATTR_MAX: highest band HE capability attribute currently
306 * defined
307 + * @NL80211_BAND_IFTYPE_ATTR_HE_6GHZ_CAPA: HE 6GHz band capabilities (__le16),
308 + * given for all 6 GHz band channels
309 * @__NL80211_BAND_IFTYPE_ATTR_AFTER_LAST: internal use
310 */
311 enum nl80211_band_iftype_attr {
312 @@ -3423,6 +3582,7 @@ enum nl80211_band_iftype_attr {
313 NL80211_BAND_IFTYPE_ATTR_HE_CAP_PHY,
314 NL80211_BAND_IFTYPE_ATTR_HE_CAP_MCS_SET,
315 NL80211_BAND_IFTYPE_ATTR_HE_CAP_PPE,
316 + NL80211_BAND_IFTYPE_ATTR_HE_6GHZ_CAPA,
317
318 /* keep last */
319 __NL80211_BAND_IFTYPE_ATTR_AFTER_LAST,
320 @@ -3554,6 +3714,9 @@ enum nl80211_wmm_rule {
321 * @NL80211_FREQUENCY_ATTR_WMM: this channel has wmm limitations.
322 * This is a nested attribute that contains the wmm limitation per AC.
323 * (see &enum nl80211_wmm_rule)
324 + * @NL80211_FREQUENCY_ATTR_NO_HE: HE operation is not allowed on this channel
325 + * in current regulatory domain.
326 + * @NL80211_FREQUENCY_ATTR_OFFSET: frequency offset in KHz
327 * @NL80211_FREQUENCY_ATTR_MAX: highest frequency attribute number
328 * currently defined
329 * @__NL80211_FREQUENCY_ATTR_AFTER_LAST: internal use
330 @@ -3583,6 +3746,8 @@ enum nl80211_frequency_attr {
331 NL80211_FREQUENCY_ATTR_NO_20MHZ,
332 NL80211_FREQUENCY_ATTR_NO_10MHZ,
333 NL80211_FREQUENCY_ATTR_WMM,
334 + NL80211_FREQUENCY_ATTR_NO_HE,
335 + NL80211_FREQUENCY_ATTR_OFFSET,
336
337 /* keep last */
338 __NL80211_FREQUENCY_ATTR_AFTER_LAST,
339 @@ -3780,6 +3945,7 @@ enum nl80211_sched_scan_match_attr {
340 * @NL80211_RRF_NO_HT40PLUS: channels can't be used in HT40+ operation
341 * @NL80211_RRF_NO_80MHZ: 80MHz operation not allowed
342 * @NL80211_RRF_NO_160MHZ: 160MHz operation not allowed
343 + * @NL80211_RRF_NO_HE: HE operation not allowed
344 */
345 enum nl80211_reg_rule_flags {
346 NL80211_RRF_NO_OFDM = 1<<0,
347 @@ -3797,6 +3963,7 @@ enum nl80211_reg_rule_flags {
348 NL80211_RRF_NO_HT40PLUS = 1<<14,
349 NL80211_RRF_NO_80MHZ = 1<<15,
350 NL80211_RRF_NO_160MHZ = 1<<16,
351 + NL80211_RRF_NO_HE = 1<<17,
352 };
353
354 #define NL80211_RRF_PASSIVE_SCAN NL80211_RRF_NO_IR
355 @@ -4351,6 +4518,7 @@ enum nl80211_bss_scan_width {
356 * @NL80211_BSS_CHAIN_SIGNAL: per-chain signal strength of last BSS update.
357 * Contains a nested array of signal strength attributes (u8, dBm),
358 * using the nesting index as the antenna number.
359 + * @NL80211_BSS_FREQUENCY_OFFSET: frequency offset in KHz
360 * @__NL80211_BSS_AFTER_LAST: internal
361 * @NL80211_BSS_MAX: highest BSS attribute
362 */
363 @@ -4375,6 +4543,7 @@ enum nl80211_bss {
364 NL80211_BSS_PARENT_TSF,
365 NL80211_BSS_PARENT_BSSID,
366 NL80211_BSS_CHAIN_SIGNAL,
367 + NL80211_BSS_FREQUENCY_OFFSET,
368
369 /* keep last */
370 __NL80211_BSS_AFTER_LAST,
371 @@ -4503,6 +4672,7 @@ enum nl80211_key_default_types {
372 * See &enum nl80211_key_default_types.
373 * @NL80211_KEY_MODE: the mode from enum nl80211_key_mode.
374 * Defaults to @NL80211_KEY_RX_TX.
375 + * @NL80211_KEY_DEFAULT_BEACON: flag indicating default Beacon frame key
376 *
377 * @__NL80211_KEY_AFTER_LAST: internal
378 * @NL80211_KEY_MAX: highest key attribute
379 @@ -4518,6 +4688,7 @@ enum nl80211_key_attributes {
380 NL80211_KEY_TYPE,
381 NL80211_KEY_DEFAULT_TYPES,
382 NL80211_KEY_MODE,
383 + NL80211_KEY_DEFAULT_BEACON,
384
385 /* keep last */
386 __NL80211_KEY_AFTER_LAST,
387 @@ -4674,6 +4845,92 @@ enum nl80211_tx_power_setting {
388 };
389
390 /**
391 + * enum nl80211_tid_config - TID config state
392 + * @NL80211_TID_CONFIG_ENABLE: Enable config for the TID
393 + * @NL80211_TID_CONFIG_DISABLE: Disable config for the TID
394 + */
395 +enum nl80211_tid_config {
396 + NL80211_TID_CONFIG_ENABLE,
397 + NL80211_TID_CONFIG_DISABLE,
398 +};
399 +
400 +/* enum nl80211_tx_rate_setting - TX rate configuration type
401 + * @NL80211_TX_RATE_AUTOMATIC: automatically determine TX rate
402 + * @NL80211_TX_RATE_LIMITED: limit the TX rate by the TX rate parameter
403 + * @NL80211_TX_RATE_FIXED: fix TX rate to the TX rate parameter
404 + */
405 +enum nl80211_tx_rate_setting {
406 + NL80211_TX_RATE_AUTOMATIC,
407 + NL80211_TX_RATE_LIMITED,
408 + NL80211_TX_RATE_FIXED,
409 +};
410 +
411 +/* enum nl80211_tid_config_attr - TID specific configuration.
412 + * @NL80211_TID_CONFIG_ATTR_PAD: pad attribute for 64-bit values
413 + * @NL80211_TID_CONFIG_ATTR_VIF_SUPP: a bitmap (u64) of attributes supported
414 + * for per-vif configuration; doesn't list the ones that are generic
415 + * (%NL80211_TID_CONFIG_ATTR_TIDS, %NL80211_TID_CONFIG_ATTR_OVERRIDE).
416 + * @NL80211_TID_CONFIG_ATTR_PEER_SUPP: same as the previous per-vif one, but
417 + * per peer instead.
418 + * @NL80211_TID_CONFIG_ATTR_OVERRIDE: flag attribue, if set indicates
419 + * that the new configuration overrides all previous peer
420 + * configurations, otherwise previous peer specific configurations
421 + * should be left untouched.
422 + * @NL80211_TID_CONFIG_ATTR_TIDS: a bitmask value of TIDs (bit 0 to 7)
423 + * Its type is u16.
424 + * @NL80211_TID_CONFIG_ATTR_NOACK: Configure ack policy for the TID.
425 + * specified in %NL80211_TID_CONFIG_ATTR_TID. see %enum nl80211_tid_config.
426 + * Its type is u8.
427 + * @NL80211_TID_CONFIG_ATTR_RETRY_SHORT: Number of retries used with data frame
428 + * transmission, user-space sets this configuration in
429 + * &NL80211_CMD_SET_TID_CONFIG. It is u8 type, min value is 1 and
430 + * the max value is advertised by the driver in this attribute on
431 + * output in wiphy capabilities.
432 + * @NL80211_TID_CONFIG_ATTR_RETRY_LONG: Number of retries used with data frame
433 + * transmission, user-space sets this configuration in
434 + * &NL80211_CMD_SET_TID_CONFIG. Its type is u8, min value is 1 and
435 + * the max value is advertised by the driver in this attribute on
436 + * output in wiphy capabilities.
437 + * @NL80211_TID_CONFIG_ATTR_AMPDU_CTRL: Enable/Disable MPDU aggregation
438 + * for the TIDs specified in %NL80211_TID_CONFIG_ATTR_TIDS.
439 + * Its type is u8, using the values from &nl80211_tid_config.
440 + * @NL80211_TID_CONFIG_ATTR_RTSCTS_CTRL: Enable/Disable RTS_CTS for the TIDs
441 + * specified in %NL80211_TID_CONFIG_ATTR_TIDS. It is u8 type, using
442 + * the values from &nl80211_tid_config.
443 + * @NL80211_TID_CONFIG_ATTR_AMSDU_CTRL: Enable/Disable MSDU aggregation
444 + * for the TIDs specified in %NL80211_TID_CONFIG_ATTR_TIDS.
445 + * Its type is u8, using the values from &nl80211_tid_config.
446 + * @NL80211_TID_CONFIG_ATTR_TX_RATE_TYPE: This attribute will be useful
447 + * to notfiy the driver that what type of txrate should be used
448 + * for the TIDs specified in %NL80211_TID_CONFIG_ATTR_TIDS. using
449 + * the values form &nl80211_tx_rate_setting.
450 + * @NL80211_TID_CONFIG_ATTR_TX_RATE: Data frame TX rate mask should be applied
451 + * with the parameters passed through %NL80211_ATTR_TX_RATES.
452 + * configuration is applied to the data frame for the tid to that connected
453 + * station.
454 + */
455 +enum nl80211_tid_config_attr {
456 + __NL80211_TID_CONFIG_ATTR_INVALID,
457 + NL80211_TID_CONFIG_ATTR_PAD,
458 + NL80211_TID_CONFIG_ATTR_VIF_SUPP,
459 + NL80211_TID_CONFIG_ATTR_PEER_SUPP,
460 + NL80211_TID_CONFIG_ATTR_OVERRIDE,
461 + NL80211_TID_CONFIG_ATTR_TIDS,
462 + NL80211_TID_CONFIG_ATTR_NOACK,
463 + NL80211_TID_CONFIG_ATTR_RETRY_SHORT,
464 + NL80211_TID_CONFIG_ATTR_RETRY_LONG,
465 + NL80211_TID_CONFIG_ATTR_AMPDU_CTRL,
466 + NL80211_TID_CONFIG_ATTR_RTSCTS_CTRL,
467 + NL80211_TID_CONFIG_ATTR_AMSDU_CTRL,
468 + NL80211_TID_CONFIG_ATTR_TX_RATE_TYPE,
469 + NL80211_TID_CONFIG_ATTR_TX_RATE,
470 +
471 + /* keep last */
472 + __NL80211_TID_CONFIG_ATTR_AFTER_LAST,
473 + NL80211_TID_CONFIG_ATTR_MAX = __NL80211_TID_CONFIG_ATTR_AFTER_LAST - 1
474 +};
475 +
476 +/**
477 * enum nl80211_packet_pattern_attr - packet pattern attribute
478 * @__NL80211_PKTPAT_INVALID: invalid number for nested attribute
479 * @NL80211_PKTPAT_PATTERN: the pattern, values where the mask has
480 @@ -5144,6 +5401,8 @@ enum plink_actions {
481
482 #define NL80211_KCK_LEN 16
483 #define NL80211_KEK_LEN 16
484 +#define NL80211_KCK_EXT_LEN 24
485 +#define NL80211_KEK_EXT_LEN 32
486 #define NL80211_REPLAY_CTR_LEN 8
487
488 /**
489 @@ -5152,6 +5411,7 @@ enum plink_actions {
490 * @NL80211_REKEY_DATA_KEK: key encryption key (binary)
491 * @NL80211_REKEY_DATA_KCK: key confirmation key (binary)
492 * @NL80211_REKEY_DATA_REPLAY_CTR: replay counter (binary)
493 + * @NL80211_REKEY_DATA_AKM: AKM data (OUI, suite type)
494 * @NUM_NL80211_REKEY_DATA: number of rekey attributes (internal)
495 * @MAX_NL80211_REKEY_DATA: highest rekey attribute (internal)
496 */
497 @@ -5160,6 +5420,7 @@ enum nl80211_rekey_data {
498 NL80211_REKEY_DATA_KEK,
499 NL80211_REKEY_DATA_KCK,
500 NL80211_REKEY_DATA_REPLAY_CTR,
501 + NL80211_REKEY_DATA_AKM,
502
503 /* keep last */
504 NUM_NL80211_REKEY_DATA,
505 @@ -5484,6 +5745,39 @@ enum nl80211_feature_flags {
506 * @NL80211_EXT_FEATURE_SAE_OFFLOAD: Device wants to do SAE authentication in
507 * station mode (SAE password is passed as part of the connect command).
508 *
509 + * @NL80211_EXT_FEATURE_VLAN_OFFLOAD: The driver supports a single netdev
510 + * with VLAN tagged frames and separate VLAN-specific netdevs added using
511 + * vconfig similarly to the Ethernet case.
512 + *
513 + * @NL80211_EXT_FEATURE_AQL: The driver supports the Airtime Queue Limit (AQL)
514 + * feature, which prevents bufferbloat by using the expected transmission
515 + * time to limit the amount of data buffered in the hardware.
516 + *
517 + * @NL80211_EXT_FEATURE_BEACON_PROTECTION: The driver supports Beacon protection
518 + * and can receive key configuration for BIGTK using key indexes 6 and 7.
519 + * @NL80211_EXT_FEATURE_BEACON_PROTECTION_CLIENT: The driver supports Beacon
520 + * protection as a client only and cannot transmit protected beacons.
521 + *
522 + * @NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH: The driver can disable the
523 + * forwarding of preauth frames over the control port. They are then
524 + * handled as ordinary data frames.
525 + *
526 + * @NL80211_EXT_FEATURE_PROTECTED_TWT: Driver supports protected TWT frames
527 + *
528 + * @NL80211_EXT_FEATURE_DEL_IBSS_STA: The driver supports removing stations
529 + * in IBSS mode, essentially by dropping their state.
530 + *
531 + * @NL80211_EXT_FEATURE_MULTICAST_REGISTRATIONS: management frame registrations
532 + * are possible for multicast frames and those will be reported properly.
533 + *
534 + * @NL80211_EXT_FEATURE_SCAN_FREQ_KHZ: This driver supports receiving and
535 + * reporting scan request with %NL80211_ATTR_SCAN_FREQ_KHZ. In order to
536 + * report %NL80211_ATTR_SCAN_FREQ_KHZ, %NL80211_SCAN_FLAG_FREQ_KHZ must be
537 + * included in the scan request.
538 + *
539 + * @NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_TX_STATUS: The driver
540 + * can report tx status for control port over nl80211 tx operations.
541 + *
542 * @NUM_NL80211_EXT_FEATURES: number of extended features.
543 * @MAX_NL80211_EXT_FEATURES: highest extended feature index.
544 */
545 @@ -5529,6 +5823,16 @@ enum nl80211_ext_feature_index {
546 NL80211_EXT_FEATURE_EXT_KEY_ID,
547 NL80211_EXT_FEATURE_STA_TX_PWR,
548 NL80211_EXT_FEATURE_SAE_OFFLOAD,
549 + NL80211_EXT_FEATURE_VLAN_OFFLOAD,
550 + NL80211_EXT_FEATURE_AQL,
551 + NL80211_EXT_FEATURE_BEACON_PROTECTION,
552 + NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH,
553 + NL80211_EXT_FEATURE_PROTECTED_TWT,
554 + NL80211_EXT_FEATURE_DEL_IBSS_STA,
555 + NL80211_EXT_FEATURE_MULTICAST_REGISTRATIONS,
556 + NL80211_EXT_FEATURE_BEACON_PROTECTION_CLIENT,
557 + NL80211_EXT_FEATURE_SCAN_FREQ_KHZ,
558 + NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_TX_STATUS,
559
560 /* add new features before the definition below */
561 NUM_NL80211_EXT_FEATURES,
562 @@ -5640,6 +5944,9 @@ enum nl80211_timeout_reason {
563 * @NL80211_SCAN_FLAG_MIN_PREQ_CONTENT: minimize probe request content to
564 * only have supported rates and no additional capabilities (unless
565 * added by userspace explicitly.)
566 + * @NL80211_SCAN_FLAG_FREQ_KHZ: report scan results with
567 + * %NL80211_ATTR_SCAN_FREQ_KHZ. This also means
568 + * %NL80211_ATTR_SCAN_FREQUENCIES will not be included.
569 */
570 enum nl80211_scan_flags {
571 NL80211_SCAN_FLAG_LOW_PRIORITY = 1<<0,
572 @@ -5655,6 +5962,7 @@ enum nl80211_scan_flags {
573 NL80211_SCAN_FLAG_HIGH_ACCURACY = 1<<10,
574 NL80211_SCAN_FLAG_RANDOM_SN = 1<<11,
575 NL80211_SCAN_FLAG_MIN_PREQ_CONTENT = 1<<12,
576 + NL80211_SCAN_FLAG_FREQ_KHZ = 1<<13,
577 };
578
579 /**
580 @@ -6151,12 +6459,14 @@ enum nl80211_ftm_responder_stats {
581 * @NL80211_PREAMBLE_HT: HT preamble
582 * @NL80211_PREAMBLE_VHT: VHT preamble
583 * @NL80211_PREAMBLE_DMG: DMG preamble
584 + * @NL80211_PREAMBLE_HE: HE preamble
585 */
586 enum nl80211_preamble {
587 NL80211_PREAMBLE_LEGACY,
588 NL80211_PREAMBLE_HT,
589 NL80211_PREAMBLE_VHT,
590 NL80211_PREAMBLE_DMG,
591 + NL80211_PREAMBLE_HE,
592 };
593
594 /**
595 @@ -6349,6 +6659,10 @@ enum nl80211_peer_measurement_attrs {
596 * is valid)
597 * @NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST: u32 attribute indicating
598 * the maximum FTMs per burst (if not present anything is valid)
599 + * @NL80211_PMSR_FTM_CAPA_ATTR_TRIGGER_BASED: flag attribute indicating if
600 + * trigger based ranging measurement is supported
601 + * @NL80211_PMSR_FTM_CAPA_ATTR_NON_TRIGGER_BASED: flag attribute indicating
602 + * if non trigger based ranging measurement is supported
603 *
604 * @NUM_NL80211_PMSR_FTM_CAPA_ATTR: internal
605 * @NL80211_PMSR_FTM_CAPA_ATTR_MAX: highest attribute number
606 @@ -6364,6 +6678,8 @@ enum nl80211_peer_measurement_ftm_capa {
607 NL80211_PMSR_FTM_CAPA_ATTR_BANDWIDTHS,
608 NL80211_PMSR_FTM_CAPA_ATTR_MAX_BURSTS_EXPONENT,
609 NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST,
610 + NL80211_PMSR_FTM_CAPA_ATTR_TRIGGER_BASED,
611 + NL80211_PMSR_FTM_CAPA_ATTR_NON_TRIGGER_BASED,
612
613 /* keep last */
614 NUM_NL80211_PMSR_FTM_CAPA_ATTR,
615 @@ -6393,6 +6709,20 @@ enum nl80211_peer_measurement_ftm_capa {
616 * @NL80211_PMSR_FTM_REQ_ATTR_REQUEST_LCI: request LCI data (flag)
617 * @NL80211_PMSR_FTM_REQ_ATTR_REQUEST_CIVICLOC: request civic location data
618 * (flag)
619 + * @NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED: request trigger based ranging
620 + * measurement (flag).
621 + * This attribute and %NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED are
622 + * mutually exclusive.
623 + * if neither %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED nor
624 + * %NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED is set, EDCA based
625 + * ranging will be used.
626 + * @NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED: request non trigger based
627 + * ranging measurement (flag)
628 + * This attribute and %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED are
629 + * mutually exclusive.
630 + * if neither %NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED nor
631 + * %NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED is set, EDCA based
632 + * ranging will be used.
633 *
634 * @NUM_NL80211_PMSR_FTM_REQ_ATTR: internal
635 * @NL80211_PMSR_FTM_REQ_ATTR_MAX: highest attribute number
636 @@ -6409,6 +6739,8 @@ enum nl80211_peer_measurement_ftm_req {
637 NL80211_PMSR_FTM_REQ_ATTR_NUM_FTMR_RETRIES,
638 NL80211_PMSR_FTM_REQ_ATTR_REQUEST_LCI,
639 NL80211_PMSR_FTM_REQ_ATTR_REQUEST_CIVICLOC,
640 + NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED,
641 + NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED,
642
643 /* keep last */
644 NUM_NL80211_PMSR_FTM_REQ_ATTR,
645 @@ -6548,5 +6880,51 @@ enum nl80211_obss_pd_attributes {
646 NL80211_HE_OBSS_PD_ATTR_MAX = __NL80211_HE_OBSS_PD_ATTR_LAST - 1,
647 };
648
649 +/**
650 + * enum nl80211_bss_color_attributes - BSS Color attributes
651 + * @__NL80211_HE_BSS_COLOR_ATTR_INVALID: Invalid
652 + *
653 + * @NL80211_HE_BSS_COLOR_ATTR_COLOR: the current BSS Color.
654 + * @NL80211_HE_BSS_COLOR_ATTR_DISABLED: is BSS coloring disabled.
655 + * @NL80211_HE_BSS_COLOR_ATTR_PARTIAL: the AID equation to be used..
656 + *
657 + * @__NL80211_HE_BSS_COLOR_ATTR_LAST: Internal
658 + * @NL80211_HE_BSS_COLOR_ATTR_MAX: highest BSS Color attribute.
659 + */
660 +enum nl80211_bss_color_attributes {
661 + __NL80211_HE_BSS_COLOR_ATTR_INVALID,
662 +
663 + NL80211_HE_BSS_COLOR_ATTR_COLOR,
664 + NL80211_HE_BSS_COLOR_ATTR_DISABLED,
665 + NL80211_HE_BSS_COLOR_ATTR_PARTIAL,
666 +
667 + /* keep last */
668 + __NL80211_HE_BSS_COLOR_ATTR_LAST,
669 + NL80211_HE_BSS_COLOR_ATTR_MAX = __NL80211_HE_BSS_COLOR_ATTR_LAST - 1,
670 +};
671 +
672 +/**
673 + * enum nl80211_iftype_akm_attributes - interface type AKM attributes
674 + * @__NL80211_IFTYPE_AKM_ATTR_INVALID: Invalid
675 + *
676 + * @NL80211_IFTYPE_AKM_ATTR_IFTYPES: nested attribute containing a flag
677 + * attribute for each interface type that supports AKM suites specified in
678 + * %NL80211_IFTYPE_AKM_ATTR_SUITES
679 + * @NL80211_IFTYPE_AKM_ATTR_SUITES: an array of u32. Used to indicate supported
680 + * AKM suites for the specified interface types.
681 + *
682 + * @__NL80211_IFTYPE_AKM_ATTR_LAST: Internal
683 + * @NL80211_IFTYPE_AKM_ATTR_MAX: highest interface type AKM attribute.
684 + */
685 +enum nl80211_iftype_akm_attributes {
686 + __NL80211_IFTYPE_AKM_ATTR_INVALID,
687 +
688 + NL80211_IFTYPE_AKM_ATTR_IFTYPES,
689 + NL80211_IFTYPE_AKM_ATTR_SUITES,
690 +
691 + /* keep last */
692 + __NL80211_IFTYPE_AKM_ATTR_LAST,
693 + NL80211_IFTYPE_AKM_ATTR_MAX = __NL80211_IFTYPE_AKM_ATTR_LAST - 1,
694 +};
695
696 #endif /* __LINUX_NL80211_H */