xref: /openbmc/linux/include/net/cfg80211.h (revision 31846b657857e6a73d982604f36a34710d98902c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef __NET_CFG80211_H
3 #define __NET_CFG80211_H
4 /*
5  * 802.11 device and configuration interface
6  *
7  * Copyright 2006-2010	Johannes Berg <johannes@sipsolutions.net>
8  * Copyright 2013-2014 Intel Mobile Communications GmbH
9  * Copyright 2015-2017	Intel Deutschland GmbH
10  * Copyright (C) 2018-2021 Intel Corporation
11  */
12 
13 #include <linux/ethtool.h>
14 #include <uapi/linux/rfkill.h>
15 #include <linux/netdevice.h>
16 #include <linux/debugfs.h>
17 #include <linux/list.h>
18 #include <linux/bug.h>
19 #include <linux/netlink.h>
20 #include <linux/skbuff.h>
21 #include <linux/nl80211.h>
22 #include <linux/if_ether.h>
23 #include <linux/ieee80211.h>
24 #include <linux/net.h>
25 #include <linux/rfkill.h>
26 #include <net/regulatory.h>
27 
28 /**
29  * DOC: Introduction
30  *
31  * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
32  * userspace and drivers, and offers some utility functionality associated
33  * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
34  * by all modern wireless drivers in Linux, so that they offer a consistent
35  * API through nl80211. For backward compatibility, cfg80211 also offers
36  * wireless extensions to userspace, but hides them from drivers completely.
37  *
38  * Additionally, cfg80211 contains code to help enforce regulatory spectrum
39  * use restrictions.
40  */
41 
42 
43 /**
44  * DOC: Device registration
45  *
46  * In order for a driver to use cfg80211, it must register the hardware device
47  * with cfg80211. This happens through a number of hardware capability structs
48  * described below.
49  *
50  * The fundamental structure for each device is the 'wiphy', of which each
51  * instance describes a physical wireless device connected to the system. Each
52  * such wiphy can have zero, one, or many virtual interfaces associated with
53  * it, which need to be identified as such by pointing the network interface's
54  * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
55  * the wireless part of the interface, normally this struct is embedded in the
56  * network interface's private data area. Drivers can optionally allow creating
57  * or destroying virtual interfaces on the fly, but without at least one or the
58  * ability to create some the wireless device isn't useful.
59  *
60  * Each wiphy structure contains device capability information, and also has
61  * a pointer to the various operations the driver offers. The definitions and
62  * structures here describe these capabilities in detail.
63  */
64 
65 struct wiphy;
66 
67 /*
68  * wireless hardware capability structures
69  */
70 
71 /**
72  * enum ieee80211_channel_flags - channel flags
73  *
74  * Channel flags set by the regulatory control code.
75  *
76  * @IEEE80211_CHAN_DISABLED: This channel is disabled.
77  * @IEEE80211_CHAN_NO_IR: do not initiate radiation, this includes
78  *	sending probe requests or beaconing.
79  * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel.
80  * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel
81  *	is not permitted.
82  * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel
83  *	is not permitted.
84  * @IEEE80211_CHAN_NO_OFDM: OFDM is not allowed on this channel.
85  * @IEEE80211_CHAN_NO_80MHZ: If the driver supports 80 MHz on the band,
86  *	this flag indicates that an 80 MHz channel cannot use this
87  *	channel as the control or any of the secondary channels.
88  *	This may be due to the driver or due to regulatory bandwidth
89  *	restrictions.
90  * @IEEE80211_CHAN_NO_160MHZ: If the driver supports 160 MHz on the band,
91  *	this flag indicates that an 160 MHz channel cannot use this
92  *	channel as the control or any of the secondary channels.
93  *	This may be due to the driver or due to regulatory bandwidth
94  *	restrictions.
95  * @IEEE80211_CHAN_INDOOR_ONLY: see %NL80211_FREQUENCY_ATTR_INDOOR_ONLY
96  * @IEEE80211_CHAN_IR_CONCURRENT: see %NL80211_FREQUENCY_ATTR_IR_CONCURRENT
97  * @IEEE80211_CHAN_NO_20MHZ: 20 MHz bandwidth is not permitted
98  *	on this channel.
99  * @IEEE80211_CHAN_NO_10MHZ: 10 MHz bandwidth is not permitted
100  *	on this channel.
101  * @IEEE80211_CHAN_NO_HE: HE operation is not permitted on this channel.
102  * @IEEE80211_CHAN_1MHZ: 1 MHz bandwidth is permitted
103  *	on this channel.
104  * @IEEE80211_CHAN_2MHZ: 2 MHz bandwidth is permitted
105  *	on this channel.
106  * @IEEE80211_CHAN_4MHZ: 4 MHz bandwidth is permitted
107  *	on this channel.
108  * @IEEE80211_CHAN_8MHZ: 8 MHz bandwidth is permitted
109  *	on this channel.
110  * @IEEE80211_CHAN_16MHZ: 16 MHz bandwidth is permitted
111  *	on this channel.
112  * @IEEE80211_CHAN_NO_320MHZ: If the driver supports 320 MHz on the band,
113  *	this flag indicates that a 320 MHz channel cannot use this
114  *	channel as the control or any of the secondary channels.
115  *	This may be due to the driver or due to regulatory bandwidth
116  *	restrictions.
117  * @IEEE80211_CHAN_NO_EHT: EHT operation is not permitted on this channel.
118  */
119 enum ieee80211_channel_flags {
120 	IEEE80211_CHAN_DISABLED		= 1<<0,
121 	IEEE80211_CHAN_NO_IR		= 1<<1,
122 	/* hole at 1<<2 */
123 	IEEE80211_CHAN_RADAR		= 1<<3,
124 	IEEE80211_CHAN_NO_HT40PLUS	= 1<<4,
125 	IEEE80211_CHAN_NO_HT40MINUS	= 1<<5,
126 	IEEE80211_CHAN_NO_OFDM		= 1<<6,
127 	IEEE80211_CHAN_NO_80MHZ		= 1<<7,
128 	IEEE80211_CHAN_NO_160MHZ	= 1<<8,
129 	IEEE80211_CHAN_INDOOR_ONLY	= 1<<9,
130 	IEEE80211_CHAN_IR_CONCURRENT	= 1<<10,
131 	IEEE80211_CHAN_NO_20MHZ		= 1<<11,
132 	IEEE80211_CHAN_NO_10MHZ		= 1<<12,
133 	IEEE80211_CHAN_NO_HE		= 1<<13,
134 	IEEE80211_CHAN_1MHZ		= 1<<14,
135 	IEEE80211_CHAN_2MHZ		= 1<<15,
136 	IEEE80211_CHAN_4MHZ		= 1<<16,
137 	IEEE80211_CHAN_8MHZ		= 1<<17,
138 	IEEE80211_CHAN_16MHZ		= 1<<18,
139 	IEEE80211_CHAN_NO_320MHZ	= 1<<19,
140 	IEEE80211_CHAN_NO_EHT		= 1<<20,
141 };
142 
143 #define IEEE80211_CHAN_NO_HT40 \
144 	(IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
145 
146 #define IEEE80211_DFS_MIN_CAC_TIME_MS		60000
147 #define IEEE80211_DFS_MIN_NOP_TIME_MS		(30 * 60 * 1000)
148 
149 /**
150  * struct ieee80211_channel - channel definition
151  *
152  * This structure describes a single channel for use
153  * with cfg80211.
154  *
155  * @center_freq: center frequency in MHz
156  * @freq_offset: offset from @center_freq, in KHz
157  * @hw_value: hardware-specific value for the channel
158  * @flags: channel flags from &enum ieee80211_channel_flags.
159  * @orig_flags: channel flags at registration time, used by regulatory
160  *	code to support devices with additional restrictions
161  * @band: band this channel belongs to.
162  * @max_antenna_gain: maximum antenna gain in dBi
163  * @max_power: maximum transmission power (in dBm)
164  * @max_reg_power: maximum regulatory transmission power (in dBm)
165  * @beacon_found: helper to regulatory code to indicate when a beacon
166  *	has been found on this channel. Use regulatory_hint_found_beacon()
167  *	to enable this, this is useful only on 5 GHz band.
168  * @orig_mag: internal use
169  * @orig_mpwr: internal use
170  * @dfs_state: current state of this channel. Only relevant if radar is required
171  *	on this channel.
172  * @dfs_state_entered: timestamp (jiffies) when the dfs state was entered.
173  * @dfs_cac_ms: DFS CAC time in milliseconds, this is valid for DFS channels.
174  */
175 struct ieee80211_channel {
176 	enum nl80211_band band;
177 	u32 center_freq;
178 	u16 freq_offset;
179 	u16 hw_value;
180 	u32 flags;
181 	int max_antenna_gain;
182 	int max_power;
183 	int max_reg_power;
184 	bool beacon_found;
185 	u32 orig_flags;
186 	int orig_mag, orig_mpwr;
187 	enum nl80211_dfs_state dfs_state;
188 	unsigned long dfs_state_entered;
189 	unsigned int dfs_cac_ms;
190 };
191 
192 /**
193  * enum ieee80211_rate_flags - rate flags
194  *
195  * Hardware/specification flags for rates. These are structured
196  * in a way that allows using the same bitrate structure for
197  * different bands/PHY modes.
198  *
199  * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
200  *	preamble on this bitrate; only relevant in 2.4GHz band and
201  *	with CCK rates.
202  * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
203  *	when used with 802.11a (on the 5 GHz band); filled by the
204  *	core code when registering the wiphy.
205  * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
206  *	when used with 802.11b (on the 2.4 GHz band); filled by the
207  *	core code when registering the wiphy.
208  * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
209  *	when used with 802.11g (on the 2.4 GHz band); filled by the
210  *	core code when registering the wiphy.
211  * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
212  * @IEEE80211_RATE_SUPPORTS_5MHZ: Rate can be used in 5 MHz mode
213  * @IEEE80211_RATE_SUPPORTS_10MHZ: Rate can be used in 10 MHz mode
214  */
215 enum ieee80211_rate_flags {
216 	IEEE80211_RATE_SHORT_PREAMBLE	= 1<<0,
217 	IEEE80211_RATE_MANDATORY_A	= 1<<1,
218 	IEEE80211_RATE_MANDATORY_B	= 1<<2,
219 	IEEE80211_RATE_MANDATORY_G	= 1<<3,
220 	IEEE80211_RATE_ERP_G		= 1<<4,
221 	IEEE80211_RATE_SUPPORTS_5MHZ	= 1<<5,
222 	IEEE80211_RATE_SUPPORTS_10MHZ	= 1<<6,
223 };
224 
225 /**
226  * enum ieee80211_bss_type - BSS type filter
227  *
228  * @IEEE80211_BSS_TYPE_ESS: Infrastructure BSS
229  * @IEEE80211_BSS_TYPE_PBSS: Personal BSS
230  * @IEEE80211_BSS_TYPE_IBSS: Independent BSS
231  * @IEEE80211_BSS_TYPE_MBSS: Mesh BSS
232  * @IEEE80211_BSS_TYPE_ANY: Wildcard value for matching any BSS type
233  */
234 enum ieee80211_bss_type {
235 	IEEE80211_BSS_TYPE_ESS,
236 	IEEE80211_BSS_TYPE_PBSS,
237 	IEEE80211_BSS_TYPE_IBSS,
238 	IEEE80211_BSS_TYPE_MBSS,
239 	IEEE80211_BSS_TYPE_ANY
240 };
241 
242 /**
243  * enum ieee80211_privacy - BSS privacy filter
244  *
245  * @IEEE80211_PRIVACY_ON: privacy bit set
246  * @IEEE80211_PRIVACY_OFF: privacy bit clear
247  * @IEEE80211_PRIVACY_ANY: Wildcard value for matching any privacy setting
248  */
249 enum ieee80211_privacy {
250 	IEEE80211_PRIVACY_ON,
251 	IEEE80211_PRIVACY_OFF,
252 	IEEE80211_PRIVACY_ANY
253 };
254 
255 #define IEEE80211_PRIVACY(x)	\
256 	((x) ? IEEE80211_PRIVACY_ON : IEEE80211_PRIVACY_OFF)
257 
258 /**
259  * struct ieee80211_rate - bitrate definition
260  *
261  * This structure describes a bitrate that an 802.11 PHY can
262  * operate with. The two values @hw_value and @hw_value_short
263  * are only for driver use when pointers to this structure are
264  * passed around.
265  *
266  * @flags: rate-specific flags
267  * @bitrate: bitrate in units of 100 Kbps
268  * @hw_value: driver/hardware value for this rate
269  * @hw_value_short: driver/hardware value for this rate when
270  *	short preamble is used
271  */
272 struct ieee80211_rate {
273 	u32 flags;
274 	u16 bitrate;
275 	u16 hw_value, hw_value_short;
276 };
277 
278 /**
279  * struct ieee80211_he_obss_pd - AP settings for spatial reuse
280  *
281  * @enable: is the feature enabled.
282  * @sr_ctrl: The SR Control field of SRP element.
283  * @non_srg_max_offset: non-SRG maximum tx power offset
284  * @min_offset: minimal tx power offset an associated station shall use
285  * @max_offset: maximum tx power offset an associated station shall use
286  * @bss_color_bitmap: bitmap that indicates the BSS color values used by
287  *	members of the SRG
288  * @partial_bssid_bitmap: bitmap that indicates the partial BSSID values
289  *	used by members of the SRG
290  */
291 struct ieee80211_he_obss_pd {
292 	bool enable;
293 	u8 sr_ctrl;
294 	u8 non_srg_max_offset;
295 	u8 min_offset;
296 	u8 max_offset;
297 	u8 bss_color_bitmap[8];
298 	u8 partial_bssid_bitmap[8];
299 };
300 
301 /**
302  * struct cfg80211_he_bss_color - AP settings for BSS coloring
303  *
304  * @color: the current color.
305  * @enabled: HE BSS color is used
306  * @partial: define the AID equation.
307  */
308 struct cfg80211_he_bss_color {
309 	u8 color;
310 	bool enabled;
311 	bool partial;
312 };
313 
314 /**
315  * struct ieee80211_sta_ht_cap - STA's HT capabilities
316  *
317  * This structure describes most essential parameters needed
318  * to describe 802.11n HT capabilities for an STA.
319  *
320  * @ht_supported: is HT supported by the STA
321  * @cap: HT capabilities map as described in 802.11n spec
322  * @ampdu_factor: Maximum A-MPDU length factor
323  * @ampdu_density: Minimum A-MPDU spacing
324  * @mcs: Supported MCS rates
325  */
326 struct ieee80211_sta_ht_cap {
327 	u16 cap; /* use IEEE80211_HT_CAP_ */
328 	bool ht_supported;
329 	u8 ampdu_factor;
330 	u8 ampdu_density;
331 	struct ieee80211_mcs_info mcs;
332 };
333 
334 /**
335  * struct ieee80211_sta_vht_cap - STA's VHT capabilities
336  *
337  * This structure describes most essential parameters needed
338  * to describe 802.11ac VHT capabilities for an STA.
339  *
340  * @vht_supported: is VHT supported by the STA
341  * @cap: VHT capabilities map as described in 802.11ac spec
342  * @vht_mcs: Supported VHT MCS rates
343  */
344 struct ieee80211_sta_vht_cap {
345 	bool vht_supported;
346 	u32 cap; /* use IEEE80211_VHT_CAP_ */
347 	struct ieee80211_vht_mcs_info vht_mcs;
348 };
349 
350 #define IEEE80211_HE_PPE_THRES_MAX_LEN		25
351 
352 /**
353  * struct ieee80211_sta_he_cap - STA's HE capabilities
354  *
355  * This structure describes most essential parameters needed
356  * to describe 802.11ax HE capabilities for a STA.
357  *
358  * @has_he: true iff HE data is valid.
359  * @he_cap_elem: Fixed portion of the HE capabilities element.
360  * @he_mcs_nss_supp: The supported NSS/MCS combinations.
361  * @ppe_thres: Holds the PPE Thresholds data.
362  */
363 struct ieee80211_sta_he_cap {
364 	bool has_he;
365 	struct ieee80211_he_cap_elem he_cap_elem;
366 	struct ieee80211_he_mcs_nss_supp he_mcs_nss_supp;
367 	u8 ppe_thres[IEEE80211_HE_PPE_THRES_MAX_LEN];
368 };
369 
370 /**
371  * struct ieee80211_eht_mcs_nss_supp - EHT max supported NSS per MCS
372  *
373  * See P802.11be_D1.3 Table 9-401k - "Subfields of the Supported EHT-MCS
374  * and NSS Set field"
375  *
376  * @only_20mhz: MCS/NSS support for 20 MHz-only STA.
377  * @bw._80: MCS/NSS support for BW <= 80 MHz
378  * @bw._160: MCS/NSS support for BW = 160 MHz
379  * @bw._320: MCS/NSS support for BW = 320 MHz
380  */
381 struct ieee80211_eht_mcs_nss_supp {
382 	union {
383 		struct ieee80211_eht_mcs_nss_supp_20mhz_only only_20mhz;
384 		struct {
385 			struct ieee80211_eht_mcs_nss_supp_bw _80;
386 			struct ieee80211_eht_mcs_nss_supp_bw _160;
387 			struct ieee80211_eht_mcs_nss_supp_bw _320;
388 		} __packed bw;
389 	} __packed;
390 } __packed;
391 
392 #define IEEE80211_EHT_PPE_THRES_MAX_LEN		32
393 
394 /**
395  * struct ieee80211_sta_eht_cap - STA's EHT capabilities
396  *
397  * This structure describes most essential parameters needed
398  * to describe 802.11be EHT capabilities for a STA.
399  *
400  * @has_eht: true iff EHT data is valid.
401  * @eht_cap_elem: Fixed portion of the eht capabilities element.
402  * @eht_mcs_nss_supp: The supported NSS/MCS combinations.
403  * @eht_ppe_thres: Holds the PPE Thresholds data.
404  */
405 struct ieee80211_sta_eht_cap {
406 	bool has_eht;
407 	struct ieee80211_eht_cap_elem_fixed eht_cap_elem;
408 	struct ieee80211_eht_mcs_nss_supp eht_mcs_nss_supp;
409 	u8 eht_ppe_thres[IEEE80211_EHT_PPE_THRES_MAX_LEN];
410 };
411 
412 /**
413  * struct ieee80211_sband_iftype_data - sband data per interface type
414  *
415  * This structure encapsulates sband data that is relevant for the
416  * interface types defined in @types_mask.  Each type in the
417  * @types_mask must be unique across all instances of iftype_data.
418  *
419  * @types_mask: interface types mask
420  * @he_cap: holds the HE capabilities
421  * @he_6ghz_capa: HE 6 GHz capabilities, must be filled in for a
422  *	6 GHz band channel (and 0 may be valid value).
423  * @vendor_elems: vendor element(s) to advertise
424  * @vendor_elems.data: vendor element(s) data
425  * @vendor_elems.len: vendor element(s) length
426  */
427 struct ieee80211_sband_iftype_data {
428 	u16 types_mask;
429 	struct ieee80211_sta_he_cap he_cap;
430 	struct ieee80211_he_6ghz_capa he_6ghz_capa;
431 	struct ieee80211_sta_eht_cap eht_cap;
432 	struct {
433 		const u8 *data;
434 		unsigned int len;
435 	} vendor_elems;
436 };
437 
438 /**
439  * enum ieee80211_edmg_bw_config - allowed channel bandwidth configurations
440  *
441  * @IEEE80211_EDMG_BW_CONFIG_4: 2.16GHz
442  * @IEEE80211_EDMG_BW_CONFIG_5: 2.16GHz and 4.32GHz
443  * @IEEE80211_EDMG_BW_CONFIG_6: 2.16GHz, 4.32GHz and 6.48GHz
444  * @IEEE80211_EDMG_BW_CONFIG_7: 2.16GHz, 4.32GHz, 6.48GHz and 8.64GHz
445  * @IEEE80211_EDMG_BW_CONFIG_8: 2.16GHz and 2.16GHz + 2.16GHz
446  * @IEEE80211_EDMG_BW_CONFIG_9: 2.16GHz, 4.32GHz and 2.16GHz + 2.16GHz
447  * @IEEE80211_EDMG_BW_CONFIG_10: 2.16GHz, 4.32GHz, 6.48GHz and 2.16GHz+2.16GHz
448  * @IEEE80211_EDMG_BW_CONFIG_11: 2.16GHz, 4.32GHz, 6.48GHz, 8.64GHz and
449  *	2.16GHz+2.16GHz
450  * @IEEE80211_EDMG_BW_CONFIG_12: 2.16GHz, 2.16GHz + 2.16GHz and
451  *	4.32GHz + 4.32GHz
452  * @IEEE80211_EDMG_BW_CONFIG_13: 2.16GHz, 4.32GHz, 2.16GHz + 2.16GHz and
453  *	4.32GHz + 4.32GHz
454  * @IEEE80211_EDMG_BW_CONFIG_14: 2.16GHz, 4.32GHz, 6.48GHz, 2.16GHz + 2.16GHz
455  *	and 4.32GHz + 4.32GHz
456  * @IEEE80211_EDMG_BW_CONFIG_15: 2.16GHz, 4.32GHz, 6.48GHz, 8.64GHz,
457  *	2.16GHz + 2.16GHz and 4.32GHz + 4.32GHz
458  */
459 enum ieee80211_edmg_bw_config {
460 	IEEE80211_EDMG_BW_CONFIG_4	= 4,
461 	IEEE80211_EDMG_BW_CONFIG_5	= 5,
462 	IEEE80211_EDMG_BW_CONFIG_6	= 6,
463 	IEEE80211_EDMG_BW_CONFIG_7	= 7,
464 	IEEE80211_EDMG_BW_CONFIG_8	= 8,
465 	IEEE80211_EDMG_BW_CONFIG_9	= 9,
466 	IEEE80211_EDMG_BW_CONFIG_10	= 10,
467 	IEEE80211_EDMG_BW_CONFIG_11	= 11,
468 	IEEE80211_EDMG_BW_CONFIG_12	= 12,
469 	IEEE80211_EDMG_BW_CONFIG_13	= 13,
470 	IEEE80211_EDMG_BW_CONFIG_14	= 14,
471 	IEEE80211_EDMG_BW_CONFIG_15	= 15,
472 };
473 
474 /**
475  * struct ieee80211_edmg - EDMG configuration
476  *
477  * This structure describes most essential parameters needed
478  * to describe 802.11ay EDMG configuration
479  *
480  * @channels: bitmap that indicates the 2.16 GHz channel(s)
481  *	that are allowed to be used for transmissions.
482  *	Bit 0 indicates channel 1, bit 1 indicates channel 2, etc.
483  *	Set to 0 indicate EDMG not supported.
484  * @bw_config: Channel BW Configuration subfield encodes
485  *	the allowed channel bandwidth configurations
486  */
487 struct ieee80211_edmg {
488 	u8 channels;
489 	enum ieee80211_edmg_bw_config bw_config;
490 };
491 
492 /**
493  * struct ieee80211_sta_s1g_cap - STA's S1G capabilities
494  *
495  * This structure describes most essential parameters needed
496  * to describe 802.11ah S1G capabilities for a STA.
497  *
498  * @s1g_supported: is STA an S1G STA
499  * @cap: S1G capabilities information
500  * @nss_mcs: Supported NSS MCS set
501  */
502 struct ieee80211_sta_s1g_cap {
503 	bool s1g;
504 	u8 cap[10]; /* use S1G_CAPAB_ */
505 	u8 nss_mcs[5];
506 };
507 
508 /**
509  * struct ieee80211_supported_band - frequency band definition
510  *
511  * This structure describes a frequency band a wiphy
512  * is able to operate in.
513  *
514  * @channels: Array of channels the hardware can operate with
515  *	in this band.
516  * @band: the band this structure represents
517  * @n_channels: Number of channels in @channels
518  * @bitrates: Array of bitrates the hardware can operate with
519  *	in this band. Must be sorted to give a valid "supported
520  *	rates" IE, i.e. CCK rates first, then OFDM.
521  * @n_bitrates: Number of bitrates in @bitrates
522  * @ht_cap: HT capabilities in this band
523  * @vht_cap: VHT capabilities in this band
524  * @s1g_cap: S1G capabilities in this band
525  * @edmg_cap: EDMG capabilities in this band
526  * @s1g_cap: S1G capabilities in this band (S1B band only, of course)
527  * @n_iftype_data: number of iftype data entries
528  * @iftype_data: interface type data entries.  Note that the bits in
529  *	@types_mask inside this structure cannot overlap (i.e. only
530  *	one occurrence of each type is allowed across all instances of
531  *	iftype_data).
532  */
533 struct ieee80211_supported_band {
534 	struct ieee80211_channel *channels;
535 	struct ieee80211_rate *bitrates;
536 	enum nl80211_band band;
537 	int n_channels;
538 	int n_bitrates;
539 	struct ieee80211_sta_ht_cap ht_cap;
540 	struct ieee80211_sta_vht_cap vht_cap;
541 	struct ieee80211_sta_s1g_cap s1g_cap;
542 	struct ieee80211_edmg edmg_cap;
543 	u16 n_iftype_data;
544 	const struct ieee80211_sband_iftype_data *iftype_data;
545 };
546 
547 /**
548  * ieee80211_get_sband_iftype_data - return sband data for a given iftype
549  * @sband: the sband to search for the STA on
550  * @iftype: enum nl80211_iftype
551  *
552  * Return: pointer to struct ieee80211_sband_iftype_data, or NULL is none found
553  */
554 static inline const struct ieee80211_sband_iftype_data *
555 ieee80211_get_sband_iftype_data(const struct ieee80211_supported_band *sband,
556 				u8 iftype)
557 {
558 	int i;
559 
560 	if (WARN_ON(iftype >= NL80211_IFTYPE_MAX))
561 		return NULL;
562 
563 	for (i = 0; i < sband->n_iftype_data; i++)  {
564 		const struct ieee80211_sband_iftype_data *data =
565 			&sband->iftype_data[i];
566 
567 		if (data->types_mask & BIT(iftype))
568 			return data;
569 	}
570 
571 	return NULL;
572 }
573 
574 /**
575  * ieee80211_get_he_iftype_cap - return HE capabilities for an sband's iftype
576  * @sband: the sband to search for the iftype on
577  * @iftype: enum nl80211_iftype
578  *
579  * Return: pointer to the struct ieee80211_sta_he_cap, or NULL is none found
580  */
581 static inline const struct ieee80211_sta_he_cap *
582 ieee80211_get_he_iftype_cap(const struct ieee80211_supported_band *sband,
583 			    u8 iftype)
584 {
585 	const struct ieee80211_sband_iftype_data *data =
586 		ieee80211_get_sband_iftype_data(sband, iftype);
587 
588 	if (data && data->he_cap.has_he)
589 		return &data->he_cap;
590 
591 	return NULL;
592 }
593 
594 /**
595  * ieee80211_get_he_6ghz_capa - return HE 6 GHz capabilities
596  * @sband: the sband to search for the STA on
597  * @iftype: the iftype to search for
598  *
599  * Return: the 6GHz capabilities
600  */
601 static inline __le16
602 ieee80211_get_he_6ghz_capa(const struct ieee80211_supported_band *sband,
603 			   enum nl80211_iftype iftype)
604 {
605 	const struct ieee80211_sband_iftype_data *data =
606 		ieee80211_get_sband_iftype_data(sband, iftype);
607 
608 	if (WARN_ON(!data || !data->he_cap.has_he))
609 		return 0;
610 
611 	return data->he_6ghz_capa.capa;
612 }
613 
614 /**
615  * ieee80211_get_eht_iftype_cap - return ETH capabilities for an sband's iftype
616  * @sband: the sband to search for the iftype on
617  * @iftype: enum nl80211_iftype
618  *
619  * Return: pointer to the struct ieee80211_sta_eht_cap, or NULL is none found
620  */
621 static inline const struct ieee80211_sta_eht_cap *
622 ieee80211_get_eht_iftype_cap(const struct ieee80211_supported_band *sband,
623 			     enum nl80211_iftype iftype)
624 {
625 	const struct ieee80211_sband_iftype_data *data =
626 		ieee80211_get_sband_iftype_data(sband, iftype);
627 
628 	if (data && data->eht_cap.has_eht)
629 		return &data->eht_cap;
630 
631 	return NULL;
632 }
633 
634 /**
635  * wiphy_read_of_freq_limits - read frequency limits from device tree
636  *
637  * @wiphy: the wireless device to get extra limits for
638  *
639  * Some devices may have extra limitations specified in DT. This may be useful
640  * for chipsets that normally support more bands but are limited due to board
641  * design (e.g. by antennas or external power amplifier).
642  *
643  * This function reads info from DT and uses it to *modify* channels (disable
644  * unavailable ones). It's usually a *bad* idea to use it in drivers with
645  * shared channel data as DT limitations are device specific. You should make
646  * sure to call it only if channels in wiphy are copied and can be modified
647  * without affecting other devices.
648  *
649  * As this function access device node it has to be called after set_wiphy_dev.
650  * It also modifies channels so they have to be set first.
651  * If using this helper, call it before wiphy_register().
652  */
653 #ifdef CONFIG_OF
654 void wiphy_read_of_freq_limits(struct wiphy *wiphy);
655 #else /* CONFIG_OF */
656 static inline void wiphy_read_of_freq_limits(struct wiphy *wiphy)
657 {
658 }
659 #endif /* !CONFIG_OF */
660 
661 
662 /*
663  * Wireless hardware/device configuration structures and methods
664  */
665 
666 /**
667  * DOC: Actions and configuration
668  *
669  * Each wireless device and each virtual interface offer a set of configuration
670  * operations and other actions that are invoked by userspace. Each of these
671  * actions is described in the operations structure, and the parameters these
672  * operations use are described separately.
673  *
674  * Additionally, some operations are asynchronous and expect to get status
675  * information via some functions that drivers need to call.
676  *
677  * Scanning and BSS list handling with its associated functionality is described
678  * in a separate chapter.
679  */
680 
681 #define VHT_MUMIMO_GROUPS_DATA_LEN (WLAN_MEMBERSHIP_LEN +\
682 				    WLAN_USER_POSITION_LEN)
683 
684 /**
685  * struct vif_params - describes virtual interface parameters
686  * @flags: monitor interface flags, unchanged if 0, otherwise
687  *	%MONITOR_FLAG_CHANGED will be set
688  * @use_4addr: use 4-address frames
689  * @macaddr: address to use for this virtual interface.
690  *	If this parameter is set to zero address the driver may
691  *	determine the address as needed.
692  *	This feature is only fully supported by drivers that enable the
693  *	%NL80211_FEATURE_MAC_ON_CREATE flag.  Others may support creating
694  **	only p2p devices with specified MAC.
695  * @vht_mumimo_groups: MU-MIMO groupID, used for monitoring MU-MIMO packets
696  *	belonging to that MU-MIMO groupID; %NULL if not changed
697  * @vht_mumimo_follow_addr: MU-MIMO follow address, used for monitoring
698  *	MU-MIMO packets going to the specified station; %NULL if not changed
699  */
700 struct vif_params {
701 	u32 flags;
702 	int use_4addr;
703 	u8 macaddr[ETH_ALEN];
704 	const u8 *vht_mumimo_groups;
705 	const u8 *vht_mumimo_follow_addr;
706 };
707 
708 /**
709  * struct key_params - key information
710  *
711  * Information about a key
712  *
713  * @key: key material
714  * @key_len: length of key material
715  * @cipher: cipher suite selector
716  * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
717  *	with the get_key() callback, must be in little endian,
718  *	length given by @seq_len.
719  * @seq_len: length of @seq.
720  * @vlan_id: vlan_id for VLAN group key (if nonzero)
721  * @mode: key install mode (RX_TX, NO_TX or SET_TX)
722  */
723 struct key_params {
724 	const u8 *key;
725 	const u8 *seq;
726 	int key_len;
727 	int seq_len;
728 	u16 vlan_id;
729 	u32 cipher;
730 	enum nl80211_key_mode mode;
731 };
732 
733 /**
734  * struct cfg80211_chan_def - channel definition
735  * @chan: the (control) channel
736  * @width: channel width
737  * @center_freq1: center frequency of first segment
738  * @center_freq2: center frequency of second segment
739  *	(only with 80+80 MHz)
740  * @edmg: define the EDMG channels configuration.
741  *	If edmg is requested (i.e. the .channels member is non-zero),
742  *	chan will define the primary channel and all other
743  *	parameters are ignored.
744  * @freq1_offset: offset from @center_freq1, in KHz
745  */
746 struct cfg80211_chan_def {
747 	struct ieee80211_channel *chan;
748 	enum nl80211_chan_width width;
749 	u32 center_freq1;
750 	u32 center_freq2;
751 	struct ieee80211_edmg edmg;
752 	u16 freq1_offset;
753 };
754 
755 /*
756  * cfg80211_bitrate_mask - masks for bitrate control
757  */
758 struct cfg80211_bitrate_mask {
759 	struct {
760 		u32 legacy;
761 		u8 ht_mcs[IEEE80211_HT_MCS_MASK_LEN];
762 		u16 vht_mcs[NL80211_VHT_NSS_MAX];
763 		u16 he_mcs[NL80211_HE_NSS_MAX];
764 		enum nl80211_txrate_gi gi;
765 		enum nl80211_he_gi he_gi;
766 		enum nl80211_he_ltf he_ltf;
767 	} control[NUM_NL80211_BANDS];
768 };
769 
770 
771 /**
772  * struct cfg80211_tid_cfg - TID specific configuration
773  * @config_override: Flag to notify driver to reset TID configuration
774  *	of the peer.
775  * @tids: bitmap of TIDs to modify
776  * @mask: bitmap of attributes indicating which parameter changed,
777  *	similar to &nl80211_tid_config_supp.
778  * @noack: noack configuration value for the TID
779  * @retry_long: retry count value
780  * @retry_short: retry count value
781  * @ampdu: Enable/Disable MPDU aggregation
782  * @rtscts: Enable/Disable RTS/CTS
783  * @amsdu: Enable/Disable MSDU aggregation
784  * @txrate_type: Tx bitrate mask type
785  * @txrate_mask: Tx bitrate to be applied for the TID
786  */
787 struct cfg80211_tid_cfg {
788 	bool config_override;
789 	u8 tids;
790 	u64 mask;
791 	enum nl80211_tid_config noack;
792 	u8 retry_long, retry_short;
793 	enum nl80211_tid_config ampdu;
794 	enum nl80211_tid_config rtscts;
795 	enum nl80211_tid_config amsdu;
796 	enum nl80211_tx_rate_setting txrate_type;
797 	struct cfg80211_bitrate_mask txrate_mask;
798 };
799 
800 /**
801  * struct cfg80211_tid_config - TID configuration
802  * @peer: Station's MAC address
803  * @n_tid_conf: Number of TID specific configurations to be applied
804  * @tid_conf: Configuration change info
805  */
806 struct cfg80211_tid_config {
807 	const u8 *peer;
808 	u32 n_tid_conf;
809 	struct cfg80211_tid_cfg tid_conf[];
810 };
811 
812 /**
813  * struct cfg80211_fils_aad - FILS AAD data
814  * @macaddr: STA MAC address
815  * @kek: FILS KEK
816  * @kek_len: FILS KEK length
817  * @snonce: STA Nonce
818  * @anonce: AP Nonce
819  */
820 struct cfg80211_fils_aad {
821 	const u8 *macaddr;
822 	const u8 *kek;
823 	u8 kek_len;
824 	const u8 *snonce;
825 	const u8 *anonce;
826 };
827 
828 /**
829  * cfg80211_get_chandef_type - return old channel type from chandef
830  * @chandef: the channel definition
831  *
832  * Return: The old channel type (NOHT, HT20, HT40+/-) from a given
833  * chandef, which must have a bandwidth allowing this conversion.
834  */
835 static inline enum nl80211_channel_type
836 cfg80211_get_chandef_type(const struct cfg80211_chan_def *chandef)
837 {
838 	switch (chandef->width) {
839 	case NL80211_CHAN_WIDTH_20_NOHT:
840 		return NL80211_CHAN_NO_HT;
841 	case NL80211_CHAN_WIDTH_20:
842 		return NL80211_CHAN_HT20;
843 	case NL80211_CHAN_WIDTH_40:
844 		if (chandef->center_freq1 > chandef->chan->center_freq)
845 			return NL80211_CHAN_HT40PLUS;
846 		return NL80211_CHAN_HT40MINUS;
847 	default:
848 		WARN_ON(1);
849 		return NL80211_CHAN_NO_HT;
850 	}
851 }
852 
853 /**
854  * cfg80211_chandef_create - create channel definition using channel type
855  * @chandef: the channel definition struct to fill
856  * @channel: the control channel
857  * @chantype: the channel type
858  *
859  * Given a channel type, create a channel definition.
860  */
861 void cfg80211_chandef_create(struct cfg80211_chan_def *chandef,
862 			     struct ieee80211_channel *channel,
863 			     enum nl80211_channel_type chantype);
864 
865 /**
866  * cfg80211_chandef_identical - check if two channel definitions are identical
867  * @chandef1: first channel definition
868  * @chandef2: second channel definition
869  *
870  * Return: %true if the channels defined by the channel definitions are
871  * identical, %false otherwise.
872  */
873 static inline bool
874 cfg80211_chandef_identical(const struct cfg80211_chan_def *chandef1,
875 			   const struct cfg80211_chan_def *chandef2)
876 {
877 	return (chandef1->chan == chandef2->chan &&
878 		chandef1->width == chandef2->width &&
879 		chandef1->center_freq1 == chandef2->center_freq1 &&
880 		chandef1->freq1_offset == chandef2->freq1_offset &&
881 		chandef1->center_freq2 == chandef2->center_freq2);
882 }
883 
884 /**
885  * cfg80211_chandef_is_edmg - check if chandef represents an EDMG channel
886  *
887  * @chandef: the channel definition
888  *
889  * Return: %true if EDMG defined, %false otherwise.
890  */
891 static inline bool
892 cfg80211_chandef_is_edmg(const struct cfg80211_chan_def *chandef)
893 {
894 	return chandef->edmg.channels || chandef->edmg.bw_config;
895 }
896 
897 /**
898  * cfg80211_chandef_compatible - check if two channel definitions are compatible
899  * @chandef1: first channel definition
900  * @chandef2: second channel definition
901  *
902  * Return: %NULL if the given channel definitions are incompatible,
903  * chandef1 or chandef2 otherwise.
904  */
905 const struct cfg80211_chan_def *
906 cfg80211_chandef_compatible(const struct cfg80211_chan_def *chandef1,
907 			    const struct cfg80211_chan_def *chandef2);
908 
909 /**
910  * cfg80211_chandef_valid - check if a channel definition is valid
911  * @chandef: the channel definition to check
912  * Return: %true if the channel definition is valid. %false otherwise.
913  */
914 bool cfg80211_chandef_valid(const struct cfg80211_chan_def *chandef);
915 
916 /**
917  * cfg80211_chandef_usable - check if secondary channels can be used
918  * @wiphy: the wiphy to validate against
919  * @chandef: the channel definition to check
920  * @prohibited_flags: the regulatory channel flags that must not be set
921  * Return: %true if secondary channels are usable. %false otherwise.
922  */
923 bool cfg80211_chandef_usable(struct wiphy *wiphy,
924 			     const struct cfg80211_chan_def *chandef,
925 			     u32 prohibited_flags);
926 
927 /**
928  * cfg80211_chandef_dfs_required - checks if radar detection is required
929  * @wiphy: the wiphy to validate against
930  * @chandef: the channel definition to check
931  * @iftype: the interface type as specified in &enum nl80211_iftype
932  * Returns:
933  *	1 if radar detection is required, 0 if it is not, < 0 on error
934  */
935 int cfg80211_chandef_dfs_required(struct wiphy *wiphy,
936 				  const struct cfg80211_chan_def *chandef,
937 				  enum nl80211_iftype iftype);
938 
939 /**
940  * ieee80211_chandef_rate_flags - returns rate flags for a channel
941  *
942  * In some channel types, not all rates may be used - for example CCK
943  * rates may not be used in 5/10 MHz channels.
944  *
945  * @chandef: channel definition for the channel
946  *
947  * Returns: rate flags which apply for this channel
948  */
949 static inline enum ieee80211_rate_flags
950 ieee80211_chandef_rate_flags(struct cfg80211_chan_def *chandef)
951 {
952 	switch (chandef->width) {
953 	case NL80211_CHAN_WIDTH_5:
954 		return IEEE80211_RATE_SUPPORTS_5MHZ;
955 	case NL80211_CHAN_WIDTH_10:
956 		return IEEE80211_RATE_SUPPORTS_10MHZ;
957 	default:
958 		break;
959 	}
960 	return 0;
961 }
962 
963 /**
964  * ieee80211_chandef_max_power - maximum transmission power for the chandef
965  *
966  * In some regulations, the transmit power may depend on the configured channel
967  * bandwidth which may be defined as dBm/MHz. This function returns the actual
968  * max_power for non-standard (20 MHz) channels.
969  *
970  * @chandef: channel definition for the channel
971  *
972  * Returns: maximum allowed transmission power in dBm for the chandef
973  */
974 static inline int
975 ieee80211_chandef_max_power(struct cfg80211_chan_def *chandef)
976 {
977 	switch (chandef->width) {
978 	case NL80211_CHAN_WIDTH_5:
979 		return min(chandef->chan->max_reg_power - 6,
980 			   chandef->chan->max_power);
981 	case NL80211_CHAN_WIDTH_10:
982 		return min(chandef->chan->max_reg_power - 3,
983 			   chandef->chan->max_power);
984 	default:
985 		break;
986 	}
987 	return chandef->chan->max_power;
988 }
989 
990 /**
991  * cfg80211_any_usable_channels - check for usable channels
992  * @wiphy: the wiphy to check for
993  * @band_mask: which bands to check on
994  * @prohibited_flags: which channels to not consider usable,
995  *	%IEEE80211_CHAN_DISABLED is always taken into account
996  */
997 bool cfg80211_any_usable_channels(struct wiphy *wiphy,
998 				  unsigned long band_mask,
999 				  u32 prohibited_flags);
1000 
1001 /**
1002  * enum survey_info_flags - survey information flags
1003  *
1004  * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
1005  * @SURVEY_INFO_IN_USE: channel is currently being used
1006  * @SURVEY_INFO_TIME: active time (in ms) was filled in
1007  * @SURVEY_INFO_TIME_BUSY: busy time was filled in
1008  * @SURVEY_INFO_TIME_EXT_BUSY: extension channel busy time was filled in
1009  * @SURVEY_INFO_TIME_RX: receive time was filled in
1010  * @SURVEY_INFO_TIME_TX: transmit time was filled in
1011  * @SURVEY_INFO_TIME_SCAN: scan time was filled in
1012  * @SURVEY_INFO_TIME_BSS_RX: local BSS receive time was filled in
1013  *
1014  * Used by the driver to indicate which info in &struct survey_info
1015  * it has filled in during the get_survey().
1016  */
1017 enum survey_info_flags {
1018 	SURVEY_INFO_NOISE_DBM		= BIT(0),
1019 	SURVEY_INFO_IN_USE		= BIT(1),
1020 	SURVEY_INFO_TIME		= BIT(2),
1021 	SURVEY_INFO_TIME_BUSY		= BIT(3),
1022 	SURVEY_INFO_TIME_EXT_BUSY	= BIT(4),
1023 	SURVEY_INFO_TIME_RX		= BIT(5),
1024 	SURVEY_INFO_TIME_TX		= BIT(6),
1025 	SURVEY_INFO_TIME_SCAN		= BIT(7),
1026 	SURVEY_INFO_TIME_BSS_RX		= BIT(8),
1027 };
1028 
1029 /**
1030  * struct survey_info - channel survey response
1031  *
1032  * @channel: the channel this survey record reports, may be %NULL for a single
1033  *	record to report global statistics
1034  * @filled: bitflag of flags from &enum survey_info_flags
1035  * @noise: channel noise in dBm. This and all following fields are
1036  *	optional
1037  * @time: amount of time in ms the radio was turn on (on the channel)
1038  * @time_busy: amount of time the primary channel was sensed busy
1039  * @time_ext_busy: amount of time the extension channel was sensed busy
1040  * @time_rx: amount of time the radio spent receiving data
1041  * @time_tx: amount of time the radio spent transmitting data
1042  * @time_scan: amount of time the radio spent for scanning
1043  * @time_bss_rx: amount of time the radio spent receiving data on a local BSS
1044  *
1045  * Used by dump_survey() to report back per-channel survey information.
1046  *
1047  * This structure can later be expanded with things like
1048  * channel duty cycle etc.
1049  */
1050 struct survey_info {
1051 	struct ieee80211_channel *channel;
1052 	u64 time;
1053 	u64 time_busy;
1054 	u64 time_ext_busy;
1055 	u64 time_rx;
1056 	u64 time_tx;
1057 	u64 time_scan;
1058 	u64 time_bss_rx;
1059 	u32 filled;
1060 	s8 noise;
1061 };
1062 
1063 #define CFG80211_MAX_WEP_KEYS	4
1064 
1065 /**
1066  * struct cfg80211_crypto_settings - Crypto settings
1067  * @wpa_versions: indicates which, if any, WPA versions are enabled
1068  *	(from enum nl80211_wpa_versions)
1069  * @cipher_group: group key cipher suite (or 0 if unset)
1070  * @n_ciphers_pairwise: number of AP supported unicast ciphers
1071  * @ciphers_pairwise: unicast key cipher suites
1072  * @n_akm_suites: number of AKM suites
1073  * @akm_suites: AKM suites
1074  * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
1075  *	sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
1076  *	required to assume that the port is unauthorized until authorized by
1077  *	user space. Otherwise, port is marked authorized by default.
1078  * @control_port_ethertype: the control port protocol that should be
1079  *	allowed through even on unauthorized ports
1080  * @control_port_no_encrypt: TRUE to prevent encryption of control port
1081  *	protocol frames.
1082  * @control_port_over_nl80211: TRUE if userspace expects to exchange control
1083  *	port frames over NL80211 instead of the network interface.
1084  * @control_port_no_preauth: disables pre-auth rx over the nl80211 control
1085  *	port for mac80211
1086  * @wep_keys: static WEP keys, if not NULL points to an array of
1087  *	CFG80211_MAX_WEP_KEYS WEP keys
1088  * @wep_tx_key: key index (0..3) of the default TX static WEP key
1089  * @psk: PSK (for devices supporting 4-way-handshake offload)
1090  * @sae_pwd: password for SAE authentication (for devices supporting SAE
1091  *	offload)
1092  * @sae_pwd_len: length of SAE password (for devices supporting SAE offload)
1093  * @sae_pwe: The mechanisms allowed for SAE PWE derivation:
1094  *
1095  *	NL80211_SAE_PWE_UNSPECIFIED
1096  *	  Not-specified, used to indicate userspace did not specify any
1097  *	  preference. The driver should follow its internal policy in
1098  *	  such a scenario.
1099  *
1100  *	NL80211_SAE_PWE_HUNT_AND_PECK
1101  *	  Allow hunting-and-pecking loop only
1102  *
1103  *	NL80211_SAE_PWE_HASH_TO_ELEMENT
1104  *	  Allow hash-to-element only
1105  *
1106  *	NL80211_SAE_PWE_BOTH
1107  *	  Allow either hunting-and-pecking loop or hash-to-element
1108  */
1109 struct cfg80211_crypto_settings {
1110 	u32 wpa_versions;
1111 	u32 cipher_group;
1112 	int n_ciphers_pairwise;
1113 	u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
1114 	int n_akm_suites;
1115 	u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
1116 	bool control_port;
1117 	__be16 control_port_ethertype;
1118 	bool control_port_no_encrypt;
1119 	bool control_port_over_nl80211;
1120 	bool control_port_no_preauth;
1121 	struct key_params *wep_keys;
1122 	int wep_tx_key;
1123 	const u8 *psk;
1124 	const u8 *sae_pwd;
1125 	u8 sae_pwd_len;
1126 	enum nl80211_sae_pwe_mechanism sae_pwe;
1127 };
1128 
1129 /**
1130  * struct cfg80211_mbssid_config - AP settings for multi bssid
1131  *
1132  * @tx_wdev: pointer to the transmitted interface in the MBSSID set
1133  * @index: index of this AP in the multi bssid group.
1134  * @ema: set to true if the beacons should be sent out in EMA mode.
1135  */
1136 struct cfg80211_mbssid_config {
1137 	struct wireless_dev *tx_wdev;
1138 	u8 index;
1139 	bool ema;
1140 };
1141 
1142 /**
1143  * struct cfg80211_mbssid_elems - Multiple BSSID elements
1144  *
1145  * @cnt: Number of elements in array %elems.
1146  *
1147  * @elem: Array of multiple BSSID element(s) to be added into Beacon frames.
1148  * @elem.data: Data for multiple BSSID elements.
1149  * @elem.len: Length of data.
1150  */
1151 struct cfg80211_mbssid_elems {
1152 	u8 cnt;
1153 	struct {
1154 		const u8 *data;
1155 		size_t len;
1156 	} elem[];
1157 };
1158 
1159 /**
1160  * struct cfg80211_beacon_data - beacon data
1161  * @head: head portion of beacon (before TIM IE)
1162  *	or %NULL if not changed
1163  * @tail: tail portion of beacon (after TIM IE)
1164  *	or %NULL if not changed
1165  * @head_len: length of @head
1166  * @tail_len: length of @tail
1167  * @beacon_ies: extra information element(s) to add into Beacon frames or %NULL
1168  * @beacon_ies_len: length of beacon_ies in octets
1169  * @proberesp_ies: extra information element(s) to add into Probe Response
1170  *	frames or %NULL
1171  * @proberesp_ies_len: length of proberesp_ies in octets
1172  * @assocresp_ies: extra information element(s) to add into (Re)Association
1173  *	Response frames or %NULL
1174  * @assocresp_ies_len: length of assocresp_ies in octets
1175  * @probe_resp_len: length of probe response template (@probe_resp)
1176  * @probe_resp: probe response template (AP mode only)
1177  * @mbssid_ies: multiple BSSID elements
1178  * @ftm_responder: enable FTM responder functionality; -1 for no change
1179  *	(which also implies no change in LCI/civic location data)
1180  * @lci: Measurement Report element content, starting with Measurement Token
1181  *	(measurement type 8)
1182  * @civicloc: Measurement Report element content, starting with Measurement
1183  *	Token (measurement type 11)
1184  * @lci_len: LCI data length
1185  * @civicloc_len: Civic location data length
1186  */
1187 struct cfg80211_beacon_data {
1188 	const u8 *head, *tail;
1189 	const u8 *beacon_ies;
1190 	const u8 *proberesp_ies;
1191 	const u8 *assocresp_ies;
1192 	const u8 *probe_resp;
1193 	const u8 *lci;
1194 	const u8 *civicloc;
1195 	struct cfg80211_mbssid_elems *mbssid_ies;
1196 	s8 ftm_responder;
1197 
1198 	size_t head_len, tail_len;
1199 	size_t beacon_ies_len;
1200 	size_t proberesp_ies_len;
1201 	size_t assocresp_ies_len;
1202 	size_t probe_resp_len;
1203 	size_t lci_len;
1204 	size_t civicloc_len;
1205 };
1206 
1207 struct mac_address {
1208 	u8 addr[ETH_ALEN];
1209 };
1210 
1211 /**
1212  * struct cfg80211_acl_data - Access control list data
1213  *
1214  * @acl_policy: ACL policy to be applied on the station's
1215  *	entry specified by mac_addr
1216  * @n_acl_entries: Number of MAC address entries passed
1217  * @mac_addrs: List of MAC addresses of stations to be used for ACL
1218  */
1219 struct cfg80211_acl_data {
1220 	enum nl80211_acl_policy acl_policy;
1221 	int n_acl_entries;
1222 
1223 	/* Keep it last */
1224 	struct mac_address mac_addrs[];
1225 };
1226 
1227 /**
1228  * struct cfg80211_fils_discovery - FILS discovery parameters from
1229  * IEEE Std 802.11ai-2016, Annex C.3 MIB detail.
1230  *
1231  * @min_interval: Minimum packet interval in TUs (0 - 10000)
1232  * @max_interval: Maximum packet interval in TUs (0 - 10000)
1233  * @tmpl_len: Template length
1234  * @tmpl: Template data for FILS discovery frame including the action
1235  *	frame headers.
1236  */
1237 struct cfg80211_fils_discovery {
1238 	u32 min_interval;
1239 	u32 max_interval;
1240 	size_t tmpl_len;
1241 	const u8 *tmpl;
1242 };
1243 
1244 /**
1245  * struct cfg80211_unsol_bcast_probe_resp - Unsolicited broadcast probe
1246  *	response parameters in 6GHz.
1247  *
1248  * @interval: Packet interval in TUs. Maximum allowed is 20 TU, as mentioned
1249  *	in IEEE P802.11ax/D6.0 26.17.2.3.2 - AP behavior for fast passive
1250  *	scanning
1251  * @tmpl_len: Template length
1252  * @tmpl: Template data for probe response
1253  */
1254 struct cfg80211_unsol_bcast_probe_resp {
1255 	u32 interval;
1256 	size_t tmpl_len;
1257 	const u8 *tmpl;
1258 };
1259 
1260 /**
1261  * struct cfg80211_ap_settings - AP configuration
1262  *
1263  * Used to configure an AP interface.
1264  *
1265  * @chandef: defines the channel to use
1266  * @beacon: beacon data
1267  * @beacon_interval: beacon interval
1268  * @dtim_period: DTIM period
1269  * @ssid: SSID to be used in the BSS (note: may be %NULL if not provided from
1270  *	user space)
1271  * @ssid_len: length of @ssid
1272  * @hidden_ssid: whether to hide the SSID in Beacon/Probe Response frames
1273  * @crypto: crypto settings
1274  * @privacy: the BSS uses privacy
1275  * @auth_type: Authentication type (algorithm)
1276  * @smps_mode: SMPS mode
1277  * @inactivity_timeout: time in seconds to determine station's inactivity.
1278  * @p2p_ctwindow: P2P CT Window
1279  * @p2p_opp_ps: P2P opportunistic PS
1280  * @acl: ACL configuration used by the drivers which has support for
1281  *	MAC address based access control
1282  * @pbss: If set, start as a PCP instead of AP. Relevant for DMG
1283  *	networks.
1284  * @beacon_rate: bitrate to be used for beacons
1285  * @ht_cap: HT capabilities (or %NULL if HT isn't enabled)
1286  * @vht_cap: VHT capabilities (or %NULL if VHT isn't enabled)
1287  * @he_cap: HE capabilities (or %NULL if HE isn't enabled)
1288  * @ht_required: stations must support HT
1289  * @vht_required: stations must support VHT
1290  * @twt_responder: Enable Target Wait Time
1291  * @he_required: stations must support HE
1292  * @sae_h2e_required: stations must support direct H2E technique in SAE
1293  * @flags: flags, as defined in enum cfg80211_ap_settings_flags
1294  * @he_obss_pd: OBSS Packet Detection settings
1295  * @he_bss_color: BSS Color settings
1296  * @he_oper: HE operation IE (or %NULL if HE isn't enabled)
1297  * @fils_discovery: FILS discovery transmission parameters
1298  * @unsol_bcast_probe_resp: Unsolicited broadcast probe response parameters
1299  * @mbssid_config: AP settings for multiple bssid
1300  */
1301 struct cfg80211_ap_settings {
1302 	struct cfg80211_chan_def chandef;
1303 
1304 	struct cfg80211_beacon_data beacon;
1305 
1306 	int beacon_interval, dtim_period;
1307 	const u8 *ssid;
1308 	size_t ssid_len;
1309 	enum nl80211_hidden_ssid hidden_ssid;
1310 	struct cfg80211_crypto_settings crypto;
1311 	bool privacy;
1312 	enum nl80211_auth_type auth_type;
1313 	enum nl80211_smps_mode smps_mode;
1314 	int inactivity_timeout;
1315 	u8 p2p_ctwindow;
1316 	bool p2p_opp_ps;
1317 	const struct cfg80211_acl_data *acl;
1318 	bool pbss;
1319 	struct cfg80211_bitrate_mask beacon_rate;
1320 
1321 	const struct ieee80211_ht_cap *ht_cap;
1322 	const struct ieee80211_vht_cap *vht_cap;
1323 	const struct ieee80211_he_cap_elem *he_cap;
1324 	const struct ieee80211_he_operation *he_oper;
1325 	bool ht_required, vht_required, he_required, sae_h2e_required;
1326 	bool twt_responder;
1327 	u32 flags;
1328 	struct ieee80211_he_obss_pd he_obss_pd;
1329 	struct cfg80211_he_bss_color he_bss_color;
1330 	struct cfg80211_fils_discovery fils_discovery;
1331 	struct cfg80211_unsol_bcast_probe_resp unsol_bcast_probe_resp;
1332 	struct cfg80211_mbssid_config mbssid_config;
1333 };
1334 
1335 /**
1336  * struct cfg80211_csa_settings - channel switch settings
1337  *
1338  * Used for channel switch
1339  *
1340  * @chandef: defines the channel to use after the switch
1341  * @beacon_csa: beacon data while performing the switch
1342  * @counter_offsets_beacon: offsets of the counters within the beacon (tail)
1343  * @counter_offsets_presp: offsets of the counters within the probe response
1344  * @n_counter_offsets_beacon: number of csa counters the beacon (tail)
1345  * @n_counter_offsets_presp: number of csa counters in the probe response
1346  * @beacon_after: beacon data to be used on the new channel
1347  * @radar_required: whether radar detection is required on the new channel
1348  * @block_tx: whether transmissions should be blocked while changing
1349  * @count: number of beacons until switch
1350  */
1351 struct cfg80211_csa_settings {
1352 	struct cfg80211_chan_def chandef;
1353 	struct cfg80211_beacon_data beacon_csa;
1354 	const u16 *counter_offsets_beacon;
1355 	const u16 *counter_offsets_presp;
1356 	unsigned int n_counter_offsets_beacon;
1357 	unsigned int n_counter_offsets_presp;
1358 	struct cfg80211_beacon_data beacon_after;
1359 	bool radar_required;
1360 	bool block_tx;
1361 	u8 count;
1362 };
1363 
1364 /**
1365  * struct cfg80211_color_change_settings - color change settings
1366  *
1367  * Used for bss color change
1368  *
1369  * @beacon_color_change: beacon data while performing the color countdown
1370  * @counter_offsets_beacon: offsets of the counters within the beacon (tail)
1371  * @counter_offsets_presp: offsets of the counters within the probe response
1372  * @beacon_next: beacon data to be used after the color change
1373  * @count: number of beacons until the color change
1374  * @color: the color used after the change
1375  */
1376 struct cfg80211_color_change_settings {
1377 	struct cfg80211_beacon_data beacon_color_change;
1378 	u16 counter_offset_beacon;
1379 	u16 counter_offset_presp;
1380 	struct cfg80211_beacon_data beacon_next;
1381 	u8 count;
1382 	u8 color;
1383 };
1384 
1385 /**
1386  * struct iface_combination_params - input parameters for interface combinations
1387  *
1388  * Used to pass interface combination parameters
1389  *
1390  * @num_different_channels: the number of different channels we want
1391  *	to use for verification
1392  * @radar_detect: a bitmap where each bit corresponds to a channel
1393  *	width where radar detection is needed, as in the definition of
1394  *	&struct ieee80211_iface_combination.@radar_detect_widths
1395  * @iftype_num: array with the number of interfaces of each interface
1396  *	type.  The index is the interface type as specified in &enum
1397  *	nl80211_iftype.
1398  * @new_beacon_int: set this to the beacon interval of a new interface
1399  *	that's not operating yet, if such is to be checked as part of
1400  *	the verification
1401  */
1402 struct iface_combination_params {
1403 	int num_different_channels;
1404 	u8 radar_detect;
1405 	int iftype_num[NUM_NL80211_IFTYPES];
1406 	u32 new_beacon_int;
1407 };
1408 
1409 /**
1410  * enum station_parameters_apply_mask - station parameter values to apply
1411  * @STATION_PARAM_APPLY_UAPSD: apply new uAPSD parameters (uapsd_queues, max_sp)
1412  * @STATION_PARAM_APPLY_CAPABILITY: apply new capability
1413  * @STATION_PARAM_APPLY_PLINK_STATE: apply new plink state
1414  *
1415  * Not all station parameters have in-band "no change" signalling,
1416  * for those that don't these flags will are used.
1417  */
1418 enum station_parameters_apply_mask {
1419 	STATION_PARAM_APPLY_UAPSD = BIT(0),
1420 	STATION_PARAM_APPLY_CAPABILITY = BIT(1),
1421 	STATION_PARAM_APPLY_PLINK_STATE = BIT(2),
1422 	STATION_PARAM_APPLY_STA_TXPOWER = BIT(3),
1423 };
1424 
1425 /**
1426  * struct sta_txpwr - station txpower configuration
1427  *
1428  * Used to configure txpower for station.
1429  *
1430  * @power: tx power (in dBm) to be used for sending data traffic. If tx power
1431  *	is not provided, the default per-interface tx power setting will be
1432  *	overriding. Driver should be picking up the lowest tx power, either tx
1433  *	power per-interface or per-station.
1434  * @type: In particular if TPC %type is NL80211_TX_POWER_LIMITED then tx power
1435  *	will be less than or equal to specified from userspace, whereas if TPC
1436  *	%type is NL80211_TX_POWER_AUTOMATIC then it indicates default tx power.
1437  *	NL80211_TX_POWER_FIXED is not a valid configuration option for
1438  *	per peer TPC.
1439  */
1440 struct sta_txpwr {
1441 	s16 power;
1442 	enum nl80211_tx_power_setting type;
1443 };
1444 
1445 /**
1446  * struct station_parameters - station parameters
1447  *
1448  * Used to change and create a new station.
1449  *
1450  * @vlan: vlan interface station should belong to
1451  * @supported_rates: supported rates in IEEE 802.11 format
1452  *	(or NULL for no change)
1453  * @supported_rates_len: number of supported rates
1454  * @sta_flags_mask: station flags that changed
1455  *	(bitmask of BIT(%NL80211_STA_FLAG_...))
1456  * @sta_flags_set: station flags values
1457  *	(bitmask of BIT(%NL80211_STA_FLAG_...))
1458  * @listen_interval: listen interval or -1 for no change
1459  * @aid: AID or zero for no change
1460  * @vlan_id: VLAN ID for station (if nonzero)
1461  * @peer_aid: mesh peer AID or zero for no change
1462  * @plink_action: plink action to take
1463  * @plink_state: set the peer link state for a station
1464  * @ht_capa: HT capabilities of station
1465  * @vht_capa: VHT capabilities of station
1466  * @uapsd_queues: bitmap of queues configured for uapsd. same format
1467  *	as the AC bitmap in the QoS info field
1468  * @max_sp: max Service Period. same format as the MAX_SP in the
1469  *	QoS info field (but already shifted down)
1470  * @sta_modify_mask: bitmap indicating which parameters changed
1471  *	(for those that don't have a natural "no change" value),
1472  *	see &enum station_parameters_apply_mask
1473  * @local_pm: local link-specific mesh power save mode (no change when set
1474  *	to unknown)
1475  * @capability: station capability
1476  * @ext_capab: extended capabilities of the station
1477  * @ext_capab_len: number of extended capabilities
1478  * @supported_channels: supported channels in IEEE 802.11 format
1479  * @supported_channels_len: number of supported channels
1480  * @supported_oper_classes: supported oper classes in IEEE 802.11 format
1481  * @supported_oper_classes_len: number of supported operating classes
1482  * @opmode_notif: operating mode field from Operating Mode Notification
1483  * @opmode_notif_used: information if operating mode field is used
1484  * @support_p2p_ps: information if station supports P2P PS mechanism
1485  * @he_capa: HE capabilities of station
1486  * @he_capa_len: the length of the HE capabilities
1487  * @airtime_weight: airtime scheduler weight for this station
1488  * @txpwr: transmit power for an associated station
1489  * @he_6ghz_capa: HE 6 GHz Band capabilities of station
1490  */
1491 struct station_parameters {
1492 	const u8 *supported_rates;
1493 	struct net_device *vlan;
1494 	u32 sta_flags_mask, sta_flags_set;
1495 	u32 sta_modify_mask;
1496 	int listen_interval;
1497 	u16 aid;
1498 	u16 vlan_id;
1499 	u16 peer_aid;
1500 	u8 supported_rates_len;
1501 	u8 plink_action;
1502 	u8 plink_state;
1503 	const struct ieee80211_ht_cap *ht_capa;
1504 	const struct ieee80211_vht_cap *vht_capa;
1505 	u8 uapsd_queues;
1506 	u8 max_sp;
1507 	enum nl80211_mesh_power_mode local_pm;
1508 	u16 capability;
1509 	const u8 *ext_capab;
1510 	u8 ext_capab_len;
1511 	const u8 *supported_channels;
1512 	u8 supported_channels_len;
1513 	const u8 *supported_oper_classes;
1514 	u8 supported_oper_classes_len;
1515 	u8 opmode_notif;
1516 	bool opmode_notif_used;
1517 	int support_p2p_ps;
1518 	const struct ieee80211_he_cap_elem *he_capa;
1519 	u8 he_capa_len;
1520 	u16 airtime_weight;
1521 	struct sta_txpwr txpwr;
1522 	const struct ieee80211_he_6ghz_capa *he_6ghz_capa;
1523 };
1524 
1525 /**
1526  * struct station_del_parameters - station deletion parameters
1527  *
1528  * Used to delete a station entry (or all stations).
1529  *
1530  * @mac: MAC address of the station to remove or NULL to remove all stations
1531  * @subtype: Management frame subtype to use for indicating removal
1532  *	(10 = Disassociation, 12 = Deauthentication)
1533  * @reason_code: Reason code for the Disassociation/Deauthentication frame
1534  */
1535 struct station_del_parameters {
1536 	const u8 *mac;
1537 	u8 subtype;
1538 	u16 reason_code;
1539 };
1540 
1541 /**
1542  * enum cfg80211_station_type - the type of station being modified
1543  * @CFG80211_STA_AP_CLIENT: client of an AP interface
1544  * @CFG80211_STA_AP_CLIENT_UNASSOC: client of an AP interface that is still
1545  *	unassociated (update properties for this type of client is permitted)
1546  * @CFG80211_STA_AP_MLME_CLIENT: client of an AP interface that has
1547  *	the AP MLME in the device
1548  * @CFG80211_STA_AP_STA: AP station on managed interface
1549  * @CFG80211_STA_IBSS: IBSS station
1550  * @CFG80211_STA_TDLS_PEER_SETUP: TDLS peer on managed interface (dummy entry
1551  *	while TDLS setup is in progress, it moves out of this state when
1552  *	being marked authorized; use this only if TDLS with external setup is
1553  *	supported/used)
1554  * @CFG80211_STA_TDLS_PEER_ACTIVE: TDLS peer on managed interface (active
1555  *	entry that is operating, has been marked authorized by userspace)
1556  * @CFG80211_STA_MESH_PEER_KERNEL: peer on mesh interface (kernel managed)
1557  * @CFG80211_STA_MESH_PEER_USER: peer on mesh interface (user managed)
1558  */
1559 enum cfg80211_station_type {
1560 	CFG80211_STA_AP_CLIENT,
1561 	CFG80211_STA_AP_CLIENT_UNASSOC,
1562 	CFG80211_STA_AP_MLME_CLIENT,
1563 	CFG80211_STA_AP_STA,
1564 	CFG80211_STA_IBSS,
1565 	CFG80211_STA_TDLS_PEER_SETUP,
1566 	CFG80211_STA_TDLS_PEER_ACTIVE,
1567 	CFG80211_STA_MESH_PEER_KERNEL,
1568 	CFG80211_STA_MESH_PEER_USER,
1569 };
1570 
1571 /**
1572  * cfg80211_check_station_change - validate parameter changes
1573  * @wiphy: the wiphy this operates on
1574  * @params: the new parameters for a station
1575  * @statype: the type of station being modified
1576  *
1577  * Utility function for the @change_station driver method. Call this function
1578  * with the appropriate station type looking up the station (and checking that
1579  * it exists). It will verify whether the station change is acceptable, and if
1580  * not will return an error code. Note that it may modify the parameters for
1581  * backward compatibility reasons, so don't use them before calling this.
1582  */
1583 int cfg80211_check_station_change(struct wiphy *wiphy,
1584 				  struct station_parameters *params,
1585 				  enum cfg80211_station_type statype);
1586 
1587 /**
1588  * enum rate_info_flags - bitrate info flags
1589  *
1590  * Used by the driver to indicate the specific rate transmission
1591  * type for 802.11n transmissions.
1592  *
1593  * @RATE_INFO_FLAGS_MCS: mcs field filled with HT MCS
1594  * @RATE_INFO_FLAGS_VHT_MCS: mcs field filled with VHT MCS
1595  * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
1596  * @RATE_INFO_FLAGS_DMG: 60GHz MCS
1597  * @RATE_INFO_FLAGS_HE_MCS: HE MCS information
1598  * @RATE_INFO_FLAGS_EDMG: 60GHz MCS in EDMG mode
1599  * @RATE_INFO_FLAGS_EXTENDED_SC_DMG: 60GHz extended SC MCS
1600  * @RATE_INFO_FLAGS_EHT_MCS: EHT MCS information
1601  */
1602 enum rate_info_flags {
1603 	RATE_INFO_FLAGS_MCS			= BIT(0),
1604 	RATE_INFO_FLAGS_VHT_MCS			= BIT(1),
1605 	RATE_INFO_FLAGS_SHORT_GI		= BIT(2),
1606 	RATE_INFO_FLAGS_DMG			= BIT(3),
1607 	RATE_INFO_FLAGS_HE_MCS			= BIT(4),
1608 	RATE_INFO_FLAGS_EDMG			= BIT(5),
1609 	RATE_INFO_FLAGS_EXTENDED_SC_DMG		= BIT(6),
1610 	RATE_INFO_FLAGS_EHT_MCS			= BIT(7),
1611 };
1612 
1613 /**
1614  * enum rate_info_bw - rate bandwidth information
1615  *
1616  * Used by the driver to indicate the rate bandwidth.
1617  *
1618  * @RATE_INFO_BW_5: 5 MHz bandwidth
1619  * @RATE_INFO_BW_10: 10 MHz bandwidth
1620  * @RATE_INFO_BW_20: 20 MHz bandwidth
1621  * @RATE_INFO_BW_40: 40 MHz bandwidth
1622  * @RATE_INFO_BW_80: 80 MHz bandwidth
1623  * @RATE_INFO_BW_160: 160 MHz bandwidth
1624  * @RATE_INFO_BW_HE_RU: bandwidth determined by HE RU allocation
1625  * @RATE_INFO_BW_320: 320 MHz bandwidth
1626  * @RATE_INFO_BW_EHT_RU: bandwidth determined by EHT RU allocation
1627  */
1628 enum rate_info_bw {
1629 	RATE_INFO_BW_20 = 0,
1630 	RATE_INFO_BW_5,
1631 	RATE_INFO_BW_10,
1632 	RATE_INFO_BW_40,
1633 	RATE_INFO_BW_80,
1634 	RATE_INFO_BW_160,
1635 	RATE_INFO_BW_HE_RU,
1636 	RATE_INFO_BW_320,
1637 	RATE_INFO_BW_EHT_RU,
1638 };
1639 
1640 /**
1641  * struct rate_info - bitrate information
1642  *
1643  * Information about a receiving or transmitting bitrate
1644  *
1645  * @flags: bitflag of flags from &enum rate_info_flags
1646  * @mcs: mcs index if struct describes an HT/VHT/HE rate
1647  * @legacy: bitrate in 100kbit/s for 802.11abg
1648  * @nss: number of streams (VHT & HE only)
1649  * @bw: bandwidth (from &enum rate_info_bw)
1650  * @he_gi: HE guard interval (from &enum nl80211_he_gi)
1651  * @he_dcm: HE DCM value
1652  * @he_ru_alloc: HE RU allocation (from &enum nl80211_he_ru_alloc,
1653  *	only valid if bw is %RATE_INFO_BW_HE_RU)
1654  * @n_bonded_ch: In case of EDMG the number of bonded channels (1-4)
1655  * @eht_gi: EHT guard interval (from &enum nl80211_eht_gi)
1656  * @eht_ru_alloc: EHT RU allocation (from &enum nl80211_eht_ru_alloc,
1657  *	only valid if bw is %RATE_INFO_BW_EHT_RU)
1658  */
1659 struct rate_info {
1660 	u8 flags;
1661 	u8 mcs;
1662 	u16 legacy;
1663 	u8 nss;
1664 	u8 bw;
1665 	u8 he_gi;
1666 	u8 he_dcm;
1667 	u8 he_ru_alloc;
1668 	u8 n_bonded_ch;
1669 	u8 eht_gi;
1670 	u8 eht_ru_alloc;
1671 };
1672 
1673 /**
1674  * enum bss_param_flags - bitrate info flags
1675  *
1676  * Used by the driver to indicate the specific rate transmission
1677  * type for 802.11n transmissions.
1678  *
1679  * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
1680  * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
1681  * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
1682  */
1683 enum bss_param_flags {
1684 	BSS_PARAM_FLAGS_CTS_PROT	= 1<<0,
1685 	BSS_PARAM_FLAGS_SHORT_PREAMBLE	= 1<<1,
1686 	BSS_PARAM_FLAGS_SHORT_SLOT_TIME	= 1<<2,
1687 };
1688 
1689 /**
1690  * struct sta_bss_parameters - BSS parameters for the attached station
1691  *
1692  * Information about the currently associated BSS
1693  *
1694  * @flags: bitflag of flags from &enum bss_param_flags
1695  * @dtim_period: DTIM period for the BSS
1696  * @beacon_interval: beacon interval
1697  */
1698 struct sta_bss_parameters {
1699 	u8 flags;
1700 	u8 dtim_period;
1701 	u16 beacon_interval;
1702 };
1703 
1704 /**
1705  * struct cfg80211_txq_stats - TXQ statistics for this TID
1706  * @filled: bitmap of flags using the bits of &enum nl80211_txq_stats to
1707  *	indicate the relevant values in this struct are filled
1708  * @backlog_bytes: total number of bytes currently backlogged
1709  * @backlog_packets: total number of packets currently backlogged
1710  * @flows: number of new flows seen
1711  * @drops: total number of packets dropped
1712  * @ecn_marks: total number of packets marked with ECN CE
1713  * @overlimit: number of drops due to queue space overflow
1714  * @overmemory: number of drops due to memory limit overflow
1715  * @collisions: number of hash collisions
1716  * @tx_bytes: total number of bytes dequeued
1717  * @tx_packets: total number of packets dequeued
1718  * @max_flows: maximum number of flows supported
1719  */
1720 struct cfg80211_txq_stats {
1721 	u32 filled;
1722 	u32 backlog_bytes;
1723 	u32 backlog_packets;
1724 	u32 flows;
1725 	u32 drops;
1726 	u32 ecn_marks;
1727 	u32 overlimit;
1728 	u32 overmemory;
1729 	u32 collisions;
1730 	u32 tx_bytes;
1731 	u32 tx_packets;
1732 	u32 max_flows;
1733 };
1734 
1735 /**
1736  * struct cfg80211_tid_stats - per-TID statistics
1737  * @filled: bitmap of flags using the bits of &enum nl80211_tid_stats to
1738  *	indicate the relevant values in this struct are filled
1739  * @rx_msdu: number of received MSDUs
1740  * @tx_msdu: number of (attempted) transmitted MSDUs
1741  * @tx_msdu_retries: number of retries (not counting the first) for
1742  *	transmitted MSDUs
1743  * @tx_msdu_failed: number of failed transmitted MSDUs
1744  * @txq_stats: TXQ statistics
1745  */
1746 struct cfg80211_tid_stats {
1747 	u32 filled;
1748 	u64 rx_msdu;
1749 	u64 tx_msdu;
1750 	u64 tx_msdu_retries;
1751 	u64 tx_msdu_failed;
1752 	struct cfg80211_txq_stats txq_stats;
1753 };
1754 
1755 #define IEEE80211_MAX_CHAINS	4
1756 
1757 /**
1758  * struct station_info - station information
1759  *
1760  * Station information filled by driver for get_station() and dump_station.
1761  *
1762  * @filled: bitflag of flags using the bits of &enum nl80211_sta_info to
1763  *	indicate the relevant values in this struct for them
1764  * @connected_time: time(in secs) since a station is last connected
1765  * @inactive_time: time since last station activity (tx/rx) in milliseconds
1766  * @assoc_at: bootime (ns) of the last association
1767  * @rx_bytes: bytes (size of MPDUs) received from this station
1768  * @tx_bytes: bytes (size of MPDUs) transmitted to this station
1769  * @llid: mesh local link id
1770  * @plid: mesh peer link id
1771  * @plink_state: mesh peer link state
1772  * @signal: The signal strength, type depends on the wiphy's signal_type.
1773  *	For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
1774  * @signal_avg: Average signal strength, type depends on the wiphy's signal_type.
1775  *	For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
1776  * @chains: bitmask for filled values in @chain_signal, @chain_signal_avg
1777  * @chain_signal: per-chain signal strength of last received packet in dBm
1778  * @chain_signal_avg: per-chain signal strength average in dBm
1779  * @txrate: current unicast bitrate from this station
1780  * @rxrate: current unicast bitrate to this station
1781  * @rx_packets: packets (MSDUs & MMPDUs) received from this station
1782  * @tx_packets: packets (MSDUs & MMPDUs) transmitted to this station
1783  * @tx_retries: cumulative retry counts (MPDUs)
1784  * @tx_failed: number of failed transmissions (MPDUs) (retries exceeded, no ACK)
1785  * @rx_dropped_misc:  Dropped for un-specified reason.
1786  * @bss_param: current BSS parameters
1787  * @generation: generation number for nl80211 dumps.
1788  *	This number should increase every time the list of stations
1789  *	changes, i.e. when a station is added or removed, so that
1790  *	userspace can tell whether it got a consistent snapshot.
1791  * @assoc_req_ies: IEs from (Re)Association Request.
1792  *	This is used only when in AP mode with drivers that do not use
1793  *	user space MLME/SME implementation. The information is provided for
1794  *	the cfg80211_new_sta() calls to notify user space of the IEs.
1795  * @assoc_req_ies_len: Length of assoc_req_ies buffer in octets.
1796  * @sta_flags: station flags mask & values
1797  * @beacon_loss_count: Number of times beacon loss event has triggered.
1798  * @t_offset: Time offset of the station relative to this host.
1799  * @local_pm: local mesh STA power save mode
1800  * @peer_pm: peer mesh STA power save mode
1801  * @nonpeer_pm: non-peer mesh STA power save mode
1802  * @expected_throughput: expected throughput in kbps (including 802.11 headers)
1803  *	towards this station.
1804  * @rx_beacon: number of beacons received from this peer
1805  * @rx_beacon_signal_avg: signal strength average (in dBm) for beacons received
1806  *	from this peer
1807  * @connected_to_gate: true if mesh STA has a path to mesh gate
1808  * @rx_duration: aggregate PPDU duration(usecs) for all the frames from a peer
1809  * @tx_duration: aggregate PPDU duration(usecs) for all the frames to a peer
1810  * @airtime_weight: current airtime scheduling weight
1811  * @pertid: per-TID statistics, see &struct cfg80211_tid_stats, using the last
1812  *	(IEEE80211_NUM_TIDS) index for MSDUs not encapsulated in QoS-MPDUs.
1813  *	Note that this doesn't use the @filled bit, but is used if non-NULL.
1814  * @ack_signal: signal strength (in dBm) of the last ACK frame.
1815  * @avg_ack_signal: average rssi value of ack packet for the no of msdu's has
1816  *	been sent.
1817  * @rx_mpdu_count: number of MPDUs received from this station
1818  * @fcs_err_count: number of packets (MPDUs) received from this station with
1819  *	an FCS error. This counter should be incremented only when TA of the
1820  *	received packet with an FCS error matches the peer MAC address.
1821  * @airtime_link_metric: mesh airtime link metric.
1822  * @connected_to_as: true if mesh STA has a path to authentication server
1823  */
1824 struct station_info {
1825 	u64 filled;
1826 	u32 connected_time;
1827 	u32 inactive_time;
1828 	u64 assoc_at;
1829 	u64 rx_bytes;
1830 	u64 tx_bytes;
1831 	u16 llid;
1832 	u16 plid;
1833 	u8 plink_state;
1834 	s8 signal;
1835 	s8 signal_avg;
1836 
1837 	u8 chains;
1838 	s8 chain_signal[IEEE80211_MAX_CHAINS];
1839 	s8 chain_signal_avg[IEEE80211_MAX_CHAINS];
1840 
1841 	struct rate_info txrate;
1842 	struct rate_info rxrate;
1843 	u32 rx_packets;
1844 	u32 tx_packets;
1845 	u32 tx_retries;
1846 	u32 tx_failed;
1847 	u32 rx_dropped_misc;
1848 	struct sta_bss_parameters bss_param;
1849 	struct nl80211_sta_flag_update sta_flags;
1850 
1851 	int generation;
1852 
1853 	const u8 *assoc_req_ies;
1854 	size_t assoc_req_ies_len;
1855 
1856 	u32 beacon_loss_count;
1857 	s64 t_offset;
1858 	enum nl80211_mesh_power_mode local_pm;
1859 	enum nl80211_mesh_power_mode peer_pm;
1860 	enum nl80211_mesh_power_mode nonpeer_pm;
1861 
1862 	u32 expected_throughput;
1863 
1864 	u64 tx_duration;
1865 	u64 rx_duration;
1866 	u64 rx_beacon;
1867 	u8 rx_beacon_signal_avg;
1868 	u8 connected_to_gate;
1869 
1870 	struct cfg80211_tid_stats *pertid;
1871 	s8 ack_signal;
1872 	s8 avg_ack_signal;
1873 
1874 	u16 airtime_weight;
1875 
1876 	u32 rx_mpdu_count;
1877 	u32 fcs_err_count;
1878 
1879 	u32 airtime_link_metric;
1880 
1881 	u8 connected_to_as;
1882 };
1883 
1884 /**
1885  * struct cfg80211_sar_sub_specs - sub specs limit
1886  * @power: power limitation in 0.25dbm
1887  * @freq_range_index: index the power limitation applies to
1888  */
1889 struct cfg80211_sar_sub_specs {
1890 	s32 power;
1891 	u32 freq_range_index;
1892 };
1893 
1894 /**
1895  * struct cfg80211_sar_specs - sar limit specs
1896  * @type: it's set with power in 0.25dbm or other types
1897  * @num_sub_specs: number of sar sub specs
1898  * @sub_specs: memory to hold the sar sub specs
1899  */
1900 struct cfg80211_sar_specs {
1901 	enum nl80211_sar_type type;
1902 	u32 num_sub_specs;
1903 	struct cfg80211_sar_sub_specs sub_specs[];
1904 };
1905 
1906 
1907 /**
1908  * struct cfg80211_sar_freq_ranges - sar frequency ranges
1909  * @start_freq:  start range edge frequency
1910  * @end_freq:    end range edge frequency
1911  */
1912 struct cfg80211_sar_freq_ranges {
1913 	u32 start_freq;
1914 	u32 end_freq;
1915 };
1916 
1917 /**
1918  * struct cfg80211_sar_capa - sar limit capability
1919  * @type: it's set via power in 0.25dbm or other types
1920  * @num_freq_ranges: number of frequency ranges
1921  * @freq_ranges: memory to hold the freq ranges.
1922  *
1923  * Note: WLAN driver may append new ranges or split an existing
1924  * range to small ones and then append them.
1925  */
1926 struct cfg80211_sar_capa {
1927 	enum nl80211_sar_type type;
1928 	u32 num_freq_ranges;
1929 	const struct cfg80211_sar_freq_ranges *freq_ranges;
1930 };
1931 
1932 #if IS_ENABLED(CONFIG_CFG80211)
1933 /**
1934  * cfg80211_get_station - retrieve information about a given station
1935  * @dev: the device where the station is supposed to be connected to
1936  * @mac_addr: the mac address of the station of interest
1937  * @sinfo: pointer to the structure to fill with the information
1938  *
1939  * Returns 0 on success and sinfo is filled with the available information
1940  * otherwise returns a negative error code and the content of sinfo has to be
1941  * considered undefined.
1942  */
1943 int cfg80211_get_station(struct net_device *dev, const u8 *mac_addr,
1944 			 struct station_info *sinfo);
1945 #else
1946 static inline int cfg80211_get_station(struct net_device *dev,
1947 				       const u8 *mac_addr,
1948 				       struct station_info *sinfo)
1949 {
1950 	return -ENOENT;
1951 }
1952 #endif
1953 
1954 /**
1955  * enum monitor_flags - monitor flags
1956  *
1957  * Monitor interface configuration flags. Note that these must be the bits
1958  * according to the nl80211 flags.
1959  *
1960  * @MONITOR_FLAG_CHANGED: set if the flags were changed
1961  * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
1962  * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
1963  * @MONITOR_FLAG_CONTROL: pass control frames
1964  * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
1965  * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
1966  * @MONITOR_FLAG_ACTIVE: active monitor, ACKs frames on its MAC address
1967  */
1968 enum monitor_flags {
1969 	MONITOR_FLAG_CHANGED		= 1<<__NL80211_MNTR_FLAG_INVALID,
1970 	MONITOR_FLAG_FCSFAIL		= 1<<NL80211_MNTR_FLAG_FCSFAIL,
1971 	MONITOR_FLAG_PLCPFAIL		= 1<<NL80211_MNTR_FLAG_PLCPFAIL,
1972 	MONITOR_FLAG_CONTROL		= 1<<NL80211_MNTR_FLAG_CONTROL,
1973 	MONITOR_FLAG_OTHER_BSS		= 1<<NL80211_MNTR_FLAG_OTHER_BSS,
1974 	MONITOR_FLAG_COOK_FRAMES	= 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
1975 	MONITOR_FLAG_ACTIVE		= 1<<NL80211_MNTR_FLAG_ACTIVE,
1976 };
1977 
1978 /**
1979  * enum mpath_info_flags -  mesh path information flags
1980  *
1981  * Used by the driver to indicate which info in &struct mpath_info it has filled
1982  * in during get_station() or dump_station().
1983  *
1984  * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
1985  * @MPATH_INFO_SN: @sn filled
1986  * @MPATH_INFO_METRIC: @metric filled
1987  * @MPATH_INFO_EXPTIME: @exptime filled
1988  * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
1989  * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
1990  * @MPATH_INFO_FLAGS: @flags filled
1991  * @MPATH_INFO_HOP_COUNT: @hop_count filled
1992  * @MPATH_INFO_PATH_CHANGE: @path_change_count filled
1993  */
1994 enum mpath_info_flags {
1995 	MPATH_INFO_FRAME_QLEN		= BIT(0),
1996 	MPATH_INFO_SN			= BIT(1),
1997 	MPATH_INFO_METRIC		= BIT(2),
1998 	MPATH_INFO_EXPTIME		= BIT(3),
1999 	MPATH_INFO_DISCOVERY_TIMEOUT	= BIT(4),
2000 	MPATH_INFO_DISCOVERY_RETRIES	= BIT(5),
2001 	MPATH_INFO_FLAGS		= BIT(6),
2002 	MPATH_INFO_HOP_COUNT		= BIT(7),
2003 	MPATH_INFO_PATH_CHANGE		= BIT(8),
2004 };
2005 
2006 /**
2007  * struct mpath_info - mesh path information
2008  *
2009  * Mesh path information filled by driver for get_mpath() and dump_mpath().
2010  *
2011  * @filled: bitfield of flags from &enum mpath_info_flags
2012  * @frame_qlen: number of queued frames for this destination
2013  * @sn: target sequence number
2014  * @metric: metric (cost) of this mesh path
2015  * @exptime: expiration time for the mesh path from now, in msecs
2016  * @flags: mesh path flags
2017  * @discovery_timeout: total mesh path discovery timeout, in msecs
2018  * @discovery_retries: mesh path discovery retries
2019  * @generation: generation number for nl80211 dumps.
2020  *	This number should increase every time the list of mesh paths
2021  *	changes, i.e. when a station is added or removed, so that
2022  *	userspace can tell whether it got a consistent snapshot.
2023  * @hop_count: hops to destination
2024  * @path_change_count: total number of path changes to destination
2025  */
2026 struct mpath_info {
2027 	u32 filled;
2028 	u32 frame_qlen;
2029 	u32 sn;
2030 	u32 metric;
2031 	u32 exptime;
2032 	u32 discovery_timeout;
2033 	u8 discovery_retries;
2034 	u8 flags;
2035 	u8 hop_count;
2036 	u32 path_change_count;
2037 
2038 	int generation;
2039 };
2040 
2041 /**
2042  * struct bss_parameters - BSS parameters
2043  *
2044  * Used to change BSS parameters (mainly for AP mode).
2045  *
2046  * @use_cts_prot: Whether to use CTS protection
2047  *	(0 = no, 1 = yes, -1 = do not change)
2048  * @use_short_preamble: Whether the use of short preambles is allowed
2049  *	(0 = no, 1 = yes, -1 = do not change)
2050  * @use_short_slot_time: Whether the use of short slot time is allowed
2051  *	(0 = no, 1 = yes, -1 = do not change)
2052  * @basic_rates: basic rates in IEEE 802.11 format
2053  *	(or NULL for no change)
2054  * @basic_rates_len: number of basic rates
2055  * @ap_isolate: do not forward packets between connected stations
2056  *	(0 = no, 1 = yes, -1 = do not change)
2057  * @ht_opmode: HT Operation mode
2058  *	(u16 = opmode, -1 = do not change)
2059  * @p2p_ctwindow: P2P CT Window (-1 = no change)
2060  * @p2p_opp_ps: P2P opportunistic PS (-1 = no change)
2061  */
2062 struct bss_parameters {
2063 	int use_cts_prot;
2064 	int use_short_preamble;
2065 	int use_short_slot_time;
2066 	const u8 *basic_rates;
2067 	u8 basic_rates_len;
2068 	int ap_isolate;
2069 	int ht_opmode;
2070 	s8 p2p_ctwindow, p2p_opp_ps;
2071 };
2072 
2073 /**
2074  * struct mesh_config - 802.11s mesh configuration
2075  *
2076  * These parameters can be changed while the mesh is active.
2077  *
2078  * @dot11MeshRetryTimeout: the initial retry timeout in millisecond units used
2079  *	by the Mesh Peering Open message
2080  * @dot11MeshConfirmTimeout: the initial retry timeout in millisecond units
2081  *	used by the Mesh Peering Open message
2082  * @dot11MeshHoldingTimeout: the confirm timeout in millisecond units used by
2083  *	the mesh peering management to close a mesh peering
2084  * @dot11MeshMaxPeerLinks: the maximum number of peer links allowed on this
2085  *	mesh interface
2086  * @dot11MeshMaxRetries: the maximum number of peer link open retries that can
2087  *	be sent to establish a new peer link instance in a mesh
2088  * @dot11MeshTTL: the value of TTL field set at a source mesh STA
2089  * @element_ttl: the value of TTL field set at a mesh STA for path selection
2090  *	elements
2091  * @auto_open_plinks: whether we should automatically open peer links when we
2092  *	detect compatible mesh peers
2093  * @dot11MeshNbrOffsetMaxNeighbor: the maximum number of neighbors to
2094  *	synchronize to for 11s default synchronization method
2095  * @dot11MeshHWMPmaxPREQretries: the number of action frames containing a PREQ
2096  *	that an originator mesh STA can send to a particular path target
2097  * @path_refresh_time: how frequently to refresh mesh paths in milliseconds
2098  * @min_discovery_timeout: the minimum length of time to wait until giving up on
2099  *	a path discovery in milliseconds
2100  * @dot11MeshHWMPactivePathTimeout: the time (in TUs) for which mesh STAs
2101  *	receiving a PREQ shall consider the forwarding information from the
2102  *	root to be valid. (TU = time unit)
2103  * @dot11MeshHWMPpreqMinInterval: the minimum interval of time (in TUs) during
2104  *	which a mesh STA can send only one action frame containing a PREQ
2105  *	element
2106  * @dot11MeshHWMPperrMinInterval: the minimum interval of time (in TUs) during
2107  *	which a mesh STA can send only one Action frame containing a PERR
2108  *	element
2109  * @dot11MeshHWMPnetDiameterTraversalTime: the interval of time (in TUs) that
2110  *	it takes for an HWMP information element to propagate across the mesh
2111  * @dot11MeshHWMPRootMode: the configuration of a mesh STA as root mesh STA
2112  * @dot11MeshHWMPRannInterval: the interval of time (in TUs) between root
2113  *	announcements are transmitted
2114  * @dot11MeshGateAnnouncementProtocol: whether to advertise that this mesh
2115  *	station has access to a broader network beyond the MBSS. (This is
2116  *	missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol set to true
2117  *	only means that the station will announce others it's a mesh gate, but
2118  *	not necessarily using the gate announcement protocol. Still keeping the
2119  *	same nomenclature to be in sync with the spec)
2120  * @dot11MeshForwarding: whether the Mesh STA is forwarding or non-forwarding
2121  *	entity (default is TRUE - forwarding entity)
2122  * @rssi_threshold: the threshold for average signal strength of candidate
2123  *	station to establish a peer link
2124  * @ht_opmode: mesh HT protection mode
2125  *
2126  * @dot11MeshHWMPactivePathToRootTimeout: The time (in TUs) for which mesh STAs
2127  *	receiving a proactive PREQ shall consider the forwarding information to
2128  *	the root mesh STA to be valid.
2129  *
2130  * @dot11MeshHWMProotInterval: The interval of time (in TUs) between proactive
2131  *	PREQs are transmitted.
2132  * @dot11MeshHWMPconfirmationInterval: The minimum interval of time (in TUs)
2133  *	during which a mesh STA can send only one Action frame containing
2134  *	a PREQ element for root path confirmation.
2135  * @power_mode: The default mesh power save mode which will be the initial
2136  *	setting for new peer links.
2137  * @dot11MeshAwakeWindowDuration: The duration in TUs the STA will remain awake
2138  *	after transmitting its beacon.
2139  * @plink_timeout: If no tx activity is seen from a STA we've established
2140  *	peering with for longer than this time (in seconds), then remove it
2141  *	from the STA's list of peers.  Default is 30 minutes.
2142  * @dot11MeshConnectedToMeshGate: if set to true, advertise that this STA is
2143  *      connected to a mesh gate in mesh formation info.  If false, the
2144  *      value in mesh formation is determined by the presence of root paths
2145  *      in the mesh path table
2146  * @dot11MeshNolearn: Try to avoid multi-hop path discovery (e.g. PREQ/PREP
2147  *      for HWMP) if the destination is a direct neighbor. Note that this might
2148  *      not be the optimal decision as a multi-hop route might be better. So
2149  *      if using this setting you will likely also want to disable
2150  *      dot11MeshForwarding and use another mesh routing protocol on top.
2151  */
2152 struct mesh_config {
2153 	u16 dot11MeshRetryTimeout;
2154 	u16 dot11MeshConfirmTimeout;
2155 	u16 dot11MeshHoldingTimeout;
2156 	u16 dot11MeshMaxPeerLinks;
2157 	u8 dot11MeshMaxRetries;
2158 	u8 dot11MeshTTL;
2159 	u8 element_ttl;
2160 	bool auto_open_plinks;
2161 	u32 dot11MeshNbrOffsetMaxNeighbor;
2162 	u8 dot11MeshHWMPmaxPREQretries;
2163 	u32 path_refresh_time;
2164 	u16 min_discovery_timeout;
2165 	u32 dot11MeshHWMPactivePathTimeout;
2166 	u16 dot11MeshHWMPpreqMinInterval;
2167 	u16 dot11MeshHWMPperrMinInterval;
2168 	u16 dot11MeshHWMPnetDiameterTraversalTime;
2169 	u8 dot11MeshHWMPRootMode;
2170 	bool dot11MeshConnectedToMeshGate;
2171 	bool dot11MeshConnectedToAuthServer;
2172 	u16 dot11MeshHWMPRannInterval;
2173 	bool dot11MeshGateAnnouncementProtocol;
2174 	bool dot11MeshForwarding;
2175 	s32 rssi_threshold;
2176 	u16 ht_opmode;
2177 	u32 dot11MeshHWMPactivePathToRootTimeout;
2178 	u16 dot11MeshHWMProotInterval;
2179 	u16 dot11MeshHWMPconfirmationInterval;
2180 	enum nl80211_mesh_power_mode power_mode;
2181 	u16 dot11MeshAwakeWindowDuration;
2182 	u32 plink_timeout;
2183 	bool dot11MeshNolearn;
2184 };
2185 
2186 /**
2187  * struct mesh_setup - 802.11s mesh setup configuration
2188  * @chandef: defines the channel to use
2189  * @mesh_id: the mesh ID
2190  * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
2191  * @sync_method: which synchronization method to use
2192  * @path_sel_proto: which path selection protocol to use
2193  * @path_metric: which metric to use
2194  * @auth_id: which authentication method this mesh is using
2195  * @ie: vendor information elements (optional)
2196  * @ie_len: length of vendor information elements
2197  * @is_authenticated: this mesh requires authentication
2198  * @is_secure: this mesh uses security
2199  * @user_mpm: userspace handles all MPM functions
2200  * @dtim_period: DTIM period to use
2201  * @beacon_interval: beacon interval to use
2202  * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a]
2203  * @basic_rates: basic rates to use when creating the mesh
2204  * @beacon_rate: bitrate to be used for beacons
2205  * @userspace_handles_dfs: whether user space controls DFS operation, i.e.
2206  *	changes the channel when a radar is detected. This is required
2207  *	to operate on DFS channels.
2208  * @control_port_over_nl80211: TRUE if userspace expects to exchange control
2209  *	port frames over NL80211 instead of the network interface.
2210  *
2211  * These parameters are fixed when the mesh is created.
2212  */
2213 struct mesh_setup {
2214 	struct cfg80211_chan_def chandef;
2215 	const u8 *mesh_id;
2216 	u8 mesh_id_len;
2217 	u8 sync_method;
2218 	u8 path_sel_proto;
2219 	u8 path_metric;
2220 	u8 auth_id;
2221 	const u8 *ie;
2222 	u8 ie_len;
2223 	bool is_authenticated;
2224 	bool is_secure;
2225 	bool user_mpm;
2226 	u8 dtim_period;
2227 	u16 beacon_interval;
2228 	int mcast_rate[NUM_NL80211_BANDS];
2229 	u32 basic_rates;
2230 	struct cfg80211_bitrate_mask beacon_rate;
2231 	bool userspace_handles_dfs;
2232 	bool control_port_over_nl80211;
2233 };
2234 
2235 /**
2236  * struct ocb_setup - 802.11p OCB mode setup configuration
2237  * @chandef: defines the channel to use
2238  *
2239  * These parameters are fixed when connecting to the network
2240  */
2241 struct ocb_setup {
2242 	struct cfg80211_chan_def chandef;
2243 };
2244 
2245 /**
2246  * struct ieee80211_txq_params - TX queue parameters
2247  * @ac: AC identifier
2248  * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
2249  * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
2250  *	1..32767]
2251  * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
2252  *	1..32767]
2253  * @aifs: Arbitration interframe space [0..255]
2254  */
2255 struct ieee80211_txq_params {
2256 	enum nl80211_ac ac;
2257 	u16 txop;
2258 	u16 cwmin;
2259 	u16 cwmax;
2260 	u8 aifs;
2261 };
2262 
2263 /**
2264  * DOC: Scanning and BSS list handling
2265  *
2266  * The scanning process itself is fairly simple, but cfg80211 offers quite
2267  * a bit of helper functionality. To start a scan, the scan operation will
2268  * be invoked with a scan definition. This scan definition contains the
2269  * channels to scan, and the SSIDs to send probe requests for (including the
2270  * wildcard, if desired). A passive scan is indicated by having no SSIDs to
2271  * probe. Additionally, a scan request may contain extra information elements
2272  * that should be added to the probe request. The IEs are guaranteed to be
2273  * well-formed, and will not exceed the maximum length the driver advertised
2274  * in the wiphy structure.
2275  *
2276  * When scanning finds a BSS, cfg80211 needs to be notified of that, because
2277  * it is responsible for maintaining the BSS list; the driver should not
2278  * maintain a list itself. For this notification, various functions exist.
2279  *
2280  * Since drivers do not maintain a BSS list, there are also a number of
2281  * functions to search for a BSS and obtain information about it from the
2282  * BSS structure cfg80211 maintains. The BSS list is also made available
2283  * to userspace.
2284  */
2285 
2286 /**
2287  * struct cfg80211_ssid - SSID description
2288  * @ssid: the SSID
2289  * @ssid_len: length of the ssid
2290  */
2291 struct cfg80211_ssid {
2292 	u8 ssid[IEEE80211_MAX_SSID_LEN];
2293 	u8 ssid_len;
2294 };
2295 
2296 /**
2297  * struct cfg80211_scan_info - information about completed scan
2298  * @scan_start_tsf: scan start time in terms of the TSF of the BSS that the
2299  *	wireless device that requested the scan is connected to. If this
2300  *	information is not available, this field is left zero.
2301  * @tsf_bssid: the BSSID according to which %scan_start_tsf is set.
2302  * @aborted: set to true if the scan was aborted for any reason,
2303  *	userspace will be notified of that
2304  */
2305 struct cfg80211_scan_info {
2306 	u64 scan_start_tsf;
2307 	u8 tsf_bssid[ETH_ALEN] __aligned(2);
2308 	bool aborted;
2309 };
2310 
2311 /**
2312  * struct cfg80211_scan_6ghz_params - relevant for 6 GHz only
2313  *
2314  * @short_bssid: short ssid to scan for
2315  * @bssid: bssid to scan for
2316  * @channel_idx: idx of the channel in the channel array in the scan request
2317  *	 which the above info relvant to
2318  * @unsolicited_probe: the AP transmits unsolicited probe response every 20 TU
2319  * @short_ssid_valid: short_ssid is valid and can be used
2320  * @psc_no_listen: when set, and the channel is a PSC channel, no need to wait
2321  *       20 TUs before starting to send probe requests.
2322  */
2323 struct cfg80211_scan_6ghz_params {
2324 	u32 short_ssid;
2325 	u32 channel_idx;
2326 	u8 bssid[ETH_ALEN];
2327 	bool unsolicited_probe;
2328 	bool short_ssid_valid;
2329 	bool psc_no_listen;
2330 };
2331 
2332 /**
2333  * struct cfg80211_scan_request - scan request description
2334  *
2335  * @ssids: SSIDs to scan for (active scan only)
2336  * @n_ssids: number of SSIDs
2337  * @channels: channels to scan on.
2338  * @n_channels: total number of channels to scan
2339  * @scan_width: channel width for scanning
2340  * @ie: optional information element(s) to add into Probe Request or %NULL
2341  * @ie_len: length of ie in octets
2342  * @duration: how long to listen on each channel, in TUs. If
2343  *	%duration_mandatory is not set, this is the maximum dwell time and
2344  *	the actual dwell time may be shorter.
2345  * @duration_mandatory: if set, the scan duration must be as specified by the
2346  *	%duration field.
2347  * @flags: bit field of flags controlling operation
2348  * @rates: bitmap of rates to advertise for each band
2349  * @wiphy: the wiphy this was for
2350  * @scan_start: time (in jiffies) when the scan started
2351  * @wdev: the wireless device to scan for
2352  * @info: (internal) information about completed scan
2353  * @notified: (internal) scan request was notified as done or aborted
2354  * @no_cck: used to send probe requests at non CCK rate in 2GHz band
2355  * @mac_addr: MAC address used with randomisation
2356  * @mac_addr_mask: MAC address mask used with randomisation, bits that
2357  *	are 0 in the mask should be randomised, bits that are 1 should
2358  *	be taken from the @mac_addr
2359  * @scan_6ghz: relevant for split scan request only,
2360  *	true if this is the second scan request
2361  * @n_6ghz_params: number of 6 GHz params
2362  * @scan_6ghz_params: 6 GHz params
2363  * @bssid: BSSID to scan for (most commonly, the wildcard BSSID)
2364  */
2365 struct cfg80211_scan_request {
2366 	struct cfg80211_ssid *ssids;
2367 	int n_ssids;
2368 	u32 n_channels;
2369 	enum nl80211_bss_scan_width scan_width;
2370 	const u8 *ie;
2371 	size_t ie_len;
2372 	u16 duration;
2373 	bool duration_mandatory;
2374 	u32 flags;
2375 
2376 	u32 rates[NUM_NL80211_BANDS];
2377 
2378 	struct wireless_dev *wdev;
2379 
2380 	u8 mac_addr[ETH_ALEN] __aligned(2);
2381 	u8 mac_addr_mask[ETH_ALEN] __aligned(2);
2382 	u8 bssid[ETH_ALEN] __aligned(2);
2383 
2384 	/* internal */
2385 	struct wiphy *wiphy;
2386 	unsigned long scan_start;
2387 	struct cfg80211_scan_info info;
2388 	bool notified;
2389 	bool no_cck;
2390 	bool scan_6ghz;
2391 	u32 n_6ghz_params;
2392 	struct cfg80211_scan_6ghz_params *scan_6ghz_params;
2393 
2394 	/* keep last */
2395 	struct ieee80211_channel *channels[];
2396 };
2397 
2398 static inline void get_random_mask_addr(u8 *buf, const u8 *addr, const u8 *mask)
2399 {
2400 	int i;
2401 
2402 	get_random_bytes(buf, ETH_ALEN);
2403 	for (i = 0; i < ETH_ALEN; i++) {
2404 		buf[i] &= ~mask[i];
2405 		buf[i] |= addr[i] & mask[i];
2406 	}
2407 }
2408 
2409 /**
2410  * struct cfg80211_match_set - sets of attributes to match
2411  *
2412  * @ssid: SSID to be matched; may be zero-length in case of BSSID match
2413  *	or no match (RSSI only)
2414  * @bssid: BSSID to be matched; may be all-zero BSSID in case of SSID match
2415  *	or no match (RSSI only)
2416  * @rssi_thold: don't report scan results below this threshold (in s32 dBm)
2417  * @per_band_rssi_thold: Minimum rssi threshold for each band to be applied
2418  *	for filtering out scan results received. Drivers advertize this support
2419  *	of band specific rssi based filtering through the feature capability
2420  *	%NL80211_EXT_FEATURE_SCHED_SCAN_BAND_SPECIFIC_RSSI_THOLD. These band
2421  *	specific rssi thresholds take precedence over rssi_thold, if specified.
2422  *	If not specified for any band, it will be assigned with rssi_thold of
2423  *	corresponding matchset.
2424  */
2425 struct cfg80211_match_set {
2426 	struct cfg80211_ssid ssid;
2427 	u8 bssid[ETH_ALEN];
2428 	s32 rssi_thold;
2429 	s32 per_band_rssi_thold[NUM_NL80211_BANDS];
2430 };
2431 
2432 /**
2433  * struct cfg80211_sched_scan_plan - scan plan for scheduled scan
2434  *
2435  * @interval: interval between scheduled scan iterations. In seconds.
2436  * @iterations: number of scan iterations in this scan plan. Zero means
2437  *	infinite loop.
2438  *	The last scan plan will always have this parameter set to zero,
2439  *	all other scan plans will have a finite number of iterations.
2440  */
2441 struct cfg80211_sched_scan_plan {
2442 	u32 interval;
2443 	u32 iterations;
2444 };
2445 
2446 /**
2447  * struct cfg80211_bss_select_adjust - BSS selection with RSSI adjustment.
2448  *
2449  * @band: band of BSS which should match for RSSI level adjustment.
2450  * @delta: value of RSSI level adjustment.
2451  */
2452 struct cfg80211_bss_select_adjust {
2453 	enum nl80211_band band;
2454 	s8 delta;
2455 };
2456 
2457 /**
2458  * struct cfg80211_sched_scan_request - scheduled scan request description
2459  *
2460  * @reqid: identifies this request.
2461  * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
2462  * @n_ssids: number of SSIDs
2463  * @n_channels: total number of channels to scan
2464  * @scan_width: channel width for scanning
2465  * @ie: optional information element(s) to add into Probe Request or %NULL
2466  * @ie_len: length of ie in octets
2467  * @flags: bit field of flags controlling operation
2468  * @match_sets: sets of parameters to be matched for a scan result
2469  *	entry to be considered valid and to be passed to the host
2470  *	(others are filtered out).
2471  *	If ommited, all results are passed.
2472  * @n_match_sets: number of match sets
2473  * @report_results: indicates that results were reported for this request
2474  * @wiphy: the wiphy this was for
2475  * @dev: the interface
2476  * @scan_start: start time of the scheduled scan
2477  * @channels: channels to scan
2478  * @min_rssi_thold: for drivers only supporting a single threshold, this
2479  *	contains the minimum over all matchsets
2480  * @mac_addr: MAC address used with randomisation
2481  * @mac_addr_mask: MAC address mask used with randomisation, bits that
2482  *	are 0 in the mask should be randomised, bits that are 1 should
2483  *	be taken from the @mac_addr
2484  * @scan_plans: scan plans to be executed in this scheduled scan. Lowest
2485  *	index must be executed first.
2486  * @n_scan_plans: number of scan plans, at least 1.
2487  * @rcu_head: RCU callback used to free the struct
2488  * @owner_nlportid: netlink portid of owner (if this should is a request
2489  *	owned by a particular socket)
2490  * @nl_owner_dead: netlink owner socket was closed - this request be freed
2491  * @list: for keeping list of requests.
2492  * @delay: delay in seconds to use before starting the first scan
2493  *	cycle.  The driver may ignore this parameter and start
2494  *	immediately (or at any other time), if this feature is not
2495  *	supported.
2496  * @relative_rssi_set: Indicates whether @relative_rssi is set or not.
2497  * @relative_rssi: Relative RSSI threshold in dB to restrict scan result
2498  *	reporting in connected state to cases where a matching BSS is determined
2499  *	to have better or slightly worse RSSI than the current connected BSS.
2500  *	The relative RSSI threshold values are ignored in disconnected state.
2501  * @rssi_adjust: delta dB of RSSI preference to be given to the BSSs that belong
2502  *	to the specified band while deciding whether a better BSS is reported
2503  *	using @relative_rssi. If delta is a negative number, the BSSs that
2504  *	belong to the specified band will be penalized by delta dB in relative
2505  *	comparisions.
2506  */
2507 struct cfg80211_sched_scan_request {
2508 	u64 reqid;
2509 	struct cfg80211_ssid *ssids;
2510 	int n_ssids;
2511 	u32 n_channels;
2512 	enum nl80211_bss_scan_width scan_width;
2513 	const u8 *ie;
2514 	size_t ie_len;
2515 	u32 flags;
2516 	struct cfg80211_match_set *match_sets;
2517 	int n_match_sets;
2518 	s32 min_rssi_thold;
2519 	u32 delay;
2520 	struct cfg80211_sched_scan_plan *scan_plans;
2521 	int n_scan_plans;
2522 
2523 	u8 mac_addr[ETH_ALEN] __aligned(2);
2524 	u8 mac_addr_mask[ETH_ALEN] __aligned(2);
2525 
2526 	bool relative_rssi_set;
2527 	s8 relative_rssi;
2528 	struct cfg80211_bss_select_adjust rssi_adjust;
2529 
2530 	/* internal */
2531 	struct wiphy *wiphy;
2532 	struct net_device *dev;
2533 	unsigned long scan_start;
2534 	bool report_results;
2535 	struct rcu_head rcu_head;
2536 	u32 owner_nlportid;
2537 	bool nl_owner_dead;
2538 	struct list_head list;
2539 
2540 	/* keep last */
2541 	struct ieee80211_channel *channels[];
2542 };
2543 
2544 /**
2545  * enum cfg80211_signal_type - signal type
2546  *
2547  * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
2548  * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
2549  * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
2550  */
2551 enum cfg80211_signal_type {
2552 	CFG80211_SIGNAL_TYPE_NONE,
2553 	CFG80211_SIGNAL_TYPE_MBM,
2554 	CFG80211_SIGNAL_TYPE_UNSPEC,
2555 };
2556 
2557 /**
2558  * struct cfg80211_inform_bss - BSS inform data
2559  * @chan: channel the frame was received on
2560  * @scan_width: scan width that was used
2561  * @signal: signal strength value, according to the wiphy's
2562  *	signal type
2563  * @boottime_ns: timestamp (CLOCK_BOOTTIME) when the information was
2564  *	received; should match the time when the frame was actually
2565  *	received by the device (not just by the host, in case it was
2566  *	buffered on the device) and be accurate to about 10ms.
2567  *	If the frame isn't buffered, just passing the return value of
2568  *	ktime_get_boottime_ns() is likely appropriate.
2569  * @parent_tsf: the time at the start of reception of the first octet of the
2570  *	timestamp field of the frame. The time is the TSF of the BSS specified
2571  *	by %parent_bssid.
2572  * @parent_bssid: the BSS according to which %parent_tsf is set. This is set to
2573  *	the BSS that requested the scan in which the beacon/probe was received.
2574  * @chains: bitmask for filled values in @chain_signal.
2575  * @chain_signal: per-chain signal strength of last received BSS in dBm.
2576  */
2577 struct cfg80211_inform_bss {
2578 	struct ieee80211_channel *chan;
2579 	enum nl80211_bss_scan_width scan_width;
2580 	s32 signal;
2581 	u64 boottime_ns;
2582 	u64 parent_tsf;
2583 	u8 parent_bssid[ETH_ALEN] __aligned(2);
2584 	u8 chains;
2585 	s8 chain_signal[IEEE80211_MAX_CHAINS];
2586 };
2587 
2588 /**
2589  * struct cfg80211_bss_ies - BSS entry IE data
2590  * @tsf: TSF contained in the frame that carried these IEs
2591  * @rcu_head: internal use, for freeing
2592  * @len: length of the IEs
2593  * @from_beacon: these IEs are known to come from a beacon
2594  * @data: IE data
2595  */
2596 struct cfg80211_bss_ies {
2597 	u64 tsf;
2598 	struct rcu_head rcu_head;
2599 	int len;
2600 	bool from_beacon;
2601 	u8 data[];
2602 };
2603 
2604 /**
2605  * struct cfg80211_bss - BSS description
2606  *
2607  * This structure describes a BSS (which may also be a mesh network)
2608  * for use in scan results and similar.
2609  *
2610  * @channel: channel this BSS is on
2611  * @scan_width: width of the control channel
2612  * @bssid: BSSID of the BSS
2613  * @beacon_interval: the beacon interval as from the frame
2614  * @capability: the capability field in host byte order
2615  * @ies: the information elements (Note that there is no guarantee that these
2616  *	are well-formed!); this is a pointer to either the beacon_ies or
2617  *	proberesp_ies depending on whether Probe Response frame has been
2618  *	received. It is always non-%NULL.
2619  * @beacon_ies: the information elements from the last Beacon frame
2620  *	(implementation note: if @hidden_beacon_bss is set this struct doesn't
2621  *	own the beacon_ies, but they're just pointers to the ones from the
2622  *	@hidden_beacon_bss struct)
2623  * @proberesp_ies: the information elements from the last Probe Response frame
2624  * @hidden_beacon_bss: in case this BSS struct represents a probe response from
2625  *	a BSS that hides the SSID in its beacon, this points to the BSS struct
2626  *	that holds the beacon data. @beacon_ies is still valid, of course, and
2627  *	points to the same data as hidden_beacon_bss->beacon_ies in that case.
2628  * @transmitted_bss: pointer to the transmitted BSS, if this is a
2629  *	non-transmitted one (multi-BSSID support)
2630  * @nontrans_list: list of non-transmitted BSS, if this is a transmitted one
2631  *	(multi-BSSID support)
2632  * @signal: signal strength value (type depends on the wiphy's signal_type)
2633  * @chains: bitmask for filled values in @chain_signal.
2634  * @chain_signal: per-chain signal strength of last received BSS in dBm.
2635  * @bssid_index: index in the multiple BSS set
2636  * @max_bssid_indicator: max number of members in the BSS set
2637  * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
2638  */
2639 struct cfg80211_bss {
2640 	struct ieee80211_channel *channel;
2641 	enum nl80211_bss_scan_width scan_width;
2642 
2643 	const struct cfg80211_bss_ies __rcu *ies;
2644 	const struct cfg80211_bss_ies __rcu *beacon_ies;
2645 	const struct cfg80211_bss_ies __rcu *proberesp_ies;
2646 
2647 	struct cfg80211_bss *hidden_beacon_bss;
2648 	struct cfg80211_bss *transmitted_bss;
2649 	struct list_head nontrans_list;
2650 
2651 	s32 signal;
2652 
2653 	u16 beacon_interval;
2654 	u16 capability;
2655 
2656 	u8 bssid[ETH_ALEN];
2657 	u8 chains;
2658 	s8 chain_signal[IEEE80211_MAX_CHAINS];
2659 
2660 	u8 bssid_index;
2661 	u8 max_bssid_indicator;
2662 
2663 	u8 priv[] __aligned(sizeof(void *));
2664 };
2665 
2666 /**
2667  * ieee80211_bss_get_elem - find element with given ID
2668  * @bss: the bss to search
2669  * @id: the element ID
2670  *
2671  * Note that the return value is an RCU-protected pointer, so
2672  * rcu_read_lock() must be held when calling this function.
2673  * Return: %NULL if not found.
2674  */
2675 const struct element *ieee80211_bss_get_elem(struct cfg80211_bss *bss, u8 id);
2676 
2677 /**
2678  * ieee80211_bss_get_ie - find IE with given ID
2679  * @bss: the bss to search
2680  * @id: the element ID
2681  *
2682  * Note that the return value is an RCU-protected pointer, so
2683  * rcu_read_lock() must be held when calling this function.
2684  * Return: %NULL if not found.
2685  */
2686 static inline const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 id)
2687 {
2688 	return (const void *)ieee80211_bss_get_elem(bss, id);
2689 }
2690 
2691 
2692 /**
2693  * struct cfg80211_auth_request - Authentication request data
2694  *
2695  * This structure provides information needed to complete IEEE 802.11
2696  * authentication.
2697  *
2698  * @bss: The BSS to authenticate with, the callee must obtain a reference
2699  *	to it if it needs to keep it.
2700  * @auth_type: Authentication type (algorithm)
2701  * @ie: Extra IEs to add to Authentication frame or %NULL
2702  * @ie_len: Length of ie buffer in octets
2703  * @key_len: length of WEP key for shared key authentication
2704  * @key_idx: index of WEP key for shared key authentication
2705  * @key: WEP key for shared key authentication
2706  * @auth_data: Fields and elements in Authentication frames. This contains
2707  *	the authentication frame body (non-IE and IE data), excluding the
2708  *	Authentication algorithm number, i.e., starting at the Authentication
2709  *	transaction sequence number field.
2710  * @auth_data_len: Length of auth_data buffer in octets
2711  */
2712 struct cfg80211_auth_request {
2713 	struct cfg80211_bss *bss;
2714 	const u8 *ie;
2715 	size_t ie_len;
2716 	enum nl80211_auth_type auth_type;
2717 	const u8 *key;
2718 	u8 key_len, key_idx;
2719 	const u8 *auth_data;
2720 	size_t auth_data_len;
2721 };
2722 
2723 /**
2724  * enum cfg80211_assoc_req_flags - Over-ride default behaviour in association.
2725  *
2726  * @ASSOC_REQ_DISABLE_HT:  Disable HT (802.11n)
2727  * @ASSOC_REQ_DISABLE_VHT:  Disable VHT
2728  * @ASSOC_REQ_USE_RRM: Declare RRM capability in this association
2729  * @CONNECT_REQ_EXTERNAL_AUTH_SUPPORT: User space indicates external
2730  *	authentication capability. Drivers can offload authentication to
2731  *	userspace if this flag is set. Only applicable for cfg80211_connect()
2732  *	request (connect callback).
2733  * @ASSOC_REQ_DISABLE_HE:  Disable HE
2734  */
2735 enum cfg80211_assoc_req_flags {
2736 	ASSOC_REQ_DISABLE_HT			= BIT(0),
2737 	ASSOC_REQ_DISABLE_VHT			= BIT(1),
2738 	ASSOC_REQ_USE_RRM			= BIT(2),
2739 	CONNECT_REQ_EXTERNAL_AUTH_SUPPORT	= BIT(3),
2740 	ASSOC_REQ_DISABLE_HE			= BIT(4),
2741 };
2742 
2743 /**
2744  * struct cfg80211_assoc_request - (Re)Association request data
2745  *
2746  * This structure provides information needed to complete IEEE 802.11
2747  * (re)association.
2748  * @bss: The BSS to associate with. If the call is successful the driver is
2749  *	given a reference that it must give back to cfg80211_send_rx_assoc()
2750  *	or to cfg80211_assoc_timeout(). To ensure proper refcounting, new
2751  *	association requests while already associating must be rejected.
2752  * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
2753  * @ie_len: Length of ie buffer in octets
2754  * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
2755  * @crypto: crypto settings
2756  * @prev_bssid: previous BSSID, if not %NULL use reassociate frame. This is used
2757  *	to indicate a request to reassociate within the ESS instead of a request
2758  *	do the initial association with the ESS. When included, this is set to
2759  *	the BSSID of the current association, i.e., to the value that is
2760  *	included in the Current AP address field of the Reassociation Request
2761  *	frame.
2762  * @flags:  See &enum cfg80211_assoc_req_flags
2763  * @ht_capa:  HT Capabilities over-rides.  Values set in ht_capa_mask
2764  *	will be used in ht_capa.  Un-supported values will be ignored.
2765  * @ht_capa_mask:  The bits of ht_capa which are to be used.
2766  * @vht_capa: VHT capability override
2767  * @vht_capa_mask: VHT capability mask indicating which fields to use
2768  * @fils_kek: FILS KEK for protecting (Re)Association Request/Response frame or
2769  *	%NULL if FILS is not used.
2770  * @fils_kek_len: Length of fils_kek in octets
2771  * @fils_nonces: FILS nonces (part of AAD) for protecting (Re)Association
2772  *	Request/Response frame or %NULL if FILS is not used. This field starts
2773  *	with 16 octets of STA Nonce followed by 16 octets of AP Nonce.
2774  * @s1g_capa: S1G capability override
2775  * @s1g_capa_mask: S1G capability override mask
2776  */
2777 struct cfg80211_assoc_request {
2778 	struct cfg80211_bss *bss;
2779 	const u8 *ie, *prev_bssid;
2780 	size_t ie_len;
2781 	struct cfg80211_crypto_settings crypto;
2782 	bool use_mfp;
2783 	u32 flags;
2784 	struct ieee80211_ht_cap ht_capa;
2785 	struct ieee80211_ht_cap ht_capa_mask;
2786 	struct ieee80211_vht_cap vht_capa, vht_capa_mask;
2787 	const u8 *fils_kek;
2788 	size_t fils_kek_len;
2789 	const u8 *fils_nonces;
2790 	struct ieee80211_s1g_cap s1g_capa, s1g_capa_mask;
2791 };
2792 
2793 /**
2794  * struct cfg80211_deauth_request - Deauthentication request data
2795  *
2796  * This structure provides information needed to complete IEEE 802.11
2797  * deauthentication.
2798  *
2799  * @bssid: the BSSID of the BSS to deauthenticate from
2800  * @ie: Extra IEs to add to Deauthentication frame or %NULL
2801  * @ie_len: Length of ie buffer in octets
2802  * @reason_code: The reason code for the deauthentication
2803  * @local_state_change: if set, change local state only and
2804  *	do not set a deauth frame
2805  */
2806 struct cfg80211_deauth_request {
2807 	const u8 *bssid;
2808 	const u8 *ie;
2809 	size_t ie_len;
2810 	u16 reason_code;
2811 	bool local_state_change;
2812 };
2813 
2814 /**
2815  * struct cfg80211_disassoc_request - Disassociation request data
2816  *
2817  * This structure provides information needed to complete IEEE 802.11
2818  * disassociation.
2819  *
2820  * @bss: the BSS to disassociate from
2821  * @ie: Extra IEs to add to Disassociation frame or %NULL
2822  * @ie_len: Length of ie buffer in octets
2823  * @reason_code: The reason code for the disassociation
2824  * @local_state_change: This is a request for a local state only, i.e., no
2825  *	Disassociation frame is to be transmitted.
2826  */
2827 struct cfg80211_disassoc_request {
2828 	struct cfg80211_bss *bss;
2829 	const u8 *ie;
2830 	size_t ie_len;
2831 	u16 reason_code;
2832 	bool local_state_change;
2833 };
2834 
2835 /**
2836  * struct cfg80211_ibss_params - IBSS parameters
2837  *
2838  * This structure defines the IBSS parameters for the join_ibss()
2839  * method.
2840  *
2841  * @ssid: The SSID, will always be non-null.
2842  * @ssid_len: The length of the SSID, will always be non-zero.
2843  * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
2844  *	search for IBSSs with a different BSSID.
2845  * @chandef: defines the channel to use if no other IBSS to join can be found
2846  * @channel_fixed: The channel should be fixed -- do not search for
2847  *	IBSSs to join on other channels.
2848  * @ie: information element(s) to include in the beacon
2849  * @ie_len: length of that
2850  * @beacon_interval: beacon interval to use
2851  * @privacy: this is a protected network, keys will be configured
2852  *	after joining
2853  * @control_port: whether user space controls IEEE 802.1X port, i.e.,
2854  *	sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
2855  *	required to assume that the port is unauthorized until authorized by
2856  *	user space. Otherwise, port is marked authorized by default.
2857  * @control_port_over_nl80211: TRUE if userspace expects to exchange control
2858  *	port frames over NL80211 instead of the network interface.
2859  * @userspace_handles_dfs: whether user space controls DFS operation, i.e.
2860  *	changes the channel when a radar is detected. This is required
2861  *	to operate on DFS channels.
2862  * @basic_rates: bitmap of basic rates to use when creating the IBSS
2863  * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
2864  * @ht_capa:  HT Capabilities over-rides.  Values set in ht_capa_mask
2865  *	will be used in ht_capa.  Un-supported values will be ignored.
2866  * @ht_capa_mask:  The bits of ht_capa which are to be used.
2867  * @wep_keys: static WEP keys, if not NULL points to an array of
2868  *	CFG80211_MAX_WEP_KEYS WEP keys
2869  * @wep_tx_key: key index (0..3) of the default TX static WEP key
2870  */
2871 struct cfg80211_ibss_params {
2872 	const u8 *ssid;
2873 	const u8 *bssid;
2874 	struct cfg80211_chan_def chandef;
2875 	const u8 *ie;
2876 	u8 ssid_len, ie_len;
2877 	u16 beacon_interval;
2878 	u32 basic_rates;
2879 	bool channel_fixed;
2880 	bool privacy;
2881 	bool control_port;
2882 	bool control_port_over_nl80211;
2883 	bool userspace_handles_dfs;
2884 	int mcast_rate[NUM_NL80211_BANDS];
2885 	struct ieee80211_ht_cap ht_capa;
2886 	struct ieee80211_ht_cap ht_capa_mask;
2887 	struct key_params *wep_keys;
2888 	int wep_tx_key;
2889 };
2890 
2891 /**
2892  * struct cfg80211_bss_selection - connection parameters for BSS selection.
2893  *
2894  * @behaviour: requested BSS selection behaviour.
2895  * @param: parameters for requestion behaviour.
2896  * @band_pref: preferred band for %NL80211_BSS_SELECT_ATTR_BAND_PREF.
2897  * @adjust: parameters for %NL80211_BSS_SELECT_ATTR_RSSI_ADJUST.
2898  */
2899 struct cfg80211_bss_selection {
2900 	enum nl80211_bss_select_attr behaviour;
2901 	union {
2902 		enum nl80211_band band_pref;
2903 		struct cfg80211_bss_select_adjust adjust;
2904 	} param;
2905 };
2906 
2907 /**
2908  * struct cfg80211_connect_params - Connection parameters
2909  *
2910  * This structure provides information needed to complete IEEE 802.11
2911  * authentication and association.
2912  *
2913  * @channel: The channel to use or %NULL if not specified (auto-select based
2914  *	on scan results)
2915  * @channel_hint: The channel of the recommended BSS for initial connection or
2916  *	%NULL if not specified
2917  * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
2918  *	results)
2919  * @bssid_hint: The recommended AP BSSID for initial connection to the BSS or
2920  *	%NULL if not specified. Unlike the @bssid parameter, the driver is
2921  *	allowed to ignore this @bssid_hint if it has knowledge of a better BSS
2922  *	to use.
2923  * @ssid: SSID
2924  * @ssid_len: Length of ssid in octets
2925  * @auth_type: Authentication type (algorithm)
2926  * @ie: IEs for association request
2927  * @ie_len: Length of assoc_ie in octets
2928  * @privacy: indicates whether privacy-enabled APs should be used
2929  * @mfp: indicate whether management frame protection is used
2930  * @crypto: crypto settings
2931  * @key_len: length of WEP key for shared key authentication
2932  * @key_idx: index of WEP key for shared key authentication
2933  * @key: WEP key for shared key authentication
2934  * @flags:  See &enum cfg80211_assoc_req_flags
2935  * @bg_scan_period:  Background scan period in seconds
2936  *	or -1 to indicate that default value is to be used.
2937  * @ht_capa:  HT Capabilities over-rides.  Values set in ht_capa_mask
2938  *	will be used in ht_capa.  Un-supported values will be ignored.
2939  * @ht_capa_mask:  The bits of ht_capa which are to be used.
2940  * @vht_capa:  VHT Capability overrides
2941  * @vht_capa_mask: The bits of vht_capa which are to be used.
2942  * @pbss: if set, connect to a PCP instead of AP. Valid for DMG
2943  *	networks.
2944  * @bss_select: criteria to be used for BSS selection.
2945  * @prev_bssid: previous BSSID, if not %NULL use reassociate frame. This is used
2946  *	to indicate a request to reassociate within the ESS instead of a request
2947  *	do the initial association with the ESS. When included, this is set to
2948  *	the BSSID of the current association, i.e., to the value that is
2949  *	included in the Current AP address field of the Reassociation Request
2950  *	frame.
2951  * @fils_erp_username: EAP re-authentication protocol (ERP) username part of the
2952  *	NAI or %NULL if not specified. This is used to construct FILS wrapped
2953  *	data IE.
2954  * @fils_erp_username_len: Length of @fils_erp_username in octets.
2955  * @fils_erp_realm: EAP re-authentication protocol (ERP) realm part of NAI or
2956  *	%NULL if not specified. This specifies the domain name of ER server and
2957  *	is used to construct FILS wrapped data IE.
2958  * @fils_erp_realm_len: Length of @fils_erp_realm in octets.
2959  * @fils_erp_next_seq_num: The next sequence number to use in the FILS ERP
2960  *	messages. This is also used to construct FILS wrapped data IE.
2961  * @fils_erp_rrk: ERP re-authentication Root Key (rRK) used to derive additional
2962  *	keys in FILS or %NULL if not specified.
2963  * @fils_erp_rrk_len: Length of @fils_erp_rrk in octets.
2964  * @want_1x: indicates user-space supports and wants to use 802.1X driver
2965  *	offload of 4-way handshake.
2966  * @edmg: define the EDMG channels.
2967  *	This may specify multiple channels and bonding options for the driver
2968  *	to choose from, based on BSS configuration.
2969  */
2970 struct cfg80211_connect_params {
2971 	struct ieee80211_channel *channel;
2972 	struct ieee80211_channel *channel_hint;
2973 	const u8 *bssid;
2974 	const u8 *bssid_hint;
2975 	const u8 *ssid;
2976 	size_t ssid_len;
2977 	enum nl80211_auth_type auth_type;
2978 	const u8 *ie;
2979 	size_t ie_len;
2980 	bool privacy;
2981 	enum nl80211_mfp mfp;
2982 	struct cfg80211_crypto_settings crypto;
2983 	const u8 *key;
2984 	u8 key_len, key_idx;
2985 	u32 flags;
2986 	int bg_scan_period;
2987 	struct ieee80211_ht_cap ht_capa;
2988 	struct ieee80211_ht_cap ht_capa_mask;
2989 	struct ieee80211_vht_cap vht_capa;
2990 	struct ieee80211_vht_cap vht_capa_mask;
2991 	bool pbss;
2992 	struct cfg80211_bss_selection bss_select;
2993 	const u8 *prev_bssid;
2994 	const u8 *fils_erp_username;
2995 	size_t fils_erp_username_len;
2996 	const u8 *fils_erp_realm;
2997 	size_t fils_erp_realm_len;
2998 	u16 fils_erp_next_seq_num;
2999 	const u8 *fils_erp_rrk;
3000 	size_t fils_erp_rrk_len;
3001 	bool want_1x;
3002 	struct ieee80211_edmg edmg;
3003 };
3004 
3005 /**
3006  * enum cfg80211_connect_params_changed - Connection parameters being updated
3007  *
3008  * This enum provides information of all connect parameters that
3009  * have to be updated as part of update_connect_params() call.
3010  *
3011  * @UPDATE_ASSOC_IES: Indicates whether association request IEs are updated
3012  * @UPDATE_FILS_ERP_INFO: Indicates that FILS connection parameters (realm,
3013  *	username, erp sequence number and rrk) are updated
3014  * @UPDATE_AUTH_TYPE: Indicates that authentication type is updated
3015  */
3016 enum cfg80211_connect_params_changed {
3017 	UPDATE_ASSOC_IES		= BIT(0),
3018 	UPDATE_FILS_ERP_INFO		= BIT(1),
3019 	UPDATE_AUTH_TYPE		= BIT(2),
3020 };
3021 
3022 /**
3023  * enum wiphy_params_flags - set_wiphy_params bitfield values
3024  * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
3025  * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
3026  * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
3027  * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
3028  * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
3029  * @WIPHY_PARAM_DYN_ACK: dynack has been enabled
3030  * @WIPHY_PARAM_TXQ_LIMIT: TXQ packet limit has been changed
3031  * @WIPHY_PARAM_TXQ_MEMORY_LIMIT: TXQ memory limit has been changed
3032  * @WIPHY_PARAM_TXQ_QUANTUM: TXQ scheduler quantum
3033  */
3034 enum wiphy_params_flags {
3035 	WIPHY_PARAM_RETRY_SHORT		= 1 << 0,
3036 	WIPHY_PARAM_RETRY_LONG		= 1 << 1,
3037 	WIPHY_PARAM_FRAG_THRESHOLD	= 1 << 2,
3038 	WIPHY_PARAM_RTS_THRESHOLD	= 1 << 3,
3039 	WIPHY_PARAM_COVERAGE_CLASS	= 1 << 4,
3040 	WIPHY_PARAM_DYN_ACK		= 1 << 5,
3041 	WIPHY_PARAM_TXQ_LIMIT		= 1 << 6,
3042 	WIPHY_PARAM_TXQ_MEMORY_LIMIT	= 1 << 7,
3043 	WIPHY_PARAM_TXQ_QUANTUM		= 1 << 8,
3044 };
3045 
3046 #define IEEE80211_DEFAULT_AIRTIME_WEIGHT	256
3047 
3048 /* The per TXQ device queue limit in airtime */
3049 #define IEEE80211_DEFAULT_AQL_TXQ_LIMIT_L	5000
3050 #define IEEE80211_DEFAULT_AQL_TXQ_LIMIT_H	12000
3051 
3052 /* The per interface airtime threshold to switch to lower queue limit */
3053 #define IEEE80211_AQL_THRESHOLD			24000
3054 
3055 /**
3056  * struct cfg80211_pmksa - PMK Security Association
3057  *
3058  * This structure is passed to the set/del_pmksa() method for PMKSA
3059  * caching.
3060  *
3061  * @bssid: The AP's BSSID (may be %NULL).
3062  * @pmkid: The identifier to refer a PMKSA.
3063  * @pmk: The PMK for the PMKSA identified by @pmkid. This is used for key
3064  *	derivation by a FILS STA. Otherwise, %NULL.
3065  * @pmk_len: Length of the @pmk. The length of @pmk can differ depending on
3066  *	the hash algorithm used to generate this.
3067  * @ssid: SSID to specify the ESS within which a PMKSA is valid when using FILS
3068  *	cache identifier (may be %NULL).
3069  * @ssid_len: Length of the @ssid in octets.
3070  * @cache_id: 2-octet cache identifier advertized by a FILS AP identifying the
3071  *	scope of PMKSA. This is valid only if @ssid_len is non-zero (may be
3072  *	%NULL).
3073  * @pmk_lifetime: Maximum lifetime for PMKSA in seconds
3074  *	(dot11RSNAConfigPMKLifetime) or 0 if not specified.
3075  *	The configured PMKSA must not be used for PMKSA caching after
3076  *	expiration and any keys derived from this PMK become invalid on
3077  *	expiration, i.e., the current association must be dropped if the PMK
3078  *	used for it expires.
3079  * @pmk_reauth_threshold: Threshold time for reauthentication (percentage of
3080  *	PMK lifetime, dot11RSNAConfigPMKReauthThreshold) or 0 if not specified.
3081  *	Drivers are expected to trigger a full authentication instead of using
3082  *	this PMKSA for caching when reassociating to a new BSS after this
3083  *	threshold to generate a new PMK before the current one expires.
3084  */
3085 struct cfg80211_pmksa {
3086 	const u8 *bssid;
3087 	const u8 *pmkid;
3088 	const u8 *pmk;
3089 	size_t pmk_len;
3090 	const u8 *ssid;
3091 	size_t ssid_len;
3092 	const u8 *cache_id;
3093 	u32 pmk_lifetime;
3094 	u8 pmk_reauth_threshold;
3095 };
3096 
3097 /**
3098  * struct cfg80211_pkt_pattern - packet pattern
3099  * @mask: bitmask where to match pattern and where to ignore bytes,
3100  *	one bit per byte, in same format as nl80211
3101  * @pattern: bytes to match where bitmask is 1
3102  * @pattern_len: length of pattern (in bytes)
3103  * @pkt_offset: packet offset (in bytes)
3104  *
3105  * Internal note: @mask and @pattern are allocated in one chunk of
3106  * memory, free @mask only!
3107  */
3108 struct cfg80211_pkt_pattern {
3109 	const u8 *mask, *pattern;
3110 	int pattern_len;
3111 	int pkt_offset;
3112 };
3113 
3114 /**
3115  * struct cfg80211_wowlan_tcp - TCP connection parameters
3116  *
3117  * @sock: (internal) socket for source port allocation
3118  * @src: source IP address
3119  * @dst: destination IP address
3120  * @dst_mac: destination MAC address
3121  * @src_port: source port
3122  * @dst_port: destination port
3123  * @payload_len: data payload length
3124  * @payload: data payload buffer
3125  * @payload_seq: payload sequence stamping configuration
3126  * @data_interval: interval at which to send data packets
3127  * @wake_len: wakeup payload match length
3128  * @wake_data: wakeup payload match data
3129  * @wake_mask: wakeup payload match mask
3130  * @tokens_size: length of the tokens buffer
3131  * @payload_tok: payload token usage configuration
3132  */
3133 struct cfg80211_wowlan_tcp {
3134 	struct socket *sock;
3135 	__be32 src, dst;
3136 	u16 src_port, dst_port;
3137 	u8 dst_mac[ETH_ALEN];
3138 	int payload_len;
3139 	const u8 *payload;
3140 	struct nl80211_wowlan_tcp_data_seq payload_seq;
3141 	u32 data_interval;
3142 	u32 wake_len;
3143 	const u8 *wake_data, *wake_mask;
3144 	u32 tokens_size;
3145 	/* must be last, variable member */
3146 	struct nl80211_wowlan_tcp_data_token payload_tok;
3147 };
3148 
3149 /**
3150  * struct cfg80211_wowlan - Wake on Wireless-LAN support info
3151  *
3152  * This structure defines the enabled WoWLAN triggers for the device.
3153  * @any: wake up on any activity -- special trigger if device continues
3154  *	operating as normal during suspend
3155  * @disconnect: wake up if getting disconnected
3156  * @magic_pkt: wake up on receiving magic packet
3157  * @patterns: wake up on receiving packet matching a pattern
3158  * @n_patterns: number of patterns
3159  * @gtk_rekey_failure: wake up on GTK rekey failure
3160  * @eap_identity_req: wake up on EAP identity request packet
3161  * @four_way_handshake: wake up on 4-way handshake
3162  * @rfkill_release: wake up when rfkill is released
3163  * @tcp: TCP connection establishment/wakeup parameters, see nl80211.h.
3164  *	NULL if not configured.
3165  * @nd_config: configuration for the scan to be used for net detect wake.
3166  */
3167 struct cfg80211_wowlan {
3168 	bool any, disconnect, magic_pkt, gtk_rekey_failure,
3169 	     eap_identity_req, four_way_handshake,
3170 	     rfkill_release;
3171 	struct cfg80211_pkt_pattern *patterns;
3172 	struct cfg80211_wowlan_tcp *tcp;
3173 	int n_patterns;
3174 	struct cfg80211_sched_scan_request *nd_config;
3175 };
3176 
3177 /**
3178  * struct cfg80211_coalesce_rules - Coalesce rule parameters
3179  *
3180  * This structure defines coalesce rule for the device.
3181  * @delay: maximum coalescing delay in msecs.
3182  * @condition: condition for packet coalescence.
3183  *	see &enum nl80211_coalesce_condition.
3184  * @patterns: array of packet patterns
3185  * @n_patterns: number of patterns
3186  */
3187 struct cfg80211_coalesce_rules {
3188 	int delay;
3189 	enum nl80211_coalesce_condition condition;
3190 	struct cfg80211_pkt_pattern *patterns;
3191 	int n_patterns;
3192 };
3193 
3194 /**
3195  * struct cfg80211_coalesce - Packet coalescing settings
3196  *
3197  * This structure defines coalescing settings.
3198  * @rules: array of coalesce rules
3199  * @n_rules: number of rules
3200  */
3201 struct cfg80211_coalesce {
3202 	struct cfg80211_coalesce_rules *rules;
3203 	int n_rules;
3204 };
3205 
3206 /**
3207  * struct cfg80211_wowlan_nd_match - information about the match
3208  *
3209  * @ssid: SSID of the match that triggered the wake up
3210  * @n_channels: Number of channels where the match occurred.  This
3211  *	value may be zero if the driver can't report the channels.
3212  * @channels: center frequencies of the channels where a match
3213  *	occurred (in MHz)
3214  */
3215 struct cfg80211_wowlan_nd_match {
3216 	struct cfg80211_ssid ssid;
3217 	int n_channels;
3218 	u32 channels[];
3219 };
3220 
3221 /**
3222  * struct cfg80211_wowlan_nd_info - net detect wake up information
3223  *
3224  * @n_matches: Number of match information instances provided in
3225  *	@matches.  This value may be zero if the driver can't provide
3226  *	match information.
3227  * @matches: Array of pointers to matches containing information about
3228  *	the matches that triggered the wake up.
3229  */
3230 struct cfg80211_wowlan_nd_info {
3231 	int n_matches;
3232 	struct cfg80211_wowlan_nd_match *matches[];
3233 };
3234 
3235 /**
3236  * struct cfg80211_wowlan_wakeup - wakeup report
3237  * @disconnect: woke up by getting disconnected
3238  * @magic_pkt: woke up by receiving magic packet
3239  * @gtk_rekey_failure: woke up by GTK rekey failure
3240  * @eap_identity_req: woke up by EAP identity request packet
3241  * @four_way_handshake: woke up by 4-way handshake
3242  * @rfkill_release: woke up by rfkill being released
3243  * @pattern_idx: pattern that caused wakeup, -1 if not due to pattern
3244  * @packet_present_len: copied wakeup packet data
3245  * @packet_len: original wakeup packet length
3246  * @packet: The packet causing the wakeup, if any.
3247  * @packet_80211:  For pattern match, magic packet and other data
3248  *	frame triggers an 802.3 frame should be reported, for
3249  *	disconnect due to deauth 802.11 frame. This indicates which
3250  *	it is.
3251  * @tcp_match: TCP wakeup packet received
3252  * @tcp_connlost: TCP connection lost or failed to establish
3253  * @tcp_nomoretokens: TCP data ran out of tokens
3254  * @net_detect: if not %NULL, woke up because of net detect
3255  */
3256 struct cfg80211_wowlan_wakeup {
3257 	bool disconnect, magic_pkt, gtk_rekey_failure,
3258 	     eap_identity_req, four_way_handshake,
3259 	     rfkill_release, packet_80211,
3260 	     tcp_match, tcp_connlost, tcp_nomoretokens;
3261 	s32 pattern_idx;
3262 	u32 packet_present_len, packet_len;
3263 	const void *packet;
3264 	struct cfg80211_wowlan_nd_info *net_detect;
3265 };
3266 
3267 /**
3268  * struct cfg80211_gtk_rekey_data - rekey data
3269  * @kek: key encryption key (@kek_len bytes)
3270  * @kck: key confirmation key (@kck_len bytes)
3271  * @replay_ctr: replay counter (NL80211_REPLAY_CTR_LEN bytes)
3272  * @kek_len: length of kek
3273  * @kck_len length of kck
3274  * @akm: akm (oui, id)
3275  */
3276 struct cfg80211_gtk_rekey_data {
3277 	const u8 *kek, *kck, *replay_ctr;
3278 	u32 akm;
3279 	u8 kek_len, kck_len;
3280 };
3281 
3282 /**
3283  * struct cfg80211_update_ft_ies_params - FT IE Information
3284  *
3285  * This structure provides information needed to update the fast transition IE
3286  *
3287  * @md: The Mobility Domain ID, 2 Octet value
3288  * @ie: Fast Transition IEs
3289  * @ie_len: Length of ft_ie in octets
3290  */
3291 struct cfg80211_update_ft_ies_params {
3292 	u16 md;
3293 	const u8 *ie;
3294 	size_t ie_len;
3295 };
3296 
3297 /**
3298  * struct cfg80211_mgmt_tx_params - mgmt tx parameters
3299  *
3300  * This structure provides information needed to transmit a mgmt frame
3301  *
3302  * @chan: channel to use
3303  * @offchan: indicates wether off channel operation is required
3304  * @wait: duration for ROC
3305  * @buf: buffer to transmit
3306  * @len: buffer length
3307  * @no_cck: don't use cck rates for this frame
3308  * @dont_wait_for_ack: tells the low level not to wait for an ack
3309  * @n_csa_offsets: length of csa_offsets array
3310  * @csa_offsets: array of all the csa offsets in the frame
3311  */
3312 struct cfg80211_mgmt_tx_params {
3313 	struct ieee80211_channel *chan;
3314 	bool offchan;
3315 	unsigned int wait;
3316 	const u8 *buf;
3317 	size_t len;
3318 	bool no_cck;
3319 	bool dont_wait_for_ack;
3320 	int n_csa_offsets;
3321 	const u16 *csa_offsets;
3322 };
3323 
3324 /**
3325  * struct cfg80211_dscp_exception - DSCP exception
3326  *
3327  * @dscp: DSCP value that does not adhere to the user priority range definition
3328  * @up: user priority value to which the corresponding DSCP value belongs
3329  */
3330 struct cfg80211_dscp_exception {
3331 	u8 dscp;
3332 	u8 up;
3333 };
3334 
3335 /**
3336  * struct cfg80211_dscp_range - DSCP range definition for user priority
3337  *
3338  * @low: lowest DSCP value of this user priority range, inclusive
3339  * @high: highest DSCP value of this user priority range, inclusive
3340  */
3341 struct cfg80211_dscp_range {
3342 	u8 low;
3343 	u8 high;
3344 };
3345 
3346 /* QoS Map Set element length defined in IEEE Std 802.11-2012, 8.4.2.97 */
3347 #define IEEE80211_QOS_MAP_MAX_EX	21
3348 #define IEEE80211_QOS_MAP_LEN_MIN	16
3349 #define IEEE80211_QOS_MAP_LEN_MAX \
3350 	(IEEE80211_QOS_MAP_LEN_MIN + 2 * IEEE80211_QOS_MAP_MAX_EX)
3351 
3352 /**
3353  * struct cfg80211_qos_map - QoS Map Information
3354  *
3355  * This struct defines the Interworking QoS map setting for DSCP values
3356  *
3357  * @num_des: number of DSCP exceptions (0..21)
3358  * @dscp_exception: optionally up to maximum of 21 DSCP exceptions from
3359  *	the user priority DSCP range definition
3360  * @up: DSCP range definition for a particular user priority
3361  */
3362 struct cfg80211_qos_map {
3363 	u8 num_des;
3364 	struct cfg80211_dscp_exception dscp_exception[IEEE80211_QOS_MAP_MAX_EX];
3365 	struct cfg80211_dscp_range up[8];
3366 };
3367 
3368 /**
3369  * struct cfg80211_nan_conf - NAN configuration
3370  *
3371  * This struct defines NAN configuration parameters
3372  *
3373  * @master_pref: master preference (1 - 255)
3374  * @bands: operating bands, a bitmap of &enum nl80211_band values.
3375  *	For instance, for NL80211_BAND_2GHZ, bit 0 would be set
3376  *	(i.e. BIT(NL80211_BAND_2GHZ)).
3377  */
3378 struct cfg80211_nan_conf {
3379 	u8 master_pref;
3380 	u8 bands;
3381 };
3382 
3383 /**
3384  * enum cfg80211_nan_conf_changes - indicates changed fields in NAN
3385  * configuration
3386  *
3387  * @CFG80211_NAN_CONF_CHANGED_PREF: master preference
3388  * @CFG80211_NAN_CONF_CHANGED_BANDS: operating bands
3389  */
3390 enum cfg80211_nan_conf_changes {
3391 	CFG80211_NAN_CONF_CHANGED_PREF = BIT(0),
3392 	CFG80211_NAN_CONF_CHANGED_BANDS = BIT(1),
3393 };
3394 
3395 /**
3396  * struct cfg80211_nan_func_filter - a NAN function Rx / Tx filter
3397  *
3398  * @filter: the content of the filter
3399  * @len: the length of the filter
3400  */
3401 struct cfg80211_nan_func_filter {
3402 	const u8 *filter;
3403 	u8 len;
3404 };
3405 
3406 /**
3407  * struct cfg80211_nan_func - a NAN function
3408  *
3409  * @type: &enum nl80211_nan_function_type
3410  * @service_id: the service ID of the function
3411  * @publish_type: &nl80211_nan_publish_type
3412  * @close_range: if true, the range should be limited. Threshold is
3413  *	implementation specific.
3414  * @publish_bcast: if true, the solicited publish should be broadcasted
3415  * @subscribe_active: if true, the subscribe is active
3416  * @followup_id: the instance ID for follow up
3417  * @followup_reqid: the requestor instance ID for follow up
3418  * @followup_dest: MAC address of the recipient of the follow up
3419  * @ttl: time to live counter in DW.
3420  * @serv_spec_info: Service Specific Info
3421  * @serv_spec_info_len: Service Specific Info length
3422  * @srf_include: if true, SRF is inclusive
3423  * @srf_bf: Bloom Filter
3424  * @srf_bf_len: Bloom Filter length
3425  * @srf_bf_idx: Bloom Filter index
3426  * @srf_macs: SRF MAC addresses
3427  * @srf_num_macs: number of MAC addresses in SRF
3428  * @rx_filters: rx filters that are matched with corresponding peer's tx_filter
3429  * @tx_filters: filters that should be transmitted in the SDF.
3430  * @num_rx_filters: length of &rx_filters.
3431  * @num_tx_filters: length of &tx_filters.
3432  * @instance_id: driver allocated id of the function.
3433  * @cookie: unique NAN function identifier.
3434  */
3435 struct cfg80211_nan_func {
3436 	enum nl80211_nan_function_type type;
3437 	u8 service_id[NL80211_NAN_FUNC_SERVICE_ID_LEN];
3438 	u8 publish_type;
3439 	bool close_range;
3440 	bool publish_bcast;
3441 	bool subscribe_active;
3442 	u8 followup_id;
3443 	u8 followup_reqid;
3444 	struct mac_address followup_dest;
3445 	u32 ttl;
3446 	const u8 *serv_spec_info;
3447 	u8 serv_spec_info_len;
3448 	bool srf_include;
3449 	const u8 *srf_bf;
3450 	u8 srf_bf_len;
3451 	u8 srf_bf_idx;
3452 	struct mac_address *srf_macs;
3453 	int srf_num_macs;
3454 	struct cfg80211_nan_func_filter *rx_filters;
3455 	struct cfg80211_nan_func_filter *tx_filters;
3456 	u8 num_tx_filters;
3457 	u8 num_rx_filters;
3458 	u8 instance_id;
3459 	u64 cookie;
3460 };
3461 
3462 /**
3463  * struct cfg80211_pmk_conf - PMK configuration
3464  *
3465  * @aa: authenticator address
3466  * @pmk_len: PMK length in bytes.
3467  * @pmk: the PMK material
3468  * @pmk_r0_name: PMK-R0 Name. NULL if not applicable (i.e., the PMK
3469  *	is not PMK-R0). When pmk_r0_name is not NULL, the pmk field
3470  *	holds PMK-R0.
3471  */
3472 struct cfg80211_pmk_conf {
3473 	const u8 *aa;
3474 	u8 pmk_len;
3475 	const u8 *pmk;
3476 	const u8 *pmk_r0_name;
3477 };
3478 
3479 /**
3480  * struct cfg80211_external_auth_params - Trigger External authentication.
3481  *
3482  * Commonly used across the external auth request and event interfaces.
3483  *
3484  * @action: action type / trigger for external authentication. Only significant
3485  *	for the authentication request event interface (driver to user space).
3486  * @bssid: BSSID of the peer with which the authentication has
3487  *	to happen. Used by both the authentication request event and
3488  *	authentication response command interface.
3489  * @ssid: SSID of the AP.  Used by both the authentication request event and
3490  *	authentication response command interface.
3491  * @key_mgmt_suite: AKM suite of the respective authentication. Used by the
3492  *	authentication request event interface.
3493  * @status: status code, %WLAN_STATUS_SUCCESS for successful authentication,
3494  *	use %WLAN_STATUS_UNSPECIFIED_FAILURE if user space cannot give you
3495  *	the real status code for failures. Used only for the authentication
3496  *	response command interface (user space to driver).
3497  * @pmkid: The identifier to refer a PMKSA.
3498  */
3499 struct cfg80211_external_auth_params {
3500 	enum nl80211_external_auth_action action;
3501 	u8 bssid[ETH_ALEN] __aligned(2);
3502 	struct cfg80211_ssid ssid;
3503 	unsigned int key_mgmt_suite;
3504 	u16 status;
3505 	const u8 *pmkid;
3506 };
3507 
3508 /**
3509  * struct cfg80211_ftm_responder_stats - FTM responder statistics
3510  *
3511  * @filled: bitflag of flags using the bits of &enum nl80211_ftm_stats to
3512  *	indicate the relevant values in this struct for them
3513  * @success_num: number of FTM sessions in which all frames were successfully
3514  *	answered
3515  * @partial_num: number of FTM sessions in which part of frames were
3516  *	successfully answered
3517  * @failed_num: number of failed FTM sessions
3518  * @asap_num: number of ASAP FTM sessions
3519  * @non_asap_num: number of  non-ASAP FTM sessions
3520  * @total_duration_ms: total sessions durations - gives an indication
3521  *	of how much time the responder was busy
3522  * @unknown_triggers_num: number of unknown FTM triggers - triggers from
3523  *	initiators that didn't finish successfully the negotiation phase with
3524  *	the responder
3525  * @reschedule_requests_num: number of FTM reschedule requests - initiator asks
3526  *	for a new scheduling although it already has scheduled FTM slot
3527  * @out_of_window_triggers_num: total FTM triggers out of scheduled window
3528  */
3529 struct cfg80211_ftm_responder_stats {
3530 	u32 filled;
3531 	u32 success_num;
3532 	u32 partial_num;
3533 	u32 failed_num;
3534 	u32 asap_num;
3535 	u32 non_asap_num;
3536 	u64 total_duration_ms;
3537 	u32 unknown_triggers_num;
3538 	u32 reschedule_requests_num;
3539 	u32 out_of_window_triggers_num;
3540 };
3541 
3542 /**
3543  * struct cfg80211_pmsr_ftm_result - FTM result
3544  * @failure_reason: if this measurement failed (PMSR status is
3545  *	%NL80211_PMSR_STATUS_FAILURE), this gives a more precise
3546  *	reason than just "failure"
3547  * @burst_index: if reporting partial results, this is the index
3548  *	in [0 .. num_bursts-1] of the burst that's being reported
3549  * @num_ftmr_attempts: number of FTM request frames transmitted
3550  * @num_ftmr_successes: number of FTM request frames acked
3551  * @busy_retry_time: if failure_reason is %NL80211_PMSR_FTM_FAILURE_PEER_BUSY,
3552  *	fill this to indicate in how many seconds a retry is deemed possible
3553  *	by the responder
3554  * @num_bursts_exp: actual number of bursts exponent negotiated
3555  * @burst_duration: actual burst duration negotiated
3556  * @ftms_per_burst: actual FTMs per burst negotiated
3557  * @lci_len: length of LCI information (if present)
3558  * @civicloc_len: length of civic location information (if present)
3559  * @lci: LCI data (may be %NULL)
3560  * @civicloc: civic location data (may be %NULL)
3561  * @rssi_avg: average RSSI over FTM action frames reported
3562  * @rssi_spread: spread of the RSSI over FTM action frames reported
3563  * @tx_rate: bitrate for transmitted FTM action frame response
3564  * @rx_rate: bitrate of received FTM action frame
3565  * @rtt_avg: average of RTTs measured (must have either this or @dist_avg)
3566  * @rtt_variance: variance of RTTs measured (note that standard deviation is
3567  *	the square root of the variance)
3568  * @rtt_spread: spread of the RTTs measured
3569  * @dist_avg: average of distances (mm) measured
3570  *	(must have either this or @rtt_avg)
3571  * @dist_variance: variance of distances measured (see also @rtt_variance)
3572  * @dist_spread: spread of distances measured (see also @rtt_spread)
3573  * @num_ftmr_attempts_valid: @num_ftmr_attempts is valid
3574  * @num_ftmr_successes_valid: @num_ftmr_successes is valid
3575  * @rssi_avg_valid: @rssi_avg is valid
3576  * @rssi_spread_valid: @rssi_spread is valid
3577  * @tx_rate_valid: @tx_rate is valid
3578  * @rx_rate_valid: @rx_rate is valid
3579  * @rtt_avg_valid: @rtt_avg is valid
3580  * @rtt_variance_valid: @rtt_variance is valid
3581  * @rtt_spread_valid: @rtt_spread is valid
3582  * @dist_avg_valid: @dist_avg is valid
3583  * @dist_variance_valid: @dist_variance is valid
3584  * @dist_spread_valid: @dist_spread is valid
3585  */
3586 struct cfg80211_pmsr_ftm_result {
3587 	const u8 *lci;
3588 	const u8 *civicloc;
3589 	unsigned int lci_len;
3590 	unsigned int civicloc_len;
3591 	enum nl80211_peer_measurement_ftm_failure_reasons failure_reason;
3592 	u32 num_ftmr_attempts, num_ftmr_successes;
3593 	s16 burst_index;
3594 	u8 busy_retry_time;
3595 	u8 num_bursts_exp;
3596 	u8 burst_duration;
3597 	u8 ftms_per_burst;
3598 	s32 rssi_avg;
3599 	s32 rssi_spread;
3600 	struct rate_info tx_rate, rx_rate;
3601 	s64 rtt_avg;
3602 	s64 rtt_variance;
3603 	s64 rtt_spread;
3604 	s64 dist_avg;
3605 	s64 dist_variance;
3606 	s64 dist_spread;
3607 
3608 	u16 num_ftmr_attempts_valid:1,
3609 	    num_ftmr_successes_valid:1,
3610 	    rssi_avg_valid:1,
3611 	    rssi_spread_valid:1,
3612 	    tx_rate_valid:1,
3613 	    rx_rate_valid:1,
3614 	    rtt_avg_valid:1,
3615 	    rtt_variance_valid:1,
3616 	    rtt_spread_valid:1,
3617 	    dist_avg_valid:1,
3618 	    dist_variance_valid:1,
3619 	    dist_spread_valid:1;
3620 };
3621 
3622 /**
3623  * struct cfg80211_pmsr_result - peer measurement result
3624  * @addr: address of the peer
3625  * @host_time: host time (use ktime_get_boottime() adjust to the time when the
3626  *	measurement was made)
3627  * @ap_tsf: AP's TSF at measurement time
3628  * @status: status of the measurement
3629  * @final: if reporting partial results, mark this as the last one; if not
3630  *	reporting partial results always set this flag
3631  * @ap_tsf_valid: indicates the @ap_tsf value is valid
3632  * @type: type of the measurement reported, note that we only support reporting
3633  *	one type at a time, but you can report multiple results separately and
3634  *	they're all aggregated for userspace.
3635  */
3636 struct cfg80211_pmsr_result {
3637 	u64 host_time, ap_tsf;
3638 	enum nl80211_peer_measurement_status status;
3639 
3640 	u8 addr[ETH_ALEN];
3641 
3642 	u8 final:1,
3643 	   ap_tsf_valid:1;
3644 
3645 	enum nl80211_peer_measurement_type type;
3646 
3647 	union {
3648 		struct cfg80211_pmsr_ftm_result ftm;
3649 	};
3650 };
3651 
3652 /**
3653  * struct cfg80211_pmsr_ftm_request_peer - FTM request data
3654  * @requested: indicates FTM is requested
3655  * @preamble: frame preamble to use
3656  * @burst_period: burst period to use
3657  * @asap: indicates to use ASAP mode
3658  * @num_bursts_exp: number of bursts exponent
3659  * @burst_duration: burst duration
3660  * @ftms_per_burst: number of FTMs per burst
3661  * @ftmr_retries: number of retries for FTM request
3662  * @request_lci: request LCI information
3663  * @request_civicloc: request civic location information
3664  * @trigger_based: use trigger based ranging for the measurement
3665  *		 If neither @trigger_based nor @non_trigger_based is set,
3666  *		 EDCA based ranging will be used.
3667  * @non_trigger_based: use non trigger based ranging for the measurement
3668  *		 If neither @trigger_based nor @non_trigger_based is set,
3669  *		 EDCA based ranging will be used.
3670  * @lmr_feedback: negotiate for I2R LMR feedback. Only valid if either
3671  *		 @trigger_based or @non_trigger_based is set.
3672  * @bss_color: the bss color of the responder. Optional. Set to zero to
3673  *	indicate the driver should set the BSS color. Only valid if
3674  *	@non_trigger_based or @trigger_based is set.
3675  *
3676  * See also nl80211 for the respective attribute documentation.
3677  */
3678 struct cfg80211_pmsr_ftm_request_peer {
3679 	enum nl80211_preamble preamble;
3680 	u16 burst_period;
3681 	u8 requested:1,
3682 	   asap:1,
3683 	   request_lci:1,
3684 	   request_civicloc:1,
3685 	   trigger_based:1,
3686 	   non_trigger_based:1,
3687 	   lmr_feedback:1;
3688 	u8 num_bursts_exp;
3689 	u8 burst_duration;
3690 	u8 ftms_per_burst;
3691 	u8 ftmr_retries;
3692 	u8 bss_color;
3693 };
3694 
3695 /**
3696  * struct cfg80211_pmsr_request_peer - peer data for a peer measurement request
3697  * @addr: MAC address
3698  * @chandef: channel to use
3699  * @report_ap_tsf: report the associated AP's TSF
3700  * @ftm: FTM data, see &struct cfg80211_pmsr_ftm_request_peer
3701  */
3702 struct cfg80211_pmsr_request_peer {
3703 	u8 addr[ETH_ALEN];
3704 	struct cfg80211_chan_def chandef;
3705 	u8 report_ap_tsf:1;
3706 	struct cfg80211_pmsr_ftm_request_peer ftm;
3707 };
3708 
3709 /**
3710  * struct cfg80211_pmsr_request - peer measurement request
3711  * @cookie: cookie, set by cfg80211
3712  * @nl_portid: netlink portid - used by cfg80211
3713  * @drv_data: driver data for this request, if required for aborting,
3714  *	not otherwise freed or anything by cfg80211
3715  * @mac_addr: MAC address used for (randomised) request
3716  * @mac_addr_mask: MAC address mask used for randomisation, bits that
3717  *	are 0 in the mask should be randomised, bits that are 1 should
3718  *	be taken from the @mac_addr
3719  * @list: used by cfg80211 to hold on to the request
3720  * @timeout: timeout (in milliseconds) for the whole operation, if
3721  *	zero it means there's no timeout
3722  * @n_peers: number of peers to do measurements with
3723  * @peers: per-peer measurement request data
3724  */
3725 struct cfg80211_pmsr_request {
3726 	u64 cookie;
3727 	void *drv_data;
3728 	u32 n_peers;
3729 	u32 nl_portid;
3730 
3731 	u32 timeout;
3732 
3733 	u8 mac_addr[ETH_ALEN] __aligned(2);
3734 	u8 mac_addr_mask[ETH_ALEN] __aligned(2);
3735 
3736 	struct list_head list;
3737 
3738 	struct cfg80211_pmsr_request_peer peers[];
3739 };
3740 
3741 /**
3742  * struct cfg80211_update_owe_info - OWE Information
3743  *
3744  * This structure provides information needed for the drivers to offload OWE
3745  * (Opportunistic Wireless Encryption) processing to the user space.
3746  *
3747  * Commonly used across update_owe_info request and event interfaces.
3748  *
3749  * @peer: MAC address of the peer device for which the OWE processing
3750  *	has to be done.
3751  * @status: status code, %WLAN_STATUS_SUCCESS for successful OWE info
3752  *	processing, use %WLAN_STATUS_UNSPECIFIED_FAILURE if user space
3753  *	cannot give you the real status code for failures. Used only for
3754  *	OWE update request command interface (user space to driver).
3755  * @ie: IEs obtained from the peer or constructed by the user space. These are
3756  *	the IEs of the remote peer in the event from the host driver and
3757  *	the constructed IEs by the user space in the request interface.
3758  * @ie_len: Length of IEs in octets.
3759  */
3760 struct cfg80211_update_owe_info {
3761 	u8 peer[ETH_ALEN] __aligned(2);
3762 	u16 status;
3763 	const u8 *ie;
3764 	size_t ie_len;
3765 };
3766 
3767 /**
3768  * struct mgmt_frame_regs - management frame registrations data
3769  * @global_stypes: bitmap of management frame subtypes registered
3770  *	for the entire device
3771  * @interface_stypes: bitmap of management frame subtypes registered
3772  *	for the given interface
3773  * @global_mcast_rx: mcast RX is needed globally for these subtypes
3774  * @interface_mcast_stypes: mcast RX is needed on this interface
3775  *	for these subtypes
3776  */
3777 struct mgmt_frame_regs {
3778 	u32 global_stypes, interface_stypes;
3779 	u32 global_mcast_stypes, interface_mcast_stypes;
3780 };
3781 
3782 /**
3783  * struct cfg80211_ops - backend description for wireless configuration
3784  *
3785  * This struct is registered by fullmac card drivers and/or wireless stacks
3786  * in order to handle configuration requests on their interfaces.
3787  *
3788  * All callbacks except where otherwise noted should return 0
3789  * on success or a negative error code.
3790  *
3791  * All operations are invoked with the wiphy mutex held. The RTNL may be
3792  * held in addition (due to wireless extensions) but this cannot be relied
3793  * upon except in cases where documented below. Note that due to ordering,
3794  * the RTNL also cannot be acquired in any handlers.
3795  *
3796  * @suspend: wiphy device needs to be suspended. The variable @wow will
3797  *	be %NULL or contain the enabled Wake-on-Wireless triggers that are
3798  *	configured for the device.
3799  * @resume: wiphy device needs to be resumed
3800  * @set_wakeup: Called when WoWLAN is enabled/disabled, use this callback
3801  *	to call device_set_wakeup_enable() to enable/disable wakeup from
3802  *	the device.
3803  *
3804  * @add_virtual_intf: create a new virtual interface with the given name,
3805  *	must set the struct wireless_dev's iftype. Beware: You must create
3806  *	the new netdev in the wiphy's network namespace! Returns the struct
3807  *	wireless_dev, or an ERR_PTR. For P2P device wdevs, the driver must
3808  *	also set the address member in the wdev.
3809  *	This additionally holds the RTNL to be able to do netdev changes.
3810  *
3811  * @del_virtual_intf: remove the virtual interface
3812  *	This additionally holds the RTNL to be able to do netdev changes.
3813  *
3814  * @change_virtual_intf: change type/configuration of virtual interface,
3815  *	keep the struct wireless_dev's iftype updated.
3816  *	This additionally holds the RTNL to be able to do netdev changes.
3817  *
3818  * @add_key: add a key with the given parameters. @mac_addr will be %NULL
3819  *	when adding a group key.
3820  *
3821  * @get_key: get information about the key with the given parameters.
3822  *	@mac_addr will be %NULL when requesting information for a group
3823  *	key. All pointers given to the @callback function need not be valid
3824  *	after it returns. This function should return an error if it is
3825  *	not possible to retrieve the key, -ENOENT if it doesn't exist.
3826  *
3827  * @del_key: remove a key given the @mac_addr (%NULL for a group key)
3828  *	and @key_index, return -ENOENT if the key doesn't exist.
3829  *
3830  * @set_default_key: set the default key on an interface
3831  *
3832  * @set_default_mgmt_key: set the default management frame key on an interface
3833  *
3834  * @set_default_beacon_key: set the default Beacon frame key on an interface
3835  *
3836  * @set_rekey_data: give the data necessary for GTK rekeying to the driver
3837  *
3838  * @start_ap: Start acting in AP mode defined by the parameters.
3839  * @change_beacon: Change the beacon parameters for an access point mode
3840  *	interface. This should reject the call when AP mode wasn't started.
3841  * @stop_ap: Stop being an AP, including stopping beaconing.
3842  *
3843  * @add_station: Add a new station.
3844  * @del_station: Remove a station
3845  * @change_station: Modify a given station. Note that flags changes are not much
3846  *	validated in cfg80211, in particular the auth/assoc/authorized flags
3847  *	might come to the driver in invalid combinations -- make sure to check
3848  *	them, also against the existing state! Drivers must call
3849  *	cfg80211_check_station_change() to validate the information.
3850  * @get_station: get station information for the station identified by @mac
3851  * @dump_station: dump station callback -- resume dump at index @idx
3852  *
3853  * @add_mpath: add a fixed mesh path
3854  * @del_mpath: delete a given mesh path
3855  * @change_mpath: change a given mesh path
3856  * @get_mpath: get a mesh path for the given parameters
3857  * @dump_mpath: dump mesh path callback -- resume dump at index @idx
3858  * @get_mpp: get a mesh proxy path for the given parameters
3859  * @dump_mpp: dump mesh proxy path callback -- resume dump at index @idx
3860  * @join_mesh: join the mesh network with the specified parameters
3861  *	(invoked with the wireless_dev mutex held)
3862  * @leave_mesh: leave the current mesh network
3863  *	(invoked with the wireless_dev mutex held)
3864  *
3865  * @get_mesh_config: Get the current mesh configuration
3866  *
3867  * @update_mesh_config: Update mesh parameters on a running mesh.
3868  *	The mask is a bitfield which tells us which parameters to
3869  *	set, and which to leave alone.
3870  *
3871  * @change_bss: Modify parameters for a given BSS.
3872  *
3873  * @set_txq_params: Set TX queue parameters
3874  *
3875  * @libertas_set_mesh_channel: Only for backward compatibility for libertas,
3876  *	as it doesn't implement join_mesh and needs to set the channel to
3877  *	join the mesh instead.
3878  *
3879  * @set_monitor_channel: Set the monitor mode channel for the device. If other
3880  *	interfaces are active this callback should reject the configuration.
3881  *	If no interfaces are active or the device is down, the channel should
3882  *	be stored for when a monitor interface becomes active.
3883  *
3884  * @scan: Request to do a scan. If returning zero, the scan request is given
3885  *	the driver, and will be valid until passed to cfg80211_scan_done().
3886  *	For scan results, call cfg80211_inform_bss(); you can call this outside
3887  *	the scan/scan_done bracket too.
3888  * @abort_scan: Tell the driver to abort an ongoing scan. The driver shall
3889  *	indicate the status of the scan through cfg80211_scan_done().
3890  *
3891  * @auth: Request to authenticate with the specified peer
3892  *	(invoked with the wireless_dev mutex held)
3893  * @assoc: Request to (re)associate with the specified peer
3894  *	(invoked with the wireless_dev mutex held)
3895  * @deauth: Request to deauthenticate from the specified peer
3896  *	(invoked with the wireless_dev mutex held)
3897  * @disassoc: Request to disassociate from the specified peer
3898  *	(invoked with the wireless_dev mutex held)
3899  *
3900  * @connect: Connect to the ESS with the specified parameters. When connected,
3901  *	call cfg80211_connect_result()/cfg80211_connect_bss() with status code
3902  *	%WLAN_STATUS_SUCCESS. If the connection fails for some reason, call
3903  *	cfg80211_connect_result()/cfg80211_connect_bss() with the status code
3904  *	from the AP or cfg80211_connect_timeout() if no frame with status code
3905  *	was received.
3906  *	The driver is allowed to roam to other BSSes within the ESS when the
3907  *	other BSS matches the connect parameters. When such roaming is initiated
3908  *	by the driver, the driver is expected to verify that the target matches
3909  *	the configured security parameters and to use Reassociation Request
3910  *	frame instead of Association Request frame.
3911  *	The connect function can also be used to request the driver to perform a
3912  *	specific roam when connected to an ESS. In that case, the prev_bssid
3913  *	parameter is set to the BSSID of the currently associated BSS as an
3914  *	indication of requesting reassociation.
3915  *	In both the driver-initiated and new connect() call initiated roaming
3916  *	cases, the result of roaming is indicated with a call to
3917  *	cfg80211_roamed(). (invoked with the wireless_dev mutex held)
3918  * @update_connect_params: Update the connect parameters while connected to a
3919  *	BSS. The updated parameters can be used by driver/firmware for
3920  *	subsequent BSS selection (roaming) decisions and to form the
3921  *	Authentication/(Re)Association Request frames. This call does not
3922  *	request an immediate disassociation or reassociation with the current
3923  *	BSS, i.e., this impacts only subsequent (re)associations. The bits in
3924  *	changed are defined in &enum cfg80211_connect_params_changed.
3925  *	(invoked with the wireless_dev mutex held)
3926  * @disconnect: Disconnect from the BSS/ESS or stop connection attempts if
3927  *      connection is in progress. Once done, call cfg80211_disconnected() in
3928  *      case connection was already established (invoked with the
3929  *      wireless_dev mutex held), otherwise call cfg80211_connect_timeout().
3930  *
3931  * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
3932  *	cfg80211_ibss_joined(), also call that function when changing BSSID due
3933  *	to a merge.
3934  *	(invoked with the wireless_dev mutex held)
3935  * @leave_ibss: Leave the IBSS.
3936  *	(invoked with the wireless_dev mutex held)
3937  *
3938  * @set_mcast_rate: Set the specified multicast rate (only if vif is in ADHOC or
3939  *	MESH mode)
3940  *
3941  * @set_wiphy_params: Notify that wiphy parameters have changed;
3942  *	@changed bitfield (see &enum wiphy_params_flags) describes which values
3943  *	have changed. The actual parameter values are available in
3944  *	struct wiphy. If returning an error, no value should be changed.
3945  *
3946  * @set_tx_power: set the transmit power according to the parameters,
3947  *	the power passed is in mBm, to get dBm use MBM_TO_DBM(). The
3948  *	wdev may be %NULL if power was set for the wiphy, and will
3949  *	always be %NULL unless the driver supports per-vif TX power
3950  *	(as advertised by the nl80211 feature flag.)
3951  * @get_tx_power: store the current TX power into the dbm variable;
3952  *	return 0 if successful
3953  *
3954  * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
3955  *	functions to adjust rfkill hw state
3956  *
3957  * @dump_survey: get site survey information.
3958  *
3959  * @remain_on_channel: Request the driver to remain awake on the specified
3960  *	channel for the specified duration to complete an off-channel
3961  *	operation (e.g., public action frame exchange). When the driver is
3962  *	ready on the requested channel, it must indicate this with an event
3963  *	notification by calling cfg80211_ready_on_channel().
3964  * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
3965  *	This allows the operation to be terminated prior to timeout based on
3966  *	the duration value.
3967  * @mgmt_tx: Transmit a management frame.
3968  * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
3969  *	frame on another channel
3970  *
3971  * @testmode_cmd: run a test mode command; @wdev may be %NULL
3972  * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
3973  *	used by the function, but 0 and 1 must not be touched. Additionally,
3974  *	return error codes other than -ENOBUFS and -ENOENT will terminate the
3975  *	dump and return to userspace with an error, so be careful. If any data
3976  *	was passed in from userspace then the data/len arguments will be present
3977  *	and point to the data contained in %NL80211_ATTR_TESTDATA.
3978  *
3979  * @set_bitrate_mask: set the bitrate mask configuration
3980  *
3981  * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
3982  *	devices running firmwares capable of generating the (re) association
3983  *	RSN IE. It allows for faster roaming between WPA2 BSSIDs.
3984  * @del_pmksa: Delete a cached PMKID.
3985  * @flush_pmksa: Flush all cached PMKIDs.
3986  * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
3987  *	allows the driver to adjust the dynamic ps timeout value.
3988  * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
3989  *	After configuration, the driver should (soon) send an event indicating
3990  *	the current level is above/below the configured threshold; this may
3991  *	need some care when the configuration is changed (without first being
3992  *	disabled.)
3993  * @set_cqm_rssi_range_config: Configure two RSSI thresholds in the
3994  *	connection quality monitor.  An event is to be sent only when the
3995  *	signal level is found to be outside the two values.  The driver should
3996  *	set %NL80211_EXT_FEATURE_CQM_RSSI_LIST if this method is implemented.
3997  *	If it is provided then there's no point providing @set_cqm_rssi_config.
3998  * @set_cqm_txe_config: Configure connection quality monitor TX error
3999  *	thresholds.
4000  * @sched_scan_start: Tell the driver to start a scheduled scan.
4001  * @sched_scan_stop: Tell the driver to stop an ongoing scheduled scan with
4002  *	given request id. This call must stop the scheduled scan and be ready
4003  *	for starting a new one before it returns, i.e. @sched_scan_start may be
4004  *	called immediately after that again and should not fail in that case.
4005  *	The driver should not call cfg80211_sched_scan_stopped() for a requested
4006  *	stop (when this method returns 0).
4007  *
4008  * @update_mgmt_frame_registrations: Notify the driver that management frame
4009  *	registrations were updated. The callback is allowed to sleep.
4010  *
4011  * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
4012  *	Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
4013  *	reject TX/RX mask combinations they cannot support by returning -EINVAL
4014  *	(also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
4015  *
4016  * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
4017  *
4018  * @tdls_mgmt: Transmit a TDLS management frame.
4019  * @tdls_oper: Perform a high-level TDLS operation (e.g. TDLS link setup).
4020  *
4021  * @probe_client: probe an associated client, must return a cookie that it
4022  *	later passes to cfg80211_probe_status().
4023  *
4024  * @set_noack_map: Set the NoAck Map for the TIDs.
4025  *
4026  * @get_channel: Get the current operating channel for the virtual interface.
4027  *	For monitor interfaces, it should return %NULL unless there's a single
4028  *	current monitoring channel.
4029  *
4030  * @start_p2p_device: Start the given P2P device.
4031  * @stop_p2p_device: Stop the given P2P device.
4032  *
4033  * @set_mac_acl: Sets MAC address control list in AP and P2P GO mode.
4034  *	Parameters include ACL policy, an array of MAC address of stations
4035  *	and the number of MAC addresses. If there is already a list in driver
4036  *	this new list replaces the existing one. Driver has to clear its ACL
4037  *	when number of MAC addresses entries is passed as 0. Drivers which
4038  *	advertise the support for MAC based ACL have to implement this callback.
4039  *
4040  * @start_radar_detection: Start radar detection in the driver.
4041  *
4042  * @end_cac: End running CAC, probably because a related CAC
4043  *	was finished on another phy.
4044  *
4045  * @update_ft_ies: Provide updated Fast BSS Transition information to the
4046  *	driver. If the SME is in the driver/firmware, this information can be
4047  *	used in building Authentication and Reassociation Request frames.
4048  *
4049  * @crit_proto_start: Indicates a critical protocol needs more link reliability
4050  *	for a given duration (milliseconds). The protocol is provided so the
4051  *	driver can take the most appropriate actions.
4052  * @crit_proto_stop: Indicates critical protocol no longer needs increased link
4053  *	reliability. This operation can not fail.
4054  * @set_coalesce: Set coalesce parameters.
4055  *
4056  * @channel_switch: initiate channel-switch procedure (with CSA). Driver is
4057  *	responsible for veryfing if the switch is possible. Since this is
4058  *	inherently tricky driver may decide to disconnect an interface later
4059  *	with cfg80211_stop_iface(). This doesn't mean driver can accept
4060  *	everything. It should do it's best to verify requests and reject them
4061  *	as soon as possible.
4062  *
4063  * @set_qos_map: Set QoS mapping information to the driver
4064  *
4065  * @set_ap_chanwidth: Set the AP (including P2P GO) mode channel width for the
4066  *	given interface This is used e.g. for dynamic HT 20/40 MHz channel width
4067  *	changes during the lifetime of the BSS.
4068  *
4069  * @add_tx_ts: validate (if admitted_time is 0) or add a TX TS to the device
4070  *	with the given parameters; action frame exchange has been handled by
4071  *	userspace so this just has to modify the TX path to take the TS into
4072  *	account.
4073  *	If the admitted time is 0 just validate the parameters to make sure
4074  *	the session can be created at all; it is valid to just always return
4075  *	success for that but that may result in inefficient behaviour (handshake
4076  *	with the peer followed by immediate teardown when the addition is later
4077  *	rejected)
4078  * @del_tx_ts: remove an existing TX TS
4079  *
4080  * @join_ocb: join the OCB network with the specified parameters
4081  *	(invoked with the wireless_dev mutex held)
4082  * @leave_ocb: leave the current OCB network
4083  *	(invoked with the wireless_dev mutex held)
4084  *
4085  * @tdls_channel_switch: Start channel-switching with a TDLS peer. The driver
4086  *	is responsible for continually initiating channel-switching operations
4087  *	and returning to the base channel for communication with the AP.
4088  * @tdls_cancel_channel_switch: Stop channel-switching with a TDLS peer. Both
4089  *	peers must be on the base channel when the call completes.
4090  * @start_nan: Start the NAN interface.
4091  * @stop_nan: Stop the NAN interface.
4092  * @add_nan_func: Add a NAN function. Returns negative value on failure.
4093  *	On success @nan_func ownership is transferred to the driver and
4094  *	it may access it outside of the scope of this function. The driver
4095  *	should free the @nan_func when no longer needed by calling
4096  *	cfg80211_free_nan_func().
4097  *	On success the driver should assign an instance_id in the
4098  *	provided @nan_func.
4099  * @del_nan_func: Delete a NAN function.
4100  * @nan_change_conf: changes NAN configuration. The changed parameters must
4101  *	be specified in @changes (using &enum cfg80211_nan_conf_changes);
4102  *	All other parameters must be ignored.
4103  *
4104  * @set_multicast_to_unicast: configure multicast to unicast conversion for BSS
4105  *
4106  * @get_txq_stats: Get TXQ stats for interface or phy. If wdev is %NULL, this
4107  *      function should return phy stats, and interface stats otherwise.
4108  *
4109  * @set_pmk: configure the PMK to be used for offloaded 802.1X 4-Way handshake.
4110  *	If not deleted through @del_pmk the PMK remains valid until disconnect
4111  *	upon which the driver should clear it.
4112  *	(invoked with the wireless_dev mutex held)
4113  * @del_pmk: delete the previously configured PMK for the given authenticator.
4114  *	(invoked with the wireless_dev mutex held)
4115  *
4116  * @external_auth: indicates result of offloaded authentication processing from
4117  *     user space
4118  *
4119  * @tx_control_port: TX a control port frame (EAPoL).  The noencrypt parameter
4120  *	tells the driver that the frame should not be encrypted.
4121  *
4122  * @get_ftm_responder_stats: Retrieve FTM responder statistics, if available.
4123  *	Statistics should be cumulative, currently no way to reset is provided.
4124  * @start_pmsr: start peer measurement (e.g. FTM)
4125  * @abort_pmsr: abort peer measurement
4126  *
4127  * @update_owe_info: Provide updated OWE info to driver. Driver implementing SME
4128  *	but offloading OWE processing to the user space will get the updated
4129  *	DH IE through this interface.
4130  *
4131  * @probe_mesh_link: Probe direct Mesh peer's link quality by sending data frame
4132  *	and overrule HWMP path selection algorithm.
4133  * @set_tid_config: TID specific configuration, this can be peer or BSS specific
4134  *	This callback may sleep.
4135  * @reset_tid_config: Reset TID specific configuration for the peer, for the
4136  *	given TIDs. This callback may sleep.
4137  *
4138  * @set_sar_specs: Update the SAR (TX power) settings.
4139  *
4140  * @color_change: Initiate a color change.
4141  *
4142  * @set_fils_aad: Set FILS AAD data to the AP driver so that the driver can use
4143  *	those to decrypt (Re)Association Request and encrypt (Re)Association
4144  *	Response frame.
4145  *
4146  * @set_radar_background: Configure dedicated offchannel chain available for
4147  *	radar/CAC detection on some hw. This chain can't be used to transmit
4148  *	or receive frames and it is bounded to a running wdev.
4149  *	Background radar/CAC detection allows to avoid the CAC downtime
4150  *	switching to a different channel during CAC detection on the selected
4151  *	radar channel.
4152  *	The caller is expected to set chandef pointer to NULL in order to
4153  *	disable background CAC/radar detection.
4154  */
4155 struct cfg80211_ops {
4156 	int	(*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
4157 	int	(*resume)(struct wiphy *wiphy);
4158 	void	(*set_wakeup)(struct wiphy *wiphy, bool enabled);
4159 
4160 	struct wireless_dev * (*add_virtual_intf)(struct wiphy *wiphy,
4161 						  const char *name,
4162 						  unsigned char name_assign_type,
4163 						  enum nl80211_iftype type,
4164 						  struct vif_params *params);
4165 	int	(*del_virtual_intf)(struct wiphy *wiphy,
4166 				    struct wireless_dev *wdev);
4167 	int	(*change_virtual_intf)(struct wiphy *wiphy,
4168 				       struct net_device *dev,
4169 				       enum nl80211_iftype type,
4170 				       struct vif_params *params);
4171 
4172 	int	(*add_key)(struct wiphy *wiphy, struct net_device *netdev,
4173 			   u8 key_index, bool pairwise, const u8 *mac_addr,
4174 			   struct key_params *params);
4175 	int	(*get_key)(struct wiphy *wiphy, struct net_device *netdev,
4176 			   u8 key_index, bool pairwise, const u8 *mac_addr,
4177 			   void *cookie,
4178 			   void (*callback)(void *cookie, struct key_params*));
4179 	int	(*del_key)(struct wiphy *wiphy, struct net_device *netdev,
4180 			   u8 key_index, bool pairwise, const u8 *mac_addr);
4181 	int	(*set_default_key)(struct wiphy *wiphy,
4182 				   struct net_device *netdev,
4183 				   u8 key_index, bool unicast, bool multicast);
4184 	int	(*set_default_mgmt_key)(struct wiphy *wiphy,
4185 					struct net_device *netdev,
4186 					u8 key_index);
4187 	int	(*set_default_beacon_key)(struct wiphy *wiphy,
4188 					  struct net_device *netdev,
4189 					  u8 key_index);
4190 
4191 	int	(*start_ap)(struct wiphy *wiphy, struct net_device *dev,
4192 			    struct cfg80211_ap_settings *settings);
4193 	int	(*change_beacon)(struct wiphy *wiphy, struct net_device *dev,
4194 				 struct cfg80211_beacon_data *info);
4195 	int	(*stop_ap)(struct wiphy *wiphy, struct net_device *dev);
4196 
4197 
4198 	int	(*add_station)(struct wiphy *wiphy, struct net_device *dev,
4199 			       const u8 *mac,
4200 			       struct station_parameters *params);
4201 	int	(*del_station)(struct wiphy *wiphy, struct net_device *dev,
4202 			       struct station_del_parameters *params);
4203 	int	(*change_station)(struct wiphy *wiphy, struct net_device *dev,
4204 				  const u8 *mac,
4205 				  struct station_parameters *params);
4206 	int	(*get_station)(struct wiphy *wiphy, struct net_device *dev,
4207 			       const u8 *mac, struct station_info *sinfo);
4208 	int	(*dump_station)(struct wiphy *wiphy, struct net_device *dev,
4209 				int idx, u8 *mac, struct station_info *sinfo);
4210 
4211 	int	(*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
4212 			       const u8 *dst, const u8 *next_hop);
4213 	int	(*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
4214 			       const u8 *dst);
4215 	int	(*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
4216 				  const u8 *dst, const u8 *next_hop);
4217 	int	(*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
4218 			     u8 *dst, u8 *next_hop, struct mpath_info *pinfo);
4219 	int	(*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
4220 			      int idx, u8 *dst, u8 *next_hop,
4221 			      struct mpath_info *pinfo);
4222 	int	(*get_mpp)(struct wiphy *wiphy, struct net_device *dev,
4223 			   u8 *dst, u8 *mpp, struct mpath_info *pinfo);
4224 	int	(*dump_mpp)(struct wiphy *wiphy, struct net_device *dev,
4225 			    int idx, u8 *dst, u8 *mpp,
4226 			    struct mpath_info *pinfo);
4227 	int	(*get_mesh_config)(struct wiphy *wiphy,
4228 				struct net_device *dev,
4229 				struct mesh_config *conf);
4230 	int	(*update_mesh_config)(struct wiphy *wiphy,
4231 				      struct net_device *dev, u32 mask,
4232 				      const struct mesh_config *nconf);
4233 	int	(*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
4234 			     const struct mesh_config *conf,
4235 			     const struct mesh_setup *setup);
4236 	int	(*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
4237 
4238 	int	(*join_ocb)(struct wiphy *wiphy, struct net_device *dev,
4239 			    struct ocb_setup *setup);
4240 	int	(*leave_ocb)(struct wiphy *wiphy, struct net_device *dev);
4241 
4242 	int	(*change_bss)(struct wiphy *wiphy, struct net_device *dev,
4243 			      struct bss_parameters *params);
4244 
4245 	int	(*set_txq_params)(struct wiphy *wiphy, struct net_device *dev,
4246 				  struct ieee80211_txq_params *params);
4247 
4248 	int	(*libertas_set_mesh_channel)(struct wiphy *wiphy,
4249 					     struct net_device *dev,
4250 					     struct ieee80211_channel *chan);
4251 
4252 	int	(*set_monitor_channel)(struct wiphy *wiphy,
4253 				       struct cfg80211_chan_def *chandef);
4254 
4255 	int	(*scan)(struct wiphy *wiphy,
4256 			struct cfg80211_scan_request *request);
4257 	void	(*abort_scan)(struct wiphy *wiphy, struct wireless_dev *wdev);
4258 
4259 	int	(*auth)(struct wiphy *wiphy, struct net_device *dev,
4260 			struct cfg80211_auth_request *req);
4261 	int	(*assoc)(struct wiphy *wiphy, struct net_device *dev,
4262 			 struct cfg80211_assoc_request *req);
4263 	int	(*deauth)(struct wiphy *wiphy, struct net_device *dev,
4264 			  struct cfg80211_deauth_request *req);
4265 	int	(*disassoc)(struct wiphy *wiphy, struct net_device *dev,
4266 			    struct cfg80211_disassoc_request *req);
4267 
4268 	int	(*connect)(struct wiphy *wiphy, struct net_device *dev,
4269 			   struct cfg80211_connect_params *sme);
4270 	int	(*update_connect_params)(struct wiphy *wiphy,
4271 					 struct net_device *dev,
4272 					 struct cfg80211_connect_params *sme,
4273 					 u32 changed);
4274 	int	(*disconnect)(struct wiphy *wiphy, struct net_device *dev,
4275 			      u16 reason_code);
4276 
4277 	int	(*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
4278 			     struct cfg80211_ibss_params *params);
4279 	int	(*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
4280 
4281 	int	(*set_mcast_rate)(struct wiphy *wiphy, struct net_device *dev,
4282 				  int rate[NUM_NL80211_BANDS]);
4283 
4284 	int	(*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
4285 
4286 	int	(*set_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
4287 				enum nl80211_tx_power_setting type, int mbm);
4288 	int	(*get_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
4289 				int *dbm);
4290 
4291 	void	(*rfkill_poll)(struct wiphy *wiphy);
4292 
4293 #ifdef CONFIG_NL80211_TESTMODE
4294 	int	(*testmode_cmd)(struct wiphy *wiphy, struct wireless_dev *wdev,
4295 				void *data, int len);
4296 	int	(*testmode_dump)(struct wiphy *wiphy, struct sk_buff *skb,
4297 				 struct netlink_callback *cb,
4298 				 void *data, int len);
4299 #endif
4300 
4301 	int	(*set_bitrate_mask)(struct wiphy *wiphy,
4302 				    struct net_device *dev,
4303 				    const u8 *peer,
4304 				    const struct cfg80211_bitrate_mask *mask);
4305 
4306 	int	(*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
4307 			int idx, struct survey_info *info);
4308 
4309 	int	(*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
4310 			     struct cfg80211_pmksa *pmksa);
4311 	int	(*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
4312 			     struct cfg80211_pmksa *pmksa);
4313 	int	(*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
4314 
4315 	int	(*remain_on_channel)(struct wiphy *wiphy,
4316 				     struct wireless_dev *wdev,
4317 				     struct ieee80211_channel *chan,
4318 				     unsigned int duration,
4319 				     u64 *cookie);
4320 	int	(*cancel_remain_on_channel)(struct wiphy *wiphy,
4321 					    struct wireless_dev *wdev,
4322 					    u64 cookie);
4323 
4324 	int	(*mgmt_tx)(struct wiphy *wiphy, struct wireless_dev *wdev,
4325 			   struct cfg80211_mgmt_tx_params *params,
4326 			   u64 *cookie);
4327 	int	(*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
4328 				       struct wireless_dev *wdev,
4329 				       u64 cookie);
4330 
4331 	int	(*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
4332 				  bool enabled, int timeout);
4333 
4334 	int	(*set_cqm_rssi_config)(struct wiphy *wiphy,
4335 				       struct net_device *dev,
4336 				       s32 rssi_thold, u32 rssi_hyst);
4337 
4338 	int	(*set_cqm_rssi_range_config)(struct wiphy *wiphy,
4339 					     struct net_device *dev,
4340 					     s32 rssi_low, s32 rssi_high);
4341 
4342 	int	(*set_cqm_txe_config)(struct wiphy *wiphy,
4343 				      struct net_device *dev,
4344 				      u32 rate, u32 pkts, u32 intvl);
4345 
4346 	void	(*update_mgmt_frame_registrations)(struct wiphy *wiphy,
4347 						   struct wireless_dev *wdev,
4348 						   struct mgmt_frame_regs *upd);
4349 
4350 	int	(*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
4351 	int	(*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
4352 
4353 	int	(*sched_scan_start)(struct wiphy *wiphy,
4354 				struct net_device *dev,
4355 				struct cfg80211_sched_scan_request *request);
4356 	int	(*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev,
4357 				   u64 reqid);
4358 
4359 	int	(*set_rekey_data)(struct wiphy *wiphy, struct net_device *dev,
4360 				  struct cfg80211_gtk_rekey_data *data);
4361 
4362 	int	(*tdls_mgmt)(struct wiphy *wiphy, struct net_device *dev,
4363 			     const u8 *peer, u8 action_code,  u8 dialog_token,
4364 			     u16 status_code, u32 peer_capability,
4365 			     bool initiator, const u8 *buf, size_t len);
4366 	int	(*tdls_oper)(struct wiphy *wiphy, struct net_device *dev,
4367 			     const u8 *peer, enum nl80211_tdls_operation oper);
4368 
4369 	int	(*probe_client)(struct wiphy *wiphy, struct net_device *dev,
4370 				const u8 *peer, u64 *cookie);
4371 
4372 	int	(*set_noack_map)(struct wiphy *wiphy,
4373 				  struct net_device *dev,
4374 				  u16 noack_map);
4375 
4376 	int	(*get_channel)(struct wiphy *wiphy,
4377 			       struct wireless_dev *wdev,
4378 			       struct cfg80211_chan_def *chandef);
4379 
4380 	int	(*start_p2p_device)(struct wiphy *wiphy,
4381 				    struct wireless_dev *wdev);
4382 	void	(*stop_p2p_device)(struct wiphy *wiphy,
4383 				   struct wireless_dev *wdev);
4384 
4385 	int	(*set_mac_acl)(struct wiphy *wiphy, struct net_device *dev,
4386 			       const struct cfg80211_acl_data *params);
4387 
4388 	int	(*start_radar_detection)(struct wiphy *wiphy,
4389 					 struct net_device *dev,
4390 					 struct cfg80211_chan_def *chandef,
4391 					 u32 cac_time_ms);
4392 	void	(*end_cac)(struct wiphy *wiphy,
4393 				struct net_device *dev);
4394 	int	(*update_ft_ies)(struct wiphy *wiphy, struct net_device *dev,
4395 				 struct cfg80211_update_ft_ies_params *ftie);
4396 	int	(*crit_proto_start)(struct wiphy *wiphy,
4397 				    struct wireless_dev *wdev,
4398 				    enum nl80211_crit_proto_id protocol,
4399 				    u16 duration);
4400 	void	(*crit_proto_stop)(struct wiphy *wiphy,
4401 				   struct wireless_dev *wdev);
4402 	int	(*set_coalesce)(struct wiphy *wiphy,
4403 				struct cfg80211_coalesce *coalesce);
4404 
4405 	int	(*channel_switch)(struct wiphy *wiphy,
4406 				  struct net_device *dev,
4407 				  struct cfg80211_csa_settings *params);
4408 
4409 	int     (*set_qos_map)(struct wiphy *wiphy,
4410 			       struct net_device *dev,
4411 			       struct cfg80211_qos_map *qos_map);
4412 
4413 	int	(*set_ap_chanwidth)(struct wiphy *wiphy, struct net_device *dev,
4414 				    struct cfg80211_chan_def *chandef);
4415 
4416 	int	(*add_tx_ts)(struct wiphy *wiphy, struct net_device *dev,
4417 			     u8 tsid, const u8 *peer, u8 user_prio,
4418 			     u16 admitted_time);
4419 	int	(*del_tx_ts)(struct wiphy *wiphy, struct net_device *dev,
4420 			     u8 tsid, const u8 *peer);
4421 
4422 	int	(*tdls_channel_switch)(struct wiphy *wiphy,
4423 				       struct net_device *dev,
4424 				       const u8 *addr, u8 oper_class,
4425 				       struct cfg80211_chan_def *chandef);
4426 	void	(*tdls_cancel_channel_switch)(struct wiphy *wiphy,
4427 					      struct net_device *dev,
4428 					      const u8 *addr);
4429 	int	(*start_nan)(struct wiphy *wiphy, struct wireless_dev *wdev,
4430 			     struct cfg80211_nan_conf *conf);
4431 	void	(*stop_nan)(struct wiphy *wiphy, struct wireless_dev *wdev);
4432 	int	(*add_nan_func)(struct wiphy *wiphy, struct wireless_dev *wdev,
4433 				struct cfg80211_nan_func *nan_func);
4434 	void	(*del_nan_func)(struct wiphy *wiphy, struct wireless_dev *wdev,
4435 			       u64 cookie);
4436 	int	(*nan_change_conf)(struct wiphy *wiphy,
4437 				   struct wireless_dev *wdev,
4438 				   struct cfg80211_nan_conf *conf,
4439 				   u32 changes);
4440 
4441 	int	(*set_multicast_to_unicast)(struct wiphy *wiphy,
4442 					    struct net_device *dev,
4443 					    const bool enabled);
4444 
4445 	int	(*get_txq_stats)(struct wiphy *wiphy,
4446 				 struct wireless_dev *wdev,
4447 				 struct cfg80211_txq_stats *txqstats);
4448 
4449 	int	(*set_pmk)(struct wiphy *wiphy, struct net_device *dev,
4450 			   const struct cfg80211_pmk_conf *conf);
4451 	int	(*del_pmk)(struct wiphy *wiphy, struct net_device *dev,
4452 			   const u8 *aa);
4453 	int     (*external_auth)(struct wiphy *wiphy, struct net_device *dev,
4454 				 struct cfg80211_external_auth_params *params);
4455 
4456 	int	(*tx_control_port)(struct wiphy *wiphy,
4457 				   struct net_device *dev,
4458 				   const u8 *buf, size_t len,
4459 				   const u8 *dest, const __be16 proto,
4460 				   const bool noencrypt,
4461 				   u64 *cookie);
4462 
4463 	int	(*get_ftm_responder_stats)(struct wiphy *wiphy,
4464 				struct net_device *dev,
4465 				struct cfg80211_ftm_responder_stats *ftm_stats);
4466 
4467 	int	(*start_pmsr)(struct wiphy *wiphy, struct wireless_dev *wdev,
4468 			      struct cfg80211_pmsr_request *request);
4469 	void	(*abort_pmsr)(struct wiphy *wiphy, struct wireless_dev *wdev,
4470 			      struct cfg80211_pmsr_request *request);
4471 	int	(*update_owe_info)(struct wiphy *wiphy, struct net_device *dev,
4472 				   struct cfg80211_update_owe_info *owe_info);
4473 	int	(*probe_mesh_link)(struct wiphy *wiphy, struct net_device *dev,
4474 				   const u8 *buf, size_t len);
4475 	int     (*set_tid_config)(struct wiphy *wiphy, struct net_device *dev,
4476 				  struct cfg80211_tid_config *tid_conf);
4477 	int	(*reset_tid_config)(struct wiphy *wiphy, struct net_device *dev,
4478 				    const u8 *peer, u8 tids);
4479 	int	(*set_sar_specs)(struct wiphy *wiphy,
4480 				 struct cfg80211_sar_specs *sar);
4481 	int	(*color_change)(struct wiphy *wiphy,
4482 				struct net_device *dev,
4483 				struct cfg80211_color_change_settings *params);
4484 	int     (*set_fils_aad)(struct wiphy *wiphy, struct net_device *dev,
4485 				struct cfg80211_fils_aad *fils_aad);
4486 	int	(*set_radar_background)(struct wiphy *wiphy,
4487 					struct cfg80211_chan_def *chandef);
4488 };
4489 
4490 /*
4491  * wireless hardware and networking interfaces structures
4492  * and registration/helper functions
4493  */
4494 
4495 /**
4496  * enum wiphy_flags - wiphy capability flags
4497  *
4498  * @WIPHY_FLAG_SPLIT_SCAN_6GHZ: if set to true, the scan request will be split
4499  *	 into two, first for legacy bands and second for UHB.
4500  * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
4501  *	wiphy at all
4502  * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
4503  *	by default -- this flag will be set depending on the kernel's default
4504  *	on wiphy_new(), but can be changed by the driver if it has a good
4505  *	reason to override the default
4506  * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
4507  *	on a VLAN interface). This flag also serves an extra purpose of
4508  *	supporting 4ADDR AP mode on devices which do not support AP/VLAN iftype.
4509  * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
4510  * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
4511  *	control port protocol ethertype. The device also honours the
4512  *	control_port_no_encrypt flag.
4513  * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
4514  * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
4515  *	auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
4516  * @WIPHY_FLAG_SUPPORTS_FW_ROAM: The device supports roaming feature in the
4517  *	firmware.
4518  * @WIPHY_FLAG_AP_UAPSD: The device supports uapsd on AP.
4519  * @WIPHY_FLAG_SUPPORTS_TDLS: The device supports TDLS (802.11z) operation.
4520  * @WIPHY_FLAG_TDLS_EXTERNAL_SETUP: The device does not handle TDLS (802.11z)
4521  *	link setup/discovery operations internally. Setup, discovery and
4522  *	teardown packets should be sent through the @NL80211_CMD_TDLS_MGMT
4523  *	command. When this flag is not set, @NL80211_CMD_TDLS_OPER should be
4524  *	used for asking the driver/firmware to perform a TDLS operation.
4525  * @WIPHY_FLAG_HAVE_AP_SME: device integrates AP SME
4526  * @WIPHY_FLAG_REPORTS_OBSS: the device will report beacons from other BSSes
4527  *	when there are virtual interfaces in AP mode by calling
4528  *	cfg80211_report_obss_beacon().
4529  * @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD: When operating as an AP, the device
4530  *	responds to probe-requests in hardware.
4531  * @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
4532  * @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
4533  * @WIPHY_FLAG_SUPPORTS_5_10_MHZ: Device supports 5 MHz and 10 MHz channels.
4534  * @WIPHY_FLAG_HAS_CHANNEL_SWITCH: Device supports channel switch in
4535  *	beaconing mode (AP, IBSS, Mesh, ...).
4536  * @WIPHY_FLAG_HAS_STATIC_WEP: The device supports static WEP key installation
4537  *	before connection.
4538  * @WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK: The device supports bigger kek and kck keys
4539  */
4540 enum wiphy_flags {
4541 	WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK		= BIT(0),
4542 	/* use hole at 1 */
4543 	WIPHY_FLAG_SPLIT_SCAN_6GHZ		= BIT(2),
4544 	WIPHY_FLAG_NETNS_OK			= BIT(3),
4545 	WIPHY_FLAG_PS_ON_BY_DEFAULT		= BIT(4),
4546 	WIPHY_FLAG_4ADDR_AP			= BIT(5),
4547 	WIPHY_FLAG_4ADDR_STATION		= BIT(6),
4548 	WIPHY_FLAG_CONTROL_PORT_PROTOCOL	= BIT(7),
4549 	WIPHY_FLAG_IBSS_RSN			= BIT(8),
4550 	WIPHY_FLAG_MESH_AUTH			= BIT(10),
4551 	/* use hole at 11 */
4552 	/* use hole at 12 */
4553 	WIPHY_FLAG_SUPPORTS_FW_ROAM		= BIT(13),
4554 	WIPHY_FLAG_AP_UAPSD			= BIT(14),
4555 	WIPHY_FLAG_SUPPORTS_TDLS		= BIT(15),
4556 	WIPHY_FLAG_TDLS_EXTERNAL_SETUP		= BIT(16),
4557 	WIPHY_FLAG_HAVE_AP_SME			= BIT(17),
4558 	WIPHY_FLAG_REPORTS_OBSS			= BIT(18),
4559 	WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD	= BIT(19),
4560 	WIPHY_FLAG_OFFCHAN_TX			= BIT(20),
4561 	WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL	= BIT(21),
4562 	WIPHY_FLAG_SUPPORTS_5_10_MHZ		= BIT(22),
4563 	WIPHY_FLAG_HAS_CHANNEL_SWITCH		= BIT(23),
4564 	WIPHY_FLAG_HAS_STATIC_WEP		= BIT(24),
4565 };
4566 
4567 /**
4568  * struct ieee80211_iface_limit - limit on certain interface types
4569  * @max: maximum number of interfaces of these types
4570  * @types: interface types (bits)
4571  */
4572 struct ieee80211_iface_limit {
4573 	u16 max;
4574 	u16 types;
4575 };
4576 
4577 /**
4578  * struct ieee80211_iface_combination - possible interface combination
4579  *
4580  * With this structure the driver can describe which interface
4581  * combinations it supports concurrently.
4582  *
4583  * Examples:
4584  *
4585  * 1. Allow #STA <= 1, #AP <= 1, matching BI, channels = 1, 2 total:
4586  *
4587  *    .. code-block:: c
4588  *
4589  *	struct ieee80211_iface_limit limits1[] = {
4590  *		{ .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
4591  *		{ .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
4592  *	};
4593  *	struct ieee80211_iface_combination combination1 = {
4594  *		.limits = limits1,
4595  *		.n_limits = ARRAY_SIZE(limits1),
4596  *		.max_interfaces = 2,
4597  *		.beacon_int_infra_match = true,
4598  *	};
4599  *
4600  *
4601  * 2. Allow #{AP, P2P-GO} <= 8, channels = 1, 8 total:
4602  *
4603  *    .. code-block:: c
4604  *
4605  *	struct ieee80211_iface_limit limits2[] = {
4606  *		{ .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
4607  *				     BIT(NL80211_IFTYPE_P2P_GO), },
4608  *	};
4609  *	struct ieee80211_iface_combination combination2 = {
4610  *		.limits = limits2,
4611  *		.n_limits = ARRAY_SIZE(limits2),
4612  *		.max_interfaces = 8,
4613  *		.num_different_channels = 1,
4614  *	};
4615  *
4616  *
4617  * 3. Allow #STA <= 1, #{P2P-client,P2P-GO} <= 3 on two channels, 4 total.
4618  *
4619  *    This allows for an infrastructure connection and three P2P connections.
4620  *
4621  *    .. code-block:: c
4622  *
4623  *	struct ieee80211_iface_limit limits3[] = {
4624  *		{ .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
4625  *		{ .max = 3, .types = BIT(NL80211_IFTYPE_P2P_GO) |
4626  *				     BIT(NL80211_IFTYPE_P2P_CLIENT), },
4627  *	};
4628  *	struct ieee80211_iface_combination combination3 = {
4629  *		.limits = limits3,
4630  *		.n_limits = ARRAY_SIZE(limits3),
4631  *		.max_interfaces = 4,
4632  *		.num_different_channels = 2,
4633  *	};
4634  *
4635  */
4636 struct ieee80211_iface_combination {
4637 	/**
4638 	 * @limits:
4639 	 * limits for the given interface types
4640 	 */
4641 	const struct ieee80211_iface_limit *limits;
4642 
4643 	/**
4644 	 * @num_different_channels:
4645 	 * can use up to this many different channels
4646 	 */
4647 	u32 num_different_channels;
4648 
4649 	/**
4650 	 * @max_interfaces:
4651 	 * maximum number of interfaces in total allowed in this group
4652 	 */
4653 	u16 max_interfaces;
4654 
4655 	/**
4656 	 * @n_limits:
4657 	 * number of limitations
4658 	 */
4659 	u8 n_limits;
4660 
4661 	/**
4662 	 * @beacon_int_infra_match:
4663 	 * In this combination, the beacon intervals between infrastructure
4664 	 * and AP types must match. This is required only in special cases.
4665 	 */
4666 	bool beacon_int_infra_match;
4667 
4668 	/**
4669 	 * @radar_detect_widths:
4670 	 * bitmap of channel widths supported for radar detection
4671 	 */
4672 	u8 radar_detect_widths;
4673 
4674 	/**
4675 	 * @radar_detect_regions:
4676 	 * bitmap of regions supported for radar detection
4677 	 */
4678 	u8 radar_detect_regions;
4679 
4680 	/**
4681 	 * @beacon_int_min_gcd:
4682 	 * This interface combination supports different beacon intervals.
4683 	 *
4684 	 * = 0
4685 	 *   all beacon intervals for different interface must be same.
4686 	 * > 0
4687 	 *   any beacon interval for the interface part of this combination AND
4688 	 *   GCD of all beacon intervals from beaconing interfaces of this
4689 	 *   combination must be greater or equal to this value.
4690 	 */
4691 	u32 beacon_int_min_gcd;
4692 };
4693 
4694 struct ieee80211_txrx_stypes {
4695 	u16 tx, rx;
4696 };
4697 
4698 /**
4699  * enum wiphy_wowlan_support_flags - WoWLAN support flags
4700  * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
4701  *	trigger that keeps the device operating as-is and
4702  *	wakes up the host on any activity, for example a
4703  *	received packet that passed filtering; note that the
4704  *	packet should be preserved in that case
4705  * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
4706  *	(see nl80211.h)
4707  * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
4708  * @WIPHY_WOWLAN_SUPPORTS_GTK_REKEY: supports GTK rekeying while asleep
4709  * @WIPHY_WOWLAN_GTK_REKEY_FAILURE: supports wakeup on GTK rekey failure
4710  * @WIPHY_WOWLAN_EAP_IDENTITY_REQ: supports wakeup on EAP identity request
4711  * @WIPHY_WOWLAN_4WAY_HANDSHAKE: supports wakeup on 4-way handshake failure
4712  * @WIPHY_WOWLAN_RFKILL_RELEASE: supports wakeup on RF-kill release
4713  * @WIPHY_WOWLAN_NET_DETECT: supports wakeup on network detection
4714  */
4715 enum wiphy_wowlan_support_flags {
4716 	WIPHY_WOWLAN_ANY		= BIT(0),
4717 	WIPHY_WOWLAN_MAGIC_PKT		= BIT(1),
4718 	WIPHY_WOWLAN_DISCONNECT		= BIT(2),
4719 	WIPHY_WOWLAN_SUPPORTS_GTK_REKEY	= BIT(3),
4720 	WIPHY_WOWLAN_GTK_REKEY_FAILURE	= BIT(4),
4721 	WIPHY_WOWLAN_EAP_IDENTITY_REQ	= BIT(5),
4722 	WIPHY_WOWLAN_4WAY_HANDSHAKE	= BIT(6),
4723 	WIPHY_WOWLAN_RFKILL_RELEASE	= BIT(7),
4724 	WIPHY_WOWLAN_NET_DETECT		= BIT(8),
4725 };
4726 
4727 struct wiphy_wowlan_tcp_support {
4728 	const struct nl80211_wowlan_tcp_data_token_feature *tok;
4729 	u32 data_payload_max;
4730 	u32 data_interval_max;
4731 	u32 wake_payload_max;
4732 	bool seq;
4733 };
4734 
4735 /**
4736  * struct wiphy_wowlan_support - WoWLAN support data
4737  * @flags: see &enum wiphy_wowlan_support_flags
4738  * @n_patterns: number of supported wakeup patterns
4739  *	(see nl80211.h for the pattern definition)
4740  * @pattern_max_len: maximum length of each pattern
4741  * @pattern_min_len: minimum length of each pattern
4742  * @max_pkt_offset: maximum Rx packet offset
4743  * @max_nd_match_sets: maximum number of matchsets for net-detect,
4744  *	similar, but not necessarily identical, to max_match_sets for
4745  *	scheduled scans.
4746  *	See &struct cfg80211_sched_scan_request.@match_sets for more
4747  *	details.
4748  * @tcp: TCP wakeup support information
4749  */
4750 struct wiphy_wowlan_support {
4751 	u32 flags;
4752 	int n_patterns;
4753 	int pattern_max_len;
4754 	int pattern_min_len;
4755 	int max_pkt_offset;
4756 	int max_nd_match_sets;
4757 	const struct wiphy_wowlan_tcp_support *tcp;
4758 };
4759 
4760 /**
4761  * struct wiphy_coalesce_support - coalesce support data
4762  * @n_rules: maximum number of coalesce rules
4763  * @max_delay: maximum supported coalescing delay in msecs
4764  * @n_patterns: number of supported patterns in a rule
4765  *	(see nl80211.h for the pattern definition)
4766  * @pattern_max_len: maximum length of each pattern
4767  * @pattern_min_len: minimum length of each pattern
4768  * @max_pkt_offset: maximum Rx packet offset
4769  */
4770 struct wiphy_coalesce_support {
4771 	int n_rules;
4772 	int max_delay;
4773 	int n_patterns;
4774 	int pattern_max_len;
4775 	int pattern_min_len;
4776 	int max_pkt_offset;
4777 };
4778 
4779 /**
4780  * enum wiphy_vendor_command_flags - validation flags for vendor commands
4781  * @WIPHY_VENDOR_CMD_NEED_WDEV: vendor command requires wdev
4782  * @WIPHY_VENDOR_CMD_NEED_NETDEV: vendor command requires netdev
4783  * @WIPHY_VENDOR_CMD_NEED_RUNNING: interface/wdev must be up & running
4784  *	(must be combined with %_WDEV or %_NETDEV)
4785  */
4786 enum wiphy_vendor_command_flags {
4787 	WIPHY_VENDOR_CMD_NEED_WDEV = BIT(0),
4788 	WIPHY_VENDOR_CMD_NEED_NETDEV = BIT(1),
4789 	WIPHY_VENDOR_CMD_NEED_RUNNING = BIT(2),
4790 };
4791 
4792 /**
4793  * enum wiphy_opmode_flag - Station's ht/vht operation mode information flags
4794  *
4795  * @STA_OPMODE_MAX_BW_CHANGED: Max Bandwidth changed
4796  * @STA_OPMODE_SMPS_MODE_CHANGED: SMPS mode changed
4797  * @STA_OPMODE_N_SS_CHANGED: max N_SS (number of spatial streams) changed
4798  *
4799  */
4800 enum wiphy_opmode_flag {
4801 	STA_OPMODE_MAX_BW_CHANGED	= BIT(0),
4802 	STA_OPMODE_SMPS_MODE_CHANGED	= BIT(1),
4803 	STA_OPMODE_N_SS_CHANGED		= BIT(2),
4804 };
4805 
4806 /**
4807  * struct sta_opmode_info - Station's ht/vht operation mode information
4808  * @changed: contains value from &enum wiphy_opmode_flag
4809  * @smps_mode: New SMPS mode value from &enum nl80211_smps_mode of a station
4810  * @bw: new max bandwidth value from &enum nl80211_chan_width of a station
4811  * @rx_nss: new rx_nss value of a station
4812  */
4813 
4814 struct sta_opmode_info {
4815 	u32 changed;
4816 	enum nl80211_smps_mode smps_mode;
4817 	enum nl80211_chan_width bw;
4818 	u8 rx_nss;
4819 };
4820 
4821 #define VENDOR_CMD_RAW_DATA ((const struct nla_policy *)(long)(-ENODATA))
4822 
4823 /**
4824  * struct wiphy_vendor_command - vendor command definition
4825  * @info: vendor command identifying information, as used in nl80211
4826  * @flags: flags, see &enum wiphy_vendor_command_flags
4827  * @doit: callback for the operation, note that wdev is %NULL if the
4828  *	flags didn't ask for a wdev and non-%NULL otherwise; the data
4829  *	pointer may be %NULL if userspace provided no data at all
4830  * @dumpit: dump callback, for transferring bigger/multiple items. The
4831  *	@storage points to cb->args[5], ie. is preserved over the multiple
4832  *	dumpit calls.
4833  * @policy: policy pointer for attributes within %NL80211_ATTR_VENDOR_DATA.
4834  *	Set this to %VENDOR_CMD_RAW_DATA if no policy can be given and the
4835  *	attribute is just raw data (e.g. a firmware command).
4836  * @maxattr: highest attribute number in policy
4837  * It's recommended to not have the same sub command with both @doit and
4838  * @dumpit, so that userspace can assume certain ones are get and others
4839  * are used with dump requests.
4840  */
4841 struct wiphy_vendor_command {
4842 	struct nl80211_vendor_cmd_info info;
4843 	u32 flags;
4844 	int (*doit)(struct wiphy *wiphy, struct wireless_dev *wdev,
4845 		    const void *data, int data_len);
4846 	int (*dumpit)(struct wiphy *wiphy, struct wireless_dev *wdev,
4847 		      struct sk_buff *skb, const void *data, int data_len,
4848 		      unsigned long *storage);
4849 	const struct nla_policy *policy;
4850 	unsigned int maxattr;
4851 };
4852 
4853 /**
4854  * struct wiphy_iftype_ext_capab - extended capabilities per interface type
4855  * @iftype: interface type
4856  * @extended_capabilities: extended capabilities supported by the driver,
4857  *	additional capabilities might be supported by userspace; these are the
4858  *	802.11 extended capabilities ("Extended Capabilities element") and are
4859  *	in the same format as in the information element. See IEEE Std
4860  *	802.11-2012 8.4.2.29 for the defined fields.
4861  * @extended_capabilities_mask: mask of the valid values
4862  * @extended_capabilities_len: length of the extended capabilities
4863  */
4864 struct wiphy_iftype_ext_capab {
4865 	enum nl80211_iftype iftype;
4866 	const u8 *extended_capabilities;
4867 	const u8 *extended_capabilities_mask;
4868 	u8 extended_capabilities_len;
4869 };
4870 
4871 /**
4872  * struct cfg80211_pmsr_capabilities - cfg80211 peer measurement capabilities
4873  * @max_peers: maximum number of peers in a single measurement
4874  * @report_ap_tsf: can report assoc AP's TSF for radio resource measurement
4875  * @randomize_mac_addr: can randomize MAC address for measurement
4876  * @ftm.supported: FTM measurement is supported
4877  * @ftm.asap: ASAP-mode is supported
4878  * @ftm.non_asap: non-ASAP-mode is supported
4879  * @ftm.request_lci: can request LCI data
4880  * @ftm.request_civicloc: can request civic location data
4881  * @ftm.preambles: bitmap of preambles supported (&enum nl80211_preamble)
4882  * @ftm.bandwidths: bitmap of bandwidths supported (&enum nl80211_chan_width)
4883  * @ftm.max_bursts_exponent: maximum burst exponent supported
4884  *	(set to -1 if not limited; note that setting this will necessarily
4885  *	forbid using the value 15 to let the responder pick)
4886  * @ftm.max_ftms_per_burst: maximum FTMs per burst supported (set to 0 if
4887  *	not limited)
4888  * @ftm.trigger_based: trigger based ranging measurement is supported
4889  * @ftm.non_trigger_based: non trigger based ranging measurement is supported
4890  */
4891 struct cfg80211_pmsr_capabilities {
4892 	unsigned int max_peers;
4893 	u8 report_ap_tsf:1,
4894 	   randomize_mac_addr:1;
4895 
4896 	struct {
4897 		u32 preambles;
4898 		u32 bandwidths;
4899 		s8 max_bursts_exponent;
4900 		u8 max_ftms_per_burst;
4901 		u8 supported:1,
4902 		   asap:1,
4903 		   non_asap:1,
4904 		   request_lci:1,
4905 		   request_civicloc:1,
4906 		   trigger_based:1,
4907 		   non_trigger_based:1;
4908 	} ftm;
4909 };
4910 
4911 /**
4912  * struct wiphy_iftype_akm_suites - This structure encapsulates supported akm
4913  * suites for interface types defined in @iftypes_mask. Each type in the
4914  * @iftypes_mask must be unique across all instances of iftype_akm_suites.
4915  *
4916  * @iftypes_mask: bitmask of interfaces types
4917  * @akm_suites: points to an array of supported akm suites
4918  * @n_akm_suites: number of supported AKM suites
4919  */
4920 struct wiphy_iftype_akm_suites {
4921 	u16 iftypes_mask;
4922 	const u32 *akm_suites;
4923 	int n_akm_suites;
4924 };
4925 
4926 /**
4927  * struct wiphy - wireless hardware description
4928  * @mtx: mutex for the data (structures) of this device
4929  * @reg_notifier: the driver's regulatory notification callback,
4930  *	note that if your driver uses wiphy_apply_custom_regulatory()
4931  *	the reg_notifier's request can be passed as NULL
4932  * @regd: the driver's regulatory domain, if one was requested via
4933  *	the regulatory_hint() API. This can be used by the driver
4934  *	on the reg_notifier() if it chooses to ignore future
4935  *	regulatory domain changes caused by other drivers.
4936  * @signal_type: signal type reported in &struct cfg80211_bss.
4937  * @cipher_suites: supported cipher suites
4938  * @n_cipher_suites: number of supported cipher suites
4939  * @akm_suites: supported AKM suites. These are the default AKMs supported if
4940  *	the supported AKMs not advertized for a specific interface type in
4941  *	iftype_akm_suites.
4942  * @n_akm_suites: number of supported AKM suites
4943  * @iftype_akm_suites: array of supported akm suites info per interface type.
4944  *	Note that the bits in @iftypes_mask inside this structure cannot
4945  *	overlap (i.e. only one occurrence of each type is allowed across all
4946  *	instances of iftype_akm_suites).
4947  * @num_iftype_akm_suites: number of interface types for which supported akm
4948  *	suites are specified separately.
4949  * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
4950  * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
4951  * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
4952  *	-1 = fragmentation disabled, only odd values >= 256 used
4953  * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
4954  * @_net: the network namespace this wiphy currently lives in
4955  * @perm_addr: permanent MAC address of this device
4956  * @addr_mask: If the device supports multiple MAC addresses by masking,
4957  *	set this to a mask with variable bits set to 1, e.g. if the last
4958  *	four bits are variable then set it to 00-00-00-00-00-0f. The actual
4959  *	variable bits shall be determined by the interfaces added, with
4960  *	interfaces not matching the mask being rejected to be brought up.
4961  * @n_addresses: number of addresses in @addresses.
4962  * @addresses: If the device has more than one address, set this pointer
4963  *	to a list of addresses (6 bytes each). The first one will be used
4964  *	by default for perm_addr. In this case, the mask should be set to
4965  *	all-zeroes. In this case it is assumed that the device can handle
4966  *	the same number of arbitrary MAC addresses.
4967  * @registered: protects ->resume and ->suspend sysfs callbacks against
4968  *	unregister hardware
4969  * @debugfsdir: debugfs directory used for this wiphy (ieee80211/<wiphyname>).
4970  *	It will be renamed automatically on wiphy renames
4971  * @dev: (virtual) struct device for this wiphy. The item in
4972  *	/sys/class/ieee80211/ points to this. You need use set_wiphy_dev()
4973  *	(see below).
4974  * @wext: wireless extension handlers
4975  * @priv: driver private data (sized according to wiphy_new() parameter)
4976  * @interface_modes: bitmask of interfaces types valid for this wiphy,
4977  *	must be set by driver
4978  * @iface_combinations: Valid interface combinations array, should not
4979  *	list single interface types.
4980  * @n_iface_combinations: number of entries in @iface_combinations array.
4981  * @software_iftypes: bitmask of software interface types, these are not
4982  *	subject to any restrictions since they are purely managed in SW.
4983  * @flags: wiphy flags, see &enum wiphy_flags
4984  * @regulatory_flags: wiphy regulatory flags, see
4985  *	&enum ieee80211_regulatory_flags
4986  * @features: features advertised to nl80211, see &enum nl80211_feature_flags.
4987  * @ext_features: extended features advertised to nl80211, see
4988  *	&enum nl80211_ext_feature_index.
4989  * @bss_priv_size: each BSS struct has private data allocated with it,
4990  *	this variable determines its size
4991  * @max_scan_ssids: maximum number of SSIDs the device can scan for in
4992  *	any given scan
4993  * @max_sched_scan_reqs: maximum number of scheduled scan requests that
4994  *	the device can run concurrently.
4995  * @max_sched_scan_ssids: maximum number of SSIDs the device can scan
4996  *	for in any given scheduled scan
4997  * @max_match_sets: maximum number of match sets the device can handle
4998  *	when performing a scheduled scan, 0 if filtering is not
4999  *	supported.
5000  * @max_scan_ie_len: maximum length of user-controlled IEs device can
5001  *	add to probe request frames transmitted during a scan, must not
5002  *	include fixed IEs like supported rates
5003  * @max_sched_scan_ie_len: same as max_scan_ie_len, but for scheduled
5004  *	scans
5005  * @max_sched_scan_plans: maximum number of scan plans (scan interval and number
5006  *	of iterations) for scheduled scan supported by the device.
5007  * @max_sched_scan_plan_interval: maximum interval (in seconds) for a
5008  *	single scan plan supported by the device.
5009  * @max_sched_scan_plan_iterations: maximum number of iterations for a single
5010  *	scan plan supported by the device.
5011  * @coverage_class: current coverage class
5012  * @fw_version: firmware version for ethtool reporting
5013  * @hw_version: hardware version for ethtool reporting
5014  * @max_num_pmkids: maximum number of PMKIDs supported by device
5015  * @privid: a pointer that drivers can use to identify if an arbitrary
5016  *	wiphy is theirs, e.g. in global notifiers
5017  * @bands: information about bands/channels supported by this device
5018  *
5019  * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
5020  *	transmitted through nl80211, points to an array indexed by interface
5021  *	type
5022  *
5023  * @available_antennas_tx: bitmap of antennas which are available to be
5024  *	configured as TX antennas. Antenna configuration commands will be
5025  *	rejected unless this or @available_antennas_rx is set.
5026  *
5027  * @available_antennas_rx: bitmap of antennas which are available to be
5028  *	configured as RX antennas. Antenna configuration commands will be
5029  *	rejected unless this or @available_antennas_tx is set.
5030  *
5031  * @probe_resp_offload:
5032  *	 Bitmap of supported protocols for probe response offloading.
5033  *	 See &enum nl80211_probe_resp_offload_support_attr. Only valid
5034  *	 when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
5035  *
5036  * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
5037  *	may request, if implemented.
5038  *
5039  * @wowlan: WoWLAN support information
5040  * @wowlan_config: current WoWLAN configuration; this should usually not be
5041  *	used since access to it is necessarily racy, use the parameter passed
5042  *	to the suspend() operation instead.
5043  *
5044  * @ap_sme_capa: AP SME capabilities, flags from &enum nl80211_ap_sme_features.
5045  * @ht_capa_mod_mask:  Specify what ht_cap values can be over-ridden.
5046  *	If null, then none can be over-ridden.
5047  * @vht_capa_mod_mask:  Specify what VHT capabilities can be over-ridden.
5048  *	If null, then none can be over-ridden.
5049  *
5050  * @wdev_list: the list of associated (virtual) interfaces; this list must
5051  *	not be modified by the driver, but can be read with RTNL/RCU protection.
5052  *
5053  * @max_acl_mac_addrs: Maximum number of MAC addresses that the device
5054  *	supports for ACL.
5055  *
5056  * @extended_capabilities: extended capabilities supported by the driver,
5057  *	additional capabilities might be supported by userspace; these are
5058  *	the 802.11 extended capabilities ("Extended Capabilities element")
5059  *	and are in the same format as in the information element. See
5060  *	802.11-2012 8.4.2.29 for the defined fields. These are the default
5061  *	extended capabilities to be used if the capabilities are not specified
5062  *	for a specific interface type in iftype_ext_capab.
5063  * @extended_capabilities_mask: mask of the valid values
5064  * @extended_capabilities_len: length of the extended capabilities
5065  * @iftype_ext_capab: array of extended capabilities per interface type
5066  * @num_iftype_ext_capab: number of interface types for which extended
5067  *	capabilities are specified separately.
5068  * @coalesce: packet coalescing support information
5069  *
5070  * @vendor_commands: array of vendor commands supported by the hardware
5071  * @n_vendor_commands: number of vendor commands
5072  * @vendor_events: array of vendor events supported by the hardware
5073  * @n_vendor_events: number of vendor events
5074  *
5075  * @max_ap_assoc_sta: maximum number of associated stations supported in AP mode
5076  *	(including P2P GO) or 0 to indicate no such limit is advertised. The
5077  *	driver is allowed to advertise a theoretical limit that it can reach in
5078  *	some cases, but may not always reach.
5079  *
5080  * @max_num_csa_counters: Number of supported csa_counters in beacons
5081  *	and probe responses.  This value should be set if the driver
5082  *	wishes to limit the number of csa counters. Default (0) means
5083  *	infinite.
5084  * @bss_select_support: bitmask indicating the BSS selection criteria supported
5085  *	by the driver in the .connect() callback. The bit position maps to the
5086  *	attribute indices defined in &enum nl80211_bss_select_attr.
5087  *
5088  * @nan_supported_bands: bands supported by the device in NAN mode, a
5089  *	bitmap of &enum nl80211_band values.  For instance, for
5090  *	NL80211_BAND_2GHZ, bit 0 would be set
5091  *	(i.e. BIT(NL80211_BAND_2GHZ)).
5092  *
5093  * @txq_limit: configuration of internal TX queue frame limit
5094  * @txq_memory_limit: configuration internal TX queue memory limit
5095  * @txq_quantum: configuration of internal TX queue scheduler quantum
5096  *
5097  * @tx_queue_len: allow setting transmit queue len for drivers not using
5098  *	wake_tx_queue
5099  *
5100  * @support_mbssid: can HW support association with nontransmitted AP
5101  * @support_only_he_mbssid: don't parse MBSSID elements if it is not
5102  *	HE AP, in order to avoid compatibility issues.
5103  *	@support_mbssid must be set for this to have any effect.
5104  *
5105  * @pmsr_capa: peer measurement capabilities
5106  *
5107  * @tid_config_support: describes the per-TID config support that the
5108  *	device has
5109  * @tid_config_support.vif: bitmap of attributes (configurations)
5110  *	supported by the driver for each vif
5111  * @tid_config_support.peer: bitmap of attributes (configurations)
5112  *	supported by the driver for each peer
5113  * @tid_config_support.max_retry: maximum supported retry count for
5114  *	long/short retry configuration
5115  *
5116  * @max_data_retry_count: maximum supported per TID retry count for
5117  *	configuration through the %NL80211_TID_CONFIG_ATTR_RETRY_SHORT and
5118  *	%NL80211_TID_CONFIG_ATTR_RETRY_LONG attributes
5119  * @sar_capa: SAR control capabilities
5120  * @rfkill: a pointer to the rfkill structure
5121  *
5122  * @mbssid_max_interfaces: maximum number of interfaces supported by the driver
5123  *	in a multiple BSSID set. This field must be set to a non-zero value
5124  *	by the driver to advertise MBSSID support.
5125  * @ema_max_profile_periodicity: maximum profile periodicity supported by
5126  *	the driver. Setting this field to a non-zero value indicates that the
5127  *	driver supports enhanced multi-BSSID advertisements (EMA AP).
5128  */
5129 struct wiphy {
5130 	struct mutex mtx;
5131 
5132 	/* assign these fields before you register the wiphy */
5133 
5134 	u8 perm_addr[ETH_ALEN];
5135 	u8 addr_mask[ETH_ALEN];
5136 
5137 	struct mac_address *addresses;
5138 
5139 	const struct ieee80211_txrx_stypes *mgmt_stypes;
5140 
5141 	const struct ieee80211_iface_combination *iface_combinations;
5142 	int n_iface_combinations;
5143 	u16 software_iftypes;
5144 
5145 	u16 n_addresses;
5146 
5147 	/* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
5148 	u16 interface_modes;
5149 
5150 	u16 max_acl_mac_addrs;
5151 
5152 	u32 flags, regulatory_flags, features;
5153 	u8 ext_features[DIV_ROUND_UP(NUM_NL80211_EXT_FEATURES, 8)];
5154 
5155 	u32 ap_sme_capa;
5156 
5157 	enum cfg80211_signal_type signal_type;
5158 
5159 	int bss_priv_size;
5160 	u8 max_scan_ssids;
5161 	u8 max_sched_scan_reqs;
5162 	u8 max_sched_scan_ssids;
5163 	u8 max_match_sets;
5164 	u16 max_scan_ie_len;
5165 	u16 max_sched_scan_ie_len;
5166 	u32 max_sched_scan_plans;
5167 	u32 max_sched_scan_plan_interval;
5168 	u32 max_sched_scan_plan_iterations;
5169 
5170 	int n_cipher_suites;
5171 	const u32 *cipher_suites;
5172 
5173 	int n_akm_suites;
5174 	const u32 *akm_suites;
5175 
5176 	const struct wiphy_iftype_akm_suites *iftype_akm_suites;
5177 	unsigned int num_iftype_akm_suites;
5178 
5179 	u8 retry_short;
5180 	u8 retry_long;
5181 	u32 frag_threshold;
5182 	u32 rts_threshold;
5183 	u8 coverage_class;
5184 
5185 	char fw_version[ETHTOOL_FWVERS_LEN];
5186 	u32 hw_version;
5187 
5188 #ifdef CONFIG_PM
5189 	const struct wiphy_wowlan_support *wowlan;
5190 	struct cfg80211_wowlan *wowlan_config;
5191 #endif
5192 
5193 	u16 max_remain_on_channel_duration;
5194 
5195 	u8 max_num_pmkids;
5196 
5197 	u32 available_antennas_tx;
5198 	u32 available_antennas_rx;
5199 
5200 	u32 probe_resp_offload;
5201 
5202 	const u8 *extended_capabilities, *extended_capabilities_mask;
5203 	u8 extended_capabilities_len;
5204 
5205 	const struct wiphy_iftype_ext_capab *iftype_ext_capab;
5206 	unsigned int num_iftype_ext_capab;
5207 
5208 	const void *privid;
5209 
5210 	struct ieee80211_supported_band *bands[NUM_NL80211_BANDS];
5211 
5212 	void (*reg_notifier)(struct wiphy *wiphy,
5213 			     struct regulatory_request *request);
5214 
5215 	/* fields below are read-only, assigned by cfg80211 */
5216 
5217 	const struct ieee80211_regdomain __rcu *regd;
5218 
5219 	struct device dev;
5220 
5221 	bool registered;
5222 
5223 	struct dentry *debugfsdir;
5224 
5225 	const struct ieee80211_ht_cap *ht_capa_mod_mask;
5226 	const struct ieee80211_vht_cap *vht_capa_mod_mask;
5227 
5228 	struct list_head wdev_list;
5229 
5230 	possible_net_t _net;
5231 
5232 #ifdef CONFIG_CFG80211_WEXT
5233 	const struct iw_handler_def *wext;
5234 #endif
5235 
5236 	const struct wiphy_coalesce_support *coalesce;
5237 
5238 	const struct wiphy_vendor_command *vendor_commands;
5239 	const struct nl80211_vendor_cmd_info *vendor_events;
5240 	int n_vendor_commands, n_vendor_events;
5241 
5242 	u16 max_ap_assoc_sta;
5243 
5244 	u8 max_num_csa_counters;
5245 
5246 	u32 bss_select_support;
5247 
5248 	u8 nan_supported_bands;
5249 
5250 	u32 txq_limit;
5251 	u32 txq_memory_limit;
5252 	u32 txq_quantum;
5253 
5254 	unsigned long tx_queue_len;
5255 
5256 	u8 support_mbssid:1,
5257 	   support_only_he_mbssid:1;
5258 
5259 	const struct cfg80211_pmsr_capabilities *pmsr_capa;
5260 
5261 	struct {
5262 		u64 peer, vif;
5263 		u8 max_retry;
5264 	} tid_config_support;
5265 
5266 	u8 max_data_retry_count;
5267 
5268 	const struct cfg80211_sar_capa *sar_capa;
5269 
5270 	struct rfkill *rfkill;
5271 
5272 	u8 mbssid_max_interfaces;
5273 	u8 ema_max_profile_periodicity;
5274 
5275 	char priv[] __aligned(NETDEV_ALIGN);
5276 };
5277 
5278 static inline struct net *wiphy_net(struct wiphy *wiphy)
5279 {
5280 	return read_pnet(&wiphy->_net);
5281 }
5282 
5283 static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
5284 {
5285 	write_pnet(&wiphy->_net, net);
5286 }
5287 
5288 /**
5289  * wiphy_priv - return priv from wiphy
5290  *
5291  * @wiphy: the wiphy whose priv pointer to return
5292  * Return: The priv of @wiphy.
5293  */
5294 static inline void *wiphy_priv(struct wiphy *wiphy)
5295 {
5296 	BUG_ON(!wiphy);
5297 	return &wiphy->priv;
5298 }
5299 
5300 /**
5301  * priv_to_wiphy - return the wiphy containing the priv
5302  *
5303  * @priv: a pointer previously returned by wiphy_priv
5304  * Return: The wiphy of @priv.
5305  */
5306 static inline struct wiphy *priv_to_wiphy(void *priv)
5307 {
5308 	BUG_ON(!priv);
5309 	return container_of(priv, struct wiphy, priv);
5310 }
5311 
5312 /**
5313  * set_wiphy_dev - set device pointer for wiphy
5314  *
5315  * @wiphy: The wiphy whose device to bind
5316  * @dev: The device to parent it to
5317  */
5318 static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
5319 {
5320 	wiphy->dev.parent = dev;
5321 }
5322 
5323 /**
5324  * wiphy_dev - get wiphy dev pointer
5325  *
5326  * @wiphy: The wiphy whose device struct to look up
5327  * Return: The dev of @wiphy.
5328  */
5329 static inline struct device *wiphy_dev(struct wiphy *wiphy)
5330 {
5331 	return wiphy->dev.parent;
5332 }
5333 
5334 /**
5335  * wiphy_name - get wiphy name
5336  *
5337  * @wiphy: The wiphy whose name to return
5338  * Return: The name of @wiphy.
5339  */
5340 static inline const char *wiphy_name(const struct wiphy *wiphy)
5341 {
5342 	return dev_name(&wiphy->dev);
5343 }
5344 
5345 /**
5346  * wiphy_new_nm - create a new wiphy for use with cfg80211
5347  *
5348  * @ops: The configuration operations for this device
5349  * @sizeof_priv: The size of the private area to allocate
5350  * @requested_name: Request a particular name.
5351  *	NULL is valid value, and means use the default phy%d naming.
5352  *
5353  * Create a new wiphy and associate the given operations with it.
5354  * @sizeof_priv bytes are allocated for private use.
5355  *
5356  * Return: A pointer to the new wiphy. This pointer must be
5357  * assigned to each netdev's ieee80211_ptr for proper operation.
5358  */
5359 struct wiphy *wiphy_new_nm(const struct cfg80211_ops *ops, int sizeof_priv,
5360 			   const char *requested_name);
5361 
5362 /**
5363  * wiphy_new - create a new wiphy for use with cfg80211
5364  *
5365  * @ops: The configuration operations for this device
5366  * @sizeof_priv: The size of the private area to allocate
5367  *
5368  * Create a new wiphy and associate the given operations with it.
5369  * @sizeof_priv bytes are allocated for private use.
5370  *
5371  * Return: A pointer to the new wiphy. This pointer must be
5372  * assigned to each netdev's ieee80211_ptr for proper operation.
5373  */
5374 static inline struct wiphy *wiphy_new(const struct cfg80211_ops *ops,
5375 				      int sizeof_priv)
5376 {
5377 	return wiphy_new_nm(ops, sizeof_priv, NULL);
5378 }
5379 
5380 /**
5381  * wiphy_register - register a wiphy with cfg80211
5382  *
5383  * @wiphy: The wiphy to register.
5384  *
5385  * Return: A non-negative wiphy index or a negative error code.
5386  */
5387 int wiphy_register(struct wiphy *wiphy);
5388 
5389 /* this is a define for better error reporting (file/line) */
5390 #define lockdep_assert_wiphy(wiphy) lockdep_assert_held(&(wiphy)->mtx)
5391 
5392 /**
5393  * rcu_dereference_wiphy - rcu_dereference with debug checking
5394  * @wiphy: the wiphy to check the locking on
5395  * @p: The pointer to read, prior to dereferencing
5396  *
5397  * Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
5398  * or RTNL. Note: Please prefer wiphy_dereference() or rcu_dereference().
5399  */
5400 #define rcu_dereference_wiphy(wiphy, p)				\
5401         rcu_dereference_check(p, lockdep_is_held(&wiphy->mtx))
5402 
5403 /**
5404  * wiphy_dereference - fetch RCU pointer when updates are prevented by wiphy mtx
5405  * @wiphy: the wiphy to check the locking on
5406  * @p: The pointer to read, prior to dereferencing
5407  *
5408  * Return the value of the specified RCU-protected pointer, but omit the
5409  * READ_ONCE(), because caller holds the wiphy mutex used for updates.
5410  */
5411 #define wiphy_dereference(wiphy, p)				\
5412         rcu_dereference_protected(p, lockdep_is_held(&wiphy->mtx))
5413 
5414 /**
5415  * get_wiphy_regdom - get custom regdomain for the given wiphy
5416  * @wiphy: the wiphy to get the regdomain from
5417  */
5418 const struct ieee80211_regdomain *get_wiphy_regdom(struct wiphy *wiphy);
5419 
5420 /**
5421  * wiphy_unregister - deregister a wiphy from cfg80211
5422  *
5423  * @wiphy: The wiphy to unregister.
5424  *
5425  * After this call, no more requests can be made with this priv
5426  * pointer, but the call may sleep to wait for an outstanding
5427  * request that is being handled.
5428  */
5429 void wiphy_unregister(struct wiphy *wiphy);
5430 
5431 /**
5432  * wiphy_free - free wiphy
5433  *
5434  * @wiphy: The wiphy to free
5435  */
5436 void wiphy_free(struct wiphy *wiphy);
5437 
5438 /* internal structs */
5439 struct cfg80211_conn;
5440 struct cfg80211_internal_bss;
5441 struct cfg80211_cached_keys;
5442 struct cfg80211_cqm_config;
5443 
5444 /**
5445  * wiphy_lock - lock the wiphy
5446  * @wiphy: the wiphy to lock
5447  *
5448  * This is mostly exposed so it can be done around registering and
5449  * unregistering netdevs that aren't created through cfg80211 calls,
5450  * since that requires locking in cfg80211 when the notifiers is
5451  * called, but that cannot differentiate which way it's called.
5452  *
5453  * When cfg80211 ops are called, the wiphy is already locked.
5454  */
5455 static inline void wiphy_lock(struct wiphy *wiphy)
5456 	__acquires(&wiphy->mtx)
5457 {
5458 	mutex_lock(&wiphy->mtx);
5459 	__acquire(&wiphy->mtx);
5460 }
5461 
5462 /**
5463  * wiphy_unlock - unlock the wiphy again
5464  * @wiphy: the wiphy to unlock
5465  */
5466 static inline void wiphy_unlock(struct wiphy *wiphy)
5467 	__releases(&wiphy->mtx)
5468 {
5469 	__release(&wiphy->mtx);
5470 	mutex_unlock(&wiphy->mtx);
5471 }
5472 
5473 /**
5474  * struct wireless_dev - wireless device state
5475  *
5476  * For netdevs, this structure must be allocated by the driver
5477  * that uses the ieee80211_ptr field in struct net_device (this
5478  * is intentional so it can be allocated along with the netdev.)
5479  * It need not be registered then as netdev registration will
5480  * be intercepted by cfg80211 to see the new wireless device,
5481  * however, drivers must lock the wiphy before registering or
5482  * unregistering netdevs if they pre-create any netdevs (in ops
5483  * called from cfg80211, the wiphy is already locked.)
5484  *
5485  * For non-netdev uses, it must also be allocated by the driver
5486  * in response to the cfg80211 callbacks that require it, as
5487  * there's no netdev registration in that case it may not be
5488  * allocated outside of callback operations that return it.
5489  *
5490  * @wiphy: pointer to hardware description
5491  * @iftype: interface type
5492  * @registered: is this wdev already registered with cfg80211
5493  * @registering: indicates we're doing registration under wiphy lock
5494  *	for the notifier
5495  * @list: (private) Used to collect the interfaces
5496  * @netdev: (private) Used to reference back to the netdev, may be %NULL
5497  * @identifier: (private) Identifier used in nl80211 to identify this
5498  *	wireless device if it has no netdev
5499  * @current_bss: (private) Used by the internal configuration code
5500  * @chandef: (private) Used by the internal configuration code to track
5501  *	the user-set channel definition.
5502  * @preset_chandef: (private) Used by the internal configuration code to
5503  *	track the channel to be used for AP later
5504  * @bssid: (private) Used by the internal configuration code
5505  * @ssid: (private) Used by the internal configuration code
5506  * @ssid_len: (private) Used by the internal configuration code
5507  * @mesh_id_len: (private) Used by the internal configuration code
5508  * @mesh_id_up_len: (private) Used by the internal configuration code
5509  * @wext: (private) Used by the internal wireless extensions compat code
5510  * @wext.ibss: (private) IBSS data part of wext handling
5511  * @wext.connect: (private) connection handling data
5512  * @wext.keys: (private) (WEP) key data
5513  * @wext.ie: (private) extra elements for association
5514  * @wext.ie_len: (private) length of extra elements
5515  * @wext.bssid: (private) selected network BSSID
5516  * @wext.ssid: (private) selected network SSID
5517  * @wext.default_key: (private) selected default key index
5518  * @wext.default_mgmt_key: (private) selected default management key index
5519  * @wext.prev_bssid: (private) previous BSSID for reassociation
5520  * @wext.prev_bssid_valid: (private) previous BSSID validity
5521  * @use_4addr: indicates 4addr mode is used on this interface, must be
5522  *	set by driver (if supported) on add_interface BEFORE registering the
5523  *	netdev and may otherwise be used by driver read-only, will be update
5524  *	by cfg80211 on change_interface
5525  * @mgmt_registrations: list of registrations for management frames
5526  * @mgmt_registrations_need_update: mgmt registrations were updated,
5527  *	need to propagate the update to the driver
5528  * @mtx: mutex used to lock data in this struct, may be used by drivers
5529  *	and some API functions require it held
5530  * @beacon_interval: beacon interval used on this device for transmitting
5531  *	beacons, 0 when not valid
5532  * @address: The address for this device, valid only if @netdev is %NULL
5533  * @is_running: true if this is a non-netdev device that has been started, e.g.
5534  *	the P2P Device.
5535  * @cac_started: true if DFS channel availability check has been started
5536  * @cac_start_time: timestamp (jiffies) when the dfs state was entered.
5537  * @cac_time_ms: CAC time in ms
5538  * @ps: powersave mode is enabled
5539  * @ps_timeout: dynamic powersave timeout
5540  * @ap_unexpected_nlportid: (private) netlink port ID of application
5541  *	registered for unexpected class 3 frames (AP mode)
5542  * @conn: (private) cfg80211 software SME connection state machine data
5543  * @connect_keys: (private) keys to set after connection is established
5544  * @conn_bss_type: connecting/connected BSS type
5545  * @conn_owner_nlportid: (private) connection owner socket port ID
5546  * @disconnect_wk: (private) auto-disconnect work
5547  * @disconnect_bssid: (private) the BSSID to use for auto-disconnect
5548  * @ibss_fixed: (private) IBSS is using fixed BSSID
5549  * @ibss_dfs_possible: (private) IBSS may change to a DFS channel
5550  * @event_list: (private) list for internal event processing
5551  * @event_lock: (private) lock for event list
5552  * @owner_nlportid: (private) owner socket port ID
5553  * @nl_owner_dead: (private) owner socket went away
5554  * @cqm_config: (private) nl80211 RSSI monitor state
5555  * @pmsr_list: (private) peer measurement requests
5556  * @pmsr_lock: (private) peer measurements requests/results lock
5557  * @pmsr_free_wk: (private) peer measurements cleanup work
5558  * @unprot_beacon_reported: (private) timestamp of last
5559  *	unprotected beacon report
5560  */
5561 struct wireless_dev {
5562 	struct wiphy *wiphy;
5563 	enum nl80211_iftype iftype;
5564 
5565 	/* the remainder of this struct should be private to cfg80211 */
5566 	struct list_head list;
5567 	struct net_device *netdev;
5568 
5569 	u32 identifier;
5570 
5571 	struct list_head mgmt_registrations;
5572 	u8 mgmt_registrations_need_update:1;
5573 
5574 	struct mutex mtx;
5575 
5576 	bool use_4addr, is_running, registered, registering;
5577 
5578 	u8 address[ETH_ALEN] __aligned(sizeof(u16));
5579 
5580 	/* currently used for IBSS and SME - might be rearranged later */
5581 	u8 ssid[IEEE80211_MAX_SSID_LEN];
5582 	u8 ssid_len, mesh_id_len, mesh_id_up_len;
5583 	struct cfg80211_conn *conn;
5584 	struct cfg80211_cached_keys *connect_keys;
5585 	enum ieee80211_bss_type conn_bss_type;
5586 	u32 conn_owner_nlportid;
5587 
5588 	struct work_struct disconnect_wk;
5589 	u8 disconnect_bssid[ETH_ALEN];
5590 
5591 	struct list_head event_list;
5592 	spinlock_t event_lock;
5593 
5594 	struct cfg80211_internal_bss *current_bss; /* associated / joined */
5595 	struct cfg80211_chan_def preset_chandef;
5596 	struct cfg80211_chan_def chandef;
5597 
5598 	bool ibss_fixed;
5599 	bool ibss_dfs_possible;
5600 
5601 	bool ps;
5602 	int ps_timeout;
5603 
5604 	int beacon_interval;
5605 
5606 	u32 ap_unexpected_nlportid;
5607 
5608 	u32 owner_nlportid;
5609 	bool nl_owner_dead;
5610 
5611 	bool cac_started;
5612 	unsigned long cac_start_time;
5613 	unsigned int cac_time_ms;
5614 
5615 #ifdef CONFIG_CFG80211_WEXT
5616 	/* wext data */
5617 	struct {
5618 		struct cfg80211_ibss_params ibss;
5619 		struct cfg80211_connect_params connect;
5620 		struct cfg80211_cached_keys *keys;
5621 		const u8 *ie;
5622 		size_t ie_len;
5623 		u8 bssid[ETH_ALEN];
5624 		u8 prev_bssid[ETH_ALEN];
5625 		u8 ssid[IEEE80211_MAX_SSID_LEN];
5626 		s8 default_key, default_mgmt_key;
5627 		bool prev_bssid_valid;
5628 	} wext;
5629 #endif
5630 
5631 	struct cfg80211_cqm_config *cqm_config;
5632 
5633 	struct list_head pmsr_list;
5634 	spinlock_t pmsr_lock;
5635 	struct work_struct pmsr_free_wk;
5636 
5637 	unsigned long unprot_beacon_reported;
5638 };
5639 
5640 static inline const u8 *wdev_address(struct wireless_dev *wdev)
5641 {
5642 	if (wdev->netdev)
5643 		return wdev->netdev->dev_addr;
5644 	return wdev->address;
5645 }
5646 
5647 static inline bool wdev_running(struct wireless_dev *wdev)
5648 {
5649 	if (wdev->netdev)
5650 		return netif_running(wdev->netdev);
5651 	return wdev->is_running;
5652 }
5653 
5654 /**
5655  * wdev_priv - return wiphy priv from wireless_dev
5656  *
5657  * @wdev: The wireless device whose wiphy's priv pointer to return
5658  * Return: The wiphy priv of @wdev.
5659  */
5660 static inline void *wdev_priv(struct wireless_dev *wdev)
5661 {
5662 	BUG_ON(!wdev);
5663 	return wiphy_priv(wdev->wiphy);
5664 }
5665 
5666 /**
5667  * DOC: Utility functions
5668  *
5669  * cfg80211 offers a number of utility functions that can be useful.
5670  */
5671 
5672 /**
5673  * ieee80211_channel_equal - compare two struct ieee80211_channel
5674  *
5675  * @a: 1st struct ieee80211_channel
5676  * @b: 2nd struct ieee80211_channel
5677  * Return: true if center frequency of @a == @b
5678  */
5679 static inline bool
5680 ieee80211_channel_equal(struct ieee80211_channel *a,
5681 			struct ieee80211_channel *b)
5682 {
5683 	return (a->center_freq == b->center_freq &&
5684 		a->freq_offset == b->freq_offset);
5685 }
5686 
5687 /**
5688  * ieee80211_channel_to_khz - convert ieee80211_channel to frequency in KHz
5689  * @chan: struct ieee80211_channel to convert
5690  * Return: The corresponding frequency (in KHz)
5691  */
5692 static inline u32
5693 ieee80211_channel_to_khz(const struct ieee80211_channel *chan)
5694 {
5695 	return MHZ_TO_KHZ(chan->center_freq) + chan->freq_offset;
5696 }
5697 
5698 /**
5699  * ieee80211_s1g_channel_width - get allowed channel width from @chan
5700  *
5701  * Only allowed for band NL80211_BAND_S1GHZ
5702  * @chan: channel
5703  * Return: The allowed channel width for this center_freq
5704  */
5705 enum nl80211_chan_width
5706 ieee80211_s1g_channel_width(const struct ieee80211_channel *chan);
5707 
5708 /**
5709  * ieee80211_channel_to_freq_khz - convert channel number to frequency
5710  * @chan: channel number
5711  * @band: band, necessary due to channel number overlap
5712  * Return: The corresponding frequency (in KHz), or 0 if the conversion failed.
5713  */
5714 u32 ieee80211_channel_to_freq_khz(int chan, enum nl80211_band band);
5715 
5716 /**
5717  * ieee80211_channel_to_frequency - convert channel number to frequency
5718  * @chan: channel number
5719  * @band: band, necessary due to channel number overlap
5720  * Return: The corresponding frequency (in MHz), or 0 if the conversion failed.
5721  */
5722 static inline int
5723 ieee80211_channel_to_frequency(int chan, enum nl80211_band band)
5724 {
5725 	return KHZ_TO_MHZ(ieee80211_channel_to_freq_khz(chan, band));
5726 }
5727 
5728 /**
5729  * ieee80211_freq_khz_to_channel - convert frequency to channel number
5730  * @freq: center frequency in KHz
5731  * Return: The corresponding channel, or 0 if the conversion failed.
5732  */
5733 int ieee80211_freq_khz_to_channel(u32 freq);
5734 
5735 /**
5736  * ieee80211_frequency_to_channel - convert frequency to channel number
5737  * @freq: center frequency in MHz
5738  * Return: The corresponding channel, or 0 if the conversion failed.
5739  */
5740 static inline int
5741 ieee80211_frequency_to_channel(int freq)
5742 {
5743 	return ieee80211_freq_khz_to_channel(MHZ_TO_KHZ(freq));
5744 }
5745 
5746 /**
5747  * ieee80211_get_channel_khz - get channel struct from wiphy for specified
5748  * frequency
5749  * @wiphy: the struct wiphy to get the channel for
5750  * @freq: the center frequency (in KHz) of the channel
5751  * Return: The channel struct from @wiphy at @freq.
5752  */
5753 struct ieee80211_channel *
5754 ieee80211_get_channel_khz(struct wiphy *wiphy, u32 freq);
5755 
5756 /**
5757  * ieee80211_get_channel - get channel struct from wiphy for specified frequency
5758  *
5759  * @wiphy: the struct wiphy to get the channel for
5760  * @freq: the center frequency (in MHz) of the channel
5761  * Return: The channel struct from @wiphy at @freq.
5762  */
5763 static inline struct ieee80211_channel *
5764 ieee80211_get_channel(struct wiphy *wiphy, int freq)
5765 {
5766 	return ieee80211_get_channel_khz(wiphy, MHZ_TO_KHZ(freq));
5767 }
5768 
5769 /**
5770  * cfg80211_channel_is_psc - Check if the channel is a 6 GHz PSC
5771  * @chan: control channel to check
5772  *
5773  * The Preferred Scanning Channels (PSC) are defined in
5774  * Draft IEEE P802.11ax/D5.0, 26.17.2.3.3
5775  */
5776 static inline bool cfg80211_channel_is_psc(struct ieee80211_channel *chan)
5777 {
5778 	if (chan->band != NL80211_BAND_6GHZ)
5779 		return false;
5780 
5781 	return ieee80211_frequency_to_channel(chan->center_freq) % 16 == 5;
5782 }
5783 
5784 /**
5785  * ieee80211_get_response_rate - get basic rate for a given rate
5786  *
5787  * @sband: the band to look for rates in
5788  * @basic_rates: bitmap of basic rates
5789  * @bitrate: the bitrate for which to find the basic rate
5790  *
5791  * Return: The basic rate corresponding to a given bitrate, that
5792  * is the next lower bitrate contained in the basic rate map,
5793  * which is, for this function, given as a bitmap of indices of
5794  * rates in the band's bitrate table.
5795  */
5796 const struct ieee80211_rate *
5797 ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
5798 			    u32 basic_rates, int bitrate);
5799 
5800 /**
5801  * ieee80211_mandatory_rates - get mandatory rates for a given band
5802  * @sband: the band to look for rates in
5803  * @scan_width: width of the control channel
5804  *
5805  * This function returns a bitmap of the mandatory rates for the given
5806  * band, bits are set according to the rate position in the bitrates array.
5807  */
5808 u32 ieee80211_mandatory_rates(struct ieee80211_supported_band *sband,
5809 			      enum nl80211_bss_scan_width scan_width);
5810 
5811 /*
5812  * Radiotap parsing functions -- for controlled injection support
5813  *
5814  * Implemented in net/wireless/radiotap.c
5815  * Documentation in Documentation/networking/radiotap-headers.rst
5816  */
5817 
5818 struct radiotap_align_size {
5819 	uint8_t align:4, size:4;
5820 };
5821 
5822 struct ieee80211_radiotap_namespace {
5823 	const struct radiotap_align_size *align_size;
5824 	int n_bits;
5825 	uint32_t oui;
5826 	uint8_t subns;
5827 };
5828 
5829 struct ieee80211_radiotap_vendor_namespaces {
5830 	const struct ieee80211_radiotap_namespace *ns;
5831 	int n_ns;
5832 };
5833 
5834 /**
5835  * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
5836  * @this_arg_index: index of current arg, valid after each successful call
5837  *	to ieee80211_radiotap_iterator_next()
5838  * @this_arg: pointer to current radiotap arg; it is valid after each
5839  *	call to ieee80211_radiotap_iterator_next() but also after
5840  *	ieee80211_radiotap_iterator_init() where it will point to
5841  *	the beginning of the actual data portion
5842  * @this_arg_size: length of the current arg, for convenience
5843  * @current_namespace: pointer to the current namespace definition
5844  *	(or internally %NULL if the current namespace is unknown)
5845  * @is_radiotap_ns: indicates whether the current namespace is the default
5846  *	radiotap namespace or not
5847  *
5848  * @_rtheader: pointer to the radiotap header we are walking through
5849  * @_max_length: length of radiotap header in cpu byte ordering
5850  * @_arg_index: next argument index
5851  * @_arg: next argument pointer
5852  * @_next_bitmap: internal pointer to next present u32
5853  * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
5854  * @_vns: vendor namespace definitions
5855  * @_next_ns_data: beginning of the next namespace's data
5856  * @_reset_on_ext: internal; reset the arg index to 0 when going to the
5857  *	next bitmap word
5858  *
5859  * Describes the radiotap parser state. Fields prefixed with an underscore
5860  * must not be used by users of the parser, only by the parser internally.
5861  */
5862 
5863 struct ieee80211_radiotap_iterator {
5864 	struct ieee80211_radiotap_header *_rtheader;
5865 	const struct ieee80211_radiotap_vendor_namespaces *_vns;
5866 	const struct ieee80211_radiotap_namespace *current_namespace;
5867 
5868 	unsigned char *_arg, *_next_ns_data;
5869 	__le32 *_next_bitmap;
5870 
5871 	unsigned char *this_arg;
5872 	int this_arg_index;
5873 	int this_arg_size;
5874 
5875 	int is_radiotap_ns;
5876 
5877 	int _max_length;
5878 	int _arg_index;
5879 	uint32_t _bitmap_shifter;
5880 	int _reset_on_ext;
5881 };
5882 
5883 int
5884 ieee80211_radiotap_iterator_init(struct ieee80211_radiotap_iterator *iterator,
5885 				 struct ieee80211_radiotap_header *radiotap_header,
5886 				 int max_length,
5887 				 const struct ieee80211_radiotap_vendor_namespaces *vns);
5888 
5889 int
5890 ieee80211_radiotap_iterator_next(struct ieee80211_radiotap_iterator *iterator);
5891 
5892 
5893 extern const unsigned char rfc1042_header[6];
5894 extern const unsigned char bridge_tunnel_header[6];
5895 
5896 /**
5897  * ieee80211_get_hdrlen_from_skb - get header length from data
5898  *
5899  * @skb: the frame
5900  *
5901  * Given an skb with a raw 802.11 header at the data pointer this function
5902  * returns the 802.11 header length.
5903  *
5904  * Return: The 802.11 header length in bytes (not including encryption
5905  * headers). Or 0 if the data in the sk_buff is too short to contain a valid
5906  * 802.11 header.
5907  */
5908 unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
5909 
5910 /**
5911  * ieee80211_hdrlen - get header length in bytes from frame control
5912  * @fc: frame control field in little-endian format
5913  * Return: The header length in bytes.
5914  */
5915 unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
5916 
5917 /**
5918  * ieee80211_get_mesh_hdrlen - get mesh extension header length
5919  * @meshhdr: the mesh extension header, only the flags field
5920  *	(first byte) will be accessed
5921  * Return: The length of the extension header, which is always at
5922  * least 6 bytes and at most 18 if address 5 and 6 are present.
5923  */
5924 unsigned int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr);
5925 
5926 /**
5927  * DOC: Data path helpers
5928  *
5929  * In addition to generic utilities, cfg80211 also offers
5930  * functions that help implement the data path for devices
5931  * that do not do the 802.11/802.3 conversion on the device.
5932  */
5933 
5934 /**
5935  * ieee80211_data_to_8023_exthdr - convert an 802.11 data frame to 802.3
5936  * @skb: the 802.11 data frame
5937  * @ehdr: pointer to a &struct ethhdr that will get the header, instead
5938  *	of it being pushed into the SKB
5939  * @addr: the device MAC address
5940  * @iftype: the virtual interface type
5941  * @data_offset: offset of payload after the 802.11 header
5942  * Return: 0 on success. Non-zero on error.
5943  */
5944 int ieee80211_data_to_8023_exthdr(struct sk_buff *skb, struct ethhdr *ehdr,
5945 				  const u8 *addr, enum nl80211_iftype iftype,
5946 				  u8 data_offset, bool is_amsdu);
5947 
5948 /**
5949  * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
5950  * @skb: the 802.11 data frame
5951  * @addr: the device MAC address
5952  * @iftype: the virtual interface type
5953  * Return: 0 on success. Non-zero on error.
5954  */
5955 static inline int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
5956 					 enum nl80211_iftype iftype)
5957 {
5958 	return ieee80211_data_to_8023_exthdr(skb, NULL, addr, iftype, 0, false);
5959 }
5960 
5961 /**
5962  * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
5963  *
5964  * Decode an IEEE 802.11 A-MSDU and convert it to a list of 802.3 frames.
5965  * The @list will be empty if the decode fails. The @skb must be fully
5966  * header-less before being passed in here; it is freed in this function.
5967  *
5968  * @skb: The input A-MSDU frame without any headers.
5969  * @list: The output list of 802.3 frames. It must be allocated and
5970  *	initialized by the caller.
5971  * @addr: The device MAC address.
5972  * @iftype: The device interface type.
5973  * @extra_headroom: The hardware extra headroom for SKBs in the @list.
5974  * @check_da: DA to check in the inner ethernet header, or NULL
5975  * @check_sa: SA to check in the inner ethernet header, or NULL
5976  */
5977 void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
5978 			      const u8 *addr, enum nl80211_iftype iftype,
5979 			      const unsigned int extra_headroom,
5980 			      const u8 *check_da, const u8 *check_sa);
5981 
5982 /**
5983  * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
5984  * @skb: the data frame
5985  * @qos_map: Interworking QoS mapping or %NULL if not in use
5986  * Return: The 802.1p/1d tag.
5987  */
5988 unsigned int cfg80211_classify8021d(struct sk_buff *skb,
5989 				    struct cfg80211_qos_map *qos_map);
5990 
5991 /**
5992  * cfg80211_find_elem_match - match information element and byte array in data
5993  *
5994  * @eid: element ID
5995  * @ies: data consisting of IEs
5996  * @len: length of data
5997  * @match: byte array to match
5998  * @match_len: number of bytes in the match array
5999  * @match_offset: offset in the IE data where the byte array should match.
6000  *	Note the difference to cfg80211_find_ie_match() which considers
6001  *	the offset to start from the element ID byte, but here we take
6002  *	the data portion instead.
6003  *
6004  * Return: %NULL if the element ID could not be found or if
6005  * the element is invalid (claims to be longer than the given
6006  * data) or if the byte array doesn't match; otherwise return the
6007  * requested element struct.
6008  *
6009  * Note: There are no checks on the element length other than
6010  * having to fit into the given data and being large enough for the
6011  * byte array to match.
6012  */
6013 const struct element *
6014 cfg80211_find_elem_match(u8 eid, const u8 *ies, unsigned int len,
6015 			 const u8 *match, unsigned int match_len,
6016 			 unsigned int match_offset);
6017 
6018 /**
6019  * cfg80211_find_ie_match - match information element and byte array in data
6020  *
6021  * @eid: element ID
6022  * @ies: data consisting of IEs
6023  * @len: length of data
6024  * @match: byte array to match
6025  * @match_len: number of bytes in the match array
6026  * @match_offset: offset in the IE where the byte array should match.
6027  *	If match_len is zero, this must also be set to zero.
6028  *	Otherwise this must be set to 2 or more, because the first
6029  *	byte is the element id, which is already compared to eid, and
6030  *	the second byte is the IE length.
6031  *
6032  * Return: %NULL if the element ID could not be found or if
6033  * the element is invalid (claims to be longer than the given
6034  * data) or if the byte array doesn't match, or a pointer to the first
6035  * byte of the requested element, that is the byte containing the
6036  * element ID.
6037  *
6038  * Note: There are no checks on the element length other than
6039  * having to fit into the given data and being large enough for the
6040  * byte array to match.
6041  */
6042 static inline const u8 *
6043 cfg80211_find_ie_match(u8 eid, const u8 *ies, unsigned int len,
6044 		       const u8 *match, unsigned int match_len,
6045 		       unsigned int match_offset)
6046 {
6047 	/* match_offset can't be smaller than 2, unless match_len is
6048 	 * zero, in which case match_offset must be zero as well.
6049 	 */
6050 	if (WARN_ON((match_len && match_offset < 2) ||
6051 		    (!match_len && match_offset)))
6052 		return NULL;
6053 
6054 	return (const void *)cfg80211_find_elem_match(eid, ies, len,
6055 						      match, match_len,
6056 						      match_offset ?
6057 							match_offset - 2 : 0);
6058 }
6059 
6060 /**
6061  * cfg80211_find_elem - find information element in data
6062  *
6063  * @eid: element ID
6064  * @ies: data consisting of IEs
6065  * @len: length of data
6066  *
6067  * Return: %NULL if the element ID could not be found or if
6068  * the element is invalid (claims to be longer than the given
6069  * data) or if the byte array doesn't match; otherwise return the
6070  * requested element struct.
6071  *
6072  * Note: There are no checks on the element length other than
6073  * having to fit into the given data.
6074  */
6075 static inline const struct element *
6076 cfg80211_find_elem(u8 eid, const u8 *ies, int len)
6077 {
6078 	return cfg80211_find_elem_match(eid, ies, len, NULL, 0, 0);
6079 }
6080 
6081 /**
6082  * cfg80211_find_ie - find information element in data
6083  *
6084  * @eid: element ID
6085  * @ies: data consisting of IEs
6086  * @len: length of data
6087  *
6088  * Return: %NULL if the element ID could not be found or if
6089  * the element is invalid (claims to be longer than the given
6090  * data), or a pointer to the first byte of the requested
6091  * element, that is the byte containing the element ID.
6092  *
6093  * Note: There are no checks on the element length other than
6094  * having to fit into the given data.
6095  */
6096 static inline const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len)
6097 {
6098 	return cfg80211_find_ie_match(eid, ies, len, NULL, 0, 0);
6099 }
6100 
6101 /**
6102  * cfg80211_find_ext_elem - find information element with EID Extension in data
6103  *
6104  * @ext_eid: element ID Extension
6105  * @ies: data consisting of IEs
6106  * @len: length of data
6107  *
6108  * Return: %NULL if the etended element could not be found or if
6109  * the element is invalid (claims to be longer than the given
6110  * data) or if the byte array doesn't match; otherwise return the
6111  * requested element struct.
6112  *
6113  * Note: There are no checks on the element length other than
6114  * having to fit into the given data.
6115  */
6116 static inline const struct element *
6117 cfg80211_find_ext_elem(u8 ext_eid, const u8 *ies, int len)
6118 {
6119 	return cfg80211_find_elem_match(WLAN_EID_EXTENSION, ies, len,
6120 					&ext_eid, 1, 0);
6121 }
6122 
6123 /**
6124  * cfg80211_find_ext_ie - find information element with EID Extension in data
6125  *
6126  * @ext_eid: element ID Extension
6127  * @ies: data consisting of IEs
6128  * @len: length of data
6129  *
6130  * Return: %NULL if the extended element ID could not be found or if
6131  * the element is invalid (claims to be longer than the given
6132  * data), or a pointer to the first byte of the requested
6133  * element, that is the byte containing the element ID.
6134  *
6135  * Note: There are no checks on the element length other than
6136  * having to fit into the given data.
6137  */
6138 static inline const u8 *cfg80211_find_ext_ie(u8 ext_eid, const u8 *ies, int len)
6139 {
6140 	return cfg80211_find_ie_match(WLAN_EID_EXTENSION, ies, len,
6141 				      &ext_eid, 1, 2);
6142 }
6143 
6144 /**
6145  * cfg80211_find_vendor_elem - find vendor specific information element in data
6146  *
6147  * @oui: vendor OUI
6148  * @oui_type: vendor-specific OUI type (must be < 0xff), negative means any
6149  * @ies: data consisting of IEs
6150  * @len: length of data
6151  *
6152  * Return: %NULL if the vendor specific element ID could not be found or if the
6153  * element is invalid (claims to be longer than the given data); otherwise
6154  * return the element structure for the requested element.
6155  *
6156  * Note: There are no checks on the element length other than having to fit into
6157  * the given data.
6158  */
6159 const struct element *cfg80211_find_vendor_elem(unsigned int oui, int oui_type,
6160 						const u8 *ies,
6161 						unsigned int len);
6162 
6163 /**
6164  * cfg80211_find_vendor_ie - find vendor specific information element in data
6165  *
6166  * @oui: vendor OUI
6167  * @oui_type: vendor-specific OUI type (must be < 0xff), negative means any
6168  * @ies: data consisting of IEs
6169  * @len: length of data
6170  *
6171  * Return: %NULL if the vendor specific element ID could not be found or if the
6172  * element is invalid (claims to be longer than the given data), or a pointer to
6173  * the first byte of the requested element, that is the byte containing the
6174  * element ID.
6175  *
6176  * Note: There are no checks on the element length other than having to fit into
6177  * the given data.
6178  */
6179 static inline const u8 *
6180 cfg80211_find_vendor_ie(unsigned int oui, int oui_type,
6181 			const u8 *ies, unsigned int len)
6182 {
6183 	return (const void *)cfg80211_find_vendor_elem(oui, oui_type, ies, len);
6184 }
6185 
6186 /**
6187  * cfg80211_send_layer2_update - send layer 2 update frame
6188  *
6189  * @dev: network device
6190  * @addr: STA MAC address
6191  *
6192  * Wireless drivers can use this function to update forwarding tables in bridge
6193  * devices upon STA association.
6194  */
6195 void cfg80211_send_layer2_update(struct net_device *dev, const u8 *addr);
6196 
6197 /**
6198  * DOC: Regulatory enforcement infrastructure
6199  *
6200  * TODO
6201  */
6202 
6203 /**
6204  * regulatory_hint - driver hint to the wireless core a regulatory domain
6205  * @wiphy: the wireless device giving the hint (used only for reporting
6206  *	conflicts)
6207  * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
6208  *	should be in. If @rd is set this should be NULL. Note that if you
6209  *	set this to NULL you should still set rd->alpha2 to some accepted
6210  *	alpha2.
6211  *
6212  * Wireless drivers can use this function to hint to the wireless core
6213  * what it believes should be the current regulatory domain by
6214  * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
6215  * domain should be in or by providing a completely build regulatory domain.
6216  * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
6217  * for a regulatory domain structure for the respective country.
6218  *
6219  * The wiphy must have been registered to cfg80211 prior to this call.
6220  * For cfg80211 drivers this means you must first use wiphy_register(),
6221  * for mac80211 drivers you must first use ieee80211_register_hw().
6222  *
6223  * Drivers should check the return value, its possible you can get
6224  * an -ENOMEM.
6225  *
6226  * Return: 0 on success. -ENOMEM.
6227  */
6228 int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
6229 
6230 /**
6231  * regulatory_set_wiphy_regd - set regdom info for self managed drivers
6232  * @wiphy: the wireless device we want to process the regulatory domain on
6233  * @rd: the regulatory domain informatoin to use for this wiphy
6234  *
6235  * Set the regulatory domain information for self-managed wiphys, only they
6236  * may use this function. See %REGULATORY_WIPHY_SELF_MANAGED for more
6237  * information.
6238  *
6239  * Return: 0 on success. -EINVAL, -EPERM
6240  */
6241 int regulatory_set_wiphy_regd(struct wiphy *wiphy,
6242 			      struct ieee80211_regdomain *rd);
6243 
6244 /**
6245  * regulatory_set_wiphy_regd_sync - set regdom for self-managed drivers
6246  * @wiphy: the wireless device we want to process the regulatory domain on
6247  * @rd: the regulatory domain information to use for this wiphy
6248  *
6249  * This functions requires the RTNL and the wiphy mutex to be held and
6250  * applies the new regdomain synchronously to this wiphy. For more details
6251  * see regulatory_set_wiphy_regd().
6252  *
6253  * Return: 0 on success. -EINVAL, -EPERM
6254  */
6255 int regulatory_set_wiphy_regd_sync(struct wiphy *wiphy,
6256 				   struct ieee80211_regdomain *rd);
6257 
6258 /**
6259  * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
6260  * @wiphy: the wireless device we want to process the regulatory domain on
6261  * @regd: the custom regulatory domain to use for this wiphy
6262  *
6263  * Drivers can sometimes have custom regulatory domains which do not apply
6264  * to a specific country. Drivers can use this to apply such custom regulatory
6265  * domains. This routine must be called prior to wiphy registration. The
6266  * custom regulatory domain will be trusted completely and as such previous
6267  * default channel settings will be disregarded. If no rule is found for a
6268  * channel on the regulatory domain the channel will be disabled.
6269  * Drivers using this for a wiphy should also set the wiphy flag
6270  * REGULATORY_CUSTOM_REG or cfg80211 will set it for the wiphy
6271  * that called this helper.
6272  */
6273 void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
6274 				   const struct ieee80211_regdomain *regd);
6275 
6276 /**
6277  * freq_reg_info - get regulatory information for the given frequency
6278  * @wiphy: the wiphy for which we want to process this rule for
6279  * @center_freq: Frequency in KHz for which we want regulatory information for
6280  *
6281  * Use this function to get the regulatory rule for a specific frequency on
6282  * a given wireless device. If the device has a specific regulatory domain
6283  * it wants to follow we respect that unless a country IE has been received
6284  * and processed already.
6285  *
6286  * Return: A valid pointer, or, when an error occurs, for example if no rule
6287  * can be found, the return value is encoded using ERR_PTR(). Use IS_ERR() to
6288  * check and PTR_ERR() to obtain the numeric return value. The numeric return
6289  * value will be -ERANGE if we determine the given center_freq does not even
6290  * have a regulatory rule for a frequency range in the center_freq's band.
6291  * See freq_in_rule_band() for our current definition of a band -- this is
6292  * purely subjective and right now it's 802.11 specific.
6293  */
6294 const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
6295 					       u32 center_freq);
6296 
6297 /**
6298  * reg_initiator_name - map regulatory request initiator enum to name
6299  * @initiator: the regulatory request initiator
6300  *
6301  * You can use this to map the regulatory request initiator enum to a
6302  * proper string representation.
6303  */
6304 const char *reg_initiator_name(enum nl80211_reg_initiator initiator);
6305 
6306 /**
6307  * regulatory_pre_cac_allowed - check if pre-CAC allowed in the current regdom
6308  * @wiphy: wiphy for which pre-CAC capability is checked.
6309  *
6310  * Pre-CAC is allowed only in some regdomains (notable ETSI).
6311  */
6312 bool regulatory_pre_cac_allowed(struct wiphy *wiphy);
6313 
6314 /**
6315  * DOC: Internal regulatory db functions
6316  *
6317  */
6318 
6319 /**
6320  * reg_query_regdb_wmm -  Query internal regulatory db for wmm rule
6321  * Regulatory self-managed driver can use it to proactively
6322  *
6323  * @alpha2: the ISO/IEC 3166 alpha2 wmm rule to be queried.
6324  * @freq: the freqency(in MHz) to be queried.
6325  * @rule: pointer to store the wmm rule from the regulatory db.
6326  *
6327  * Self-managed wireless drivers can use this function to  query
6328  * the internal regulatory database to check whether the given
6329  * ISO/IEC 3166 alpha2 country and freq have wmm rule limitations.
6330  *
6331  * Drivers should check the return value, its possible you can get
6332  * an -ENODATA.
6333  *
6334  * Return: 0 on success. -ENODATA.
6335  */
6336 int reg_query_regdb_wmm(char *alpha2, int freq,
6337 			struct ieee80211_reg_rule *rule);
6338 
6339 /*
6340  * callbacks for asynchronous cfg80211 methods, notification
6341  * functions and BSS handling helpers
6342  */
6343 
6344 /**
6345  * cfg80211_scan_done - notify that scan finished
6346  *
6347  * @request: the corresponding scan request
6348  * @info: information about the completed scan
6349  */
6350 void cfg80211_scan_done(struct cfg80211_scan_request *request,
6351 			struct cfg80211_scan_info *info);
6352 
6353 /**
6354  * cfg80211_sched_scan_results - notify that new scan results are available
6355  *
6356  * @wiphy: the wiphy which got scheduled scan results
6357  * @reqid: identifier for the related scheduled scan request
6358  */
6359 void cfg80211_sched_scan_results(struct wiphy *wiphy, u64 reqid);
6360 
6361 /**
6362  * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
6363  *
6364  * @wiphy: the wiphy on which the scheduled scan stopped
6365  * @reqid: identifier for the related scheduled scan request
6366  *
6367  * The driver can call this function to inform cfg80211 that the
6368  * scheduled scan had to be stopped, for whatever reason.  The driver
6369  * is then called back via the sched_scan_stop operation when done.
6370  */
6371 void cfg80211_sched_scan_stopped(struct wiphy *wiphy, u64 reqid);
6372 
6373 /**
6374  * cfg80211_sched_scan_stopped_locked - notify that the scheduled scan has stopped
6375  *
6376  * @wiphy: the wiphy on which the scheduled scan stopped
6377  * @reqid: identifier for the related scheduled scan request
6378  *
6379  * The driver can call this function to inform cfg80211 that the
6380  * scheduled scan had to be stopped, for whatever reason.  The driver
6381  * is then called back via the sched_scan_stop operation when done.
6382  * This function should be called with the wiphy mutex held.
6383  */
6384 void cfg80211_sched_scan_stopped_locked(struct wiphy *wiphy, u64 reqid);
6385 
6386 /**
6387  * cfg80211_inform_bss_frame_data - inform cfg80211 of a received BSS frame
6388  * @wiphy: the wiphy reporting the BSS
6389  * @data: the BSS metadata
6390  * @mgmt: the management frame (probe response or beacon)
6391  * @len: length of the management frame
6392  * @gfp: context flags
6393  *
6394  * This informs cfg80211 that BSS information was found and
6395  * the BSS should be updated/added.
6396  *
6397  * Return: A referenced struct, must be released with cfg80211_put_bss()!
6398  * Or %NULL on error.
6399  */
6400 struct cfg80211_bss * __must_check
6401 cfg80211_inform_bss_frame_data(struct wiphy *wiphy,
6402 			       struct cfg80211_inform_bss *data,
6403 			       struct ieee80211_mgmt *mgmt, size_t len,
6404 			       gfp_t gfp);
6405 
6406 static inline struct cfg80211_bss * __must_check
6407 cfg80211_inform_bss_width_frame(struct wiphy *wiphy,
6408 				struct ieee80211_channel *rx_channel,
6409 				enum nl80211_bss_scan_width scan_width,
6410 				struct ieee80211_mgmt *mgmt, size_t len,
6411 				s32 signal, gfp_t gfp)
6412 {
6413 	struct cfg80211_inform_bss data = {
6414 		.chan = rx_channel,
6415 		.scan_width = scan_width,
6416 		.signal = signal,
6417 	};
6418 
6419 	return cfg80211_inform_bss_frame_data(wiphy, &data, mgmt, len, gfp);
6420 }
6421 
6422 static inline struct cfg80211_bss * __must_check
6423 cfg80211_inform_bss_frame(struct wiphy *wiphy,
6424 			  struct ieee80211_channel *rx_channel,
6425 			  struct ieee80211_mgmt *mgmt, size_t len,
6426 			  s32 signal, gfp_t gfp)
6427 {
6428 	struct cfg80211_inform_bss data = {
6429 		.chan = rx_channel,
6430 		.scan_width = NL80211_BSS_CHAN_WIDTH_20,
6431 		.signal = signal,
6432 	};
6433 
6434 	return cfg80211_inform_bss_frame_data(wiphy, &data, mgmt, len, gfp);
6435 }
6436 
6437 /**
6438  * cfg80211_gen_new_bssid - generate a nontransmitted BSSID for multi-BSSID
6439  * @bssid: transmitter BSSID
6440  * @max_bssid: max BSSID indicator, taken from Multiple BSSID element
6441  * @mbssid_index: BSSID index, taken from Multiple BSSID index element
6442  * @new_bssid: calculated nontransmitted BSSID
6443  */
6444 static inline void cfg80211_gen_new_bssid(const u8 *bssid, u8 max_bssid,
6445 					  u8 mbssid_index, u8 *new_bssid)
6446 {
6447 	u64 bssid_u64 = ether_addr_to_u64(bssid);
6448 	u64 mask = GENMASK_ULL(max_bssid - 1, 0);
6449 	u64 new_bssid_u64;
6450 
6451 	new_bssid_u64 = bssid_u64 & ~mask;
6452 
6453 	new_bssid_u64 |= ((bssid_u64 & mask) + mbssid_index) & mask;
6454 
6455 	u64_to_ether_addr(new_bssid_u64, new_bssid);
6456 }
6457 
6458 /**
6459  * cfg80211_is_element_inherited - returns if element ID should be inherited
6460  * @element: element to check
6461  * @non_inherit_element: non inheritance element
6462  */
6463 bool cfg80211_is_element_inherited(const struct element *element,
6464 				   const struct element *non_inherit_element);
6465 
6466 /**
6467  * cfg80211_merge_profile - merges a MBSSID profile if it is split between IEs
6468  * @ie: ies
6469  * @ielen: length of IEs
6470  * @mbssid_elem: current MBSSID element
6471  * @sub_elem: current MBSSID subelement (profile)
6472  * @merged_ie: location of the merged profile
6473  * @max_copy_len: max merged profile length
6474  */
6475 size_t cfg80211_merge_profile(const u8 *ie, size_t ielen,
6476 			      const struct element *mbssid_elem,
6477 			      const struct element *sub_elem,
6478 			      u8 *merged_ie, size_t max_copy_len);
6479 
6480 /**
6481  * enum cfg80211_bss_frame_type - frame type that the BSS data came from
6482  * @CFG80211_BSS_FTYPE_UNKNOWN: driver doesn't know whether the data is
6483  *	from a beacon or probe response
6484  * @CFG80211_BSS_FTYPE_BEACON: data comes from a beacon
6485  * @CFG80211_BSS_FTYPE_PRESP: data comes from a probe response
6486  */
6487 enum cfg80211_bss_frame_type {
6488 	CFG80211_BSS_FTYPE_UNKNOWN,
6489 	CFG80211_BSS_FTYPE_BEACON,
6490 	CFG80211_BSS_FTYPE_PRESP,
6491 };
6492 
6493 /**
6494  * cfg80211_get_ies_channel_number - returns the channel number from ies
6495  * @ie: IEs
6496  * @ielen: length of IEs
6497  * @band: enum nl80211_band of the channel
6498  * @ftype: frame type
6499  *
6500  * Returns the channel number, or -1 if none could be determined.
6501  */
6502 int cfg80211_get_ies_channel_number(const u8 *ie, size_t ielen,
6503 				    enum nl80211_band band,
6504 				    enum cfg80211_bss_frame_type ftype);
6505 
6506 /**
6507  * cfg80211_inform_bss_data - inform cfg80211 of a new BSS
6508  *
6509  * @wiphy: the wiphy reporting the BSS
6510  * @data: the BSS metadata
6511  * @ftype: frame type (if known)
6512  * @bssid: the BSSID of the BSS
6513  * @tsf: the TSF sent by the peer in the beacon/probe response (or 0)
6514  * @capability: the capability field sent by the peer
6515  * @beacon_interval: the beacon interval announced by the peer
6516  * @ie: additional IEs sent by the peer
6517  * @ielen: length of the additional IEs
6518  * @gfp: context flags
6519  *
6520  * This informs cfg80211 that BSS information was found and
6521  * the BSS should be updated/added.
6522  *
6523  * Return: A referenced struct, must be released with cfg80211_put_bss()!
6524  * Or %NULL on error.
6525  */
6526 struct cfg80211_bss * __must_check
6527 cfg80211_inform_bss_data(struct wiphy *wiphy,
6528 			 struct cfg80211_inform_bss *data,
6529 			 enum cfg80211_bss_frame_type ftype,
6530 			 const u8 *bssid, u64 tsf, u16 capability,
6531 			 u16 beacon_interval, const u8 *ie, size_t ielen,
6532 			 gfp_t gfp);
6533 
6534 static inline struct cfg80211_bss * __must_check
6535 cfg80211_inform_bss_width(struct wiphy *wiphy,
6536 			  struct ieee80211_channel *rx_channel,
6537 			  enum nl80211_bss_scan_width scan_width,
6538 			  enum cfg80211_bss_frame_type ftype,
6539 			  const u8 *bssid, u64 tsf, u16 capability,
6540 			  u16 beacon_interval, const u8 *ie, size_t ielen,
6541 			  s32 signal, gfp_t gfp)
6542 {
6543 	struct cfg80211_inform_bss data = {
6544 		.chan = rx_channel,
6545 		.scan_width = scan_width,
6546 		.signal = signal,
6547 	};
6548 
6549 	return cfg80211_inform_bss_data(wiphy, &data, ftype, bssid, tsf,
6550 					capability, beacon_interval, ie, ielen,
6551 					gfp);
6552 }
6553 
6554 static inline struct cfg80211_bss * __must_check
6555 cfg80211_inform_bss(struct wiphy *wiphy,
6556 		    struct ieee80211_channel *rx_channel,
6557 		    enum cfg80211_bss_frame_type ftype,
6558 		    const u8 *bssid, u64 tsf, u16 capability,
6559 		    u16 beacon_interval, const u8 *ie, size_t ielen,
6560 		    s32 signal, gfp_t gfp)
6561 {
6562 	struct cfg80211_inform_bss data = {
6563 		.chan = rx_channel,
6564 		.scan_width = NL80211_BSS_CHAN_WIDTH_20,
6565 		.signal = signal,
6566 	};
6567 
6568 	return cfg80211_inform_bss_data(wiphy, &data, ftype, bssid, tsf,
6569 					capability, beacon_interval, ie, ielen,
6570 					gfp);
6571 }
6572 
6573 /**
6574  * cfg80211_get_bss - get a BSS reference
6575  * @wiphy: the wiphy this BSS struct belongs to
6576  * @channel: the channel to search on (or %NULL)
6577  * @bssid: the desired BSSID (or %NULL)
6578  * @ssid: the desired SSID (or %NULL)
6579  * @ssid_len: length of the SSID (or 0)
6580  * @bss_type: type of BSS, see &enum ieee80211_bss_type
6581  * @privacy: privacy filter, see &enum ieee80211_privacy
6582  */
6583 struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
6584 				      struct ieee80211_channel *channel,
6585 				      const u8 *bssid,
6586 				      const u8 *ssid, size_t ssid_len,
6587 				      enum ieee80211_bss_type bss_type,
6588 				      enum ieee80211_privacy privacy);
6589 static inline struct cfg80211_bss *
6590 cfg80211_get_ibss(struct wiphy *wiphy,
6591 		  struct ieee80211_channel *channel,
6592 		  const u8 *ssid, size_t ssid_len)
6593 {
6594 	return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
6595 				IEEE80211_BSS_TYPE_IBSS,
6596 				IEEE80211_PRIVACY_ANY);
6597 }
6598 
6599 /**
6600  * cfg80211_ref_bss - reference BSS struct
6601  * @wiphy: the wiphy this BSS struct belongs to
6602  * @bss: the BSS struct to reference
6603  *
6604  * Increments the refcount of the given BSS struct.
6605  */
6606 void cfg80211_ref_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
6607 
6608 /**
6609  * cfg80211_put_bss - unref BSS struct
6610  * @wiphy: the wiphy this BSS struct belongs to
6611  * @bss: the BSS struct
6612  *
6613  * Decrements the refcount of the given BSS struct.
6614  */
6615 void cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
6616 
6617 /**
6618  * cfg80211_unlink_bss - unlink BSS from internal data structures
6619  * @wiphy: the wiphy
6620  * @bss: the bss to remove
6621  *
6622  * This function removes the given BSS from the internal data structures
6623  * thereby making it no longer show up in scan results etc. Use this
6624  * function when you detect a BSS is gone. Normally BSSes will also time
6625  * out, so it is not necessary to use this function at all.
6626  */
6627 void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
6628 
6629 /**
6630  * cfg80211_bss_iter - iterate all BSS entries
6631  *
6632  * This function iterates over the BSS entries associated with the given wiphy
6633  * and calls the callback for the iterated BSS. The iterator function is not
6634  * allowed to call functions that might modify the internal state of the BSS DB.
6635  *
6636  * @wiphy: the wiphy
6637  * @chandef: if given, the iterator function will be called only if the channel
6638  *     of the currently iterated BSS is a subset of the given channel.
6639  * @iter: the iterator function to call
6640  * @iter_data: an argument to the iterator function
6641  */
6642 void cfg80211_bss_iter(struct wiphy *wiphy,
6643 		       struct cfg80211_chan_def *chandef,
6644 		       void (*iter)(struct wiphy *wiphy,
6645 				    struct cfg80211_bss *bss,
6646 				    void *data),
6647 		       void *iter_data);
6648 
6649 static inline enum nl80211_bss_scan_width
6650 cfg80211_chandef_to_scan_width(const struct cfg80211_chan_def *chandef)
6651 {
6652 	switch (chandef->width) {
6653 	case NL80211_CHAN_WIDTH_5:
6654 		return NL80211_BSS_CHAN_WIDTH_5;
6655 	case NL80211_CHAN_WIDTH_10:
6656 		return NL80211_BSS_CHAN_WIDTH_10;
6657 	default:
6658 		return NL80211_BSS_CHAN_WIDTH_20;
6659 	}
6660 }
6661 
6662 /**
6663  * cfg80211_rx_mlme_mgmt - notification of processed MLME management frame
6664  * @dev: network device
6665  * @buf: authentication frame (header + body)
6666  * @len: length of the frame data
6667  *
6668  * This function is called whenever an authentication, disassociation or
6669  * deauthentication frame has been received and processed in station mode.
6670  * After being asked to authenticate via cfg80211_ops::auth() the driver must
6671  * call either this function or cfg80211_auth_timeout().
6672  * After being asked to associate via cfg80211_ops::assoc() the driver must
6673  * call either this function or cfg80211_auth_timeout().
6674  * While connected, the driver must calls this for received and processed
6675  * disassociation and deauthentication frames. If the frame couldn't be used
6676  * because it was unprotected, the driver must call the function
6677  * cfg80211_rx_unprot_mlme_mgmt() instead.
6678  *
6679  * This function may sleep. The caller must hold the corresponding wdev's mutex.
6680  */
6681 void cfg80211_rx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len);
6682 
6683 /**
6684  * cfg80211_auth_timeout - notification of timed out authentication
6685  * @dev: network device
6686  * @addr: The MAC address of the device with which the authentication timed out
6687  *
6688  * This function may sleep. The caller must hold the corresponding wdev's
6689  * mutex.
6690  */
6691 void cfg80211_auth_timeout(struct net_device *dev, const u8 *addr);
6692 
6693 /**
6694  * cfg80211_rx_assoc_resp - notification of processed association response
6695  * @dev: network device
6696  * @bss: the BSS that association was requested with, ownership of the pointer
6697  *	moves to cfg80211 in this call
6698  * @buf: (Re)Association Response frame (header + body)
6699  * @len: length of the frame data
6700  * @uapsd_queues: bitmap of queues configured for uapsd. Same format
6701  *	as the AC bitmap in the QoS info field
6702  * @req_ies: information elements from the (Re)Association Request frame
6703  * @req_ies_len: length of req_ies data
6704  *
6705  * After being asked to associate via cfg80211_ops::assoc() the driver must
6706  * call either this function or cfg80211_auth_timeout().
6707  *
6708  * This function may sleep. The caller must hold the corresponding wdev's mutex.
6709  */
6710 void cfg80211_rx_assoc_resp(struct net_device *dev,
6711 			    struct cfg80211_bss *bss,
6712 			    const u8 *buf, size_t len,
6713 			    int uapsd_queues,
6714 			    const u8 *req_ies, size_t req_ies_len);
6715 
6716 /**
6717  * cfg80211_assoc_timeout - notification of timed out association
6718  * @dev: network device
6719  * @bss: The BSS entry with which association timed out.
6720  *
6721  * This function may sleep. The caller must hold the corresponding wdev's mutex.
6722  */
6723 void cfg80211_assoc_timeout(struct net_device *dev, struct cfg80211_bss *bss);
6724 
6725 /**
6726  * cfg80211_abandon_assoc - notify cfg80211 of abandoned association attempt
6727  * @dev: network device
6728  * @bss: The BSS entry with which association was abandoned.
6729  *
6730  * Call this whenever - for reasons reported through other API, like deauth RX,
6731  * an association attempt was abandoned.
6732  * This function may sleep. The caller must hold the corresponding wdev's mutex.
6733  */
6734 void cfg80211_abandon_assoc(struct net_device *dev, struct cfg80211_bss *bss);
6735 
6736 /**
6737  * cfg80211_tx_mlme_mgmt - notification of transmitted deauth/disassoc frame
6738  * @dev: network device
6739  * @buf: 802.11 frame (header + body)
6740  * @len: length of the frame data
6741  * @reconnect: immediate reconnect is desired (include the nl80211 attribute)
6742  *
6743  * This function is called whenever deauthentication has been processed in
6744  * station mode. This includes both received deauthentication frames and
6745  * locally generated ones. This function may sleep. The caller must hold the
6746  * corresponding wdev's mutex.
6747  */
6748 void cfg80211_tx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len,
6749 			   bool reconnect);
6750 
6751 /**
6752  * cfg80211_rx_unprot_mlme_mgmt - notification of unprotected mlme mgmt frame
6753  * @dev: network device
6754  * @buf: received management frame (header + body)
6755  * @len: length of the frame data
6756  *
6757  * This function is called whenever a received deauthentication or dissassoc
6758  * frame has been dropped in station mode because of MFP being used but the
6759  * frame was not protected. This is also used to notify reception of a Beacon
6760  * frame that was dropped because it did not include a valid MME MIC while
6761  * beacon protection was enabled (BIGTK configured in station mode).
6762  *
6763  * This function may sleep.
6764  */
6765 void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev,
6766 				  const u8 *buf, size_t len);
6767 
6768 /**
6769  * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
6770  * @dev: network device
6771  * @addr: The source MAC address of the frame
6772  * @key_type: The key type that the received frame used
6773  * @key_id: Key identifier (0..3). Can be -1 if missing.
6774  * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
6775  * @gfp: allocation flags
6776  *
6777  * This function is called whenever the local MAC detects a MIC failure in a
6778  * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
6779  * primitive.
6780  */
6781 void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
6782 				  enum nl80211_key_type key_type, int key_id,
6783 				  const u8 *tsc, gfp_t gfp);
6784 
6785 /**
6786  * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
6787  *
6788  * @dev: network device
6789  * @bssid: the BSSID of the IBSS joined
6790  * @channel: the channel of the IBSS joined
6791  * @gfp: allocation flags
6792  *
6793  * This function notifies cfg80211 that the device joined an IBSS or
6794  * switched to a different BSSID. Before this function can be called,
6795  * either a beacon has to have been received from the IBSS, or one of
6796  * the cfg80211_inform_bss{,_frame} functions must have been called
6797  * with the locally generated beacon -- this guarantees that there is
6798  * always a scan result for this IBSS. cfg80211 will handle the rest.
6799  */
6800 void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid,
6801 			  struct ieee80211_channel *channel, gfp_t gfp);
6802 
6803 /**
6804  * cfg80211_notify_new_peer_candidate - notify cfg80211 of a new mesh peer
6805  * 					candidate
6806  *
6807  * @dev: network device
6808  * @macaddr: the MAC address of the new candidate
6809  * @ie: information elements advertised by the peer candidate
6810  * @ie_len: length of the information elements buffer
6811  * @gfp: allocation flags
6812  *
6813  * This function notifies cfg80211 that the mesh peer candidate has been
6814  * detected, most likely via a beacon or, less likely, via a probe response.
6815  * cfg80211 then sends a notification to userspace.
6816  */
6817 void cfg80211_notify_new_peer_candidate(struct net_device *dev,
6818 		const u8 *macaddr, const u8 *ie, u8 ie_len,
6819 		int sig_dbm, gfp_t gfp);
6820 
6821 /**
6822  * DOC: RFkill integration
6823  *
6824  * RFkill integration in cfg80211 is almost invisible to drivers,
6825  * as cfg80211 automatically registers an rfkill instance for each
6826  * wireless device it knows about. Soft kill is also translated
6827  * into disconnecting and turning all interfaces off, drivers are
6828  * expected to turn off the device when all interfaces are down.
6829  *
6830  * However, devices may have a hard RFkill line, in which case they
6831  * also need to interact with the rfkill subsystem, via cfg80211.
6832  * They can do this with a few helper functions documented here.
6833  */
6834 
6835 /**
6836  * wiphy_rfkill_set_hw_state_reason - notify cfg80211 about hw block state
6837  * @wiphy: the wiphy
6838  * @blocked: block status
6839  * @reason: one of reasons in &enum rfkill_hard_block_reasons
6840  */
6841 void wiphy_rfkill_set_hw_state_reason(struct wiphy *wiphy, bool blocked,
6842 				      enum rfkill_hard_block_reasons reason);
6843 
6844 static inline void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
6845 {
6846 	wiphy_rfkill_set_hw_state_reason(wiphy, blocked,
6847 					 RFKILL_HARD_BLOCK_SIGNAL);
6848 }
6849 
6850 /**
6851  * wiphy_rfkill_start_polling - start polling rfkill
6852  * @wiphy: the wiphy
6853  */
6854 void wiphy_rfkill_start_polling(struct wiphy *wiphy);
6855 
6856 /**
6857  * wiphy_rfkill_stop_polling - stop polling rfkill
6858  * @wiphy: the wiphy
6859  */
6860 static inline void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
6861 {
6862 	rfkill_pause_polling(wiphy->rfkill);
6863 }
6864 
6865 /**
6866  * DOC: Vendor commands
6867  *
6868  * Occasionally, there are special protocol or firmware features that
6869  * can't be implemented very openly. For this and similar cases, the
6870  * vendor command functionality allows implementing the features with
6871  * (typically closed-source) userspace and firmware, using nl80211 as
6872  * the configuration mechanism.
6873  *
6874  * A driver supporting vendor commands must register them as an array
6875  * in struct wiphy, with handlers for each one, each command has an
6876  * OUI and sub command ID to identify it.
6877  *
6878  * Note that this feature should not be (ab)used to implement protocol
6879  * features that could openly be shared across drivers. In particular,
6880  * it must never be required to use vendor commands to implement any
6881  * "normal" functionality that higher-level userspace like connection
6882  * managers etc. need.
6883  */
6884 
6885 struct sk_buff *__cfg80211_alloc_reply_skb(struct wiphy *wiphy,
6886 					   enum nl80211_commands cmd,
6887 					   enum nl80211_attrs attr,
6888 					   int approxlen);
6889 
6890 struct sk_buff *__cfg80211_alloc_event_skb(struct wiphy *wiphy,
6891 					   struct wireless_dev *wdev,
6892 					   enum nl80211_commands cmd,
6893 					   enum nl80211_attrs attr,
6894 					   unsigned int portid,
6895 					   int vendor_event_idx,
6896 					   int approxlen, gfp_t gfp);
6897 
6898 void __cfg80211_send_event_skb(struct sk_buff *skb, gfp_t gfp);
6899 
6900 /**
6901  * cfg80211_vendor_cmd_alloc_reply_skb - allocate vendor command reply
6902  * @wiphy: the wiphy
6903  * @approxlen: an upper bound of the length of the data that will
6904  *	be put into the skb
6905  *
6906  * This function allocates and pre-fills an skb for a reply to
6907  * a vendor command. Since it is intended for a reply, calling
6908  * it outside of a vendor command's doit() operation is invalid.
6909  *
6910  * The returned skb is pre-filled with some identifying data in
6911  * a way that any data that is put into the skb (with skb_put(),
6912  * nla_put() or similar) will end up being within the
6913  * %NL80211_ATTR_VENDOR_DATA attribute, so all that needs to be done
6914  * with the skb is adding data for the corresponding userspace tool
6915  * which can then read that data out of the vendor data attribute.
6916  * You must not modify the skb in any other way.
6917  *
6918  * When done, call cfg80211_vendor_cmd_reply() with the skb and return
6919  * its error code as the result of the doit() operation.
6920  *
6921  * Return: An allocated and pre-filled skb. %NULL if any errors happen.
6922  */
6923 static inline struct sk_buff *
6924 cfg80211_vendor_cmd_alloc_reply_skb(struct wiphy *wiphy, int approxlen)
6925 {
6926 	return __cfg80211_alloc_reply_skb(wiphy, NL80211_CMD_VENDOR,
6927 					  NL80211_ATTR_VENDOR_DATA, approxlen);
6928 }
6929 
6930 /**
6931  * cfg80211_vendor_cmd_reply - send the reply skb
6932  * @skb: The skb, must have been allocated with
6933  *	cfg80211_vendor_cmd_alloc_reply_skb()
6934  *
6935  * Since calling this function will usually be the last thing
6936  * before returning from the vendor command doit() you should
6937  * return the error code.  Note that this function consumes the
6938  * skb regardless of the return value.
6939  *
6940  * Return: An error code or 0 on success.
6941  */
6942 int cfg80211_vendor_cmd_reply(struct sk_buff *skb);
6943 
6944 /**
6945  * cfg80211_vendor_cmd_get_sender - get the current sender netlink ID
6946  * @wiphy: the wiphy
6947  *
6948  * Return the current netlink port ID in a vendor command handler.
6949  * Valid to call only there.
6950  */
6951 unsigned int cfg80211_vendor_cmd_get_sender(struct wiphy *wiphy);
6952 
6953 /**
6954  * cfg80211_vendor_event_alloc - allocate vendor-specific event skb
6955  * @wiphy: the wiphy
6956  * @wdev: the wireless device
6957  * @event_idx: index of the vendor event in the wiphy's vendor_events
6958  * @approxlen: an upper bound of the length of the data that will
6959  *	be put into the skb
6960  * @gfp: allocation flags
6961  *
6962  * This function allocates and pre-fills an skb for an event on the
6963  * vendor-specific multicast group.
6964  *
6965  * If wdev != NULL, both the ifindex and identifier of the specified
6966  * wireless device are added to the event message before the vendor data
6967  * attribute.
6968  *
6969  * When done filling the skb, call cfg80211_vendor_event() with the
6970  * skb to send the event.
6971  *
6972  * Return: An allocated and pre-filled skb. %NULL if any errors happen.
6973  */
6974 static inline struct sk_buff *
6975 cfg80211_vendor_event_alloc(struct wiphy *wiphy, struct wireless_dev *wdev,
6976 			     int approxlen, int event_idx, gfp_t gfp)
6977 {
6978 	return __cfg80211_alloc_event_skb(wiphy, wdev, NL80211_CMD_VENDOR,
6979 					  NL80211_ATTR_VENDOR_DATA,
6980 					  0, event_idx, approxlen, gfp);
6981 }
6982 
6983 /**
6984  * cfg80211_vendor_event_alloc_ucast - alloc unicast vendor-specific event skb
6985  * @wiphy: the wiphy
6986  * @wdev: the wireless device
6987  * @event_idx: index of the vendor event in the wiphy's vendor_events
6988  * @portid: port ID of the receiver
6989  * @approxlen: an upper bound of the length of the data that will
6990  *	be put into the skb
6991  * @gfp: allocation flags
6992  *
6993  * This function allocates and pre-fills an skb for an event to send to
6994  * a specific (userland) socket. This socket would previously have been
6995  * obtained by cfg80211_vendor_cmd_get_sender(), and the caller MUST take
6996  * care to register a netlink notifier to see when the socket closes.
6997  *
6998  * If wdev != NULL, both the ifindex and identifier of the specified
6999  * wireless device are added to the event message before the vendor data
7000  * attribute.
7001  *
7002  * When done filling the skb, call cfg80211_vendor_event() with the
7003  * skb to send the event.
7004  *
7005  * Return: An allocated and pre-filled skb. %NULL if any errors happen.
7006  */
7007 static inline struct sk_buff *
7008 cfg80211_vendor_event_alloc_ucast(struct wiphy *wiphy,
7009 				  struct wireless_dev *wdev,
7010 				  unsigned int portid, int approxlen,
7011 				  int event_idx, gfp_t gfp)
7012 {
7013 	return __cfg80211_alloc_event_skb(wiphy, wdev, NL80211_CMD_VENDOR,
7014 					  NL80211_ATTR_VENDOR_DATA,
7015 					  portid, event_idx, approxlen, gfp);
7016 }
7017 
7018 /**
7019  * cfg80211_vendor_event - send the event
7020  * @skb: The skb, must have been allocated with cfg80211_vendor_event_alloc()
7021  * @gfp: allocation flags
7022  *
7023  * This function sends the given @skb, which must have been allocated
7024  * by cfg80211_vendor_event_alloc(), as an event. It always consumes it.
7025  */
7026 static inline void cfg80211_vendor_event(struct sk_buff *skb, gfp_t gfp)
7027 {
7028 	__cfg80211_send_event_skb(skb, gfp);
7029 }
7030 
7031 #ifdef CONFIG_NL80211_TESTMODE
7032 /**
7033  * DOC: Test mode
7034  *
7035  * Test mode is a set of utility functions to allow drivers to
7036  * interact with driver-specific tools to aid, for instance,
7037  * factory programming.
7038  *
7039  * This chapter describes how drivers interact with it, for more
7040  * information see the nl80211 book's chapter on it.
7041  */
7042 
7043 /**
7044  * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
7045  * @wiphy: the wiphy
7046  * @approxlen: an upper bound of the length of the data that will
7047  *	be put into the skb
7048  *
7049  * This function allocates and pre-fills an skb for a reply to
7050  * the testmode command. Since it is intended for a reply, calling
7051  * it outside of the @testmode_cmd operation is invalid.
7052  *
7053  * The returned skb is pre-filled with the wiphy index and set up in
7054  * a way that any data that is put into the skb (with skb_put(),
7055  * nla_put() or similar) will end up being within the
7056  * %NL80211_ATTR_TESTDATA attribute, so all that needs to be done
7057  * with the skb is adding data for the corresponding userspace tool
7058  * which can then read that data out of the testdata attribute. You
7059  * must not modify the skb in any other way.
7060  *
7061  * When done, call cfg80211_testmode_reply() with the skb and return
7062  * its error code as the result of the @testmode_cmd operation.
7063  *
7064  * Return: An allocated and pre-filled skb. %NULL if any errors happen.
7065  */
7066 static inline struct sk_buff *
7067 cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy, int approxlen)
7068 {
7069 	return __cfg80211_alloc_reply_skb(wiphy, NL80211_CMD_TESTMODE,
7070 					  NL80211_ATTR_TESTDATA, approxlen);
7071 }
7072 
7073 /**
7074  * cfg80211_testmode_reply - send the reply skb
7075  * @skb: The skb, must have been allocated with
7076  *	cfg80211_testmode_alloc_reply_skb()
7077  *
7078  * Since calling this function will usually be the last thing
7079  * before returning from the @testmode_cmd you should return
7080  * the error code.  Note that this function consumes the skb
7081  * regardless of the return value.
7082  *
7083  * Return: An error code or 0 on success.
7084  */
7085 static inline int cfg80211_testmode_reply(struct sk_buff *skb)
7086 {
7087 	return cfg80211_vendor_cmd_reply(skb);
7088 }
7089 
7090 /**
7091  * cfg80211_testmode_alloc_event_skb - allocate testmode event
7092  * @wiphy: the wiphy
7093  * @approxlen: an upper bound of the length of the data that will
7094  *	be put into the skb
7095  * @gfp: allocation flags
7096  *
7097  * This function allocates and pre-fills an skb for an event on the
7098  * testmode multicast group.
7099  *
7100  * The returned skb is set up in the same way as with
7101  * cfg80211_testmode_alloc_reply_skb() but prepared for an event. As
7102  * there, you should simply add data to it that will then end up in the
7103  * %NL80211_ATTR_TESTDATA attribute. Again, you must not modify the skb
7104  * in any other way.
7105  *
7106  * When done filling the skb, call cfg80211_testmode_event() with the
7107  * skb to send the event.
7108  *
7109  * Return: An allocated and pre-filled skb. %NULL if any errors happen.
7110  */
7111 static inline struct sk_buff *
7112 cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy, int approxlen, gfp_t gfp)
7113 {
7114 	return __cfg80211_alloc_event_skb(wiphy, NULL, NL80211_CMD_TESTMODE,
7115 					  NL80211_ATTR_TESTDATA, 0, -1,
7116 					  approxlen, gfp);
7117 }
7118 
7119 /**
7120  * cfg80211_testmode_event - send the event
7121  * @skb: The skb, must have been allocated with
7122  *	cfg80211_testmode_alloc_event_skb()
7123  * @gfp: allocation flags
7124  *
7125  * This function sends the given @skb, which must have been allocated
7126  * by cfg80211_testmode_alloc_event_skb(), as an event. It always
7127  * consumes it.
7128  */
7129 static inline void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
7130 {
7131 	__cfg80211_send_event_skb(skb, gfp);
7132 }
7133 
7134 #define CFG80211_TESTMODE_CMD(cmd)	.testmode_cmd = (cmd),
7135 #define CFG80211_TESTMODE_DUMP(cmd)	.testmode_dump = (cmd),
7136 #else
7137 #define CFG80211_TESTMODE_CMD(cmd)
7138 #define CFG80211_TESTMODE_DUMP(cmd)
7139 #endif
7140 
7141 /**
7142  * struct cfg80211_fils_resp_params - FILS connection response params
7143  * @kek: KEK derived from a successful FILS connection (may be %NULL)
7144  * @kek_len: Length of @fils_kek in octets
7145  * @update_erp_next_seq_num: Boolean value to specify whether the value in
7146  *	@erp_next_seq_num is valid.
7147  * @erp_next_seq_num: The next sequence number to use in ERP message in
7148  *	FILS Authentication. This value should be specified irrespective of the
7149  *	status for a FILS connection.
7150  * @pmk: A new PMK if derived from a successful FILS connection (may be %NULL).
7151  * @pmk_len: Length of @pmk in octets
7152  * @pmkid: A new PMKID if derived from a successful FILS connection or the PMKID
7153  *	used for this FILS connection (may be %NULL).
7154  */
7155 struct cfg80211_fils_resp_params {
7156 	const u8 *kek;
7157 	size_t kek_len;
7158 	bool update_erp_next_seq_num;
7159 	u16 erp_next_seq_num;
7160 	const u8 *pmk;
7161 	size_t pmk_len;
7162 	const u8 *pmkid;
7163 };
7164 
7165 /**
7166  * struct cfg80211_connect_resp_params - Connection response params
7167  * @status: Status code, %WLAN_STATUS_SUCCESS for successful connection, use
7168  *	%WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
7169  *	the real status code for failures. If this call is used to report a
7170  *	failure due to a timeout (e.g., not receiving an Authentication frame
7171  *	from the AP) instead of an explicit rejection by the AP, -1 is used to
7172  *	indicate that this is a failure, but without a status code.
7173  *	@timeout_reason is used to report the reason for the timeout in that
7174  *	case.
7175  * @bssid: The BSSID of the AP (may be %NULL)
7176  * @bss: Entry of bss to which STA got connected to, can be obtained through
7177  *	cfg80211_get_bss() (may be %NULL). But it is recommended to store the
7178  *	bss from the connect_request and hold a reference to it and return
7179  *	through this param to avoid a warning if the bss is expired during the
7180  *	connection, esp. for those drivers implementing connect op.
7181  *	Only one parameter among @bssid and @bss needs to be specified.
7182  * @req_ie: Association request IEs (may be %NULL)
7183  * @req_ie_len: Association request IEs length
7184  * @resp_ie: Association response IEs (may be %NULL)
7185  * @resp_ie_len: Association response IEs length
7186  * @fils: FILS connection response parameters.
7187  * @timeout_reason: Reason for connection timeout. This is used when the
7188  *	connection fails due to a timeout instead of an explicit rejection from
7189  *	the AP. %NL80211_TIMEOUT_UNSPECIFIED is used when the timeout reason is
7190  *	not known. This value is used only if @status < 0 to indicate that the
7191  *	failure is due to a timeout and not due to explicit rejection by the AP.
7192  *	This value is ignored in other cases (@status >= 0).
7193  */
7194 struct cfg80211_connect_resp_params {
7195 	int status;
7196 	const u8 *bssid;
7197 	struct cfg80211_bss *bss;
7198 	const u8 *req_ie;
7199 	size_t req_ie_len;
7200 	const u8 *resp_ie;
7201 	size_t resp_ie_len;
7202 	struct cfg80211_fils_resp_params fils;
7203 	enum nl80211_timeout_reason timeout_reason;
7204 };
7205 
7206 /**
7207  * cfg80211_connect_done - notify cfg80211 of connection result
7208  *
7209  * @dev: network device
7210  * @params: connection response parameters
7211  * @gfp: allocation flags
7212  *
7213  * It should be called by the underlying driver once execution of the connection
7214  * request from connect() has been completed. This is similar to
7215  * cfg80211_connect_bss(), but takes a structure pointer for connection response
7216  * parameters. Only one of the functions among cfg80211_connect_bss(),
7217  * cfg80211_connect_result(), cfg80211_connect_timeout(),
7218  * and cfg80211_connect_done() should be called.
7219  */
7220 void cfg80211_connect_done(struct net_device *dev,
7221 			   struct cfg80211_connect_resp_params *params,
7222 			   gfp_t gfp);
7223 
7224 /**
7225  * cfg80211_connect_bss - notify cfg80211 of connection result
7226  *
7227  * @dev: network device
7228  * @bssid: the BSSID of the AP
7229  * @bss: Entry of bss to which STA got connected to, can be obtained through
7230  *	cfg80211_get_bss() (may be %NULL). But it is recommended to store the
7231  *	bss from the connect_request and hold a reference to it and return
7232  *	through this param to avoid a warning if the bss is expired during the
7233  *	connection, esp. for those drivers implementing connect op.
7234  *	Only one parameter among @bssid and @bss needs to be specified.
7235  * @req_ie: association request IEs (maybe be %NULL)
7236  * @req_ie_len: association request IEs length
7237  * @resp_ie: association response IEs (may be %NULL)
7238  * @resp_ie_len: assoc response IEs length
7239  * @status: status code, %WLAN_STATUS_SUCCESS for successful connection, use
7240  *	%WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
7241  *	the real status code for failures. If this call is used to report a
7242  *	failure due to a timeout (e.g., not receiving an Authentication frame
7243  *	from the AP) instead of an explicit rejection by the AP, -1 is used to
7244  *	indicate that this is a failure, but without a status code.
7245  *	@timeout_reason is used to report the reason for the timeout in that
7246  *	case.
7247  * @gfp: allocation flags
7248  * @timeout_reason: reason for connection timeout. This is used when the
7249  *	connection fails due to a timeout instead of an explicit rejection from
7250  *	the AP. %NL80211_TIMEOUT_UNSPECIFIED is used when the timeout reason is
7251  *	not known. This value is used only if @status < 0 to indicate that the
7252  *	failure is due to a timeout and not due to explicit rejection by the AP.
7253  *	This value is ignored in other cases (@status >= 0).
7254  *
7255  * It should be called by the underlying driver once execution of the connection
7256  * request from connect() has been completed. This is similar to
7257  * cfg80211_connect_result(), but with the option of identifying the exact bss
7258  * entry for the connection. Only one of the functions among
7259  * cfg80211_connect_bss(), cfg80211_connect_result(),
7260  * cfg80211_connect_timeout(), and cfg80211_connect_done() should be called.
7261  */
7262 static inline void
7263 cfg80211_connect_bss(struct net_device *dev, const u8 *bssid,
7264 		     struct cfg80211_bss *bss, const u8 *req_ie,
7265 		     size_t req_ie_len, const u8 *resp_ie,
7266 		     size_t resp_ie_len, int status, gfp_t gfp,
7267 		     enum nl80211_timeout_reason timeout_reason)
7268 {
7269 	struct cfg80211_connect_resp_params params;
7270 
7271 	memset(&params, 0, sizeof(params));
7272 	params.status = status;
7273 	params.bssid = bssid;
7274 	params.bss = bss;
7275 	params.req_ie = req_ie;
7276 	params.req_ie_len = req_ie_len;
7277 	params.resp_ie = resp_ie;
7278 	params.resp_ie_len = resp_ie_len;
7279 	params.timeout_reason = timeout_reason;
7280 
7281 	cfg80211_connect_done(dev, &params, gfp);
7282 }
7283 
7284 /**
7285  * cfg80211_connect_result - notify cfg80211 of connection result
7286  *
7287  * @dev: network device
7288  * @bssid: the BSSID of the AP
7289  * @req_ie: association request IEs (maybe be %NULL)
7290  * @req_ie_len: association request IEs length
7291  * @resp_ie: association response IEs (may be %NULL)
7292  * @resp_ie_len: assoc response IEs length
7293  * @status: status code, %WLAN_STATUS_SUCCESS for successful connection, use
7294  *	%WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
7295  *	the real status code for failures.
7296  * @gfp: allocation flags
7297  *
7298  * It should be called by the underlying driver once execution of the connection
7299  * request from connect() has been completed. This is similar to
7300  * cfg80211_connect_bss() which allows the exact bss entry to be specified. Only
7301  * one of the functions among cfg80211_connect_bss(), cfg80211_connect_result(),
7302  * cfg80211_connect_timeout(), and cfg80211_connect_done() should be called.
7303  */
7304 static inline void
7305 cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
7306 			const u8 *req_ie, size_t req_ie_len,
7307 			const u8 *resp_ie, size_t resp_ie_len,
7308 			u16 status, gfp_t gfp)
7309 {
7310 	cfg80211_connect_bss(dev, bssid, NULL, req_ie, req_ie_len, resp_ie,
7311 			     resp_ie_len, status, gfp,
7312 			     NL80211_TIMEOUT_UNSPECIFIED);
7313 }
7314 
7315 /**
7316  * cfg80211_connect_timeout - notify cfg80211 of connection timeout
7317  *
7318  * @dev: network device
7319  * @bssid: the BSSID of the AP
7320  * @req_ie: association request IEs (maybe be %NULL)
7321  * @req_ie_len: association request IEs length
7322  * @gfp: allocation flags
7323  * @timeout_reason: reason for connection timeout.
7324  *
7325  * It should be called by the underlying driver whenever connect() has failed
7326  * in a sequence where no explicit authentication/association rejection was
7327  * received from the AP. This could happen, e.g., due to not being able to send
7328  * out the Authentication or Association Request frame or timing out while
7329  * waiting for the response. Only one of the functions among
7330  * cfg80211_connect_bss(), cfg80211_connect_result(),
7331  * cfg80211_connect_timeout(), and cfg80211_connect_done() should be called.
7332  */
7333 static inline void
7334 cfg80211_connect_timeout(struct net_device *dev, const u8 *bssid,
7335 			 const u8 *req_ie, size_t req_ie_len, gfp_t gfp,
7336 			 enum nl80211_timeout_reason timeout_reason)
7337 {
7338 	cfg80211_connect_bss(dev, bssid, NULL, req_ie, req_ie_len, NULL, 0, -1,
7339 			     gfp, timeout_reason);
7340 }
7341 
7342 /**
7343  * struct cfg80211_roam_info - driver initiated roaming information
7344  *
7345  * @channel: the channel of the new AP
7346  * @bss: entry of bss to which STA got roamed (may be %NULL if %bssid is set)
7347  * @bssid: the BSSID of the new AP (may be %NULL if %bss is set)
7348  * @req_ie: association request IEs (maybe be %NULL)
7349  * @req_ie_len: association request IEs length
7350  * @resp_ie: association response IEs (may be %NULL)
7351  * @resp_ie_len: assoc response IEs length
7352  * @fils: FILS related roaming information.
7353  */
7354 struct cfg80211_roam_info {
7355 	struct ieee80211_channel *channel;
7356 	struct cfg80211_bss *bss;
7357 	const u8 *bssid;
7358 	const u8 *req_ie;
7359 	size_t req_ie_len;
7360 	const u8 *resp_ie;
7361 	size_t resp_ie_len;
7362 	struct cfg80211_fils_resp_params fils;
7363 };
7364 
7365 /**
7366  * cfg80211_roamed - notify cfg80211 of roaming
7367  *
7368  * @dev: network device
7369  * @info: information about the new BSS. struct &cfg80211_roam_info.
7370  * @gfp: allocation flags
7371  *
7372  * This function may be called with the driver passing either the BSSID of the
7373  * new AP or passing the bss entry to avoid a race in timeout of the bss entry.
7374  * It should be called by the underlying driver whenever it roamed from one AP
7375  * to another while connected. Drivers which have roaming implemented in
7376  * firmware should pass the bss entry to avoid a race in bss entry timeout where
7377  * the bss entry of the new AP is seen in the driver, but gets timed out by the
7378  * time it is accessed in __cfg80211_roamed() due to delay in scheduling
7379  * rdev->event_work. In case of any failures, the reference is released
7380  * either in cfg80211_roamed() or in __cfg80211_romed(), Otherwise, it will be
7381  * released while disconnecting from the current bss.
7382  */
7383 void cfg80211_roamed(struct net_device *dev, struct cfg80211_roam_info *info,
7384 		     gfp_t gfp);
7385 
7386 /**
7387  * cfg80211_port_authorized - notify cfg80211 of successful security association
7388  *
7389  * @dev: network device
7390  * @bssid: the BSSID of the AP
7391  * @gfp: allocation flags
7392  *
7393  * This function should be called by a driver that supports 4 way handshake
7394  * offload after a security association was successfully established (i.e.,
7395  * the 4 way handshake was completed successfully). The call to this function
7396  * should be preceded with a call to cfg80211_connect_result(),
7397  * cfg80211_connect_done(), cfg80211_connect_bss() or cfg80211_roamed() to
7398  * indicate the 802.11 association.
7399  */
7400 void cfg80211_port_authorized(struct net_device *dev, const u8 *bssid,
7401 			      gfp_t gfp);
7402 
7403 /**
7404  * cfg80211_disconnected - notify cfg80211 that connection was dropped
7405  *
7406  * @dev: network device
7407  * @ie: information elements of the deauth/disassoc frame (may be %NULL)
7408  * @ie_len: length of IEs
7409  * @reason: reason code for the disconnection, set it to 0 if unknown
7410  * @locally_generated: disconnection was requested locally
7411  * @gfp: allocation flags
7412  *
7413  * After it calls this function, the driver should enter an idle state
7414  * and not try to connect to any AP any more.
7415  */
7416 void cfg80211_disconnected(struct net_device *dev, u16 reason,
7417 			   const u8 *ie, size_t ie_len,
7418 			   bool locally_generated, gfp_t gfp);
7419 
7420 /**
7421  * cfg80211_ready_on_channel - notification of remain_on_channel start
7422  * @wdev: wireless device
7423  * @cookie: the request cookie
7424  * @chan: The current channel (from remain_on_channel request)
7425  * @duration: Duration in milliseconds that the driver intents to remain on the
7426  *	channel
7427  * @gfp: allocation flags
7428  */
7429 void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
7430 			       struct ieee80211_channel *chan,
7431 			       unsigned int duration, gfp_t gfp);
7432 
7433 /**
7434  * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
7435  * @wdev: wireless device
7436  * @cookie: the request cookie
7437  * @chan: The current channel (from remain_on_channel request)
7438  * @gfp: allocation flags
7439  */
7440 void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
7441 					struct ieee80211_channel *chan,
7442 					gfp_t gfp);
7443 
7444 /**
7445  * cfg80211_tx_mgmt_expired - tx_mgmt duration expired
7446  * @wdev: wireless device
7447  * @cookie: the requested cookie
7448  * @chan: The current channel (from tx_mgmt request)
7449  * @gfp: allocation flags
7450  */
7451 void cfg80211_tx_mgmt_expired(struct wireless_dev *wdev, u64 cookie,
7452 			      struct ieee80211_channel *chan, gfp_t gfp);
7453 
7454 /**
7455  * cfg80211_sinfo_alloc_tid_stats - allocate per-tid statistics.
7456  *
7457  * @sinfo: the station information
7458  * @gfp: allocation flags
7459  */
7460 int cfg80211_sinfo_alloc_tid_stats(struct station_info *sinfo, gfp_t gfp);
7461 
7462 /**
7463  * cfg80211_sinfo_release_content - release contents of station info
7464  * @sinfo: the station information
7465  *
7466  * Releases any potentially allocated sub-information of the station
7467  * information, but not the struct itself (since it's typically on
7468  * the stack.)
7469  */
7470 static inline void cfg80211_sinfo_release_content(struct station_info *sinfo)
7471 {
7472 	kfree(sinfo->pertid);
7473 }
7474 
7475 /**
7476  * cfg80211_new_sta - notify userspace about station
7477  *
7478  * @dev: the netdev
7479  * @mac_addr: the station's address
7480  * @sinfo: the station information
7481  * @gfp: allocation flags
7482  */
7483 void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
7484 		      struct station_info *sinfo, gfp_t gfp);
7485 
7486 /**
7487  * cfg80211_del_sta_sinfo - notify userspace about deletion of a station
7488  * @dev: the netdev
7489  * @mac_addr: the station's address
7490  * @sinfo: the station information/statistics
7491  * @gfp: allocation flags
7492  */
7493 void cfg80211_del_sta_sinfo(struct net_device *dev, const u8 *mac_addr,
7494 			    struct station_info *sinfo, gfp_t gfp);
7495 
7496 /**
7497  * cfg80211_del_sta - notify userspace about deletion of a station
7498  *
7499  * @dev: the netdev
7500  * @mac_addr: the station's address
7501  * @gfp: allocation flags
7502  */
7503 static inline void cfg80211_del_sta(struct net_device *dev,
7504 				    const u8 *mac_addr, gfp_t gfp)
7505 {
7506 	cfg80211_del_sta_sinfo(dev, mac_addr, NULL, gfp);
7507 }
7508 
7509 /**
7510  * cfg80211_conn_failed - connection request failed notification
7511  *
7512  * @dev: the netdev
7513  * @mac_addr: the station's address
7514  * @reason: the reason for connection failure
7515  * @gfp: allocation flags
7516  *
7517  * Whenever a station tries to connect to an AP and if the station
7518  * could not connect to the AP as the AP has rejected the connection
7519  * for some reasons, this function is called.
7520  *
7521  * The reason for connection failure can be any of the value from
7522  * nl80211_connect_failed_reason enum
7523  */
7524 void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
7525 			  enum nl80211_connect_failed_reason reason,
7526 			  gfp_t gfp);
7527 
7528 /**
7529  * cfg80211_rx_mgmt_khz - notification of received, unprocessed management frame
7530  * @wdev: wireless device receiving the frame
7531  * @freq: Frequency on which the frame was received in KHz
7532  * @sig_dbm: signal strength in dBm, or 0 if unknown
7533  * @buf: Management frame (header + body)
7534  * @len: length of the frame data
7535  * @flags: flags, as defined in enum nl80211_rxmgmt_flags
7536  *
7537  * This function is called whenever an Action frame is received for a station
7538  * mode interface, but is not processed in kernel.
7539  *
7540  * Return: %true if a user space application has registered for this frame.
7541  * For action frames, that makes it responsible for rejecting unrecognized
7542  * action frames; %false otherwise, in which case for action frames the
7543  * driver is responsible for rejecting the frame.
7544  */
7545 bool cfg80211_rx_mgmt_khz(struct wireless_dev *wdev, int freq, int sig_dbm,
7546 			  const u8 *buf, size_t len, u32 flags);
7547 
7548 /**
7549  * cfg80211_rx_mgmt - notification of received, unprocessed management frame
7550  * @wdev: wireless device receiving the frame
7551  * @freq: Frequency on which the frame was received in MHz
7552  * @sig_dbm: signal strength in dBm, or 0 if unknown
7553  * @buf: Management frame (header + body)
7554  * @len: length of the frame data
7555  * @flags: flags, as defined in enum nl80211_rxmgmt_flags
7556  *
7557  * This function is called whenever an Action frame is received for a station
7558  * mode interface, but is not processed in kernel.
7559  *
7560  * Return: %true if a user space application has registered for this frame.
7561  * For action frames, that makes it responsible for rejecting unrecognized
7562  * action frames; %false otherwise, in which case for action frames the
7563  * driver is responsible for rejecting the frame.
7564  */
7565 static inline bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq,
7566 				    int sig_dbm, const u8 *buf, size_t len,
7567 				    u32 flags)
7568 {
7569 	return cfg80211_rx_mgmt_khz(wdev, MHZ_TO_KHZ(freq), sig_dbm, buf, len,
7570 				    flags);
7571 }
7572 
7573 /**
7574  * cfg80211_mgmt_tx_status - notification of TX status for management frame
7575  * @wdev: wireless device receiving the frame
7576  * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
7577  * @buf: Management frame (header + body)
7578  * @len: length of the frame data
7579  * @ack: Whether frame was acknowledged
7580  * @gfp: context flags
7581  *
7582  * This function is called whenever a management frame was requested to be
7583  * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
7584  * transmission attempt.
7585  */
7586 void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
7587 			     const u8 *buf, size_t len, bool ack, gfp_t gfp);
7588 
7589 /**
7590  * cfg80211_control_port_tx_status - notification of TX status for control
7591  *                                   port frames
7592  * @wdev: wireless device receiving the frame
7593  * @cookie: Cookie returned by cfg80211_ops::tx_control_port()
7594  * @buf: Data frame (header + body)
7595  * @len: length of the frame data
7596  * @ack: Whether frame was acknowledged
7597  * @gfp: context flags
7598  *
7599  * This function is called whenever a control port frame was requested to be
7600  * transmitted with cfg80211_ops::tx_control_port() to report the TX status of
7601  * the transmission attempt.
7602  */
7603 void cfg80211_control_port_tx_status(struct wireless_dev *wdev, u64 cookie,
7604 				     const u8 *buf, size_t len, bool ack,
7605 				     gfp_t gfp);
7606 
7607 /**
7608  * cfg80211_rx_control_port - notification about a received control port frame
7609  * @dev: The device the frame matched to
7610  * @skb: The skbuf with the control port frame.  It is assumed that the skbuf
7611  *	is 802.3 formatted (with 802.3 header).  The skb can be non-linear.
7612  *	This function does not take ownership of the skb, so the caller is
7613  *	responsible for any cleanup.  The caller must also ensure that
7614  *	skb->protocol is set appropriately.
7615  * @unencrypted: Whether the frame was received unencrypted
7616  *
7617  * This function is used to inform userspace about a received control port
7618  * frame.  It should only be used if userspace indicated it wants to receive
7619  * control port frames over nl80211.
7620  *
7621  * The frame is the data portion of the 802.3 or 802.11 data frame with all
7622  * network layer headers removed (e.g. the raw EAPoL frame).
7623  *
7624  * Return: %true if the frame was passed to userspace
7625  */
7626 bool cfg80211_rx_control_port(struct net_device *dev,
7627 			      struct sk_buff *skb, bool unencrypted);
7628 
7629 /**
7630  * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
7631  * @dev: network device
7632  * @rssi_event: the triggered RSSI event
7633  * @rssi_level: new RSSI level value or 0 if not available
7634  * @gfp: context flags
7635  *
7636  * This function is called when a configured connection quality monitoring
7637  * rssi threshold reached event occurs.
7638  */
7639 void cfg80211_cqm_rssi_notify(struct net_device *dev,
7640 			      enum nl80211_cqm_rssi_threshold_event rssi_event,
7641 			      s32 rssi_level, gfp_t gfp);
7642 
7643 /**
7644  * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
7645  * @dev: network device
7646  * @peer: peer's MAC address
7647  * @num_packets: how many packets were lost -- should be a fixed threshold
7648  *	but probably no less than maybe 50, or maybe a throughput dependent
7649  *	threshold (to account for temporary interference)
7650  * @gfp: context flags
7651  */
7652 void cfg80211_cqm_pktloss_notify(struct net_device *dev,
7653 				 const u8 *peer, u32 num_packets, gfp_t gfp);
7654 
7655 /**
7656  * cfg80211_cqm_txe_notify - TX error rate event
7657  * @dev: network device
7658  * @peer: peer's MAC address
7659  * @num_packets: how many packets were lost
7660  * @rate: % of packets which failed transmission
7661  * @intvl: interval (in s) over which the TX failure threshold was breached.
7662  * @gfp: context flags
7663  *
7664  * Notify userspace when configured % TX failures over number of packets in a
7665  * given interval is exceeded.
7666  */
7667 void cfg80211_cqm_txe_notify(struct net_device *dev, const u8 *peer,
7668 			     u32 num_packets, u32 rate, u32 intvl, gfp_t gfp);
7669 
7670 /**
7671  * cfg80211_cqm_beacon_loss_notify - beacon loss event
7672  * @dev: network device
7673  * @gfp: context flags
7674  *
7675  * Notify userspace about beacon loss from the connected AP.
7676  */
7677 void cfg80211_cqm_beacon_loss_notify(struct net_device *dev, gfp_t gfp);
7678 
7679 /**
7680  * __cfg80211_radar_event - radar detection event
7681  * @wiphy: the wiphy
7682  * @chandef: chandef for the current channel
7683  * @offchan: the radar has been detected on the offchannel chain
7684  * @gfp: context flags
7685  *
7686  * This function is called when a radar is detected on the current chanenl.
7687  */
7688 void __cfg80211_radar_event(struct wiphy *wiphy,
7689 			    struct cfg80211_chan_def *chandef,
7690 			    bool offchan, gfp_t gfp);
7691 
7692 static inline void
7693 cfg80211_radar_event(struct wiphy *wiphy,
7694 		     struct cfg80211_chan_def *chandef,
7695 		     gfp_t gfp)
7696 {
7697 	__cfg80211_radar_event(wiphy, chandef, false, gfp);
7698 }
7699 
7700 static inline void
7701 cfg80211_background_radar_event(struct wiphy *wiphy,
7702 				struct cfg80211_chan_def *chandef,
7703 				gfp_t gfp)
7704 {
7705 	__cfg80211_radar_event(wiphy, chandef, true, gfp);
7706 }
7707 
7708 /**
7709  * cfg80211_sta_opmode_change_notify - STA's ht/vht operation mode change event
7710  * @dev: network device
7711  * @mac: MAC address of a station which opmode got modified
7712  * @sta_opmode: station's current opmode value
7713  * @gfp: context flags
7714  *
7715  * Driver should call this function when station's opmode modified via action
7716  * frame.
7717  */
7718 void cfg80211_sta_opmode_change_notify(struct net_device *dev, const u8 *mac,
7719 				       struct sta_opmode_info *sta_opmode,
7720 				       gfp_t gfp);
7721 
7722 /**
7723  * cfg80211_cac_event - Channel availability check (CAC) event
7724  * @netdev: network device
7725  * @chandef: chandef for the current channel
7726  * @event: type of event
7727  * @gfp: context flags
7728  *
7729  * This function is called when a Channel availability check (CAC) is finished
7730  * or aborted. This must be called to notify the completion of a CAC process,
7731  * also by full-MAC drivers.
7732  */
7733 void cfg80211_cac_event(struct net_device *netdev,
7734 			const struct cfg80211_chan_def *chandef,
7735 			enum nl80211_radar_event event, gfp_t gfp);
7736 
7737 /**
7738  * cfg80211_background_cac_abort - Channel Availability Check offchan abort event
7739  * @wiphy: the wiphy
7740  *
7741  * This function is called by the driver when a Channel Availability Check
7742  * (CAC) is aborted by a offchannel dedicated chain.
7743  */
7744 void cfg80211_background_cac_abort(struct wiphy *wiphy);
7745 
7746 /**
7747  * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying
7748  * @dev: network device
7749  * @bssid: BSSID of AP (to avoid races)
7750  * @replay_ctr: new replay counter
7751  * @gfp: allocation flags
7752  */
7753 void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
7754 			       const u8 *replay_ctr, gfp_t gfp);
7755 
7756 /**
7757  * cfg80211_pmksa_candidate_notify - notify about PMKSA caching candidate
7758  * @dev: network device
7759  * @index: candidate index (the smaller the index, the higher the priority)
7760  * @bssid: BSSID of AP
7761  * @preauth: Whether AP advertises support for RSN pre-authentication
7762  * @gfp: allocation flags
7763  */
7764 void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
7765 				     const u8 *bssid, bool preauth, gfp_t gfp);
7766 
7767 /**
7768  * cfg80211_rx_spurious_frame - inform userspace about a spurious frame
7769  * @dev: The device the frame matched to
7770  * @addr: the transmitter address
7771  * @gfp: context flags
7772  *
7773  * This function is used in AP mode (only!) to inform userspace that
7774  * a spurious class 3 frame was received, to be able to deauth the
7775  * sender.
7776  * Return: %true if the frame was passed to userspace (or this failed
7777  * for a reason other than not having a subscription.)
7778  */
7779 bool cfg80211_rx_spurious_frame(struct net_device *dev,
7780 				const u8 *addr, gfp_t gfp);
7781 
7782 /**
7783  * cfg80211_rx_unexpected_4addr_frame - inform about unexpected WDS frame
7784  * @dev: The device the frame matched to
7785  * @addr: the transmitter address
7786  * @gfp: context flags
7787  *
7788  * This function is used in AP mode (only!) to inform userspace that
7789  * an associated station sent a 4addr frame but that wasn't expected.
7790  * It is allowed and desirable to send this event only once for each
7791  * station to avoid event flooding.
7792  * Return: %true if the frame was passed to userspace (or this failed
7793  * for a reason other than not having a subscription.)
7794  */
7795 bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
7796 					const u8 *addr, gfp_t gfp);
7797 
7798 /**
7799  * cfg80211_probe_status - notify userspace about probe status
7800  * @dev: the device the probe was sent on
7801  * @addr: the address of the peer
7802  * @cookie: the cookie filled in @probe_client previously
7803  * @acked: indicates whether probe was acked or not
7804  * @ack_signal: signal strength (in dBm) of the ACK frame.
7805  * @is_valid_ack_signal: indicates the ack_signal is valid or not.
7806  * @gfp: allocation flags
7807  */
7808 void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
7809 			   u64 cookie, bool acked, s32 ack_signal,
7810 			   bool is_valid_ack_signal, gfp_t gfp);
7811 
7812 /**
7813  * cfg80211_report_obss_beacon_khz - report beacon from other APs
7814  * @wiphy: The wiphy that received the beacon
7815  * @frame: the frame
7816  * @len: length of the frame
7817  * @freq: frequency the frame was received on in KHz
7818  * @sig_dbm: signal strength in dBm, or 0 if unknown
7819  *
7820  * Use this function to report to userspace when a beacon was
7821  * received. It is not useful to call this when there is no
7822  * netdev that is in AP/GO mode.
7823  */
7824 void cfg80211_report_obss_beacon_khz(struct wiphy *wiphy, const u8 *frame,
7825 				     size_t len, int freq, int sig_dbm);
7826 
7827 /**
7828  * cfg80211_report_obss_beacon - report beacon from other APs
7829  * @wiphy: The wiphy that received the beacon
7830  * @frame: the frame
7831  * @len: length of the frame
7832  * @freq: frequency the frame was received on
7833  * @sig_dbm: signal strength in dBm, or 0 if unknown
7834  *
7835  * Use this function to report to userspace when a beacon was
7836  * received. It is not useful to call this when there is no
7837  * netdev that is in AP/GO mode.
7838  */
7839 static inline void cfg80211_report_obss_beacon(struct wiphy *wiphy,
7840 					       const u8 *frame, size_t len,
7841 					       int freq, int sig_dbm)
7842 {
7843 	cfg80211_report_obss_beacon_khz(wiphy, frame, len, MHZ_TO_KHZ(freq),
7844 					sig_dbm);
7845 }
7846 
7847 /**
7848  * cfg80211_reg_can_beacon - check if beaconing is allowed
7849  * @wiphy: the wiphy
7850  * @chandef: the channel definition
7851  * @iftype: interface type
7852  *
7853  * Return: %true if there is no secondary channel or the secondary channel(s)
7854  * can be used for beaconing (i.e. is not a radar channel etc.)
7855  */
7856 bool cfg80211_reg_can_beacon(struct wiphy *wiphy,
7857 			     struct cfg80211_chan_def *chandef,
7858 			     enum nl80211_iftype iftype);
7859 
7860 /**
7861  * cfg80211_reg_can_beacon_relax - check if beaconing is allowed with relaxation
7862  * @wiphy: the wiphy
7863  * @chandef: the channel definition
7864  * @iftype: interface type
7865  *
7866  * Return: %true if there is no secondary channel or the secondary channel(s)
7867  * can be used for beaconing (i.e. is not a radar channel etc.). This version
7868  * also checks if IR-relaxation conditions apply, to allow beaconing under
7869  * more permissive conditions.
7870  *
7871  * Requires the wiphy mutex to be held.
7872  */
7873 bool cfg80211_reg_can_beacon_relax(struct wiphy *wiphy,
7874 				   struct cfg80211_chan_def *chandef,
7875 				   enum nl80211_iftype iftype);
7876 
7877 /*
7878  * cfg80211_ch_switch_notify - update wdev channel and notify userspace
7879  * @dev: the device which switched channels
7880  * @chandef: the new channel definition
7881  *
7882  * Caller must acquire wdev_lock, therefore must only be called from sleepable
7883  * driver context!
7884  */
7885 void cfg80211_ch_switch_notify(struct net_device *dev,
7886 			       struct cfg80211_chan_def *chandef);
7887 
7888 /*
7889  * cfg80211_ch_switch_started_notify - notify channel switch start
7890  * @dev: the device on which the channel switch started
7891  * @chandef: the future channel definition
7892  * @count: the number of TBTTs until the channel switch happens
7893  * @quiet: whether or not immediate quiet was requested by the AP
7894  *
7895  * Inform the userspace about the channel switch that has just
7896  * started, so that it can take appropriate actions (eg. starting
7897  * channel switch on other vifs), if necessary.
7898  */
7899 void cfg80211_ch_switch_started_notify(struct net_device *dev,
7900 				       struct cfg80211_chan_def *chandef,
7901 				       u8 count, bool quiet);
7902 
7903 /**
7904  * ieee80211_operating_class_to_band - convert operating class to band
7905  *
7906  * @operating_class: the operating class to convert
7907  * @band: band pointer to fill
7908  *
7909  * Returns %true if the conversion was successful, %false otherwise.
7910  */
7911 bool ieee80211_operating_class_to_band(u8 operating_class,
7912 				       enum nl80211_band *band);
7913 
7914 /**
7915  * ieee80211_chandef_to_operating_class - convert chandef to operation class
7916  *
7917  * @chandef: the chandef to convert
7918  * @op_class: a pointer to the resulting operating class
7919  *
7920  * Returns %true if the conversion was successful, %false otherwise.
7921  */
7922 bool ieee80211_chandef_to_operating_class(struct cfg80211_chan_def *chandef,
7923 					  u8 *op_class);
7924 
7925 /**
7926  * ieee80211_chandef_to_khz - convert chandef to frequency in KHz
7927  *
7928  * @chandef: the chandef to convert
7929  *
7930  * Returns the center frequency of chandef (1st segment) in KHz.
7931  */
7932 static inline u32
7933 ieee80211_chandef_to_khz(const struct cfg80211_chan_def *chandef)
7934 {
7935 	return MHZ_TO_KHZ(chandef->center_freq1) + chandef->freq1_offset;
7936 }
7937 
7938 /*
7939  * cfg80211_tdls_oper_request - request userspace to perform TDLS operation
7940  * @dev: the device on which the operation is requested
7941  * @peer: the MAC address of the peer device
7942  * @oper: the requested TDLS operation (NL80211_TDLS_SETUP or
7943  *	NL80211_TDLS_TEARDOWN)
7944  * @reason_code: the reason code for teardown request
7945  * @gfp: allocation flags
7946  *
7947  * This function is used to request userspace to perform TDLS operation that
7948  * requires knowledge of keys, i.e., link setup or teardown when the AP
7949  * connection uses encryption. This is optional mechanism for the driver to use
7950  * if it can automatically determine when a TDLS link could be useful (e.g.,
7951  * based on traffic and signal strength for a peer).
7952  */
7953 void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
7954 				enum nl80211_tdls_operation oper,
7955 				u16 reason_code, gfp_t gfp);
7956 
7957 /*
7958  * cfg80211_calculate_bitrate - calculate actual bitrate (in 100Kbps units)
7959  * @rate: given rate_info to calculate bitrate from
7960  *
7961  * return 0 if MCS index >= 32
7962  */
7963 u32 cfg80211_calculate_bitrate(struct rate_info *rate);
7964 
7965 /**
7966  * cfg80211_unregister_wdev - remove the given wdev
7967  * @wdev: struct wireless_dev to remove
7968  *
7969  * This function removes the device so it can no longer be used. It is necessary
7970  * to call this function even when cfg80211 requests the removal of the device
7971  * by calling the del_virtual_intf() callback. The function must also be called
7972  * when the driver wishes to unregister the wdev, e.g. when the hardware device
7973  * is unbound from the driver.
7974  *
7975  * Requires the RTNL and wiphy mutex to be held.
7976  */
7977 void cfg80211_unregister_wdev(struct wireless_dev *wdev);
7978 
7979 /**
7980  * cfg80211_register_netdevice - register the given netdev
7981  * @dev: the netdev to register
7982  *
7983  * Note: In contexts coming from cfg80211 callbacks, you must call this rather
7984  * than register_netdevice(), unregister_netdev() is impossible as the RTNL is
7985  * held. Otherwise, both register_netdevice() and register_netdev() are usable
7986  * instead as well.
7987  *
7988  * Requires the RTNL and wiphy mutex to be held.
7989  */
7990 int cfg80211_register_netdevice(struct net_device *dev);
7991 
7992 /**
7993  * cfg80211_unregister_netdevice - unregister the given netdev
7994  * @dev: the netdev to register
7995  *
7996  * Note: In contexts coming from cfg80211 callbacks, you must call this rather
7997  * than unregister_netdevice(), unregister_netdev() is impossible as the RTNL
7998  * is held. Otherwise, both unregister_netdevice() and unregister_netdev() are
7999  * usable instead as well.
8000  *
8001  * Requires the RTNL and wiphy mutex to be held.
8002  */
8003 static inline void cfg80211_unregister_netdevice(struct net_device *dev)
8004 {
8005 	cfg80211_unregister_wdev(dev->ieee80211_ptr);
8006 }
8007 
8008 /**
8009  * struct cfg80211_ft_event_params - FT Information Elements
8010  * @ies: FT IEs
8011  * @ies_len: length of the FT IE in bytes
8012  * @target_ap: target AP's MAC address
8013  * @ric_ies: RIC IE
8014  * @ric_ies_len: length of the RIC IE in bytes
8015  */
8016 struct cfg80211_ft_event_params {
8017 	const u8 *ies;
8018 	size_t ies_len;
8019 	const u8 *target_ap;
8020 	const u8 *ric_ies;
8021 	size_t ric_ies_len;
8022 };
8023 
8024 /**
8025  * cfg80211_ft_event - notify userspace about FT IE and RIC IE
8026  * @netdev: network device
8027  * @ft_event: IE information
8028  */
8029 void cfg80211_ft_event(struct net_device *netdev,
8030 		       struct cfg80211_ft_event_params *ft_event);
8031 
8032 /**
8033  * cfg80211_get_p2p_attr - find and copy a P2P attribute from IE buffer
8034  * @ies: the input IE buffer
8035  * @len: the input length
8036  * @attr: the attribute ID to find
8037  * @buf: output buffer, can be %NULL if the data isn't needed, e.g.
8038  *	if the function is only called to get the needed buffer size
8039  * @bufsize: size of the output buffer
8040  *
8041  * The function finds a given P2P attribute in the (vendor) IEs and
8042  * copies its contents to the given buffer.
8043  *
8044  * Return: A negative error code (-%EILSEQ or -%ENOENT) if the data is
8045  * malformed or the attribute can't be found (respectively), or the
8046  * length of the found attribute (which can be zero).
8047  */
8048 int cfg80211_get_p2p_attr(const u8 *ies, unsigned int len,
8049 			  enum ieee80211_p2p_attr_id attr,
8050 			  u8 *buf, unsigned int bufsize);
8051 
8052 /**
8053  * ieee80211_ie_split_ric - split an IE buffer according to ordering (with RIC)
8054  * @ies: the IE buffer
8055  * @ielen: the length of the IE buffer
8056  * @ids: an array with element IDs that are allowed before
8057  *	the split. A WLAN_EID_EXTENSION value means that the next
8058  *	EID in the list is a sub-element of the EXTENSION IE.
8059  * @n_ids: the size of the element ID array
8060  * @after_ric: array IE types that come after the RIC element
8061  * @n_after_ric: size of the @after_ric array
8062  * @offset: offset where to start splitting in the buffer
8063  *
8064  * This function splits an IE buffer by updating the @offset
8065  * variable to point to the location where the buffer should be
8066  * split.
8067  *
8068  * It assumes that the given IE buffer is well-formed, this
8069  * has to be guaranteed by the caller!
8070  *
8071  * It also assumes that the IEs in the buffer are ordered
8072  * correctly, if not the result of using this function will not
8073  * be ordered correctly either, i.e. it does no reordering.
8074  *
8075  * The function returns the offset where the next part of the
8076  * buffer starts, which may be @ielen if the entire (remainder)
8077  * of the buffer should be used.
8078  */
8079 size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen,
8080 			      const u8 *ids, int n_ids,
8081 			      const u8 *after_ric, int n_after_ric,
8082 			      size_t offset);
8083 
8084 /**
8085  * ieee80211_ie_split - split an IE buffer according to ordering
8086  * @ies: the IE buffer
8087  * @ielen: the length of the IE buffer
8088  * @ids: an array with element IDs that are allowed before
8089  *	the split. A WLAN_EID_EXTENSION value means that the next
8090  *	EID in the list is a sub-element of the EXTENSION IE.
8091  * @n_ids: the size of the element ID array
8092  * @offset: offset where to start splitting in the buffer
8093  *
8094  * This function splits an IE buffer by updating the @offset
8095  * variable to point to the location where the buffer should be
8096  * split.
8097  *
8098  * It assumes that the given IE buffer is well-formed, this
8099  * has to be guaranteed by the caller!
8100  *
8101  * It also assumes that the IEs in the buffer are ordered
8102  * correctly, if not the result of using this function will not
8103  * be ordered correctly either, i.e. it does no reordering.
8104  *
8105  * The function returns the offset where the next part of the
8106  * buffer starts, which may be @ielen if the entire (remainder)
8107  * of the buffer should be used.
8108  */
8109 static inline size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
8110 					const u8 *ids, int n_ids, size_t offset)
8111 {
8112 	return ieee80211_ie_split_ric(ies, ielen, ids, n_ids, NULL, 0, offset);
8113 }
8114 
8115 /**
8116  * cfg80211_report_wowlan_wakeup - report wakeup from WoWLAN
8117  * @wdev: the wireless device reporting the wakeup
8118  * @wakeup: the wakeup report
8119  * @gfp: allocation flags
8120  *
8121  * This function reports that the given device woke up. If it
8122  * caused the wakeup, report the reason(s), otherwise you may
8123  * pass %NULL as the @wakeup parameter to advertise that something
8124  * else caused the wakeup.
8125  */
8126 void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
8127 				   struct cfg80211_wowlan_wakeup *wakeup,
8128 				   gfp_t gfp);
8129 
8130 /**
8131  * cfg80211_crit_proto_stopped() - indicate critical protocol stopped by driver.
8132  *
8133  * @wdev: the wireless device for which critical protocol is stopped.
8134  * @gfp: allocation flags
8135  *
8136  * This function can be called by the driver to indicate it has reverted
8137  * operation back to normal. One reason could be that the duration given
8138  * by .crit_proto_start() has expired.
8139  */
8140 void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp);
8141 
8142 /**
8143  * ieee80211_get_num_supported_channels - get number of channels device has
8144  * @wiphy: the wiphy
8145  *
8146  * Return: the number of channels supported by the device.
8147  */
8148 unsigned int ieee80211_get_num_supported_channels(struct wiphy *wiphy);
8149 
8150 /**
8151  * cfg80211_check_combinations - check interface combinations
8152  *
8153  * @wiphy: the wiphy
8154  * @params: the interface combinations parameter
8155  *
8156  * This function can be called by the driver to check whether a
8157  * combination of interfaces and their types are allowed according to
8158  * the interface combinations.
8159  */
8160 int cfg80211_check_combinations(struct wiphy *wiphy,
8161 				struct iface_combination_params *params);
8162 
8163 /**
8164  * cfg80211_iter_combinations - iterate over matching combinations
8165  *
8166  * @wiphy: the wiphy
8167  * @params: the interface combinations parameter
8168  * @iter: function to call for each matching combination
8169  * @data: pointer to pass to iter function
8170  *
8171  * This function can be called by the driver to check what possible
8172  * combinations it fits in at a given moment, e.g. for channel switching
8173  * purposes.
8174  */
8175 int cfg80211_iter_combinations(struct wiphy *wiphy,
8176 			       struct iface_combination_params *params,
8177 			       void (*iter)(const struct ieee80211_iface_combination *c,
8178 					    void *data),
8179 			       void *data);
8180 
8181 /*
8182  * cfg80211_stop_iface - trigger interface disconnection
8183  *
8184  * @wiphy: the wiphy
8185  * @wdev: wireless device
8186  * @gfp: context flags
8187  *
8188  * Trigger interface to be stopped as if AP was stopped, IBSS/mesh left, STA
8189  * disconnected.
8190  *
8191  * Note: This doesn't need any locks and is asynchronous.
8192  */
8193 void cfg80211_stop_iface(struct wiphy *wiphy, struct wireless_dev *wdev,
8194 			 gfp_t gfp);
8195 
8196 /**
8197  * cfg80211_shutdown_all_interfaces - shut down all interfaces for a wiphy
8198  * @wiphy: the wiphy to shut down
8199  *
8200  * This function shuts down all interfaces belonging to this wiphy by
8201  * calling dev_close() (and treating non-netdev interfaces as needed).
8202  * It shouldn't really be used unless there are some fatal device errors
8203  * that really can't be recovered in any other way.
8204  *
8205  * Callers must hold the RTNL and be able to deal with callbacks into
8206  * the driver while the function is running.
8207  */
8208 void cfg80211_shutdown_all_interfaces(struct wiphy *wiphy);
8209 
8210 /**
8211  * wiphy_ext_feature_set - set the extended feature flag
8212  *
8213  * @wiphy: the wiphy to modify.
8214  * @ftidx: extended feature bit index.
8215  *
8216  * The extended features are flagged in multiple bytes (see
8217  * &struct wiphy.@ext_features)
8218  */
8219 static inline void wiphy_ext_feature_set(struct wiphy *wiphy,
8220 					 enum nl80211_ext_feature_index ftidx)
8221 {
8222 	u8 *ft_byte;
8223 
8224 	ft_byte = &wiphy->ext_features[ftidx / 8];
8225 	*ft_byte |= BIT(ftidx % 8);
8226 }
8227 
8228 /**
8229  * wiphy_ext_feature_isset - check the extended feature flag
8230  *
8231  * @wiphy: the wiphy to modify.
8232  * @ftidx: extended feature bit index.
8233  *
8234  * The extended features are flagged in multiple bytes (see
8235  * &struct wiphy.@ext_features)
8236  */
8237 static inline bool
8238 wiphy_ext_feature_isset(struct wiphy *wiphy,
8239 			enum nl80211_ext_feature_index ftidx)
8240 {
8241 	u8 ft_byte;
8242 
8243 	ft_byte = wiphy->ext_features[ftidx / 8];
8244 	return (ft_byte & BIT(ftidx % 8)) != 0;
8245 }
8246 
8247 /**
8248  * cfg80211_free_nan_func - free NAN function
8249  * @f: NAN function that should be freed
8250  *
8251  * Frees all the NAN function and all it's allocated members.
8252  */
8253 void cfg80211_free_nan_func(struct cfg80211_nan_func *f);
8254 
8255 /**
8256  * struct cfg80211_nan_match_params - NAN match parameters
8257  * @type: the type of the function that triggered a match. If it is
8258  *	 %NL80211_NAN_FUNC_SUBSCRIBE it means that we replied to a subscriber.
8259  *	 If it is %NL80211_NAN_FUNC_PUBLISH, it means that we got a discovery
8260  *	 result.
8261  *	 If it is %NL80211_NAN_FUNC_FOLLOW_UP, we received a follow up.
8262  * @inst_id: the local instance id
8263  * @peer_inst_id: the instance id of the peer's function
8264  * @addr: the MAC address of the peer
8265  * @info_len: the length of the &info
8266  * @info: the Service Specific Info from the peer (if any)
8267  * @cookie: unique identifier of the corresponding function
8268  */
8269 struct cfg80211_nan_match_params {
8270 	enum nl80211_nan_function_type type;
8271 	u8 inst_id;
8272 	u8 peer_inst_id;
8273 	const u8 *addr;
8274 	u8 info_len;
8275 	const u8 *info;
8276 	u64 cookie;
8277 };
8278 
8279 /**
8280  * cfg80211_nan_match - report a match for a NAN function.
8281  * @wdev: the wireless device reporting the match
8282  * @match: match notification parameters
8283  * @gfp: allocation flags
8284  *
8285  * This function reports that the a NAN function had a match. This
8286  * can be a subscribe that had a match or a solicited publish that
8287  * was sent. It can also be a follow up that was received.
8288  */
8289 void cfg80211_nan_match(struct wireless_dev *wdev,
8290 			struct cfg80211_nan_match_params *match, gfp_t gfp);
8291 
8292 /**
8293  * cfg80211_nan_func_terminated - notify about NAN function termination.
8294  *
8295  * @wdev: the wireless device reporting the match
8296  * @inst_id: the local instance id
8297  * @reason: termination reason (one of the NL80211_NAN_FUNC_TERM_REASON_*)
8298  * @cookie: unique NAN function identifier
8299  * @gfp: allocation flags
8300  *
8301  * This function reports that the a NAN function is terminated.
8302  */
8303 void cfg80211_nan_func_terminated(struct wireless_dev *wdev,
8304 				  u8 inst_id,
8305 				  enum nl80211_nan_func_term_reason reason,
8306 				  u64 cookie, gfp_t gfp);
8307 
8308 /* ethtool helper */
8309 void cfg80211_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info);
8310 
8311 /**
8312  * cfg80211_external_auth_request - userspace request for authentication
8313  * @netdev: network device
8314  * @params: External authentication parameters
8315  * @gfp: allocation flags
8316  * Returns: 0 on success, < 0 on error
8317  */
8318 int cfg80211_external_auth_request(struct net_device *netdev,
8319 				   struct cfg80211_external_auth_params *params,
8320 				   gfp_t gfp);
8321 
8322 /**
8323  * cfg80211_pmsr_report - report peer measurement result data
8324  * @wdev: the wireless device reporting the measurement
8325  * @req: the original measurement request
8326  * @result: the result data
8327  * @gfp: allocation flags
8328  */
8329 void cfg80211_pmsr_report(struct wireless_dev *wdev,
8330 			  struct cfg80211_pmsr_request *req,
8331 			  struct cfg80211_pmsr_result *result,
8332 			  gfp_t gfp);
8333 
8334 /**
8335  * cfg80211_pmsr_complete - report peer measurement completed
8336  * @wdev: the wireless device reporting the measurement
8337  * @req: the original measurement request
8338  * @gfp: allocation flags
8339  *
8340  * Report that the entire measurement completed, after this
8341  * the request pointer will no longer be valid.
8342  */
8343 void cfg80211_pmsr_complete(struct wireless_dev *wdev,
8344 			    struct cfg80211_pmsr_request *req,
8345 			    gfp_t gfp);
8346 
8347 /**
8348  * cfg80211_iftype_allowed - check whether the interface can be allowed
8349  * @wiphy: the wiphy
8350  * @iftype: interface type
8351  * @is_4addr: use_4addr flag, must be '0' when check_swif is '1'
8352  * @check_swif: check iftype against software interfaces
8353  *
8354  * Check whether the interface is allowed to operate; additionally, this API
8355  * can be used to check iftype against the software interfaces when
8356  * check_swif is '1'.
8357  */
8358 bool cfg80211_iftype_allowed(struct wiphy *wiphy, enum nl80211_iftype iftype,
8359 			     bool is_4addr, u8 check_swif);
8360 
8361 
8362 /**
8363  * cfg80211_assoc_comeback - notification of association that was
8364  * temporarly rejected with a comeback
8365  * @netdev: network device
8366  * @bss: the bss entry with which association is in progress.
8367  * @timeout: timeout interval value TUs.
8368  *
8369  * this function may sleep. the caller must hold the corresponding wdev's mutex.
8370  */
8371 void cfg80211_assoc_comeback(struct net_device *netdev,
8372 			     struct cfg80211_bss *bss, u32 timeout);
8373 
8374 /* Logging, debugging and troubleshooting/diagnostic helpers. */
8375 
8376 /* wiphy_printk helpers, similar to dev_printk */
8377 
8378 #define wiphy_printk(level, wiphy, format, args...)		\
8379 	dev_printk(level, &(wiphy)->dev, format, ##args)
8380 #define wiphy_emerg(wiphy, format, args...)			\
8381 	dev_emerg(&(wiphy)->dev, format, ##args)
8382 #define wiphy_alert(wiphy, format, args...)			\
8383 	dev_alert(&(wiphy)->dev, format, ##args)
8384 #define wiphy_crit(wiphy, format, args...)			\
8385 	dev_crit(&(wiphy)->dev, format, ##args)
8386 #define wiphy_err(wiphy, format, args...)			\
8387 	dev_err(&(wiphy)->dev, format, ##args)
8388 #define wiphy_warn(wiphy, format, args...)			\
8389 	dev_warn(&(wiphy)->dev, format, ##args)
8390 #define wiphy_notice(wiphy, format, args...)			\
8391 	dev_notice(&(wiphy)->dev, format, ##args)
8392 #define wiphy_info(wiphy, format, args...)			\
8393 	dev_info(&(wiphy)->dev, format, ##args)
8394 #define wiphy_info_once(wiphy, format, args...)			\
8395 	dev_info_once(&(wiphy)->dev, format, ##args)
8396 
8397 #define wiphy_err_ratelimited(wiphy, format, args...)		\
8398 	dev_err_ratelimited(&(wiphy)->dev, format, ##args)
8399 #define wiphy_warn_ratelimited(wiphy, format, args...)		\
8400 	dev_warn_ratelimited(&(wiphy)->dev, format, ##args)
8401 
8402 #define wiphy_debug(wiphy, format, args...)			\
8403 	wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
8404 
8405 #define wiphy_dbg(wiphy, format, args...)			\
8406 	dev_dbg(&(wiphy)->dev, format, ##args)
8407 
8408 #if defined(VERBOSE_DEBUG)
8409 #define wiphy_vdbg	wiphy_dbg
8410 #else
8411 #define wiphy_vdbg(wiphy, format, args...)				\
8412 ({									\
8413 	if (0)								\
8414 		wiphy_printk(KERN_DEBUG, wiphy, format, ##args);	\
8415 	0;								\
8416 })
8417 #endif
8418 
8419 /*
8420  * wiphy_WARN() acts like wiphy_printk(), but with the key difference
8421  * of using a WARN/WARN_ON to get the message out, including the
8422  * file/line information and a backtrace.
8423  */
8424 #define wiphy_WARN(wiphy, format, args...)			\
8425 	WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
8426 
8427 /**
8428  * cfg80211_update_owe_info_event - Notify the peer's OWE info to user space
8429  * @netdev: network device
8430  * @owe_info: peer's owe info
8431  * @gfp: allocation flags
8432  */
8433 void cfg80211_update_owe_info_event(struct net_device *netdev,
8434 				    struct cfg80211_update_owe_info *owe_info,
8435 				    gfp_t gfp);
8436 
8437 /**
8438  * cfg80211_bss_flush - resets all the scan entries
8439  * @wiphy: the wiphy
8440  */
8441 void cfg80211_bss_flush(struct wiphy *wiphy);
8442 
8443 /**
8444  * cfg80211_bss_color_notify - notify about bss color event
8445  * @dev: network device
8446  * @gfp: allocation flags
8447  * @cmd: the actual event we want to notify
8448  * @count: the number of TBTTs until the color change happens
8449  * @color_bitmap: representations of the colors that the local BSS is aware of
8450  */
8451 int cfg80211_bss_color_notify(struct net_device *dev, gfp_t gfp,
8452 			      enum nl80211_commands cmd, u8 count,
8453 			      u64 color_bitmap);
8454 
8455 /**
8456  * cfg80211_obss_color_collision_notify - notify about bss color collision
8457  * @dev: network device
8458  * @color_bitmap: representations of the colors that the local BSS is aware of
8459  */
8460 static inline int cfg80211_obss_color_collision_notify(struct net_device *dev,
8461 						       u64 color_bitmap)
8462 {
8463 	return cfg80211_bss_color_notify(dev, GFP_KERNEL,
8464 					 NL80211_CMD_OBSS_COLOR_COLLISION,
8465 					 0, color_bitmap);
8466 }
8467 
8468 /**
8469  * cfg80211_color_change_started_notify - notify color change start
8470  * @dev: the device on which the color is switched
8471  * @count: the number of TBTTs until the color change happens
8472  *
8473  * Inform the userspace about the color change that has started.
8474  */
8475 static inline int cfg80211_color_change_started_notify(struct net_device *dev,
8476 						       u8 count)
8477 {
8478 	return cfg80211_bss_color_notify(dev, GFP_KERNEL,
8479 					 NL80211_CMD_COLOR_CHANGE_STARTED,
8480 					 count, 0);
8481 }
8482 
8483 /**
8484  * cfg80211_color_change_aborted_notify - notify color change abort
8485  * @dev: the device on which the color is switched
8486  *
8487  * Inform the userspace about the color change that has aborted.
8488  */
8489 static inline int cfg80211_color_change_aborted_notify(struct net_device *dev)
8490 {
8491 	return cfg80211_bss_color_notify(dev, GFP_KERNEL,
8492 					 NL80211_CMD_COLOR_CHANGE_ABORTED,
8493 					 0, 0);
8494 }
8495 
8496 /**
8497  * cfg80211_color_change_notify - notify color change completion
8498  * @dev: the device on which the color was switched
8499  *
8500  * Inform the userspace about the color change that has completed.
8501  */
8502 static inline int cfg80211_color_change_notify(struct net_device *dev)
8503 {
8504 	return cfg80211_bss_color_notify(dev, GFP_KERNEL,
8505 					 NL80211_CMD_COLOR_CHANGE_COMPLETED,
8506 					 0, 0);
8507 }
8508 
8509 #endif /* __NET_CFG80211_H */
8510