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