xref: /linux/include/net/cfg80211.h (revision 910868db3f114df32387a9c51a729b2645febe4d)
1704232c2SJohannes Berg #ifndef __NET_CFG80211_H
2704232c2SJohannes Berg #define __NET_CFG80211_H
3d3236553SJohannes Berg /*
4d3236553SJohannes Berg  * 802.11 device and configuration interface
5d3236553SJohannes Berg  *
6026331c4SJouni Malinen  * Copyright 2006-2010	Johannes Berg <johannes@sipsolutions.net>
7d3236553SJohannes Berg  *
8d3236553SJohannes Berg  * This program is free software; you can redistribute it and/or modify
9d3236553SJohannes Berg  * it under the terms of the GNU General Public License version 2 as
10d3236553SJohannes Berg  * published by the Free Software Foundation.
11d3236553SJohannes Berg  */
12704232c2SJohannes Berg 
13d3236553SJohannes Berg #include <linux/netdevice.h>
14d3236553SJohannes Berg #include <linux/debugfs.h>
15d3236553SJohannes Berg #include <linux/list.h>
16704232c2SJohannes Berg #include <linux/netlink.h>
17704232c2SJohannes Berg #include <linux/skbuff.h>
1855682965SJohannes Berg #include <linux/nl80211.h>
192a519311SJohannes Berg #include <linux/if_ether.h>
202a519311SJohannes Berg #include <linux/ieee80211.h>
21d3236553SJohannes Berg #include <net/regulatory.h>
22d3236553SJohannes Berg 
23d70e9693SJohannes Berg /**
24d70e9693SJohannes Berg  * DOC: Introduction
25d70e9693SJohannes Berg  *
26d70e9693SJohannes Berg  * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
27d70e9693SJohannes Berg  * userspace and drivers, and offers some utility functionality associated
28d70e9693SJohannes Berg  * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
29d70e9693SJohannes Berg  * by all modern wireless drivers in Linux, so that they offer a consistent
30d70e9693SJohannes Berg  * API through nl80211. For backward compatibility, cfg80211 also offers
31d70e9693SJohannes Berg  * wireless extensions to userspace, but hides them from drivers completely.
32d70e9693SJohannes Berg  *
33d70e9693SJohannes Berg  * Additionally, cfg80211 contains code to help enforce regulatory spectrum
34d70e9693SJohannes Berg  * use restrictions.
35d70e9693SJohannes Berg  */
36d70e9693SJohannes Berg 
37d70e9693SJohannes Berg 
38d70e9693SJohannes Berg /**
39d70e9693SJohannes Berg  * DOC: Device registration
40d70e9693SJohannes Berg  *
41d70e9693SJohannes Berg  * In order for a driver to use cfg80211, it must register the hardware device
42d70e9693SJohannes Berg  * with cfg80211. This happens through a number of hardware capability structs
43d70e9693SJohannes Berg  * described below.
44d70e9693SJohannes Berg  *
45d70e9693SJohannes Berg  * The fundamental structure for each device is the 'wiphy', of which each
46d70e9693SJohannes Berg  * instance describes a physical wireless device connected to the system. Each
47d70e9693SJohannes Berg  * such wiphy can have zero, one, or many virtual interfaces associated with
48d70e9693SJohannes Berg  * it, which need to be identified as such by pointing the network interface's
49d70e9693SJohannes Berg  * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
50d70e9693SJohannes Berg  * the wireless part of the interface, normally this struct is embedded in the
51d70e9693SJohannes Berg  * network interface's private data area. Drivers can optionally allow creating
52d70e9693SJohannes Berg  * or destroying virtual interfaces on the fly, but without at least one or the
53d70e9693SJohannes Berg  * ability to create some the wireless device isn't useful.
54d70e9693SJohannes Berg  *
55d70e9693SJohannes Berg  * Each wiphy structure contains device capability information, and also has
56d70e9693SJohannes Berg  * a pointer to the various operations the driver offers. The definitions and
57d70e9693SJohannes Berg  * structures here describe these capabilities in detail.
58d70e9693SJohannes Berg  */
59d70e9693SJohannes Berg 
60704232c2SJohannes Berg /*
61d3236553SJohannes Berg  * wireless hardware capability structures
62d3236553SJohannes Berg  */
63d3236553SJohannes Berg 
64d3236553SJohannes Berg /**
65d3236553SJohannes Berg  * enum ieee80211_band - supported frequency bands
66704232c2SJohannes Berg  *
67d3236553SJohannes Berg  * The bands are assigned this way because the supported
68d3236553SJohannes Berg  * bitrates differ in these bands.
69d3236553SJohannes Berg  *
70d3236553SJohannes Berg  * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band
71d3236553SJohannes Berg  * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7)
72abe37c4bSJohannes Berg  * @IEEE80211_NUM_BANDS: number of defined bands
73d3236553SJohannes Berg  */
74d3236553SJohannes Berg enum ieee80211_band {
7513ae75b1SJouni Malinen 	IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ,
7613ae75b1SJouni Malinen 	IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ,
77d3236553SJohannes Berg 
78d3236553SJohannes Berg 	/* keep last */
79d3236553SJohannes Berg 	IEEE80211_NUM_BANDS
80d3236553SJohannes Berg };
81d3236553SJohannes Berg 
82d3236553SJohannes Berg /**
83d3236553SJohannes Berg  * enum ieee80211_channel_flags - channel flags
84d3236553SJohannes Berg  *
85d3236553SJohannes Berg  * Channel flags set by the regulatory control code.
86d3236553SJohannes Berg  *
87d3236553SJohannes Berg  * @IEEE80211_CHAN_DISABLED: This channel is disabled.
88d3236553SJohannes Berg  * @IEEE80211_CHAN_PASSIVE_SCAN: Only passive scanning is permitted
89d3236553SJohannes Berg  *	on this channel.
90d3236553SJohannes Berg  * @IEEE80211_CHAN_NO_IBSS: IBSS is not allowed on this channel.
91d3236553SJohannes Berg  * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel.
92689da1b3SLuis R. Rodriguez  * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel
93d3236553SJohannes Berg  * 	is not permitted.
94689da1b3SLuis R. Rodriguez  * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel
95d3236553SJohannes Berg  * 	is not permitted.
96d3236553SJohannes Berg  */
97d3236553SJohannes Berg enum ieee80211_channel_flags {
98d3236553SJohannes Berg 	IEEE80211_CHAN_DISABLED		= 1<<0,
99d3236553SJohannes Berg 	IEEE80211_CHAN_PASSIVE_SCAN	= 1<<1,
100d3236553SJohannes Berg 	IEEE80211_CHAN_NO_IBSS		= 1<<2,
101d3236553SJohannes Berg 	IEEE80211_CHAN_RADAR		= 1<<3,
102689da1b3SLuis R. Rodriguez 	IEEE80211_CHAN_NO_HT40PLUS	= 1<<4,
103689da1b3SLuis R. Rodriguez 	IEEE80211_CHAN_NO_HT40MINUS	= 1<<5,
104d3236553SJohannes Berg };
105d3236553SJohannes Berg 
106038659e7SLuis R. Rodriguez #define IEEE80211_CHAN_NO_HT40 \
107689da1b3SLuis R. Rodriguez 	(IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
108038659e7SLuis R. Rodriguez 
109d3236553SJohannes Berg /**
110d3236553SJohannes Berg  * struct ieee80211_channel - channel definition
111d3236553SJohannes Berg  *
112d3236553SJohannes Berg  * This structure describes a single channel for use
113d3236553SJohannes Berg  * with cfg80211.
114d3236553SJohannes Berg  *
115d3236553SJohannes Berg  * @center_freq: center frequency in MHz
116d3236553SJohannes Berg  * @hw_value: hardware-specific value for the channel
117d3236553SJohannes Berg  * @flags: channel flags from &enum ieee80211_channel_flags.
118d3236553SJohannes Berg  * @orig_flags: channel flags at registration time, used by regulatory
119d3236553SJohannes Berg  *	code to support devices with additional restrictions
120d3236553SJohannes Berg  * @band: band this channel belongs to.
121d3236553SJohannes Berg  * @max_antenna_gain: maximum antenna gain in dBi
122d3236553SJohannes Berg  * @max_power: maximum transmission power (in dBm)
123d3236553SJohannes Berg  * @beacon_found: helper to regulatory code to indicate when a beacon
124d3236553SJohannes Berg  *	has been found on this channel. Use regulatory_hint_found_beacon()
12577c2061dSWalter Goldens  *	to enable this, this is useful only on 5 GHz band.
126d3236553SJohannes Berg  * @orig_mag: internal use
127d3236553SJohannes Berg  * @orig_mpwr: internal use
128d3236553SJohannes Berg  */
129d3236553SJohannes Berg struct ieee80211_channel {
130d3236553SJohannes Berg 	enum ieee80211_band band;
131d3236553SJohannes Berg 	u16 center_freq;
132d3236553SJohannes Berg 	u16 hw_value;
133d3236553SJohannes Berg 	u32 flags;
134d3236553SJohannes Berg 	int max_antenna_gain;
135d3236553SJohannes Berg 	int max_power;
136d3236553SJohannes Berg 	bool beacon_found;
137d3236553SJohannes Berg 	u32 orig_flags;
138d3236553SJohannes Berg 	int orig_mag, orig_mpwr;
139d3236553SJohannes Berg };
140d3236553SJohannes Berg 
141d3236553SJohannes Berg /**
142d3236553SJohannes Berg  * enum ieee80211_rate_flags - rate flags
143d3236553SJohannes Berg  *
144d3236553SJohannes Berg  * Hardware/specification flags for rates. These are structured
145d3236553SJohannes Berg  * in a way that allows using the same bitrate structure for
146d3236553SJohannes Berg  * different bands/PHY modes.
147d3236553SJohannes Berg  *
148d3236553SJohannes Berg  * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
149d3236553SJohannes Berg  *	preamble on this bitrate; only relevant in 2.4GHz band and
150d3236553SJohannes Berg  *	with CCK rates.
151d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
152d3236553SJohannes Berg  *	when used with 802.11a (on the 5 GHz band); filled by the
153d3236553SJohannes Berg  *	core code when registering the wiphy.
154d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
155d3236553SJohannes Berg  *	when used with 802.11b (on the 2.4 GHz band); filled by the
156d3236553SJohannes Berg  *	core code when registering the wiphy.
157d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
158d3236553SJohannes Berg  *	when used with 802.11g (on the 2.4 GHz band); filled by the
159d3236553SJohannes Berg  *	core code when registering the wiphy.
160d3236553SJohannes Berg  * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
161d3236553SJohannes Berg  */
162d3236553SJohannes Berg enum ieee80211_rate_flags {
163d3236553SJohannes Berg 	IEEE80211_RATE_SHORT_PREAMBLE	= 1<<0,
164d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_A	= 1<<1,
165d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_B	= 1<<2,
166d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_G	= 1<<3,
167d3236553SJohannes Berg 	IEEE80211_RATE_ERP_G		= 1<<4,
168d3236553SJohannes Berg };
169d3236553SJohannes Berg 
170d3236553SJohannes Berg /**
171d3236553SJohannes Berg  * struct ieee80211_rate - bitrate definition
172d3236553SJohannes Berg  *
173d3236553SJohannes Berg  * This structure describes a bitrate that an 802.11 PHY can
174d3236553SJohannes Berg  * operate with. The two values @hw_value and @hw_value_short
175d3236553SJohannes Berg  * are only for driver use when pointers to this structure are
176d3236553SJohannes Berg  * passed around.
177d3236553SJohannes Berg  *
178d3236553SJohannes Berg  * @flags: rate-specific flags
179d3236553SJohannes Berg  * @bitrate: bitrate in units of 100 Kbps
180d3236553SJohannes Berg  * @hw_value: driver/hardware value for this rate
181d3236553SJohannes Berg  * @hw_value_short: driver/hardware value for this rate when
182d3236553SJohannes Berg  *	short preamble is used
183d3236553SJohannes Berg  */
184d3236553SJohannes Berg struct ieee80211_rate {
185d3236553SJohannes Berg 	u32 flags;
186d3236553SJohannes Berg 	u16 bitrate;
187d3236553SJohannes Berg 	u16 hw_value, hw_value_short;
188d3236553SJohannes Berg };
189d3236553SJohannes Berg 
190d3236553SJohannes Berg /**
191d3236553SJohannes Berg  * struct ieee80211_sta_ht_cap - STA's HT capabilities
192d3236553SJohannes Berg  *
193d3236553SJohannes Berg  * This structure describes most essential parameters needed
194d3236553SJohannes Berg  * to describe 802.11n HT capabilities for an STA.
195d3236553SJohannes Berg  *
196d3236553SJohannes Berg  * @ht_supported: is HT supported by the STA
197d3236553SJohannes Berg  * @cap: HT capabilities map as described in 802.11n spec
198d3236553SJohannes Berg  * @ampdu_factor: Maximum A-MPDU length factor
199d3236553SJohannes Berg  * @ampdu_density: Minimum A-MPDU spacing
200d3236553SJohannes Berg  * @mcs: Supported MCS rates
201d3236553SJohannes Berg  */
202d3236553SJohannes Berg struct ieee80211_sta_ht_cap {
203d3236553SJohannes Berg 	u16 cap; /* use IEEE80211_HT_CAP_ */
204d3236553SJohannes Berg 	bool ht_supported;
205d3236553SJohannes Berg 	u8 ampdu_factor;
206d3236553SJohannes Berg 	u8 ampdu_density;
207d3236553SJohannes Berg 	struct ieee80211_mcs_info mcs;
208d3236553SJohannes Berg };
209d3236553SJohannes Berg 
210d3236553SJohannes Berg /**
211d3236553SJohannes Berg  * struct ieee80211_supported_band - frequency band definition
212d3236553SJohannes Berg  *
213d3236553SJohannes Berg  * This structure describes a frequency band a wiphy
214d3236553SJohannes Berg  * is able to operate in.
215d3236553SJohannes Berg  *
216d3236553SJohannes Berg  * @channels: Array of channels the hardware can operate in
217d3236553SJohannes Berg  *	in this band.
218d3236553SJohannes Berg  * @band: the band this structure represents
219d3236553SJohannes Berg  * @n_channels: Number of channels in @channels
220d3236553SJohannes Berg  * @bitrates: Array of bitrates the hardware can operate with
221d3236553SJohannes Berg  *	in this band. Must be sorted to give a valid "supported
222d3236553SJohannes Berg  *	rates" IE, i.e. CCK rates first, then OFDM.
223d3236553SJohannes Berg  * @n_bitrates: Number of bitrates in @bitrates
224abe37c4bSJohannes Berg  * @ht_cap: HT capabilities in this band
225d3236553SJohannes Berg  */
226d3236553SJohannes Berg struct ieee80211_supported_band {
227d3236553SJohannes Berg 	struct ieee80211_channel *channels;
228d3236553SJohannes Berg 	struct ieee80211_rate *bitrates;
229d3236553SJohannes Berg 	enum ieee80211_band band;
230d3236553SJohannes Berg 	int n_channels;
231d3236553SJohannes Berg 	int n_bitrates;
232d3236553SJohannes Berg 	struct ieee80211_sta_ht_cap ht_cap;
233d3236553SJohannes Berg };
234d3236553SJohannes Berg 
235d3236553SJohannes Berg /*
236d3236553SJohannes Berg  * Wireless hardware/device configuration structures and methods
237704232c2SJohannes Berg  */
238704232c2SJohannes Berg 
2392ec600d6SLuis Carlos Cobo /**
240d70e9693SJohannes Berg  * DOC: Actions and configuration
241d70e9693SJohannes Berg  *
242d70e9693SJohannes Berg  * Each wireless device and each virtual interface offer a set of configuration
243d70e9693SJohannes Berg  * operations and other actions that are invoked by userspace. Each of these
244d70e9693SJohannes Berg  * actions is described in the operations structure, and the parameters these
245d70e9693SJohannes Berg  * operations use are described separately.
246d70e9693SJohannes Berg  *
247d70e9693SJohannes Berg  * Additionally, some operations are asynchronous and expect to get status
248d70e9693SJohannes Berg  * information via some functions that drivers need to call.
249d70e9693SJohannes Berg  *
250d70e9693SJohannes Berg  * Scanning and BSS list handling with its associated functionality is described
251d70e9693SJohannes Berg  * in a separate chapter.
252d70e9693SJohannes Berg  */
253d70e9693SJohannes Berg 
254d70e9693SJohannes Berg /**
2552ec600d6SLuis Carlos Cobo  * struct vif_params - describes virtual interface parameters
2568b787643SFelix Fietkau  * @use_4addr: use 4-address frames
2572ec600d6SLuis Carlos Cobo  */
2582ec600d6SLuis Carlos Cobo struct vif_params {
2598b787643SFelix Fietkau        int use_4addr;
2602ec600d6SLuis Carlos Cobo };
2612ec600d6SLuis Carlos Cobo 
26241ade00fSJohannes Berg /**
26341ade00fSJohannes Berg  * struct key_params - key information
26441ade00fSJohannes Berg  *
26541ade00fSJohannes Berg  * Information about a key
26641ade00fSJohannes Berg  *
26741ade00fSJohannes Berg  * @key: key material
26841ade00fSJohannes Berg  * @key_len: length of key material
26941ade00fSJohannes Berg  * @cipher: cipher suite selector
27041ade00fSJohannes Berg  * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
27141ade00fSJohannes Berg  *	with the get_key() callback, must be in little endian,
27241ade00fSJohannes Berg  *	length given by @seq_len.
273abe37c4bSJohannes Berg  * @seq_len: length of @seq.
27441ade00fSJohannes Berg  */
27541ade00fSJohannes Berg struct key_params {
27641ade00fSJohannes Berg 	u8 *key;
27741ade00fSJohannes Berg 	u8 *seq;
27841ade00fSJohannes Berg 	int key_len;
27941ade00fSJohannes Berg 	int seq_len;
28041ade00fSJohannes Berg 	u32 cipher;
28141ade00fSJohannes Berg };
28241ade00fSJohannes Berg 
283ed1b6cc7SJohannes Berg /**
28461fa713cSHolger Schurig  * enum survey_info_flags - survey information flags
28561fa713cSHolger Schurig  *
286abe37c4bSJohannes Berg  * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
28717e5a808SFelix Fietkau  * @SURVEY_INFO_IN_USE: channel is currently being used
2888610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME: channel active time (in ms) was filled in
2898610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_BUSY: channel busy time was filled in
2908610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_EXT_BUSY: extension channel busy time was filled in
2918610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_RX: channel receive time was filled in
2928610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_TX: channel transmit time was filled in
293abe37c4bSJohannes Berg  *
29461fa713cSHolger Schurig  * Used by the driver to indicate which info in &struct survey_info
29561fa713cSHolger Schurig  * it has filled in during the get_survey().
29661fa713cSHolger Schurig  */
29761fa713cSHolger Schurig enum survey_info_flags {
29861fa713cSHolger Schurig 	SURVEY_INFO_NOISE_DBM = 1<<0,
29917e5a808SFelix Fietkau 	SURVEY_INFO_IN_USE = 1<<1,
3008610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME = 1<<2,
3018610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_BUSY = 1<<3,
3028610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_EXT_BUSY = 1<<4,
3038610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_RX = 1<<5,
3048610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_TX = 1<<6,
30561fa713cSHolger Schurig };
30661fa713cSHolger Schurig 
30761fa713cSHolger Schurig /**
30861fa713cSHolger Schurig  * struct survey_info - channel survey response
30961fa713cSHolger Schurig  *
31061fa713cSHolger Schurig  * @channel: the channel this survey record reports, mandatory
31161fa713cSHolger Schurig  * @filled: bitflag of flags from &enum survey_info_flags
31261fa713cSHolger Schurig  * @noise: channel noise in dBm. This and all following fields are
31361fa713cSHolger Schurig  *     optional
3148610c29aSFelix Fietkau  * @channel_time: amount of time in ms the radio spent on the channel
3158610c29aSFelix Fietkau  * @channel_time_busy: amount of time the primary channel was sensed busy
3168610c29aSFelix Fietkau  * @channel_time_ext_busy: amount of time the extension channel was sensed busy
3178610c29aSFelix Fietkau  * @channel_time_rx: amount of time the radio spent receiving data
3188610c29aSFelix Fietkau  * @channel_time_tx: amount of time the radio spent transmitting data
31961fa713cSHolger Schurig  *
320abe37c4bSJohannes Berg  * Used by dump_survey() to report back per-channel survey information.
321abe37c4bSJohannes Berg  *
32261fa713cSHolger Schurig  * This structure can later be expanded with things like
32361fa713cSHolger Schurig  * channel duty cycle etc.
32461fa713cSHolger Schurig  */
32561fa713cSHolger Schurig struct survey_info {
32661fa713cSHolger Schurig 	struct ieee80211_channel *channel;
3278610c29aSFelix Fietkau 	u64 channel_time;
3288610c29aSFelix Fietkau 	u64 channel_time_busy;
3298610c29aSFelix Fietkau 	u64 channel_time_ext_busy;
3308610c29aSFelix Fietkau 	u64 channel_time_rx;
3318610c29aSFelix Fietkau 	u64 channel_time_tx;
33261fa713cSHolger Schurig 	u32 filled;
33361fa713cSHolger Schurig 	s8 noise;
33461fa713cSHolger Schurig };
33561fa713cSHolger Schurig 
33661fa713cSHolger Schurig /**
3375fb628e9SJouni Malinen  * struct cfg80211_crypto_settings - Crypto settings
3385fb628e9SJouni Malinen  * @wpa_versions: indicates which, if any, WPA versions are enabled
3395fb628e9SJouni Malinen  *	(from enum nl80211_wpa_versions)
3405fb628e9SJouni Malinen  * @cipher_group: group key cipher suite (or 0 if unset)
3415fb628e9SJouni Malinen  * @n_ciphers_pairwise: number of AP supported unicast ciphers
3425fb628e9SJouni Malinen  * @ciphers_pairwise: unicast key cipher suites
3435fb628e9SJouni Malinen  * @n_akm_suites: number of AKM suites
3445fb628e9SJouni Malinen  * @akm_suites: AKM suites
3455fb628e9SJouni Malinen  * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
3465fb628e9SJouni Malinen  *	sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
3475fb628e9SJouni Malinen  *	required to assume that the port is unauthorized until authorized by
3485fb628e9SJouni Malinen  *	user space. Otherwise, port is marked authorized by default.
3495fb628e9SJouni Malinen  * @control_port_ethertype: the control port protocol that should be
3505fb628e9SJouni Malinen  *	allowed through even on unauthorized ports
3515fb628e9SJouni Malinen  * @control_port_no_encrypt: TRUE to prevent encryption of control port
3525fb628e9SJouni Malinen  *	protocol frames.
3535fb628e9SJouni Malinen  */
3545fb628e9SJouni Malinen struct cfg80211_crypto_settings {
3555fb628e9SJouni Malinen 	u32 wpa_versions;
3565fb628e9SJouni Malinen 	u32 cipher_group;
3575fb628e9SJouni Malinen 	int n_ciphers_pairwise;
3585fb628e9SJouni Malinen 	u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
3595fb628e9SJouni Malinen 	int n_akm_suites;
3605fb628e9SJouni Malinen 	u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
3615fb628e9SJouni Malinen 	bool control_port;
3625fb628e9SJouni Malinen 	__be16 control_port_ethertype;
3635fb628e9SJouni Malinen 	bool control_port_no_encrypt;
3645fb628e9SJouni Malinen };
3655fb628e9SJouni Malinen 
3665fb628e9SJouni Malinen /**
367ed1b6cc7SJohannes Berg  * struct beacon_parameters - beacon parameters
368ed1b6cc7SJohannes Berg  *
369ed1b6cc7SJohannes Berg  * Used to configure the beacon for an interface.
370ed1b6cc7SJohannes Berg  *
371ed1b6cc7SJohannes Berg  * @head: head portion of beacon (before TIM IE)
372ed1b6cc7SJohannes Berg  *     or %NULL if not changed
373ed1b6cc7SJohannes Berg  * @tail: tail portion of beacon (after TIM IE)
374ed1b6cc7SJohannes Berg  *     or %NULL if not changed
375ed1b6cc7SJohannes Berg  * @interval: beacon interval or zero if not changed
376ed1b6cc7SJohannes Berg  * @dtim_period: DTIM period or zero if not changed
377ed1b6cc7SJohannes Berg  * @head_len: length of @head
378ed1b6cc7SJohannes Berg  * @tail_len: length of @tail
37932e9de84SJouni Malinen  * @ssid: SSID to be used in the BSS (note: may be %NULL if not provided from
38032e9de84SJouni Malinen  *	user space)
38132e9de84SJouni Malinen  * @ssid_len: length of @ssid
38232e9de84SJouni Malinen  * @hidden_ssid: whether to hide the SSID in Beacon/Probe Response frames
3835fb628e9SJouni Malinen  * @crypto: crypto settings
3845fb628e9SJouni Malinen  * @privacy: the BSS uses privacy
3855fb628e9SJouni Malinen  * @auth_type: Authentication type (algorithm)
3869946ecfbSJouni Malinen  * @beacon_ies: extra information element(s) to add into Beacon frames or %NULL
3879946ecfbSJouni Malinen  * @beacon_ies_len: length of beacon_ies in octets
3889946ecfbSJouni Malinen  * @proberesp_ies: extra information element(s) to add into Probe Response
3899946ecfbSJouni Malinen  *	frames or %NULL
3909946ecfbSJouni Malinen  * @proberesp_ies_len: length of proberesp_ies in octets
3919946ecfbSJouni Malinen  * @assocresp_ies: extra information element(s) to add into (Re)Association
3929946ecfbSJouni Malinen  *	Response frames or %NULL
3939946ecfbSJouni Malinen  * @assocresp_ies_len: length of assocresp_ies in octets
394ed1b6cc7SJohannes Berg  */
395ed1b6cc7SJohannes Berg struct beacon_parameters {
396ed1b6cc7SJohannes Berg 	u8 *head, *tail;
397ed1b6cc7SJohannes Berg 	int interval, dtim_period;
398ed1b6cc7SJohannes Berg 	int head_len, tail_len;
39932e9de84SJouni Malinen 	const u8 *ssid;
40032e9de84SJouni Malinen 	size_t ssid_len;
40132e9de84SJouni Malinen 	enum nl80211_hidden_ssid hidden_ssid;
4025fb628e9SJouni Malinen 	struct cfg80211_crypto_settings crypto;
4035fb628e9SJouni Malinen 	bool privacy;
4045fb628e9SJouni Malinen 	enum nl80211_auth_type auth_type;
4059946ecfbSJouni Malinen 	const u8 *beacon_ies;
4069946ecfbSJouni Malinen 	size_t beacon_ies_len;
4079946ecfbSJouni Malinen 	const u8 *proberesp_ies;
4089946ecfbSJouni Malinen 	size_t proberesp_ies_len;
4099946ecfbSJouni Malinen 	const u8 *assocresp_ies;
4109946ecfbSJouni Malinen 	size_t assocresp_ies_len;
411ed1b6cc7SJohannes Berg };
412ed1b6cc7SJohannes Berg 
4135727ef1bSJohannes Berg /**
4142ec600d6SLuis Carlos Cobo  * enum plink_action - actions to perform in mesh peers
4152ec600d6SLuis Carlos Cobo  *
4162ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_INVALID: action 0 is reserved
4172ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_OPEN: start mesh peer link establishment
418abe37c4bSJohannes Berg  * @PLINK_ACTION_BLOCK: block traffic from this mesh peer
4192ec600d6SLuis Carlos Cobo  */
4202ec600d6SLuis Carlos Cobo enum plink_actions {
4212ec600d6SLuis Carlos Cobo 	PLINK_ACTION_INVALID,
4222ec600d6SLuis Carlos Cobo 	PLINK_ACTION_OPEN,
4232ec600d6SLuis Carlos Cobo 	PLINK_ACTION_BLOCK,
4242ec600d6SLuis Carlos Cobo };
4252ec600d6SLuis Carlos Cobo 
4262ec600d6SLuis Carlos Cobo /**
4275727ef1bSJohannes Berg  * struct station_parameters - station parameters
4285727ef1bSJohannes Berg  *
4295727ef1bSJohannes Berg  * Used to change and create a new station.
4305727ef1bSJohannes Berg  *
4315727ef1bSJohannes Berg  * @vlan: vlan interface station should belong to
4325727ef1bSJohannes Berg  * @supported_rates: supported rates in IEEE 802.11 format
4335727ef1bSJohannes Berg  *	(or NULL for no change)
4345727ef1bSJohannes Berg  * @supported_rates_len: number of supported rates
435eccb8e8fSJohannes Berg  * @sta_flags_mask: station flags that changed
436eccb8e8fSJohannes Berg  *	(bitmask of BIT(NL80211_STA_FLAG_...))
437eccb8e8fSJohannes Berg  * @sta_flags_set: station flags values
438eccb8e8fSJohannes Berg  *	(bitmask of BIT(NL80211_STA_FLAG_...))
4395727ef1bSJohannes Berg  * @listen_interval: listen interval or -1 for no change
4405727ef1bSJohannes Berg  * @aid: AID or zero for no change
441abe37c4bSJohannes Berg  * @plink_action: plink action to take
4429c3990aaSJavier Cardona  * @plink_state: set the peer link state for a station
443abe37c4bSJohannes Berg  * @ht_capa: HT capabilities of station
444*910868dbSEliad Peller  * @uapsd_queues: bitmap of queues configured for uapsd. same format
445*910868dbSEliad Peller  *	as the AC bitmap in the QoS info field
446*910868dbSEliad Peller  * @max_sp: max Service Period. same format as the MAX_SP in the
447*910868dbSEliad Peller  *	QoS info field (but already shifted down)
4485727ef1bSJohannes Berg  */
4495727ef1bSJohannes Berg struct station_parameters {
4505727ef1bSJohannes Berg 	u8 *supported_rates;
4515727ef1bSJohannes Berg 	struct net_device *vlan;
452eccb8e8fSJohannes Berg 	u32 sta_flags_mask, sta_flags_set;
4535727ef1bSJohannes Berg 	int listen_interval;
4545727ef1bSJohannes Berg 	u16 aid;
4555727ef1bSJohannes Berg 	u8 supported_rates_len;
4562ec600d6SLuis Carlos Cobo 	u8 plink_action;
4579c3990aaSJavier Cardona 	u8 plink_state;
45836aedc90SJouni Malinen 	struct ieee80211_ht_cap *ht_capa;
459c75786c9SEliad Peller 	u8 uapsd_queues;
460c75786c9SEliad Peller 	u8 max_sp;
4615727ef1bSJohannes Berg };
4625727ef1bSJohannes Berg 
463fd5b74dcSJohannes Berg /**
4642ec600d6SLuis Carlos Cobo  * enum station_info_flags - station information flags
465fd5b74dcSJohannes Berg  *
4662ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct station_info
4672ec600d6SLuis Carlos Cobo  * it has filled in during get_station() or dump_station().
468fd5b74dcSJohannes Berg  *
4692ec600d6SLuis Carlos Cobo  * @STATION_INFO_INACTIVE_TIME: @inactive_time filled
4702ec600d6SLuis Carlos Cobo  * @STATION_INFO_RX_BYTES: @rx_bytes filled
4712ec600d6SLuis Carlos Cobo  * @STATION_INFO_TX_BYTES: @tx_bytes filled
4722ec600d6SLuis Carlos Cobo  * @STATION_INFO_LLID: @llid filled
4732ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLID: @plid filled
4742ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLINK_STATE: @plink_state filled
475420e7fabSHenning Rogge  * @STATION_INFO_SIGNAL: @signal filled
476c8dcfd8aSFelix Fietkau  * @STATION_INFO_TX_BITRATE: @txrate fields are filled
477420e7fabSHenning Rogge  *  (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs)
47898c8a60aSJouni Malinen  * @STATION_INFO_RX_PACKETS: @rx_packets filled
47998c8a60aSJouni Malinen  * @STATION_INFO_TX_PACKETS: @tx_packets filled
480b206b4efSBruno Randolf  * @STATION_INFO_TX_RETRIES: @tx_retries filled
481b206b4efSBruno Randolf  * @STATION_INFO_TX_FAILED: @tx_failed filled
4825a5c731aSBen Greear  * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled
483541a45a1SBruno Randolf  * @STATION_INFO_SIGNAL_AVG: @signal_avg filled
484c8dcfd8aSFelix Fietkau  * @STATION_INFO_RX_BITRATE: @rxrate fields are filled
485f4263c98SPaul Stewart  * @STATION_INFO_BSS_PARAM: @bss_param filled
486ebe27c91SMohammed Shafi Shajakhan  * @STATION_INFO_CONNECTED_TIME: @connected_time filled
487040bdf71SFelix Fietkau  * @STATION_INFO_ASSOC_REQ_IES: @assoc_req_ies filled
488fd5b74dcSJohannes Berg  */
4892ec600d6SLuis Carlos Cobo enum station_info_flags {
4902ec600d6SLuis Carlos Cobo 	STATION_INFO_INACTIVE_TIME	= 1<<0,
4912ec600d6SLuis Carlos Cobo 	STATION_INFO_RX_BYTES		= 1<<1,
4922ec600d6SLuis Carlos Cobo 	STATION_INFO_TX_BYTES		= 1<<2,
4932ec600d6SLuis Carlos Cobo 	STATION_INFO_LLID		= 1<<3,
4942ec600d6SLuis Carlos Cobo 	STATION_INFO_PLID		= 1<<4,
4952ec600d6SLuis Carlos Cobo 	STATION_INFO_PLINK_STATE	= 1<<5,
496420e7fabSHenning Rogge 	STATION_INFO_SIGNAL		= 1<<6,
497420e7fabSHenning Rogge 	STATION_INFO_TX_BITRATE		= 1<<7,
49898c8a60aSJouni Malinen 	STATION_INFO_RX_PACKETS		= 1<<8,
49998c8a60aSJouni Malinen 	STATION_INFO_TX_PACKETS		= 1<<9,
500b206b4efSBruno Randolf 	STATION_INFO_TX_RETRIES		= 1<<10,
501b206b4efSBruno Randolf 	STATION_INFO_TX_FAILED		= 1<<11,
5025a5c731aSBen Greear 	STATION_INFO_RX_DROP_MISC	= 1<<12,
503541a45a1SBruno Randolf 	STATION_INFO_SIGNAL_AVG		= 1<<13,
504c8dcfd8aSFelix Fietkau 	STATION_INFO_RX_BITRATE		= 1<<14,
505f4263c98SPaul Stewart 	STATION_INFO_BSS_PARAM          = 1<<15,
506040bdf71SFelix Fietkau 	STATION_INFO_CONNECTED_TIME	= 1<<16,
507040bdf71SFelix Fietkau 	STATION_INFO_ASSOC_REQ_IES	= 1<<17
508420e7fabSHenning Rogge };
509420e7fabSHenning Rogge 
510420e7fabSHenning Rogge /**
511420e7fabSHenning Rogge  * enum station_info_rate_flags - bitrate info flags
512420e7fabSHenning Rogge  *
513420e7fabSHenning Rogge  * Used by the driver to indicate the specific rate transmission
514420e7fabSHenning Rogge  * type for 802.11n transmissions.
515420e7fabSHenning Rogge  *
516420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_MCS: @tx_bitrate_mcs filled
517420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 Mhz width transmission
518420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
519420e7fabSHenning Rogge  */
520420e7fabSHenning Rogge enum rate_info_flags {
521420e7fabSHenning Rogge 	RATE_INFO_FLAGS_MCS		= 1<<0,
522420e7fabSHenning Rogge 	RATE_INFO_FLAGS_40_MHZ_WIDTH	= 1<<1,
523420e7fabSHenning Rogge 	RATE_INFO_FLAGS_SHORT_GI	= 1<<2,
524420e7fabSHenning Rogge };
525420e7fabSHenning Rogge 
526420e7fabSHenning Rogge /**
527420e7fabSHenning Rogge  * struct rate_info - bitrate information
528420e7fabSHenning Rogge  *
529420e7fabSHenning Rogge  * Information about a receiving or transmitting bitrate
530420e7fabSHenning Rogge  *
531420e7fabSHenning Rogge  * @flags: bitflag of flags from &enum rate_info_flags
532420e7fabSHenning Rogge  * @mcs: mcs index if struct describes a 802.11n bitrate
533420e7fabSHenning Rogge  * @legacy: bitrate in 100kbit/s for 802.11abg
534420e7fabSHenning Rogge  */
535420e7fabSHenning Rogge struct rate_info {
536420e7fabSHenning Rogge 	u8 flags;
537420e7fabSHenning Rogge 	u8 mcs;
538420e7fabSHenning Rogge 	u16 legacy;
539fd5b74dcSJohannes Berg };
540fd5b74dcSJohannes Berg 
541fd5b74dcSJohannes Berg /**
542f4263c98SPaul Stewart  * enum station_info_rate_flags - bitrate info flags
543f4263c98SPaul Stewart  *
544f4263c98SPaul Stewart  * Used by the driver to indicate the specific rate transmission
545f4263c98SPaul Stewart  * type for 802.11n transmissions.
546f4263c98SPaul Stewart  *
547f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
548f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
549f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
550f4263c98SPaul Stewart  */
551f4263c98SPaul Stewart enum bss_param_flags {
552f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_CTS_PROT	= 1<<0,
553f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_SHORT_PREAMBLE	= 1<<1,
554f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_SHORT_SLOT_TIME	= 1<<2,
555f4263c98SPaul Stewart };
556f4263c98SPaul Stewart 
557f4263c98SPaul Stewart /**
558f4263c98SPaul Stewart  * struct sta_bss_parameters - BSS parameters for the attached station
559f4263c98SPaul Stewart  *
560f4263c98SPaul Stewart  * Information about the currently associated BSS
561f4263c98SPaul Stewart  *
562f4263c98SPaul Stewart  * @flags: bitflag of flags from &enum bss_param_flags
563f4263c98SPaul Stewart  * @dtim_period: DTIM period for the BSS
564f4263c98SPaul Stewart  * @beacon_interval: beacon interval
565f4263c98SPaul Stewart  */
566f4263c98SPaul Stewart struct sta_bss_parameters {
567f4263c98SPaul Stewart 	u8 flags;
568f4263c98SPaul Stewart 	u8 dtim_period;
569f4263c98SPaul Stewart 	u16 beacon_interval;
570f4263c98SPaul Stewart };
571f4263c98SPaul Stewart 
572f4263c98SPaul Stewart /**
5732ec600d6SLuis Carlos Cobo  * struct station_info - station information
574fd5b74dcSJohannes Berg  *
5752ec600d6SLuis Carlos Cobo  * Station information filled by driver for get_station() and dump_station.
576fd5b74dcSJohannes Berg  *
5772ec600d6SLuis Carlos Cobo  * @filled: bitflag of flags from &enum station_info_flags
578ebe27c91SMohammed Shafi Shajakhan  * @connected_time: time(in secs) since a station is last connected
579fd5b74dcSJohannes Berg  * @inactive_time: time since last station activity (tx/rx) in milliseconds
580fd5b74dcSJohannes Berg  * @rx_bytes: bytes received from this station
581fd5b74dcSJohannes Berg  * @tx_bytes: bytes transmitted to this station
5822ec600d6SLuis Carlos Cobo  * @llid: mesh local link id
5832ec600d6SLuis Carlos Cobo  * @plid: mesh peer link id
5842ec600d6SLuis Carlos Cobo  * @plink_state: mesh peer link state
585420e7fabSHenning Rogge  * @signal: signal strength of last received packet in dBm
586541a45a1SBruno Randolf  * @signal_avg: signal strength average in dBm
587858022aaSRandy Dunlap  * @txrate: current unicast bitrate from this station
588858022aaSRandy Dunlap  * @rxrate: current unicast bitrate to this station
58998c8a60aSJouni Malinen  * @rx_packets: packets received from this station
59098c8a60aSJouni Malinen  * @tx_packets: packets transmitted to this station
591b206b4efSBruno Randolf  * @tx_retries: cumulative retry counts
592b206b4efSBruno Randolf  * @tx_failed: number of failed transmissions (retries exceeded, no ACK)
5935a5c731aSBen Greear  * @rx_dropped_misc:  Dropped for un-specified reason.
5941ba01458SRandy Dunlap  * @bss_param: current BSS parameters
595f5ea9120SJohannes Berg  * @generation: generation number for nl80211 dumps.
596f5ea9120SJohannes Berg  *	This number should increase every time the list of stations
597f5ea9120SJohannes Berg  *	changes, i.e. when a station is added or removed, so that
598f5ea9120SJohannes Berg  *	userspace can tell whether it got a consistent snapshot.
59950d3dfb7SJouni Malinen  * @assoc_req_ies: IEs from (Re)Association Request.
60050d3dfb7SJouni Malinen  *	This is used only when in AP mode with drivers that do not use
60150d3dfb7SJouni Malinen  *	user space MLME/SME implementation. The information is provided for
60250d3dfb7SJouni Malinen  *	the cfg80211_new_sta() calls to notify user space of the IEs.
60350d3dfb7SJouni Malinen  * @assoc_req_ies_len: Length of assoc_req_ies buffer in octets.
604fd5b74dcSJohannes Berg  */
6052ec600d6SLuis Carlos Cobo struct station_info {
606fd5b74dcSJohannes Berg 	u32 filled;
607ebe27c91SMohammed Shafi Shajakhan 	u32 connected_time;
608fd5b74dcSJohannes Berg 	u32 inactive_time;
609fd5b74dcSJohannes Berg 	u32 rx_bytes;
610fd5b74dcSJohannes Berg 	u32 tx_bytes;
6112ec600d6SLuis Carlos Cobo 	u16 llid;
6122ec600d6SLuis Carlos Cobo 	u16 plid;
6132ec600d6SLuis Carlos Cobo 	u8 plink_state;
614420e7fabSHenning Rogge 	s8 signal;
615541a45a1SBruno Randolf 	s8 signal_avg;
616420e7fabSHenning Rogge 	struct rate_info txrate;
617c8dcfd8aSFelix Fietkau 	struct rate_info rxrate;
61898c8a60aSJouni Malinen 	u32 rx_packets;
61998c8a60aSJouni Malinen 	u32 tx_packets;
620b206b4efSBruno Randolf 	u32 tx_retries;
621b206b4efSBruno Randolf 	u32 tx_failed;
6225a5c731aSBen Greear 	u32 rx_dropped_misc;
623f4263c98SPaul Stewart 	struct sta_bss_parameters bss_param;
624f5ea9120SJohannes Berg 
625f5ea9120SJohannes Berg 	int generation;
62650d3dfb7SJouni Malinen 
62750d3dfb7SJouni Malinen 	const u8 *assoc_req_ies;
62850d3dfb7SJouni Malinen 	size_t assoc_req_ies_len;
629f612cedfSJouni Malinen 
630f612cedfSJouni Malinen 	/*
631f612cedfSJouni Malinen 	 * Note: Add a new enum station_info_flags value for each new field and
632f612cedfSJouni Malinen 	 * use it to check which fields are initialized.
633f612cedfSJouni Malinen 	 */
634fd5b74dcSJohannes Berg };
635fd5b74dcSJohannes Berg 
63666f7ac50SMichael Wu /**
63766f7ac50SMichael Wu  * enum monitor_flags - monitor flags
63866f7ac50SMichael Wu  *
63966f7ac50SMichael Wu  * Monitor interface configuration flags. Note that these must be the bits
64066f7ac50SMichael Wu  * according to the nl80211 flags.
64166f7ac50SMichael Wu  *
64266f7ac50SMichael Wu  * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
64366f7ac50SMichael Wu  * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
64466f7ac50SMichael Wu  * @MONITOR_FLAG_CONTROL: pass control frames
64566f7ac50SMichael Wu  * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
64666f7ac50SMichael Wu  * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
64766f7ac50SMichael Wu  */
64866f7ac50SMichael Wu enum monitor_flags {
64966f7ac50SMichael Wu 	MONITOR_FLAG_FCSFAIL		= 1<<NL80211_MNTR_FLAG_FCSFAIL,
65066f7ac50SMichael Wu 	MONITOR_FLAG_PLCPFAIL		= 1<<NL80211_MNTR_FLAG_PLCPFAIL,
65166f7ac50SMichael Wu 	MONITOR_FLAG_CONTROL		= 1<<NL80211_MNTR_FLAG_CONTROL,
65266f7ac50SMichael Wu 	MONITOR_FLAG_OTHER_BSS		= 1<<NL80211_MNTR_FLAG_OTHER_BSS,
65366f7ac50SMichael Wu 	MONITOR_FLAG_COOK_FRAMES	= 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
65466f7ac50SMichael Wu };
65566f7ac50SMichael Wu 
6562ec600d6SLuis Carlos Cobo /**
6572ec600d6SLuis Carlos Cobo  * enum mpath_info_flags -  mesh path information flags
6582ec600d6SLuis Carlos Cobo  *
6592ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct mpath_info it has filled
6602ec600d6SLuis Carlos Cobo  * in during get_station() or dump_station().
6612ec600d6SLuis Carlos Cobo  *
662abe37c4bSJohannes Berg  * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
663abe37c4bSJohannes Berg  * @MPATH_INFO_SN: @sn filled
664abe37c4bSJohannes Berg  * @MPATH_INFO_METRIC: @metric filled
665abe37c4bSJohannes Berg  * @MPATH_INFO_EXPTIME: @exptime filled
666abe37c4bSJohannes Berg  * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
667abe37c4bSJohannes Berg  * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
668abe37c4bSJohannes Berg  * @MPATH_INFO_FLAGS: @flags filled
6692ec600d6SLuis Carlos Cobo  */
6702ec600d6SLuis Carlos Cobo enum mpath_info_flags {
6712ec600d6SLuis Carlos Cobo 	MPATH_INFO_FRAME_QLEN		= BIT(0),
672d19b3bf6SRui Paulo 	MPATH_INFO_SN			= BIT(1),
6732ec600d6SLuis Carlos Cobo 	MPATH_INFO_METRIC		= BIT(2),
6742ec600d6SLuis Carlos Cobo 	MPATH_INFO_EXPTIME		= BIT(3),
6752ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_TIMEOUT	= BIT(4),
6762ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_RETRIES	= BIT(5),
6772ec600d6SLuis Carlos Cobo 	MPATH_INFO_FLAGS		= BIT(6),
6782ec600d6SLuis Carlos Cobo };
6792ec600d6SLuis Carlos Cobo 
6802ec600d6SLuis Carlos Cobo /**
6812ec600d6SLuis Carlos Cobo  * struct mpath_info - mesh path information
6822ec600d6SLuis Carlos Cobo  *
6832ec600d6SLuis Carlos Cobo  * Mesh path information filled by driver for get_mpath() and dump_mpath().
6842ec600d6SLuis Carlos Cobo  *
6852ec600d6SLuis Carlos Cobo  * @filled: bitfield of flags from &enum mpath_info_flags
6862ec600d6SLuis Carlos Cobo  * @frame_qlen: number of queued frames for this destination
687d19b3bf6SRui Paulo  * @sn: target sequence number
6882ec600d6SLuis Carlos Cobo  * @metric: metric (cost) of this mesh path
6892ec600d6SLuis Carlos Cobo  * @exptime: expiration time for the mesh path from now, in msecs
6902ec600d6SLuis Carlos Cobo  * @flags: mesh path flags
6912ec600d6SLuis Carlos Cobo  * @discovery_timeout: total mesh path discovery timeout, in msecs
6922ec600d6SLuis Carlos Cobo  * @discovery_retries: mesh path discovery retries
693f5ea9120SJohannes Berg  * @generation: generation number for nl80211 dumps.
694f5ea9120SJohannes Berg  *	This number should increase every time the list of mesh paths
695f5ea9120SJohannes Berg  *	changes, i.e. when a station is added or removed, so that
696f5ea9120SJohannes Berg  *	userspace can tell whether it got a consistent snapshot.
6972ec600d6SLuis Carlos Cobo  */
6982ec600d6SLuis Carlos Cobo struct mpath_info {
6992ec600d6SLuis Carlos Cobo 	u32 filled;
7002ec600d6SLuis Carlos Cobo 	u32 frame_qlen;
701d19b3bf6SRui Paulo 	u32 sn;
7022ec600d6SLuis Carlos Cobo 	u32 metric;
7032ec600d6SLuis Carlos Cobo 	u32 exptime;
7042ec600d6SLuis Carlos Cobo 	u32 discovery_timeout;
7052ec600d6SLuis Carlos Cobo 	u8 discovery_retries;
7062ec600d6SLuis Carlos Cobo 	u8 flags;
707f5ea9120SJohannes Berg 
708f5ea9120SJohannes Berg 	int generation;
7092ec600d6SLuis Carlos Cobo };
7102ec600d6SLuis Carlos Cobo 
7119f1ba906SJouni Malinen /**
7129f1ba906SJouni Malinen  * struct bss_parameters - BSS parameters
7139f1ba906SJouni Malinen  *
7149f1ba906SJouni Malinen  * Used to change BSS parameters (mainly for AP mode).
7159f1ba906SJouni Malinen  *
7169f1ba906SJouni Malinen  * @use_cts_prot: Whether to use CTS protection
7179f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
7189f1ba906SJouni Malinen  * @use_short_preamble: Whether the use of short preambles is allowed
7199f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
7209f1ba906SJouni Malinen  * @use_short_slot_time: Whether the use of short slot time is allowed
7219f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
72290c97a04SJouni Malinen  * @basic_rates: basic rates in IEEE 802.11 format
72390c97a04SJouni Malinen  *	(or NULL for no change)
72490c97a04SJouni Malinen  * @basic_rates_len: number of basic rates
725fd8aaaf3SFelix Fietkau  * @ap_isolate: do not forward packets between connected stations
72650b12f59SHelmut Schaa  * @ht_opmode: HT Operation mode
72750b12f59SHelmut Schaa  * 	(u16 = opmode, -1 = do not change)
7289f1ba906SJouni Malinen  */
7299f1ba906SJouni Malinen struct bss_parameters {
7309f1ba906SJouni Malinen 	int use_cts_prot;
7319f1ba906SJouni Malinen 	int use_short_preamble;
7329f1ba906SJouni Malinen 	int use_short_slot_time;
73390c97a04SJouni Malinen 	u8 *basic_rates;
73490c97a04SJouni Malinen 	u8 basic_rates_len;
735fd8aaaf3SFelix Fietkau 	int ap_isolate;
73650b12f59SHelmut Schaa 	int ht_opmode;
7379f1ba906SJouni Malinen };
7382ec600d6SLuis Carlos Cobo 
73929cbe68cSJohannes Berg /*
74029cbe68cSJohannes Berg  * struct mesh_config - 802.11s mesh configuration
74129cbe68cSJohannes Berg  *
74229cbe68cSJohannes Berg  * These parameters can be changed while the mesh is active.
74329cbe68cSJohannes Berg  */
74493da9cc1Scolin@cozybit.com struct mesh_config {
74593da9cc1Scolin@cozybit.com 	/* Timeouts in ms */
74693da9cc1Scolin@cozybit.com 	/* Mesh plink management parameters */
74793da9cc1Scolin@cozybit.com 	u16 dot11MeshRetryTimeout;
74893da9cc1Scolin@cozybit.com 	u16 dot11MeshConfirmTimeout;
74993da9cc1Scolin@cozybit.com 	u16 dot11MeshHoldingTimeout;
75093da9cc1Scolin@cozybit.com 	u16 dot11MeshMaxPeerLinks;
75193da9cc1Scolin@cozybit.com 	u8  dot11MeshMaxRetries;
75293da9cc1Scolin@cozybit.com 	u8  dot11MeshTTL;
75345904f21SJavier Cardona 	/* ttl used in path selection information elements */
75445904f21SJavier Cardona 	u8  element_ttl;
75593da9cc1Scolin@cozybit.com 	bool auto_open_plinks;
75693da9cc1Scolin@cozybit.com 	/* HWMP parameters */
75793da9cc1Scolin@cozybit.com 	u8  dot11MeshHWMPmaxPREQretries;
75893da9cc1Scolin@cozybit.com 	u32 path_refresh_time;
75993da9cc1Scolin@cozybit.com 	u16 min_discovery_timeout;
76093da9cc1Scolin@cozybit.com 	u32 dot11MeshHWMPactivePathTimeout;
76193da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPpreqMinInterval;
76293da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPnetDiameterTraversalTime;
76363c5723bSRui Paulo 	u8  dot11MeshHWMPRootMode;
7640507e159SJavier Cardona 	u16 dot11MeshHWMPRannInterval;
76516dd7267SJavier Cardona 	/* This is missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol
76616dd7267SJavier Cardona 	 * set to true only means that the station will announce others it's a
76716dd7267SJavier Cardona 	 * mesh gate, but not necessarily using the gate announcement protocol.
76816dd7267SJavier Cardona 	 * Still keeping the same nomenclature to be in sync with the spec. */
76916dd7267SJavier Cardona 	bool  dot11MeshGateAnnouncementProtocol;
77093da9cc1Scolin@cozybit.com };
77193da9cc1Scolin@cozybit.com 
77231888487SJouni Malinen /**
77329cbe68cSJohannes Berg  * struct mesh_setup - 802.11s mesh setup configuration
77429cbe68cSJohannes Berg  * @mesh_id: the mesh ID
77529cbe68cSJohannes Berg  * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
776c80d545dSJavier Cardona  * @path_sel_proto: which path selection protocol to use
777c80d545dSJavier Cardona  * @path_metric: which metric to use
778581a8b0fSJavier Cardona  * @ie: vendor information elements (optional)
779581a8b0fSJavier Cardona  * @ie_len: length of vendor information elements
780b130e5ceSJavier Cardona  * @is_authenticated: this mesh requires authentication
781b130e5ceSJavier Cardona  * @is_secure: this mesh uses security
78229cbe68cSJohannes Berg  *
78329cbe68cSJohannes Berg  * These parameters are fixed when the mesh is created.
78429cbe68cSJohannes Berg  */
78529cbe68cSJohannes Berg struct mesh_setup {
78629cbe68cSJohannes Berg 	const u8 *mesh_id;
78729cbe68cSJohannes Berg 	u8 mesh_id_len;
788c80d545dSJavier Cardona 	u8  path_sel_proto;
789c80d545dSJavier Cardona 	u8  path_metric;
790581a8b0fSJavier Cardona 	const u8 *ie;
791581a8b0fSJavier Cardona 	u8 ie_len;
792b130e5ceSJavier Cardona 	bool is_authenticated;
79315d5dda6SJavier Cardona 	bool is_secure;
79429cbe68cSJohannes Berg };
79529cbe68cSJohannes Berg 
79629cbe68cSJohannes Berg /**
79731888487SJouni Malinen  * struct ieee80211_txq_params - TX queue parameters
79831888487SJouni Malinen  * @queue: TX queue identifier (NL80211_TXQ_Q_*)
79931888487SJouni Malinen  * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
80031888487SJouni Malinen  * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
80131888487SJouni Malinen  *	1..32767]
80231888487SJouni Malinen  * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
80331888487SJouni Malinen  *	1..32767]
80431888487SJouni Malinen  * @aifs: Arbitration interframe space [0..255]
80531888487SJouni Malinen  */
80631888487SJouni Malinen struct ieee80211_txq_params {
80731888487SJouni Malinen 	enum nl80211_txq_q queue;
80831888487SJouni Malinen 	u16 txop;
80931888487SJouni Malinen 	u16 cwmin;
81031888487SJouni Malinen 	u16 cwmax;
81131888487SJouni Malinen 	u8 aifs;
81231888487SJouni Malinen };
81331888487SJouni Malinen 
814704232c2SJohannes Berg /* from net/wireless.h */
815704232c2SJohannes Berg struct wiphy;
816704232c2SJohannes Berg 
817d70e9693SJohannes Berg /**
818d70e9693SJohannes Berg  * DOC: Scanning and BSS list handling
819d70e9693SJohannes Berg  *
820d70e9693SJohannes Berg  * The scanning process itself is fairly simple, but cfg80211 offers quite
821d70e9693SJohannes Berg  * a bit of helper functionality. To start a scan, the scan operation will
822d70e9693SJohannes Berg  * be invoked with a scan definition. This scan definition contains the
823d70e9693SJohannes Berg  * channels to scan, and the SSIDs to send probe requests for (including the
824d70e9693SJohannes Berg  * wildcard, if desired). A passive scan is indicated by having no SSIDs to
825d70e9693SJohannes Berg  * probe. Additionally, a scan request may contain extra information elements
826d70e9693SJohannes Berg  * that should be added to the probe request. The IEs are guaranteed to be
827d70e9693SJohannes Berg  * well-formed, and will not exceed the maximum length the driver advertised
828d70e9693SJohannes Berg  * in the wiphy structure.
829d70e9693SJohannes Berg  *
830d70e9693SJohannes Berg  * When scanning finds a BSS, cfg80211 needs to be notified of that, because
831d70e9693SJohannes Berg  * it is responsible for maintaining the BSS list; the driver should not
832d70e9693SJohannes Berg  * maintain a list itself. For this notification, various functions exist.
833d70e9693SJohannes Berg  *
834d70e9693SJohannes Berg  * Since drivers do not maintain a BSS list, there are also a number of
835d70e9693SJohannes Berg  * functions to search for a BSS and obtain information about it from the
836d70e9693SJohannes Berg  * BSS structure cfg80211 maintains. The BSS list is also made available
837d70e9693SJohannes Berg  * to userspace.
838d70e9693SJohannes Berg  */
83972bdcf34SJouni Malinen 
840704232c2SJohannes Berg /**
8412a519311SJohannes Berg  * struct cfg80211_ssid - SSID description
8422a519311SJohannes Berg  * @ssid: the SSID
8432a519311SJohannes Berg  * @ssid_len: length of the ssid
8442a519311SJohannes Berg  */
8452a519311SJohannes Berg struct cfg80211_ssid {
8462a519311SJohannes Berg 	u8 ssid[IEEE80211_MAX_SSID_LEN];
8472a519311SJohannes Berg 	u8 ssid_len;
8482a519311SJohannes Berg };
8492a519311SJohannes Berg 
8502a519311SJohannes Berg /**
8512a519311SJohannes Berg  * struct cfg80211_scan_request - scan request description
8522a519311SJohannes Berg  *
8532a519311SJohannes Berg  * @ssids: SSIDs to scan for (active scan only)
8542a519311SJohannes Berg  * @n_ssids: number of SSIDs
8552a519311SJohannes Berg  * @channels: channels to scan on.
856ca3dbc20SHelmut Schaa  * @n_channels: total number of channels to scan
85770692ad2SJouni Malinen  * @ie: optional information element(s) to add into Probe Request or %NULL
85870692ad2SJouni Malinen  * @ie_len: length of ie in octets
85934850ab2SJohannes Berg  * @rates: bitmap of rates to advertise for each band
8602a519311SJohannes Berg  * @wiphy: the wiphy this was for
861463d0183SJohannes Berg  * @dev: the interface
862abe37c4bSJohannes Berg  * @aborted: (internal) scan request was notified as aborted
8632a519311SJohannes Berg  */
8642a519311SJohannes Berg struct cfg80211_scan_request {
8652a519311SJohannes Berg 	struct cfg80211_ssid *ssids;
8662a519311SJohannes Berg 	int n_ssids;
8672a519311SJohannes Berg 	u32 n_channels;
868de95a54bSJohannes Berg 	const u8 *ie;
86970692ad2SJouni Malinen 	size_t ie_len;
8702a519311SJohannes Berg 
87134850ab2SJohannes Berg 	u32 rates[IEEE80211_NUM_BANDS];
87234850ab2SJohannes Berg 
8732a519311SJohannes Berg 	/* internal */
8742a519311SJohannes Berg 	struct wiphy *wiphy;
875463d0183SJohannes Berg 	struct net_device *dev;
876667503ddSJohannes Berg 	bool aborted;
8775ba63533SJohannes Berg 
8785ba63533SJohannes Berg 	/* keep last */
8795ba63533SJohannes Berg 	struct ieee80211_channel *channels[0];
8802a519311SJohannes Berg };
8812a519311SJohannes Berg 
8822a519311SJohannes Berg /**
883a1f1c21cSLuciano Coelho  * struct cfg80211_match_set - sets of attributes to match
884a1f1c21cSLuciano Coelho  *
885a1f1c21cSLuciano Coelho  * @ssid: SSID to be matched
886a1f1c21cSLuciano Coelho  */
887a1f1c21cSLuciano Coelho struct cfg80211_match_set {
888a1f1c21cSLuciano Coelho 	struct cfg80211_ssid ssid;
889a1f1c21cSLuciano Coelho };
890a1f1c21cSLuciano Coelho 
891a1f1c21cSLuciano Coelho /**
892807f8a8cSLuciano Coelho  * struct cfg80211_sched_scan_request - scheduled scan request description
893807f8a8cSLuciano Coelho  *
894807f8a8cSLuciano Coelho  * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
895807f8a8cSLuciano Coelho  * @n_ssids: number of SSIDs
896807f8a8cSLuciano Coelho  * @n_channels: total number of channels to scan
897bbe6ad6dSLuciano Coelho  * @interval: interval between each scheduled scan cycle
898807f8a8cSLuciano Coelho  * @ie: optional information element(s) to add into Probe Request or %NULL
899807f8a8cSLuciano Coelho  * @ie_len: length of ie in octets
900a1f1c21cSLuciano Coelho  * @match_sets: sets of parameters to be matched for a scan result
901a1f1c21cSLuciano Coelho  * 	entry to be considered valid and to be passed to the host
902a1f1c21cSLuciano Coelho  * 	(others are filtered out).
903a1f1c21cSLuciano Coelho  *	If ommited, all results are passed.
904a1f1c21cSLuciano Coelho  * @n_match_sets: number of match sets
905807f8a8cSLuciano Coelho  * @wiphy: the wiphy this was for
906807f8a8cSLuciano Coelho  * @dev: the interface
907807f8a8cSLuciano Coelho  * @channels: channels to scan
908807f8a8cSLuciano Coelho  */
909807f8a8cSLuciano Coelho struct cfg80211_sched_scan_request {
910807f8a8cSLuciano Coelho 	struct cfg80211_ssid *ssids;
911807f8a8cSLuciano Coelho 	int n_ssids;
912807f8a8cSLuciano Coelho 	u32 n_channels;
913bbe6ad6dSLuciano Coelho 	u32 interval;
914807f8a8cSLuciano Coelho 	const u8 *ie;
915807f8a8cSLuciano Coelho 	size_t ie_len;
916a1f1c21cSLuciano Coelho 	struct cfg80211_match_set *match_sets;
917a1f1c21cSLuciano Coelho 	int n_match_sets;
918807f8a8cSLuciano Coelho 
919807f8a8cSLuciano Coelho 	/* internal */
920807f8a8cSLuciano Coelho 	struct wiphy *wiphy;
921807f8a8cSLuciano Coelho 	struct net_device *dev;
922807f8a8cSLuciano Coelho 
923807f8a8cSLuciano Coelho 	/* keep last */
924807f8a8cSLuciano Coelho 	struct ieee80211_channel *channels[0];
925807f8a8cSLuciano Coelho };
926807f8a8cSLuciano Coelho 
927807f8a8cSLuciano Coelho /**
9282a519311SJohannes Berg  * enum cfg80211_signal_type - signal type
9292a519311SJohannes Berg  *
9302a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
9312a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
9322a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
9332a519311SJohannes Berg  */
9342a519311SJohannes Berg enum cfg80211_signal_type {
9352a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_NONE,
9362a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_MBM,
9372a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_UNSPEC,
9382a519311SJohannes Berg };
9392a519311SJohannes Berg 
9402a519311SJohannes Berg /**
9412a519311SJohannes Berg  * struct cfg80211_bss - BSS description
9422a519311SJohannes Berg  *
9432a519311SJohannes Berg  * This structure describes a BSS (which may also be a mesh network)
9442a519311SJohannes Berg  * for use in scan results and similar.
9452a519311SJohannes Berg  *
946abe37c4bSJohannes Berg  * @channel: channel this BSS is on
9472a519311SJohannes Berg  * @bssid: BSSID of the BSS
9482a519311SJohannes Berg  * @tsf: timestamp of last received update
9492a519311SJohannes Berg  * @beacon_interval: the beacon interval as from the frame
9502a519311SJohannes Berg  * @capability: the capability field in host byte order
9512a519311SJohannes Berg  * @information_elements: the information elements (Note that there
95234a6eddbSJouni Malinen  *	is no guarantee that these are well-formed!); this is a pointer to
95334a6eddbSJouni Malinen  *	either the beacon_ies or proberesp_ies depending on whether Probe
95434a6eddbSJouni Malinen  *	Response frame has been received
9552a519311SJohannes Berg  * @len_information_elements: total length of the information elements
95634a6eddbSJouni Malinen  * @beacon_ies: the information elements from the last Beacon frame
95734a6eddbSJouni Malinen  * @len_beacon_ies: total length of the beacon_ies
95834a6eddbSJouni Malinen  * @proberesp_ies: the information elements from the last Probe Response frame
95934a6eddbSJouni Malinen  * @len_proberesp_ies: total length of the proberesp_ies
96077965c97SJohannes Berg  * @signal: signal strength value (type depends on the wiphy's signal_type)
96178c1c7e1SJohannes Berg  * @free_priv: function pointer to free private data
9622a519311SJohannes Berg  * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
9632a519311SJohannes Berg  */
9642a519311SJohannes Berg struct cfg80211_bss {
9652a519311SJohannes Berg 	struct ieee80211_channel *channel;
9662a519311SJohannes Berg 
9672a519311SJohannes Berg 	u8 bssid[ETH_ALEN];
9682a519311SJohannes Berg 	u64 tsf;
9692a519311SJohannes Berg 	u16 beacon_interval;
9702a519311SJohannes Berg 	u16 capability;
9712a519311SJohannes Berg 	u8 *information_elements;
9722a519311SJohannes Berg 	size_t len_information_elements;
97334a6eddbSJouni Malinen 	u8 *beacon_ies;
97434a6eddbSJouni Malinen 	size_t len_beacon_ies;
97534a6eddbSJouni Malinen 	u8 *proberesp_ies;
97634a6eddbSJouni Malinen 	size_t len_proberesp_ies;
9772a519311SJohannes Berg 
9782a519311SJohannes Berg 	s32 signal;
9792a519311SJohannes Berg 
98078c1c7e1SJohannes Berg 	void (*free_priv)(struct cfg80211_bss *bss);
9812a519311SJohannes Berg 	u8 priv[0] __attribute__((__aligned__(sizeof(void *))));
9822a519311SJohannes Berg };
9832a519311SJohannes Berg 
9842a519311SJohannes Berg /**
985517357c6SJohannes Berg  * ieee80211_bss_get_ie - find IE with given ID
986517357c6SJohannes Berg  * @bss: the bss to search
987517357c6SJohannes Berg  * @ie: the IE ID
988517357c6SJohannes Berg  * Returns %NULL if not found.
989517357c6SJohannes Berg  */
990517357c6SJohannes Berg const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
991517357c6SJohannes Berg 
992517357c6SJohannes Berg 
993517357c6SJohannes Berg /**
994636a5d36SJouni Malinen  * struct cfg80211_auth_request - Authentication request data
995636a5d36SJouni Malinen  *
996636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
997636a5d36SJouni Malinen  * authentication.
998636a5d36SJouni Malinen  *
99919957bb3SJohannes Berg  * @bss: The BSS to authenticate with.
1000636a5d36SJouni Malinen  * @auth_type: Authentication type (algorithm)
1001636a5d36SJouni Malinen  * @ie: Extra IEs to add to Authentication frame or %NULL
1002636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
1003fffd0934SJohannes Berg  * @key_len: length of WEP key for shared key authentication
1004fffd0934SJohannes Berg  * @key_idx: index of WEP key for shared key authentication
1005fffd0934SJohannes Berg  * @key: WEP key for shared key authentication
1006d5cdfacbSJouni Malinen  * @local_state_change: This is a request for a local state only, i.e., no
1007d5cdfacbSJouni Malinen  *	Authentication frame is to be transmitted and authentication state is
1008d5cdfacbSJouni Malinen  *	to be changed without having to wait for a response from the peer STA
1009d5cdfacbSJouni Malinen  *	(AP).
1010636a5d36SJouni Malinen  */
1011636a5d36SJouni Malinen struct cfg80211_auth_request {
101219957bb3SJohannes Berg 	struct cfg80211_bss *bss;
1013636a5d36SJouni Malinen 	const u8 *ie;
1014636a5d36SJouni Malinen 	size_t ie_len;
101519957bb3SJohannes Berg 	enum nl80211_auth_type auth_type;
1016fffd0934SJohannes Berg 	const u8 *key;
1017fffd0934SJohannes Berg 	u8 key_len, key_idx;
1018d5cdfacbSJouni Malinen 	bool local_state_change;
1019636a5d36SJouni Malinen };
1020636a5d36SJouni Malinen 
1021636a5d36SJouni Malinen /**
1022636a5d36SJouni Malinen  * struct cfg80211_assoc_request - (Re)Association request data
1023636a5d36SJouni Malinen  *
1024636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1025636a5d36SJouni Malinen  * (re)association.
102619957bb3SJohannes Berg  * @bss: The BSS to associate with.
1027636a5d36SJouni Malinen  * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
1028636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
1029dc6382ceSJouni Malinen  * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
1030b23aa676SSamuel Ortiz  * @crypto: crypto settings
10313e5d7649SJohannes Berg  * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
1032636a5d36SJouni Malinen  */
1033636a5d36SJouni Malinen struct cfg80211_assoc_request {
103419957bb3SJohannes Berg 	struct cfg80211_bss *bss;
10353e5d7649SJohannes Berg 	const u8 *ie, *prev_bssid;
1036636a5d36SJouni Malinen 	size_t ie_len;
1037b23aa676SSamuel Ortiz 	struct cfg80211_crypto_settings crypto;
103819957bb3SJohannes Berg 	bool use_mfp;
1039636a5d36SJouni Malinen };
1040636a5d36SJouni Malinen 
1041636a5d36SJouni Malinen /**
1042636a5d36SJouni Malinen  * struct cfg80211_deauth_request - Deauthentication request data
1043636a5d36SJouni Malinen  *
1044636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1045636a5d36SJouni Malinen  * deauthentication.
1046636a5d36SJouni Malinen  *
104719957bb3SJohannes Berg  * @bss: the BSS to deauthenticate from
1048636a5d36SJouni Malinen  * @ie: Extra IEs to add to Deauthentication frame or %NULL
1049636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
105019957bb3SJohannes Berg  * @reason_code: The reason code for the deauthentication
1051d5cdfacbSJouni Malinen  * @local_state_change: This is a request for a local state only, i.e., no
1052d5cdfacbSJouni Malinen  *	Deauthentication frame is to be transmitted.
1053636a5d36SJouni Malinen  */
1054636a5d36SJouni Malinen struct cfg80211_deauth_request {
105519957bb3SJohannes Berg 	struct cfg80211_bss *bss;
1056636a5d36SJouni Malinen 	const u8 *ie;
1057636a5d36SJouni Malinen 	size_t ie_len;
105819957bb3SJohannes Berg 	u16 reason_code;
1059d5cdfacbSJouni Malinen 	bool local_state_change;
1060636a5d36SJouni Malinen };
1061636a5d36SJouni Malinen 
1062636a5d36SJouni Malinen /**
1063636a5d36SJouni Malinen  * struct cfg80211_disassoc_request - Disassociation request data
1064636a5d36SJouni Malinen  *
1065636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1066636a5d36SJouni Malinen  * disassocation.
1067636a5d36SJouni Malinen  *
106819957bb3SJohannes Berg  * @bss: the BSS to disassociate from
1069636a5d36SJouni Malinen  * @ie: Extra IEs to add to Disassociation frame or %NULL
1070636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
107119957bb3SJohannes Berg  * @reason_code: The reason code for the disassociation
1072d5cdfacbSJouni Malinen  * @local_state_change: This is a request for a local state only, i.e., no
1073d5cdfacbSJouni Malinen  *	Disassociation frame is to be transmitted.
1074636a5d36SJouni Malinen  */
1075636a5d36SJouni Malinen struct cfg80211_disassoc_request {
107619957bb3SJohannes Berg 	struct cfg80211_bss *bss;
1077636a5d36SJouni Malinen 	const u8 *ie;
1078636a5d36SJouni Malinen 	size_t ie_len;
107919957bb3SJohannes Berg 	u16 reason_code;
1080d5cdfacbSJouni Malinen 	bool local_state_change;
1081636a5d36SJouni Malinen };
1082636a5d36SJouni Malinen 
1083636a5d36SJouni Malinen /**
108404a773adSJohannes Berg  * struct cfg80211_ibss_params - IBSS parameters
108504a773adSJohannes Berg  *
108604a773adSJohannes Berg  * This structure defines the IBSS parameters for the join_ibss()
108704a773adSJohannes Berg  * method.
108804a773adSJohannes Berg  *
108904a773adSJohannes Berg  * @ssid: The SSID, will always be non-null.
109004a773adSJohannes Berg  * @ssid_len: The length of the SSID, will always be non-zero.
109104a773adSJohannes Berg  * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
109204a773adSJohannes Berg  *	search for IBSSs with a different BSSID.
109304a773adSJohannes Berg  * @channel: The channel to use if no IBSS can be found to join.
109404a773adSJohannes Berg  * @channel_fixed: The channel should be fixed -- do not search for
109504a773adSJohannes Berg  *	IBSSs to join on other channels.
109604a773adSJohannes Berg  * @ie: information element(s) to include in the beacon
109704a773adSJohannes Berg  * @ie_len: length of that
10988e30bc55SJohannes Berg  * @beacon_interval: beacon interval to use
1099fffd0934SJohannes Berg  * @privacy: this is a protected network, keys will be configured
1100fffd0934SJohannes Berg  *	after joining
1101fbd2c8dcSTeemu Paasikivi  * @basic_rates: bitmap of basic rates to use when creating the IBSS
1102dd5b4cc7SFelix Fietkau  * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
110304a773adSJohannes Berg  */
110404a773adSJohannes Berg struct cfg80211_ibss_params {
110504a773adSJohannes Berg 	u8 *ssid;
110604a773adSJohannes Berg 	u8 *bssid;
110704a773adSJohannes Berg 	struct ieee80211_channel *channel;
110804a773adSJohannes Berg 	u8 *ie;
110904a773adSJohannes Berg 	u8 ssid_len, ie_len;
11108e30bc55SJohannes Berg 	u16 beacon_interval;
1111fbd2c8dcSTeemu Paasikivi 	u32 basic_rates;
111204a773adSJohannes Berg 	bool channel_fixed;
1113fffd0934SJohannes Berg 	bool privacy;
1114dd5b4cc7SFelix Fietkau 	int mcast_rate[IEEE80211_NUM_BANDS];
111504a773adSJohannes Berg };
111604a773adSJohannes Berg 
111704a773adSJohannes Berg /**
1118b23aa676SSamuel Ortiz  * struct cfg80211_connect_params - Connection parameters
1119b23aa676SSamuel Ortiz  *
1120b23aa676SSamuel Ortiz  * This structure provides information needed to complete IEEE 802.11
1121b23aa676SSamuel Ortiz  * authentication and association.
1122b23aa676SSamuel Ortiz  *
1123b23aa676SSamuel Ortiz  * @channel: The channel to use or %NULL if not specified (auto-select based
1124b23aa676SSamuel Ortiz  *	on scan results)
1125b23aa676SSamuel Ortiz  * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
1126b23aa676SSamuel Ortiz  *	results)
1127b23aa676SSamuel Ortiz  * @ssid: SSID
1128b23aa676SSamuel Ortiz  * @ssid_len: Length of ssid in octets
1129b23aa676SSamuel Ortiz  * @auth_type: Authentication type (algorithm)
1130abe37c4bSJohannes Berg  * @ie: IEs for association request
1131abe37c4bSJohannes Berg  * @ie_len: Length of assoc_ie in octets
1132b23aa676SSamuel Ortiz  * @privacy: indicates whether privacy-enabled APs should be used
1133b23aa676SSamuel Ortiz  * @crypto: crypto settings
1134fffd0934SJohannes Berg  * @key_len: length of WEP key for shared key authentication
1135fffd0934SJohannes Berg  * @key_idx: index of WEP key for shared key authentication
1136fffd0934SJohannes Berg  * @key: WEP key for shared key authentication
1137b23aa676SSamuel Ortiz  */
1138b23aa676SSamuel Ortiz struct cfg80211_connect_params {
1139b23aa676SSamuel Ortiz 	struct ieee80211_channel *channel;
1140b23aa676SSamuel Ortiz 	u8 *bssid;
1141b23aa676SSamuel Ortiz 	u8 *ssid;
1142b23aa676SSamuel Ortiz 	size_t ssid_len;
1143b23aa676SSamuel Ortiz 	enum nl80211_auth_type auth_type;
1144b23aa676SSamuel Ortiz 	u8 *ie;
1145b23aa676SSamuel Ortiz 	size_t ie_len;
1146b23aa676SSamuel Ortiz 	bool privacy;
1147b23aa676SSamuel Ortiz 	struct cfg80211_crypto_settings crypto;
1148fffd0934SJohannes Berg 	const u8 *key;
1149fffd0934SJohannes Berg 	u8 key_len, key_idx;
1150b23aa676SSamuel Ortiz };
1151b23aa676SSamuel Ortiz 
1152b23aa676SSamuel Ortiz /**
1153b9a5f8caSJouni Malinen  * enum wiphy_params_flags - set_wiphy_params bitfield values
1154abe37c4bSJohannes Berg  * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
1155abe37c4bSJohannes Berg  * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
1156abe37c4bSJohannes Berg  * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
1157abe37c4bSJohannes Berg  * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
1158abe37c4bSJohannes Berg  * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
1159b9a5f8caSJouni Malinen  */
1160b9a5f8caSJouni Malinen enum wiphy_params_flags {
1161b9a5f8caSJouni Malinen 	WIPHY_PARAM_RETRY_SHORT		= 1 << 0,
1162b9a5f8caSJouni Malinen 	WIPHY_PARAM_RETRY_LONG		= 1 << 1,
1163b9a5f8caSJouni Malinen 	WIPHY_PARAM_FRAG_THRESHOLD	= 1 << 2,
1164b9a5f8caSJouni Malinen 	WIPHY_PARAM_RTS_THRESHOLD	= 1 << 3,
116581077e82SLukáš Turek 	WIPHY_PARAM_COVERAGE_CLASS	= 1 << 4,
1166b9a5f8caSJouni Malinen };
1167b9a5f8caSJouni Malinen 
11689930380fSJohannes Berg /*
11699930380fSJohannes Berg  * cfg80211_bitrate_mask - masks for bitrate control
11709930380fSJohannes Berg  */
11719930380fSJohannes Berg struct cfg80211_bitrate_mask {
11729930380fSJohannes Berg 	struct {
11739930380fSJohannes Berg 		u32 legacy;
117437eb0b16SJouni Malinen 		/* TODO: add support for masking MCS rates; e.g.: */
117537eb0b16SJouni Malinen 		/* u8 mcs[IEEE80211_HT_MCS_MASK_LEN]; */
11769930380fSJohannes Berg 	} control[IEEE80211_NUM_BANDS];
11779930380fSJohannes Berg };
117867fbb16bSSamuel Ortiz /**
117967fbb16bSSamuel Ortiz  * struct cfg80211_pmksa - PMK Security Association
118067fbb16bSSamuel Ortiz  *
118167fbb16bSSamuel Ortiz  * This structure is passed to the set/del_pmksa() method for PMKSA
118267fbb16bSSamuel Ortiz  * caching.
118367fbb16bSSamuel Ortiz  *
118467fbb16bSSamuel Ortiz  * @bssid: The AP's BSSID.
118567fbb16bSSamuel Ortiz  * @pmkid: The PMK material itself.
118667fbb16bSSamuel Ortiz  */
118767fbb16bSSamuel Ortiz struct cfg80211_pmksa {
118867fbb16bSSamuel Ortiz 	u8 *bssid;
118967fbb16bSSamuel Ortiz 	u8 *pmkid;
119067fbb16bSSamuel Ortiz };
11919930380fSJohannes Berg 
11927643a2c3SJohannes Berg /**
1193ff1b6e69SJohannes Berg  * struct cfg80211_wowlan_trig_pkt_pattern - packet pattern
1194ff1b6e69SJohannes Berg  * @mask: bitmask where to match pattern and where to ignore bytes,
1195ff1b6e69SJohannes Berg  *	one bit per byte, in same format as nl80211
1196ff1b6e69SJohannes Berg  * @pattern: bytes to match where bitmask is 1
1197ff1b6e69SJohannes Berg  * @pattern_len: length of pattern (in bytes)
1198ff1b6e69SJohannes Berg  *
1199ff1b6e69SJohannes Berg  * Internal note: @mask and @pattern are allocated in one chunk of
1200ff1b6e69SJohannes Berg  * memory, free @mask only!
1201ff1b6e69SJohannes Berg  */
1202ff1b6e69SJohannes Berg struct cfg80211_wowlan_trig_pkt_pattern {
1203ff1b6e69SJohannes Berg 	u8 *mask, *pattern;
1204ff1b6e69SJohannes Berg 	int pattern_len;
1205ff1b6e69SJohannes Berg };
1206ff1b6e69SJohannes Berg 
1207ff1b6e69SJohannes Berg /**
1208ff1b6e69SJohannes Berg  * struct cfg80211_wowlan - Wake on Wireless-LAN support info
1209ff1b6e69SJohannes Berg  *
1210ff1b6e69SJohannes Berg  * This structure defines the enabled WoWLAN triggers for the device.
1211ff1b6e69SJohannes Berg  * @any: wake up on any activity -- special trigger if device continues
1212ff1b6e69SJohannes Berg  *	operating as normal during suspend
1213ff1b6e69SJohannes Berg  * @disconnect: wake up if getting disconnected
1214ff1b6e69SJohannes Berg  * @magic_pkt: wake up on receiving magic packet
1215ff1b6e69SJohannes Berg  * @patterns: wake up on receiving packet matching a pattern
1216ff1b6e69SJohannes Berg  * @n_patterns: number of patterns
121777dbbb13SJohannes Berg  * @gtk_rekey_failure: wake up on GTK rekey failure
121877dbbb13SJohannes Berg  * @eap_identity_req: wake up on EAP identity request packet
121977dbbb13SJohannes Berg  * @four_way_handshake: wake up on 4-way handshake
122077dbbb13SJohannes Berg  * @rfkill_release: wake up when rfkill is released
1221ff1b6e69SJohannes Berg  */
1222ff1b6e69SJohannes Berg struct cfg80211_wowlan {
122377dbbb13SJohannes Berg 	bool any, disconnect, magic_pkt, gtk_rekey_failure,
122477dbbb13SJohannes Berg 	     eap_identity_req, four_way_handshake,
122577dbbb13SJohannes Berg 	     rfkill_release;
1226ff1b6e69SJohannes Berg 	struct cfg80211_wowlan_trig_pkt_pattern *patterns;
1227ff1b6e69SJohannes Berg 	int n_patterns;
1228ff1b6e69SJohannes Berg };
1229ff1b6e69SJohannes Berg 
1230ff1b6e69SJohannes Berg /**
1231e5497d76SJohannes Berg  * struct cfg80211_gtk_rekey_data - rekey data
1232e5497d76SJohannes Berg  * @kek: key encryption key
1233e5497d76SJohannes Berg  * @kck: key confirmation key
1234e5497d76SJohannes Berg  * @replay_ctr: replay counter
1235e5497d76SJohannes Berg  */
1236e5497d76SJohannes Berg struct cfg80211_gtk_rekey_data {
1237e5497d76SJohannes Berg 	u8 kek[NL80211_KEK_LEN];
1238e5497d76SJohannes Berg 	u8 kck[NL80211_KCK_LEN];
1239e5497d76SJohannes Berg 	u8 replay_ctr[NL80211_REPLAY_CTR_LEN];
1240e5497d76SJohannes Berg };
1241e5497d76SJohannes Berg 
1242e5497d76SJohannes Berg /**
1243704232c2SJohannes Berg  * struct cfg80211_ops - backend description for wireless configuration
1244704232c2SJohannes Berg  *
1245704232c2SJohannes Berg  * This struct is registered by fullmac card drivers and/or wireless stacks
1246704232c2SJohannes Berg  * in order to handle configuration requests on their interfaces.
1247704232c2SJohannes Berg  *
1248704232c2SJohannes Berg  * All callbacks except where otherwise noted should return 0
1249704232c2SJohannes Berg  * on success or a negative error code.
1250704232c2SJohannes Berg  *
125143fb45cbSJohannes Berg  * All operations are currently invoked under rtnl for consistency with the
125243fb45cbSJohannes Berg  * wireless extensions but this is subject to reevaluation as soon as this
125343fb45cbSJohannes Berg  * code is used more widely and we have a first user without wext.
125443fb45cbSJohannes Berg  *
1255ff1b6e69SJohannes Berg  * @suspend: wiphy device needs to be suspended. The variable @wow will
1256ff1b6e69SJohannes Berg  *	be %NULL or contain the enabled Wake-on-Wireless triggers that are
1257ff1b6e69SJohannes Berg  *	configured for the device.
12580378b3f1SJohannes Berg  * @resume: wiphy device needs to be resumed
12590378b3f1SJohannes Berg  *
126060719ffdSJohannes Berg  * @add_virtual_intf: create a new virtual interface with the given name,
1261463d0183SJohannes Berg  *	must set the struct wireless_dev's iftype. Beware: You must create
1262f9e10ce4SJohannes Berg  *	the new netdev in the wiphy's network namespace! Returns the netdev,
1263f9e10ce4SJohannes Berg  *	or an ERR_PTR.
1264704232c2SJohannes Berg  *
1265704232c2SJohannes Berg  * @del_virtual_intf: remove the virtual interface determined by ifindex.
126655682965SJohannes Berg  *
126760719ffdSJohannes Berg  * @change_virtual_intf: change type/configuration of virtual interface,
126860719ffdSJohannes Berg  *	keep the struct wireless_dev's iftype updated.
126955682965SJohannes Berg  *
127041ade00fSJohannes Berg  * @add_key: add a key with the given parameters. @mac_addr will be %NULL
127141ade00fSJohannes Berg  *	when adding a group key.
127241ade00fSJohannes Berg  *
127341ade00fSJohannes Berg  * @get_key: get information about the key with the given parameters.
127441ade00fSJohannes Berg  *	@mac_addr will be %NULL when requesting information for a group
127541ade00fSJohannes Berg  *	key. All pointers given to the @callback function need not be valid
1276e3da574aSJohannes Berg  *	after it returns. This function should return an error if it is
1277e3da574aSJohannes Berg  *	not possible to retrieve the key, -ENOENT if it doesn't exist.
127841ade00fSJohannes Berg  *
127941ade00fSJohannes Berg  * @del_key: remove a key given the @mac_addr (%NULL for a group key)
1280e3da574aSJohannes Berg  *	and @key_index, return -ENOENT if the key doesn't exist.
128141ade00fSJohannes Berg  *
128241ade00fSJohannes Berg  * @set_default_key: set the default key on an interface
1283ed1b6cc7SJohannes Berg  *
12843cfcf6acSJouni Malinen  * @set_default_mgmt_key: set the default management frame key on an interface
12853cfcf6acSJouni Malinen  *
1286e5497d76SJohannes Berg  * @set_rekey_data: give the data necessary for GTK rekeying to the driver
1287e5497d76SJohannes Berg  *
1288ed1b6cc7SJohannes Berg  * @add_beacon: Add a beacon with given parameters, @head, @interval
1289ed1b6cc7SJohannes Berg  *	and @dtim_period will be valid, @tail is optional.
1290ed1b6cc7SJohannes Berg  * @set_beacon: Change the beacon parameters for an access point mode
1291ed1b6cc7SJohannes Berg  *	interface. This should reject the call when no beacon has been
1292ed1b6cc7SJohannes Berg  *	configured.
1293ed1b6cc7SJohannes Berg  * @del_beacon: Remove beacon configuration and stop sending the beacon.
12945727ef1bSJohannes Berg  *
12955727ef1bSJohannes Berg  * @add_station: Add a new station.
12965727ef1bSJohannes Berg  * @del_station: Remove a station; @mac may be NULL to remove all stations.
12975727ef1bSJohannes Berg  * @change_station: Modify a given station.
1298abe37c4bSJohannes Berg  * @get_station: get station information for the station identified by @mac
1299abe37c4bSJohannes Berg  * @dump_station: dump station callback -- resume dump at index @idx
1300abe37c4bSJohannes Berg  *
1301abe37c4bSJohannes Berg  * @add_mpath: add a fixed mesh path
1302abe37c4bSJohannes Berg  * @del_mpath: delete a given mesh path
1303abe37c4bSJohannes Berg  * @change_mpath: change a given mesh path
1304abe37c4bSJohannes Berg  * @get_mpath: get a mesh path for the given parameters
1305abe37c4bSJohannes Berg  * @dump_mpath: dump mesh path callback -- resume dump at index @idx
1306f52555a4SJohannes Berg  * @join_mesh: join the mesh network with the specified parameters
1307f52555a4SJohannes Berg  * @leave_mesh: leave the current mesh network
13082ec600d6SLuis Carlos Cobo  *
130924bdd9f4SJavier Cardona  * @get_mesh_config: Get the current mesh configuration
131093da9cc1Scolin@cozybit.com  *
131124bdd9f4SJavier Cardona  * @update_mesh_config: Update mesh parameters on a running mesh.
131293da9cc1Scolin@cozybit.com  *	The mask is a bitfield which tells us which parameters to
131393da9cc1Scolin@cozybit.com  *	set, and which to leave alone.
131493da9cc1Scolin@cozybit.com  *
13159f1ba906SJouni Malinen  * @change_bss: Modify parameters for a given BSS.
131631888487SJouni Malinen  *
131731888487SJouni Malinen  * @set_txq_params: Set TX queue parameters
131872bdcf34SJouni Malinen  *
1319f444de05SJohannes Berg  * @set_channel: Set channel for a given wireless interface. Some devices
1320f444de05SJohannes Berg  *	may support multi-channel operation (by channel hopping) so cfg80211
1321f444de05SJohannes Berg  *	doesn't verify much. Note, however, that the passed netdev may be
1322f444de05SJohannes Berg  *	%NULL as well if the user requested changing the channel for the
1323f444de05SJohannes Berg  *	device itself, or for a monitor interface.
13249aed3cc1SJouni Malinen  *
13252a519311SJohannes Berg  * @scan: Request to do a scan. If returning zero, the scan request is given
13262a519311SJohannes Berg  *	the driver, and will be valid until passed to cfg80211_scan_done().
13272a519311SJohannes Berg  *	For scan results, call cfg80211_inform_bss(); you can call this outside
13282a519311SJohannes Berg  *	the scan/scan_done bracket too.
1329636a5d36SJouni Malinen  *
1330636a5d36SJouni Malinen  * @auth: Request to authenticate with the specified peer
1331636a5d36SJouni Malinen  * @assoc: Request to (re)associate with the specified peer
1332636a5d36SJouni Malinen  * @deauth: Request to deauthenticate from the specified peer
1333636a5d36SJouni Malinen  * @disassoc: Request to disassociate from the specified peer
133404a773adSJohannes Berg  *
1335b23aa676SSamuel Ortiz  * @connect: Connect to the ESS with the specified parameters. When connected,
1336b23aa676SSamuel Ortiz  *	call cfg80211_connect_result() with status code %WLAN_STATUS_SUCCESS.
1337b23aa676SSamuel Ortiz  *	If the connection fails for some reason, call cfg80211_connect_result()
1338b23aa676SSamuel Ortiz  *	with the status from the AP.
1339b23aa676SSamuel Ortiz  * @disconnect: Disconnect from the BSS/ESS.
1340b23aa676SSamuel Ortiz  *
134104a773adSJohannes Berg  * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
134204a773adSJohannes Berg  *	cfg80211_ibss_joined(), also call that function when changing BSSID due
134304a773adSJohannes Berg  *	to a merge.
134404a773adSJohannes Berg  * @leave_ibss: Leave the IBSS.
1345b9a5f8caSJouni Malinen  *
1346b9a5f8caSJouni Malinen  * @set_wiphy_params: Notify that wiphy parameters have changed;
1347b9a5f8caSJouni Malinen  *	@changed bitfield (see &enum wiphy_params_flags) describes which values
1348b9a5f8caSJouni Malinen  *	have changed. The actual parameter values are available in
1349b9a5f8caSJouni Malinen  *	struct wiphy. If returning an error, no value should be changed.
13507643a2c3SJohannes Berg  *
13517643a2c3SJohannes Berg  * @set_tx_power: set the transmit power according to the parameters
13527643a2c3SJohannes Berg  * @get_tx_power: store the current TX power into the dbm variable;
13531f87f7d3SJohannes Berg  *	return 0 if successful
13541f87f7d3SJohannes Berg  *
1355abe37c4bSJohannes Berg  * @set_wds_peer: set the WDS peer for a WDS interface
1356abe37c4bSJohannes Berg  *
13571f87f7d3SJohannes Berg  * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
13581f87f7d3SJohannes Berg  *	functions to adjust rfkill hw state
1359aff89a9bSJohannes Berg  *
136061fa713cSHolger Schurig  * @dump_survey: get site survey information.
136161fa713cSHolger Schurig  *
13629588bbd5SJouni Malinen  * @remain_on_channel: Request the driver to remain awake on the specified
13639588bbd5SJouni Malinen  *	channel for the specified duration to complete an off-channel
13649588bbd5SJouni Malinen  *	operation (e.g., public action frame exchange). When the driver is
13659588bbd5SJouni Malinen  *	ready on the requested channel, it must indicate this with an event
13669588bbd5SJouni Malinen  *	notification by calling cfg80211_ready_on_channel().
13679588bbd5SJouni Malinen  * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
13689588bbd5SJouni Malinen  *	This allows the operation to be terminated prior to timeout based on
13699588bbd5SJouni Malinen  *	the duration value.
1370f7ca38dfSJohannes Berg  * @mgmt_tx: Transmit a management frame.
1371f7ca38dfSJohannes Berg  * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
1372f7ca38dfSJohannes Berg  *	frame on another channel
13739588bbd5SJouni Malinen  *
1374aff89a9bSJohannes Berg  * @testmode_cmd: run a test mode command
137571063f0eSWey-Yi Guy  * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
137671063f0eSWey-Yi Guy  *	used by the function, but 0 and 1 must not be touched. Additionally,
137771063f0eSWey-Yi Guy  *	return error codes other than -ENOBUFS and -ENOENT will terminate the
137871063f0eSWey-Yi Guy  *	dump and return to userspace with an error, so be careful. If any data
137971063f0eSWey-Yi Guy  *	was passed in from userspace then the data/len arguments will be present
138071063f0eSWey-Yi Guy  *	and point to the data contained in %NL80211_ATTR_TESTDATA.
138167fbb16bSSamuel Ortiz  *
1382abe37c4bSJohannes Berg  * @set_bitrate_mask: set the bitrate mask configuration
1383abe37c4bSJohannes Berg  *
138467fbb16bSSamuel Ortiz  * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
138567fbb16bSSamuel Ortiz  *	devices running firmwares capable of generating the (re) association
138667fbb16bSSamuel Ortiz  *	RSN IE. It allows for faster roaming between WPA2 BSSIDs.
138767fbb16bSSamuel Ortiz  * @del_pmksa: Delete a cached PMKID.
138867fbb16bSSamuel Ortiz  * @flush_pmksa: Flush all cached PMKIDs.
13899043f3b8SJuuso Oikarinen  * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
13909043f3b8SJuuso Oikarinen  *	allows the driver to adjust the dynamic ps timeout value.
1391d6dc1a38SJuuso Oikarinen  * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
1392807f8a8cSLuciano Coelho  * @sched_scan_start: Tell the driver to start a scheduled scan.
1393807f8a8cSLuciano Coelho  * @sched_scan_stop: Tell the driver to stop an ongoing scheduled
1394807f8a8cSLuciano Coelho  *	scan.  The driver_initiated flag specifies whether the driver
1395807f8a8cSLuciano Coelho  *	itself has informed that the scan has stopped.
139667fbb16bSSamuel Ortiz  *
1397271733cfSJohannes Berg  * @mgmt_frame_register: Notify driver that a management frame type was
1398271733cfSJohannes Berg  *	registered. Note that this callback may not sleep, and cannot run
1399271733cfSJohannes Berg  *	concurrently with itself.
1400547025d5SBruno Randolf  *
1401547025d5SBruno Randolf  * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
1402547025d5SBruno Randolf  *	Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
1403547025d5SBruno Randolf  *	reject TX/RX mask combinations they cannot support by returning -EINVAL
1404547025d5SBruno Randolf  *	(also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
1405547025d5SBruno Randolf  *
1406547025d5SBruno Randolf  * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
14073677713bSJohn W. Linville  *
14083677713bSJohn W. Linville  * @set_ringparam: Set tx and rx ring sizes.
14093677713bSJohn W. Linville  *
14103677713bSJohn W. Linville  * @get_ringparam: Get tx and rx ring current and maximum sizes.
1411704232c2SJohannes Berg  */
1412704232c2SJohannes Berg struct cfg80211_ops {
1413ff1b6e69SJohannes Berg 	int	(*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
14140378b3f1SJohannes Berg 	int	(*resume)(struct wiphy *wiphy);
14150378b3f1SJohannes Berg 
1416f9e10ce4SJohannes Berg 	struct net_device * (*add_virtual_intf)(struct wiphy *wiphy,
1417f9e10ce4SJohannes Berg 						char *name,
1418f9e10ce4SJohannes Berg 						enum nl80211_iftype type,
1419f9e10ce4SJohannes Berg 						u32 *flags,
14202ec600d6SLuis Carlos Cobo 						struct vif_params *params);
1421463d0183SJohannes Berg 	int	(*del_virtual_intf)(struct wiphy *wiphy, struct net_device *dev);
1422e36d56b6SJohannes Berg 	int	(*change_virtual_intf)(struct wiphy *wiphy,
1423e36d56b6SJohannes Berg 				       struct net_device *dev,
14242ec600d6SLuis Carlos Cobo 				       enum nl80211_iftype type, u32 *flags,
14252ec600d6SLuis Carlos Cobo 				       struct vif_params *params);
142641ade00fSJohannes Berg 
142741ade00fSJohannes Berg 	int	(*add_key)(struct wiphy *wiphy, struct net_device *netdev,
1428e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr,
142941ade00fSJohannes Berg 			   struct key_params *params);
143041ade00fSJohannes Berg 	int	(*get_key)(struct wiphy *wiphy, struct net_device *netdev,
1431e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr,
1432e31b8213SJohannes Berg 			   void *cookie,
143341ade00fSJohannes Berg 			   void (*callback)(void *cookie, struct key_params*));
143441ade00fSJohannes Berg 	int	(*del_key)(struct wiphy *wiphy, struct net_device *netdev,
1435e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr);
143641ade00fSJohannes Berg 	int	(*set_default_key)(struct wiphy *wiphy,
143741ade00fSJohannes Berg 				   struct net_device *netdev,
1438dbd2fd65SJohannes Berg 				   u8 key_index, bool unicast, bool multicast);
14393cfcf6acSJouni Malinen 	int	(*set_default_mgmt_key)(struct wiphy *wiphy,
14403cfcf6acSJouni Malinen 					struct net_device *netdev,
14413cfcf6acSJouni Malinen 					u8 key_index);
1442ed1b6cc7SJohannes Berg 
1443ed1b6cc7SJohannes Berg 	int	(*add_beacon)(struct wiphy *wiphy, struct net_device *dev,
1444ed1b6cc7SJohannes Berg 			      struct beacon_parameters *info);
1445ed1b6cc7SJohannes Berg 	int	(*set_beacon)(struct wiphy *wiphy, struct net_device *dev,
1446ed1b6cc7SJohannes Berg 			      struct beacon_parameters *info);
1447ed1b6cc7SJohannes Berg 	int	(*del_beacon)(struct wiphy *wiphy, struct net_device *dev);
14485727ef1bSJohannes Berg 
14495727ef1bSJohannes Berg 
14505727ef1bSJohannes Berg 	int	(*add_station)(struct wiphy *wiphy, struct net_device *dev,
14515727ef1bSJohannes Berg 			       u8 *mac, struct station_parameters *params);
14525727ef1bSJohannes Berg 	int	(*del_station)(struct wiphy *wiphy, struct net_device *dev,
14535727ef1bSJohannes Berg 			       u8 *mac);
14545727ef1bSJohannes Berg 	int	(*change_station)(struct wiphy *wiphy, struct net_device *dev,
14555727ef1bSJohannes Berg 				  u8 *mac, struct station_parameters *params);
1456fd5b74dcSJohannes Berg 	int	(*get_station)(struct wiphy *wiphy, struct net_device *dev,
14572ec600d6SLuis Carlos Cobo 			       u8 *mac, struct station_info *sinfo);
14582ec600d6SLuis Carlos Cobo 	int	(*dump_station)(struct wiphy *wiphy, struct net_device *dev,
14592ec600d6SLuis Carlos Cobo 			       int idx, u8 *mac, struct station_info *sinfo);
14602ec600d6SLuis Carlos Cobo 
14612ec600d6SLuis Carlos Cobo 	int	(*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
14622ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop);
14632ec600d6SLuis Carlos Cobo 	int	(*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
14642ec600d6SLuis Carlos Cobo 			       u8 *dst);
14652ec600d6SLuis Carlos Cobo 	int	(*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
14662ec600d6SLuis Carlos Cobo 				  u8 *dst, u8 *next_hop);
14672ec600d6SLuis Carlos Cobo 	int	(*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
14682ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop,
14692ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
14702ec600d6SLuis Carlos Cobo 	int	(*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
14712ec600d6SLuis Carlos Cobo 			       int idx, u8 *dst, u8 *next_hop,
14722ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
147324bdd9f4SJavier Cardona 	int	(*get_mesh_config)(struct wiphy *wiphy,
147493da9cc1Scolin@cozybit.com 				struct net_device *dev,
147593da9cc1Scolin@cozybit.com 				struct mesh_config *conf);
147624bdd9f4SJavier Cardona 	int	(*update_mesh_config)(struct wiphy *wiphy,
147729cbe68cSJohannes Berg 				      struct net_device *dev, u32 mask,
147829cbe68cSJohannes Berg 				      const struct mesh_config *nconf);
147929cbe68cSJohannes Berg 	int	(*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
148029cbe68cSJohannes Berg 			     const struct mesh_config *conf,
148129cbe68cSJohannes Berg 			     const struct mesh_setup *setup);
148229cbe68cSJohannes Berg 	int	(*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
148329cbe68cSJohannes Berg 
14849f1ba906SJouni Malinen 	int	(*change_bss)(struct wiphy *wiphy, struct net_device *dev,
14859f1ba906SJouni Malinen 			      struct bss_parameters *params);
148631888487SJouni Malinen 
148731888487SJouni Malinen 	int	(*set_txq_params)(struct wiphy *wiphy,
148831888487SJouni Malinen 				  struct ieee80211_txq_params *params);
148972bdcf34SJouni Malinen 
1490f444de05SJohannes Berg 	int	(*set_channel)(struct wiphy *wiphy, struct net_device *dev,
149172bdcf34SJouni Malinen 			       struct ieee80211_channel *chan,
1492094d05dcSSujith 			       enum nl80211_channel_type channel_type);
14939aed3cc1SJouni Malinen 
14942a519311SJohannes Berg 	int	(*scan)(struct wiphy *wiphy, struct net_device *dev,
14952a519311SJohannes Berg 			struct cfg80211_scan_request *request);
1496636a5d36SJouni Malinen 
1497636a5d36SJouni Malinen 	int	(*auth)(struct wiphy *wiphy, struct net_device *dev,
1498636a5d36SJouni Malinen 			struct cfg80211_auth_request *req);
1499636a5d36SJouni Malinen 	int	(*assoc)(struct wiphy *wiphy, struct net_device *dev,
1500636a5d36SJouni Malinen 			 struct cfg80211_assoc_request *req);
1501636a5d36SJouni Malinen 	int	(*deauth)(struct wiphy *wiphy, struct net_device *dev,
1502667503ddSJohannes Berg 			  struct cfg80211_deauth_request *req,
1503667503ddSJohannes Berg 			  void *cookie);
1504636a5d36SJouni Malinen 	int	(*disassoc)(struct wiphy *wiphy, struct net_device *dev,
1505667503ddSJohannes Berg 			    struct cfg80211_disassoc_request *req,
1506667503ddSJohannes Berg 			    void *cookie);
150704a773adSJohannes Berg 
1508b23aa676SSamuel Ortiz 	int	(*connect)(struct wiphy *wiphy, struct net_device *dev,
1509b23aa676SSamuel Ortiz 			   struct cfg80211_connect_params *sme);
1510b23aa676SSamuel Ortiz 	int	(*disconnect)(struct wiphy *wiphy, struct net_device *dev,
1511b23aa676SSamuel Ortiz 			      u16 reason_code);
1512b23aa676SSamuel Ortiz 
151304a773adSJohannes Berg 	int	(*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
151404a773adSJohannes Berg 			     struct cfg80211_ibss_params *params);
151504a773adSJohannes Berg 	int	(*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
1516b9a5f8caSJouni Malinen 
1517b9a5f8caSJouni Malinen 	int	(*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
15187643a2c3SJohannes Berg 
15197643a2c3SJohannes Berg 	int	(*set_tx_power)(struct wiphy *wiphy,
1520fa61cf70SJuuso Oikarinen 				enum nl80211_tx_power_setting type, int mbm);
15217643a2c3SJohannes Berg 	int	(*get_tx_power)(struct wiphy *wiphy, int *dbm);
15221f87f7d3SJohannes Berg 
1523ab737a4fSJohannes Berg 	int	(*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
1524388ac775SJohannes Berg 				const u8 *addr);
1525ab737a4fSJohannes Berg 
15261f87f7d3SJohannes Berg 	void	(*rfkill_poll)(struct wiphy *wiphy);
1527aff89a9bSJohannes Berg 
1528aff89a9bSJohannes Berg #ifdef CONFIG_NL80211_TESTMODE
1529aff89a9bSJohannes Berg 	int	(*testmode_cmd)(struct wiphy *wiphy, void *data, int len);
153071063f0eSWey-Yi Guy 	int	(*testmode_dump)(struct wiphy *wiphy, struct sk_buff *skb,
153171063f0eSWey-Yi Guy 				 struct netlink_callback *cb,
153271063f0eSWey-Yi Guy 				 void *data, int len);
1533aff89a9bSJohannes Berg #endif
1534bc92afd9SJohannes Berg 
15359930380fSJohannes Berg 	int	(*set_bitrate_mask)(struct wiphy *wiphy,
15369930380fSJohannes Berg 				    struct net_device *dev,
15379930380fSJohannes Berg 				    const u8 *peer,
15389930380fSJohannes Berg 				    const struct cfg80211_bitrate_mask *mask);
15399930380fSJohannes Berg 
154061fa713cSHolger Schurig 	int	(*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
154161fa713cSHolger Schurig 			int idx, struct survey_info *info);
154261fa713cSHolger Schurig 
154367fbb16bSSamuel Ortiz 	int	(*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
154467fbb16bSSamuel Ortiz 			     struct cfg80211_pmksa *pmksa);
154567fbb16bSSamuel Ortiz 	int	(*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
154667fbb16bSSamuel Ortiz 			     struct cfg80211_pmksa *pmksa);
154767fbb16bSSamuel Ortiz 	int	(*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
154867fbb16bSSamuel Ortiz 
15499588bbd5SJouni Malinen 	int	(*remain_on_channel)(struct wiphy *wiphy,
15509588bbd5SJouni Malinen 				     struct net_device *dev,
15519588bbd5SJouni Malinen 				     struct ieee80211_channel *chan,
15529588bbd5SJouni Malinen 				     enum nl80211_channel_type channel_type,
15539588bbd5SJouni Malinen 				     unsigned int duration,
15549588bbd5SJouni Malinen 				     u64 *cookie);
15559588bbd5SJouni Malinen 	int	(*cancel_remain_on_channel)(struct wiphy *wiphy,
15569588bbd5SJouni Malinen 					    struct net_device *dev,
15579588bbd5SJouni Malinen 					    u64 cookie);
15589588bbd5SJouni Malinen 
15592e161f78SJohannes Berg 	int	(*mgmt_tx)(struct wiphy *wiphy, struct net_device *dev,
1560f7ca38dfSJohannes Berg 			  struct ieee80211_channel *chan, bool offchan,
1561026331c4SJouni Malinen 			  enum nl80211_channel_type channel_type,
1562f7ca38dfSJohannes Berg 			  bool channel_type_valid, unsigned int wait,
1563026331c4SJouni Malinen 			  const u8 *buf, size_t len, u64 *cookie);
1564f7ca38dfSJohannes Berg 	int	(*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
1565f7ca38dfSJohannes Berg 				       struct net_device *dev,
1566f7ca38dfSJohannes Berg 				       u64 cookie);
1567026331c4SJouni Malinen 
1568bc92afd9SJohannes Berg 	int	(*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
1569bc92afd9SJohannes Berg 				  bool enabled, int timeout);
1570d6dc1a38SJuuso Oikarinen 
1571d6dc1a38SJuuso Oikarinen 	int	(*set_cqm_rssi_config)(struct wiphy *wiphy,
1572d6dc1a38SJuuso Oikarinen 				       struct net_device *dev,
1573d6dc1a38SJuuso Oikarinen 				       s32 rssi_thold, u32 rssi_hyst);
1574271733cfSJohannes Berg 
1575271733cfSJohannes Berg 	void	(*mgmt_frame_register)(struct wiphy *wiphy,
1576271733cfSJohannes Berg 				       struct net_device *dev,
1577271733cfSJohannes Berg 				       u16 frame_type, bool reg);
1578afe0cbf8SBruno Randolf 
1579afe0cbf8SBruno Randolf 	int	(*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
1580afe0cbf8SBruno Randolf 	int	(*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
15813677713bSJohn W. Linville 
15823677713bSJohn W. Linville 	int	(*set_ringparam)(struct wiphy *wiphy, u32 tx, u32 rx);
15833677713bSJohn W. Linville 	void	(*get_ringparam)(struct wiphy *wiphy,
15843677713bSJohn W. Linville 				 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
1585807f8a8cSLuciano Coelho 
1586807f8a8cSLuciano Coelho 	int	(*sched_scan_start)(struct wiphy *wiphy,
1587807f8a8cSLuciano Coelho 				struct net_device *dev,
1588807f8a8cSLuciano Coelho 				struct cfg80211_sched_scan_request *request);
158985a9994aSLuciano Coelho 	int	(*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev);
1590e5497d76SJohannes Berg 
1591e5497d76SJohannes Berg 	int	(*set_rekey_data)(struct wiphy *wiphy, struct net_device *dev,
1592e5497d76SJohannes Berg 				  struct cfg80211_gtk_rekey_data *data);
1593704232c2SJohannes Berg };
1594704232c2SJohannes Berg 
1595d3236553SJohannes Berg /*
1596d3236553SJohannes Berg  * wireless hardware and networking interfaces structures
1597d3236553SJohannes Berg  * and registration/helper functions
1598d3236553SJohannes Berg  */
1599d3236553SJohannes Berg 
1600d3236553SJohannes Berg /**
16015be83de5SJohannes Berg  * enum wiphy_flags - wiphy capability flags
16025be83de5SJohannes Berg  *
16035be83de5SJohannes Berg  * @WIPHY_FLAG_CUSTOM_REGULATORY:  tells us the driver for this device
1604d3236553SJohannes Berg  * 	has its own custom regulatory domain and cannot identify the
1605d3236553SJohannes Berg  * 	ISO / IEC 3166 alpha2 it belongs to. When this is enabled
1606d3236553SJohannes Berg  * 	we will disregard the first regulatory hint (when the
1607d3236553SJohannes Berg  * 	initiator is %REGDOM_SET_BY_CORE).
16085be83de5SJohannes Berg  * @WIPHY_FLAG_STRICT_REGULATORY: tells us the driver for this device will
16095be83de5SJohannes Berg  *	ignore regulatory domain settings until it gets its own regulatory
1610749b527bSLuis R. Rodriguez  *	domain via its regulatory_hint() unless the regulatory hint is
1611749b527bSLuis R. Rodriguez  *	from a country IE. After its gets its own regulatory domain it will
1612749b527bSLuis R. Rodriguez  *	only allow further regulatory domain settings to further enhance
1613749b527bSLuis R. Rodriguez  *	compliance. For example if channel 13 and 14 are disabled by this
1614749b527bSLuis R. Rodriguez  *	regulatory domain no user regulatory domain can enable these channels
1615749b527bSLuis R. Rodriguez  *	at a later time. This can be used for devices which do not have
1616749b527bSLuis R. Rodriguez  *	calibration information guaranteed for frequencies or settings
1617749b527bSLuis R. Rodriguez  *	outside of its regulatory domain.
16185be83de5SJohannes Berg  * @WIPHY_FLAG_DISABLE_BEACON_HINTS: enable this if your driver needs to ensure
16195be83de5SJohannes Berg  *	that passive scan flags and beaconing flags may not be lifted by
16205be83de5SJohannes Berg  *	cfg80211 due to regulatory beacon hints. For more information on beacon
162137184244SLuis R. Rodriguez  *	hints read the documenation for regulatory_hint_found_beacon()
16225be83de5SJohannes Berg  * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
16235be83de5SJohannes Berg  *	wiphy at all
16247527a782SJohannes Berg  * @WIPHY_FLAG_ENFORCE_COMBINATIONS: Set this flag to enforce interface
16257527a782SJohannes Berg  *	combinations for this device. This flag is used for backward
16267527a782SJohannes Berg  *	compatibility only until all drivers advertise combinations and
16277527a782SJohannes Berg  *	they will always be enforced.
16285be83de5SJohannes Berg  * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
16295be83de5SJohannes Berg  *	by default -- this flag will be set depending on the kernel's default
16305be83de5SJohannes Berg  *	on wiphy_new(), but can be changed by the driver if it has a good
16315be83de5SJohannes Berg  *	reason to override the default
16329bc383deSJohannes Berg  * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
16339bc383deSJohannes Berg  *	on a VLAN interface)
16349bc383deSJohannes Berg  * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
1635c0692b8fSJohannes Berg  * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
1636c0692b8fSJohannes Berg  *	control port protocol ethertype. The device also honours the
1637c0692b8fSJohannes Berg  *	control_port_no_encrypt flag.
1638e31b8213SJohannes Berg  * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
163915d5dda6SJavier Cardona  * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
164015d5dda6SJavier Cardona  *	auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
16411ba01458SRandy Dunlap  * @WIPHY_FLAG_SUPPORTS_SCHED_SCAN: The device supports scheduled scans.
1642f4b34b55SVivek Natarajan  * @WIPHY_FLAG_SUPPORTS_FW_ROAM: The device supports roaming feature in the
1643f4b34b55SVivek Natarajan  *	firmware.
1644cedb5412SEliad Peller  * @WIPHY_FLAG_AP_UAPSD: The device supports uapsd on AP.
16455be83de5SJohannes Berg  */
16465be83de5SJohannes Berg enum wiphy_flags {
16475be83de5SJohannes Berg 	WIPHY_FLAG_CUSTOM_REGULATORY		= BIT(0),
16485be83de5SJohannes Berg 	WIPHY_FLAG_STRICT_REGULATORY		= BIT(1),
16495be83de5SJohannes Berg 	WIPHY_FLAG_DISABLE_BEACON_HINTS		= BIT(2),
16505be83de5SJohannes Berg 	WIPHY_FLAG_NETNS_OK			= BIT(3),
16515be83de5SJohannes Berg 	WIPHY_FLAG_PS_ON_BY_DEFAULT		= BIT(4),
16529bc383deSJohannes Berg 	WIPHY_FLAG_4ADDR_AP			= BIT(5),
16539bc383deSJohannes Berg 	WIPHY_FLAG_4ADDR_STATION		= BIT(6),
1654c0692b8fSJohannes Berg 	WIPHY_FLAG_CONTROL_PORT_PROTOCOL	= BIT(7),
1655309075cfSJussi Kivilinna 	WIPHY_FLAG_IBSS_RSN			= BIT(8),
165615d5dda6SJavier Cardona 	WIPHY_FLAG_MESH_AUTH			= BIT(10),
1657807f8a8cSLuciano Coelho 	WIPHY_FLAG_SUPPORTS_SCHED_SCAN		= BIT(11),
16587527a782SJohannes Berg 	WIPHY_FLAG_ENFORCE_COMBINATIONS		= BIT(12),
1659f4b34b55SVivek Natarajan 	WIPHY_FLAG_SUPPORTS_FW_ROAM		= BIT(13),
1660cedb5412SEliad Peller 	WIPHY_FLAG_AP_UAPSD			= BIT(14),
16617527a782SJohannes Berg };
16627527a782SJohannes Berg 
16637527a782SJohannes Berg /**
16647527a782SJohannes Berg  * struct ieee80211_iface_limit - limit on certain interface types
16657527a782SJohannes Berg  * @max: maximum number of interfaces of these types
16667527a782SJohannes Berg  * @types: interface types (bits)
16677527a782SJohannes Berg  */
16687527a782SJohannes Berg struct ieee80211_iface_limit {
16697527a782SJohannes Berg 	u16 max;
16707527a782SJohannes Berg 	u16 types;
16717527a782SJohannes Berg };
16727527a782SJohannes Berg 
16737527a782SJohannes Berg /**
16747527a782SJohannes Berg  * struct ieee80211_iface_combination - possible interface combination
16757527a782SJohannes Berg  * @limits: limits for the given interface types
16767527a782SJohannes Berg  * @n_limits: number of limitations
16777527a782SJohannes Berg  * @num_different_channels: can use up to this many different channels
16787527a782SJohannes Berg  * @max_interfaces: maximum number of interfaces in total allowed in this
16797527a782SJohannes Berg  *	group
16807527a782SJohannes Berg  * @beacon_int_infra_match: In this combination, the beacon intervals
16817527a782SJohannes Berg  *	between infrastructure and AP types must match. This is required
16827527a782SJohannes Berg  *	only in special cases.
16837527a782SJohannes Berg  *
16847527a782SJohannes Berg  * These examples can be expressed as follows:
16857527a782SJohannes Berg  *
16867527a782SJohannes Berg  * Allow #STA <= 1, #AP <= 1, matching BI, channels = 1, 2 total:
16877527a782SJohannes Berg  *
16887527a782SJohannes Berg  *  struct ieee80211_iface_limit limits1[] = {
16897527a782SJohannes Berg  *	{ .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
16907527a782SJohannes Berg  *	{ .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
16917527a782SJohannes Berg  *  };
16927527a782SJohannes Berg  *  struct ieee80211_iface_combination combination1 = {
16937527a782SJohannes Berg  *	.limits = limits1,
16947527a782SJohannes Berg  *	.n_limits = ARRAY_SIZE(limits1),
16957527a782SJohannes Berg  *	.max_interfaces = 2,
16967527a782SJohannes Berg  *	.beacon_int_infra_match = true,
16977527a782SJohannes Berg  *  };
16987527a782SJohannes Berg  *
16997527a782SJohannes Berg  *
17007527a782SJohannes Berg  * Allow #{AP, P2P-GO} <= 8, channels = 1, 8 total:
17017527a782SJohannes Berg  *
17027527a782SJohannes Berg  *  struct ieee80211_iface_limit limits2[] = {
17037527a782SJohannes Berg  *	{ .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
17047527a782SJohannes Berg  *			     BIT(NL80211_IFTYPE_P2P_GO), },
17057527a782SJohannes Berg  *  };
17067527a782SJohannes Berg  *  struct ieee80211_iface_combination combination2 = {
17077527a782SJohannes Berg  *	.limits = limits2,
17087527a782SJohannes Berg  *	.n_limits = ARRAY_SIZE(limits2),
17097527a782SJohannes Berg  *	.max_interfaces = 8,
17107527a782SJohannes Berg  *	.num_different_channels = 1,
17117527a782SJohannes Berg  *  };
17127527a782SJohannes Berg  *
17137527a782SJohannes Berg  *
17147527a782SJohannes Berg  * Allow #STA <= 1, #{P2P-client,P2P-GO} <= 3 on two channels, 4 total.
17157527a782SJohannes Berg  * This allows for an infrastructure connection and three P2P connections.
17167527a782SJohannes Berg  *
17177527a782SJohannes Berg  *  struct ieee80211_iface_limit limits3[] = {
17187527a782SJohannes Berg  *	{ .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
17197527a782SJohannes Berg  *	{ .max = 3, .types = BIT(NL80211_IFTYPE_P2P_GO) |
17207527a782SJohannes Berg  *			     BIT(NL80211_IFTYPE_P2P_CLIENT), },
17217527a782SJohannes Berg  *  };
17227527a782SJohannes Berg  *  struct ieee80211_iface_combination combination3 = {
17237527a782SJohannes Berg  *	.limits = limits3,
17247527a782SJohannes Berg  *	.n_limits = ARRAY_SIZE(limits3),
17257527a782SJohannes Berg  *	.max_interfaces = 4,
17267527a782SJohannes Berg  *	.num_different_channels = 2,
17277527a782SJohannes Berg  *  };
17287527a782SJohannes Berg  */
17297527a782SJohannes Berg struct ieee80211_iface_combination {
17307527a782SJohannes Berg 	const struct ieee80211_iface_limit *limits;
17317527a782SJohannes Berg 	u32 num_different_channels;
17327527a782SJohannes Berg 	u16 max_interfaces;
17337527a782SJohannes Berg 	u8 n_limits;
17347527a782SJohannes Berg 	bool beacon_int_infra_match;
17355be83de5SJohannes Berg };
17365be83de5SJohannes Berg 
1737ef15aac6SJohannes Berg struct mac_address {
1738ef15aac6SJohannes Berg 	u8 addr[ETH_ALEN];
1739ef15aac6SJohannes Berg };
1740ef15aac6SJohannes Berg 
17412e161f78SJohannes Berg struct ieee80211_txrx_stypes {
17422e161f78SJohannes Berg 	u16 tx, rx;
17432e161f78SJohannes Berg };
17442e161f78SJohannes Berg 
17455be83de5SJohannes Berg /**
1746ff1b6e69SJohannes Berg  * enum wiphy_wowlan_support_flags - WoWLAN support flags
1747ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
1748ff1b6e69SJohannes Berg  *	trigger that keeps the device operating as-is and
1749ff1b6e69SJohannes Berg  *	wakes up the host on any activity, for example a
1750ff1b6e69SJohannes Berg  *	received packet that passed filtering; note that the
1751ff1b6e69SJohannes Berg  *	packet should be preserved in that case
1752ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
1753ff1b6e69SJohannes Berg  *	(see nl80211.h)
1754ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
175577dbbb13SJohannes Berg  * @WIPHY_WOWLAN_SUPPORTS_GTK_REKEY: supports GTK rekeying while asleep
175677dbbb13SJohannes Berg  * @WIPHY_WOWLAN_GTK_REKEY_FAILURE: supports wakeup on GTK rekey failure
175777dbbb13SJohannes Berg  * @WIPHY_WOWLAN_EAP_IDENTITY_REQ: supports wakeup on EAP identity request
175877dbbb13SJohannes Berg  * @WIPHY_WOWLAN_4WAY_HANDSHAKE: supports wakeup on 4-way handshake failure
175977dbbb13SJohannes Berg  * @WIPHY_WOWLAN_RFKILL_RELEASE: supports wakeup on RF-kill release
1760ff1b6e69SJohannes Berg  */
1761ff1b6e69SJohannes Berg enum wiphy_wowlan_support_flags {
1762ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_ANY		= BIT(0),
1763ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_MAGIC_PKT		= BIT(1),
1764ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_DISCONNECT		= BIT(2),
176577dbbb13SJohannes Berg 	WIPHY_WOWLAN_SUPPORTS_GTK_REKEY	= BIT(3),
176677dbbb13SJohannes Berg 	WIPHY_WOWLAN_GTK_REKEY_FAILURE	= BIT(4),
176777dbbb13SJohannes Berg 	WIPHY_WOWLAN_EAP_IDENTITY_REQ	= BIT(5),
176877dbbb13SJohannes Berg 	WIPHY_WOWLAN_4WAY_HANDSHAKE	= BIT(6),
176977dbbb13SJohannes Berg 	WIPHY_WOWLAN_RFKILL_RELEASE	= BIT(7),
1770ff1b6e69SJohannes Berg };
1771ff1b6e69SJohannes Berg 
1772ff1b6e69SJohannes Berg /**
1773ff1b6e69SJohannes Berg  * struct wiphy_wowlan_support - WoWLAN support data
1774ff1b6e69SJohannes Berg  * @flags: see &enum wiphy_wowlan_support_flags
1775ff1b6e69SJohannes Berg  * @n_patterns: number of supported wakeup patterns
1776ff1b6e69SJohannes Berg  *	(see nl80211.h for the pattern definition)
1777ff1b6e69SJohannes Berg  * @pattern_max_len: maximum length of each pattern
1778ff1b6e69SJohannes Berg  * @pattern_min_len: minimum length of each pattern
1779ff1b6e69SJohannes Berg  */
1780ff1b6e69SJohannes Berg struct wiphy_wowlan_support {
1781ff1b6e69SJohannes Berg 	u32 flags;
1782ff1b6e69SJohannes Berg 	int n_patterns;
1783ff1b6e69SJohannes Berg 	int pattern_max_len;
1784ff1b6e69SJohannes Berg 	int pattern_min_len;
1785ff1b6e69SJohannes Berg };
1786ff1b6e69SJohannes Berg 
1787ff1b6e69SJohannes Berg /**
17885be83de5SJohannes Berg  * struct wiphy - wireless hardware description
17892784fe91SLuis R. Rodriguez  * @reg_notifier: the driver's regulatory notification callback,
17902784fe91SLuis R. Rodriguez  *	note that if your driver uses wiphy_apply_custom_regulatory()
17912784fe91SLuis R. Rodriguez  *	the reg_notifier's request can be passed as NULL
1792d3236553SJohannes Berg  * @regd: the driver's regulatory domain, if one was requested via
1793d3236553SJohannes Berg  * 	the regulatory_hint() API. This can be used by the driver
1794d3236553SJohannes Berg  *	on the reg_notifier() if it chooses to ignore future
1795d3236553SJohannes Berg  *	regulatory domain changes caused by other drivers.
1796d3236553SJohannes Berg  * @signal_type: signal type reported in &struct cfg80211_bss.
1797d3236553SJohannes Berg  * @cipher_suites: supported cipher suites
1798d3236553SJohannes Berg  * @n_cipher_suites: number of supported cipher suites
1799b9a5f8caSJouni Malinen  * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
1800b9a5f8caSJouni Malinen  * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
1801b9a5f8caSJouni Malinen  * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
1802b9a5f8caSJouni Malinen  *	-1 = fragmentation disabled, only odd values >= 256 used
1803b9a5f8caSJouni Malinen  * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
1804abe37c4bSJohannes Berg  * @_net: the network namespace this wiphy currently lives in
1805ef15aac6SJohannes Berg  * @perm_addr: permanent MAC address of this device
1806ef15aac6SJohannes Berg  * @addr_mask: If the device supports multiple MAC addresses by masking,
1807ef15aac6SJohannes Berg  *	set this to a mask with variable bits set to 1, e.g. if the last
1808ef15aac6SJohannes Berg  *	four bits are variable then set it to 00:...:00:0f. The actual
1809ef15aac6SJohannes Berg  *	variable bits shall be determined by the interfaces added, with
1810ef15aac6SJohannes Berg  *	interfaces not matching the mask being rejected to be brought up.
1811ef15aac6SJohannes Berg  * @n_addresses: number of addresses in @addresses.
1812ef15aac6SJohannes Berg  * @addresses: If the device has more than one address, set this pointer
1813ef15aac6SJohannes Berg  *	to a list of addresses (6 bytes each). The first one will be used
1814ef15aac6SJohannes Berg  *	by default for perm_addr. In this case, the mask should be set to
1815ef15aac6SJohannes Berg  *	all-zeroes. In this case it is assumed that the device can handle
1816ef15aac6SJohannes Berg  *	the same number of arbitrary MAC addresses.
1817fd235913SRandy Dunlap  * @registered: protects ->resume and ->suspend sysfs callbacks against
1818fd235913SRandy Dunlap  *	unregister hardware
1819abe37c4bSJohannes Berg  * @debugfsdir: debugfs directory used for this wiphy, will be renamed
1820abe37c4bSJohannes Berg  *	automatically on wiphy renames
1821abe37c4bSJohannes Berg  * @dev: (virtual) struct device for this wiphy
18224a711a85SStanislaw Gruszka  * @registered: helps synchronize suspend/resume with wiphy unregister
1823abe37c4bSJohannes Berg  * @wext: wireless extension handlers
1824abe37c4bSJohannes Berg  * @priv: driver private data (sized according to wiphy_new() parameter)
1825abe37c4bSJohannes Berg  * @interface_modes: bitmask of interfaces types valid for this wiphy,
1826abe37c4bSJohannes Berg  *	must be set by driver
18277527a782SJohannes Berg  * @iface_combinations: Valid interface combinations array, should not
18287527a782SJohannes Berg  *	list single interface types.
18297527a782SJohannes Berg  * @n_iface_combinations: number of entries in @iface_combinations array.
18307527a782SJohannes Berg  * @software_iftypes: bitmask of software interface types, these are not
18317527a782SJohannes Berg  *	subject to any restrictions since they are purely managed in SW.
1832abe37c4bSJohannes Berg  * @flags: wiphy flags, see &enum wiphy_flags
1833abe37c4bSJohannes Berg  * @bss_priv_size: each BSS struct has private data allocated with it,
1834abe37c4bSJohannes Berg  *	this variable determines its size
1835abe37c4bSJohannes Berg  * @max_scan_ssids: maximum number of SSIDs the device can scan for in
1836abe37c4bSJohannes Berg  *	any given scan
183793b6aa69SLuciano Coelho  * @max_sched_scan_ssids: maximum number of SSIDs the device can scan
183893b6aa69SLuciano Coelho  *	for in any given scheduled scan
1839a1f1c21cSLuciano Coelho  * @max_match_sets: maximum number of match sets the device can handle
1840a1f1c21cSLuciano Coelho  *	when performing a scheduled scan, 0 if filtering is not
1841a1f1c21cSLuciano Coelho  *	supported.
1842abe37c4bSJohannes Berg  * @max_scan_ie_len: maximum length of user-controlled IEs device can
1843abe37c4bSJohannes Berg  *	add to probe request frames transmitted during a scan, must not
1844abe37c4bSJohannes Berg  *	include fixed IEs like supported rates
18455a865badSLuciano Coelho  * @max_sched_scan_ie_len: same as max_scan_ie_len, but for scheduled
18465a865badSLuciano Coelho  *	scans
1847abe37c4bSJohannes Berg  * @coverage_class: current coverage class
1848abe37c4bSJohannes Berg  * @fw_version: firmware version for ethtool reporting
1849abe37c4bSJohannes Berg  * @hw_version: hardware version for ethtool reporting
1850abe37c4bSJohannes Berg  * @max_num_pmkids: maximum number of PMKIDs supported by device
1851abe37c4bSJohannes Berg  * @privid: a pointer that drivers can use to identify if an arbitrary
1852abe37c4bSJohannes Berg  *	wiphy is theirs, e.g. in global notifiers
1853abe37c4bSJohannes Berg  * @bands: information about bands/channels supported by this device
18542e161f78SJohannes Berg  *
18552e161f78SJohannes Berg  * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
18562e161f78SJohannes Berg  *	transmitted through nl80211, points to an array indexed by interface
18572e161f78SJohannes Berg  *	type
1858a7ffac95SBruno Randolf  *
18597f531e03SBruno Randolf  * @available_antennas_tx: bitmap of antennas which are available to be
18607f531e03SBruno Randolf  *	configured as TX antennas. Antenna configuration commands will be
18617f531e03SBruno Randolf  *	rejected unless this or @available_antennas_rx is set.
18627f531e03SBruno Randolf  *
18637f531e03SBruno Randolf  * @available_antennas_rx: bitmap of antennas which are available to be
18647f531e03SBruno Randolf  *	configured as RX antennas. Antenna configuration commands will be
18657f531e03SBruno Randolf  *	rejected unless this or @available_antennas_tx is set.
1866a293911dSJohannes Berg  *
1867a293911dSJohannes Berg  * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
1868a293911dSJohannes Berg  *	may request, if implemented.
1869ff1b6e69SJohannes Berg  *
1870ff1b6e69SJohannes Berg  * @wowlan: WoWLAN support information
1871d3236553SJohannes Berg  */
1872d3236553SJohannes Berg struct wiphy {
1873d3236553SJohannes Berg 	/* assign these fields before you register the wiphy */
1874d3236553SJohannes Berg 
1875ef15aac6SJohannes Berg 	/* permanent MAC address(es) */
1876d3236553SJohannes Berg 	u8 perm_addr[ETH_ALEN];
1877ef15aac6SJohannes Berg 	u8 addr_mask[ETH_ALEN];
1878ef15aac6SJohannes Berg 
1879ef15aac6SJohannes Berg 	struct mac_address *addresses;
1880d3236553SJohannes Berg 
18812e161f78SJohannes Berg 	const struct ieee80211_txrx_stypes *mgmt_stypes;
18822e161f78SJohannes Berg 
18837527a782SJohannes Berg 	const struct ieee80211_iface_combination *iface_combinations;
18847527a782SJohannes Berg 	int n_iface_combinations;
18857527a782SJohannes Berg 	u16 software_iftypes;
18867527a782SJohannes Berg 
18872e161f78SJohannes Berg 	u16 n_addresses;
18882e161f78SJohannes Berg 
1889d3236553SJohannes Berg 	/* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
1890d3236553SJohannes Berg 	u16 interface_modes;
1891d3236553SJohannes Berg 
18925be83de5SJohannes Berg 	u32 flags;
1893463d0183SJohannes Berg 
1894d3236553SJohannes Berg 	enum cfg80211_signal_type signal_type;
1895d3236553SJohannes Berg 
1896d3236553SJohannes Berg 	int bss_priv_size;
1897d3236553SJohannes Berg 	u8 max_scan_ssids;
189893b6aa69SLuciano Coelho 	u8 max_sched_scan_ssids;
1899a1f1c21cSLuciano Coelho 	u8 max_match_sets;
1900d3236553SJohannes Berg 	u16 max_scan_ie_len;
19015a865badSLuciano Coelho 	u16 max_sched_scan_ie_len;
1902d3236553SJohannes Berg 
1903d3236553SJohannes Berg 	int n_cipher_suites;
1904d3236553SJohannes Berg 	const u32 *cipher_suites;
1905d3236553SJohannes Berg 
1906b9a5f8caSJouni Malinen 	u8 retry_short;
1907b9a5f8caSJouni Malinen 	u8 retry_long;
1908b9a5f8caSJouni Malinen 	u32 frag_threshold;
1909b9a5f8caSJouni Malinen 	u32 rts_threshold;
191081077e82SLukáš Turek 	u8 coverage_class;
1911b9a5f8caSJouni Malinen 
1912dfce95f5SKalle Valo 	char fw_version[ETHTOOL_BUSINFO_LEN];
1913dfce95f5SKalle Valo 	u32 hw_version;
1914dfce95f5SKalle Valo 
1915ff1b6e69SJohannes Berg 	struct wiphy_wowlan_support wowlan;
1916ff1b6e69SJohannes Berg 
1917a293911dSJohannes Berg 	u16 max_remain_on_channel_duration;
1918a293911dSJohannes Berg 
191967fbb16bSSamuel Ortiz 	u8 max_num_pmkids;
192067fbb16bSSamuel Ortiz 
19217f531e03SBruno Randolf 	u32 available_antennas_tx;
19227f531e03SBruno Randolf 	u32 available_antennas_rx;
1923a7ffac95SBruno Randolf 
1924d3236553SJohannes Berg 	/* If multiple wiphys are registered and you're handed e.g.
1925d3236553SJohannes Berg 	 * a regular netdev with assigned ieee80211_ptr, you won't
1926d3236553SJohannes Berg 	 * know whether it points to a wiphy your driver has registered
1927d3236553SJohannes Berg 	 * or not. Assign this to something global to your driver to
1928d3236553SJohannes Berg 	 * help determine whether you own this wiphy or not. */
1929cf5aa2f1SDavid Kilroy 	const void *privid;
1930d3236553SJohannes Berg 
1931d3236553SJohannes Berg 	struct ieee80211_supported_band *bands[IEEE80211_NUM_BANDS];
1932d3236553SJohannes Berg 
1933d3236553SJohannes Berg 	/* Lets us get back the wiphy on the callback */
1934d3236553SJohannes Berg 	int (*reg_notifier)(struct wiphy *wiphy,
1935d3236553SJohannes Berg 			    struct regulatory_request *request);
1936d3236553SJohannes Berg 
1937d3236553SJohannes Berg 	/* fields below are read-only, assigned by cfg80211 */
1938d3236553SJohannes Berg 
1939d3236553SJohannes Berg 	const struct ieee80211_regdomain *regd;
1940d3236553SJohannes Berg 
1941d3236553SJohannes Berg 	/* the item in /sys/class/ieee80211/ points to this,
1942d3236553SJohannes Berg 	 * you need use set_wiphy_dev() (see below) */
1943d3236553SJohannes Berg 	struct device dev;
1944d3236553SJohannes Berg 
1945d3236553SJohannes Berg 	/* dir in debugfs: ieee80211/<wiphyname> */
1946d3236553SJohannes Berg 	struct dentry *debugfsdir;
1947d3236553SJohannes Berg 
1948463d0183SJohannes Berg #ifdef CONFIG_NET_NS
1949463d0183SJohannes Berg 	/* the network namespace this phy lives in currently */
1950463d0183SJohannes Berg 	struct net *_net;
1951463d0183SJohannes Berg #endif
1952463d0183SJohannes Berg 
19533d23e349SJohannes Berg #ifdef CONFIG_CFG80211_WEXT
19543d23e349SJohannes Berg 	const struct iw_handler_def *wext;
19553d23e349SJohannes Berg #endif
19563d23e349SJohannes Berg 
1957d3236553SJohannes Berg 	char priv[0] __attribute__((__aligned__(NETDEV_ALIGN)));
1958d3236553SJohannes Berg };
1959d3236553SJohannes Berg 
1960463d0183SJohannes Berg static inline struct net *wiphy_net(struct wiphy *wiphy)
1961463d0183SJohannes Berg {
1962c2d9ba9bSEric Dumazet 	return read_pnet(&wiphy->_net);
1963463d0183SJohannes Berg }
1964463d0183SJohannes Berg 
1965463d0183SJohannes Berg static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
1966463d0183SJohannes Berg {
1967c2d9ba9bSEric Dumazet 	write_pnet(&wiphy->_net, net);
1968463d0183SJohannes Berg }
1969463d0183SJohannes Berg 
1970d3236553SJohannes Berg /**
1971d3236553SJohannes Berg  * wiphy_priv - return priv from wiphy
1972d3236553SJohannes Berg  *
1973d3236553SJohannes Berg  * @wiphy: the wiphy whose priv pointer to return
1974d3236553SJohannes Berg  */
1975d3236553SJohannes Berg static inline void *wiphy_priv(struct wiphy *wiphy)
1976d3236553SJohannes Berg {
1977d3236553SJohannes Berg 	BUG_ON(!wiphy);
1978d3236553SJohannes Berg 	return &wiphy->priv;
1979d3236553SJohannes Berg }
1980d3236553SJohannes Berg 
1981d3236553SJohannes Berg /**
1982f1f74825SDavid Kilroy  * priv_to_wiphy - return the wiphy containing the priv
1983f1f74825SDavid Kilroy  *
1984f1f74825SDavid Kilroy  * @priv: a pointer previously returned by wiphy_priv
1985f1f74825SDavid Kilroy  */
1986f1f74825SDavid Kilroy static inline struct wiphy *priv_to_wiphy(void *priv)
1987f1f74825SDavid Kilroy {
1988f1f74825SDavid Kilroy 	BUG_ON(!priv);
1989f1f74825SDavid Kilroy 	return container_of(priv, struct wiphy, priv);
1990f1f74825SDavid Kilroy }
1991f1f74825SDavid Kilroy 
1992f1f74825SDavid Kilroy /**
1993d3236553SJohannes Berg  * set_wiphy_dev - set device pointer for wiphy
1994d3236553SJohannes Berg  *
1995d3236553SJohannes Berg  * @wiphy: The wiphy whose device to bind
1996d3236553SJohannes Berg  * @dev: The device to parent it to
1997d3236553SJohannes Berg  */
1998d3236553SJohannes Berg static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
1999d3236553SJohannes Berg {
2000d3236553SJohannes Berg 	wiphy->dev.parent = dev;
2001d3236553SJohannes Berg }
2002d3236553SJohannes Berg 
2003d3236553SJohannes Berg /**
2004d3236553SJohannes Berg  * wiphy_dev - get wiphy dev pointer
2005d3236553SJohannes Berg  *
2006d3236553SJohannes Berg  * @wiphy: The wiphy whose device struct to look up
2007d3236553SJohannes Berg  */
2008d3236553SJohannes Berg static inline struct device *wiphy_dev(struct wiphy *wiphy)
2009d3236553SJohannes Berg {
2010d3236553SJohannes Berg 	return wiphy->dev.parent;
2011d3236553SJohannes Berg }
2012d3236553SJohannes Berg 
2013d3236553SJohannes Berg /**
2014d3236553SJohannes Berg  * wiphy_name - get wiphy name
2015d3236553SJohannes Berg  *
2016d3236553SJohannes Berg  * @wiphy: The wiphy whose name to return
2017d3236553SJohannes Berg  */
2018e1db74fcSJoe Perches static inline const char *wiphy_name(const struct wiphy *wiphy)
2019d3236553SJohannes Berg {
2020d3236553SJohannes Berg 	return dev_name(&wiphy->dev);
2021d3236553SJohannes Berg }
2022d3236553SJohannes Berg 
2023d3236553SJohannes Berg /**
2024d3236553SJohannes Berg  * wiphy_new - create a new wiphy for use with cfg80211
2025d3236553SJohannes Berg  *
2026d3236553SJohannes Berg  * @ops: The configuration operations for this device
2027d3236553SJohannes Berg  * @sizeof_priv: The size of the private area to allocate
2028d3236553SJohannes Berg  *
2029d3236553SJohannes Berg  * Create a new wiphy and associate the given operations with it.
2030d3236553SJohannes Berg  * @sizeof_priv bytes are allocated for private use.
2031d3236553SJohannes Berg  *
2032d3236553SJohannes Berg  * The returned pointer must be assigned to each netdev's
2033d3236553SJohannes Berg  * ieee80211_ptr for proper operation.
2034d3236553SJohannes Berg  */
20353dcf670bSDavid Kilroy struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv);
2036d3236553SJohannes Berg 
2037d3236553SJohannes Berg /**
2038d3236553SJohannes Berg  * wiphy_register - register a wiphy with cfg80211
2039d3236553SJohannes Berg  *
2040d3236553SJohannes Berg  * @wiphy: The wiphy to register.
2041d3236553SJohannes Berg  *
2042d3236553SJohannes Berg  * Returns a non-negative wiphy index or a negative error code.
2043d3236553SJohannes Berg  */
2044d3236553SJohannes Berg extern int wiphy_register(struct wiphy *wiphy);
2045d3236553SJohannes Berg 
2046d3236553SJohannes Berg /**
2047d3236553SJohannes Berg  * wiphy_unregister - deregister a wiphy from cfg80211
2048d3236553SJohannes Berg  *
2049d3236553SJohannes Berg  * @wiphy: The wiphy to unregister.
2050d3236553SJohannes Berg  *
2051d3236553SJohannes Berg  * After this call, no more requests can be made with this priv
2052d3236553SJohannes Berg  * pointer, but the call may sleep to wait for an outstanding
2053d3236553SJohannes Berg  * request that is being handled.
2054d3236553SJohannes Berg  */
2055d3236553SJohannes Berg extern void wiphy_unregister(struct wiphy *wiphy);
2056d3236553SJohannes Berg 
2057d3236553SJohannes Berg /**
2058d3236553SJohannes Berg  * wiphy_free - free wiphy
2059d3236553SJohannes Berg  *
2060d3236553SJohannes Berg  * @wiphy: The wiphy to free
2061d3236553SJohannes Berg  */
2062d3236553SJohannes Berg extern void wiphy_free(struct wiphy *wiphy);
2063d3236553SJohannes Berg 
2064fffd0934SJohannes Berg /* internal structs */
20656829c878SJohannes Berg struct cfg80211_conn;
206619957bb3SJohannes Berg struct cfg80211_internal_bss;
2067fffd0934SJohannes Berg struct cfg80211_cached_keys;
206819957bb3SJohannes Berg 
206919957bb3SJohannes Berg #define MAX_AUTH_BSSES		4
20706829c878SJohannes Berg 
2071d3236553SJohannes Berg /**
2072d3236553SJohannes Berg  * struct wireless_dev - wireless per-netdev state
2073d3236553SJohannes Berg  *
2074d3236553SJohannes Berg  * This structure must be allocated by the driver/stack
2075d3236553SJohannes Berg  * that uses the ieee80211_ptr field in struct net_device
2076d3236553SJohannes Berg  * (this is intentional so it can be allocated along with
2077d3236553SJohannes Berg  * the netdev.)
2078d3236553SJohannes Berg  *
2079d3236553SJohannes Berg  * @wiphy: pointer to hardware description
2080d3236553SJohannes Berg  * @iftype: interface type
2081d3236553SJohannes Berg  * @list: (private) Used to collect the interfaces
2082d3236553SJohannes Berg  * @netdev: (private) Used to reference back to the netdev
2083d3236553SJohannes Berg  * @current_bss: (private) Used by the internal configuration code
2084f444de05SJohannes Berg  * @channel: (private) Used by the internal configuration code to track
2085f444de05SJohannes Berg  *	user-set AP, monitor and WDS channels for wireless extensions
2086d3236553SJohannes Berg  * @bssid: (private) Used by the internal configuration code
2087d3236553SJohannes Berg  * @ssid: (private) Used by the internal configuration code
2088d3236553SJohannes Berg  * @ssid_len: (private) Used by the internal configuration code
208929cbe68cSJohannes Berg  * @mesh_id_len: (private) Used by the internal configuration code
209029cbe68cSJohannes Berg  * @mesh_id_up_len: (private) Used by the internal configuration code
2091d3236553SJohannes Berg  * @wext: (private) Used by the internal wireless extensions compat code
20929bc383deSJohannes Berg  * @use_4addr: indicates 4addr mode is used on this interface, must be
20939bc383deSJohannes Berg  *	set by driver (if supported) on add_interface BEFORE registering the
20949bc383deSJohannes Berg  *	netdev and may otherwise be used by driver read-only, will be update
20959bc383deSJohannes Berg  *	by cfg80211 on change_interface
20962e161f78SJohannes Berg  * @mgmt_registrations: list of registrations for management frames
20972e161f78SJohannes Berg  * @mgmt_registrations_lock: lock for the list
2098abe37c4bSJohannes Berg  * @mtx: mutex used to lock data in this struct
2099abe37c4bSJohannes Berg  * @cleanup_work: work struct used for cleanup that can't be done directly
210056d1893dSJohannes Berg  * @beacon_interval: beacon interval used on this device for transmitting
210156d1893dSJohannes Berg  *	beacons, 0 when not valid
2102d3236553SJohannes Berg  */
2103d3236553SJohannes Berg struct wireless_dev {
2104d3236553SJohannes Berg 	struct wiphy *wiphy;
2105d3236553SJohannes Berg 	enum nl80211_iftype iftype;
2106d3236553SJohannes Berg 
2107667503ddSJohannes Berg 	/* the remainder of this struct should be private to cfg80211 */
2108d3236553SJohannes Berg 	struct list_head list;
2109d3236553SJohannes Berg 	struct net_device *netdev;
2110d3236553SJohannes Berg 
21112e161f78SJohannes Berg 	struct list_head mgmt_registrations;
21122e161f78SJohannes Berg 	spinlock_t mgmt_registrations_lock;
2113026331c4SJouni Malinen 
2114667503ddSJohannes Berg 	struct mutex mtx;
2115667503ddSJohannes Berg 
2116ad002395SJohannes Berg 	struct work_struct cleanup_work;
2117ad002395SJohannes Berg 
21189bc383deSJohannes Berg 	bool use_4addr;
21199bc383deSJohannes Berg 
2120b23aa676SSamuel Ortiz 	/* currently used for IBSS and SME - might be rearranged later */
2121d3236553SJohannes Berg 	u8 ssid[IEEE80211_MAX_SSID_LEN];
212229cbe68cSJohannes Berg 	u8 ssid_len, mesh_id_len, mesh_id_up_len;
2123b23aa676SSamuel Ortiz 	enum {
2124b23aa676SSamuel Ortiz 		CFG80211_SME_IDLE,
21256829c878SJohannes Berg 		CFG80211_SME_CONNECTING,
2126b23aa676SSamuel Ortiz 		CFG80211_SME_CONNECTED,
2127b23aa676SSamuel Ortiz 	} sme_state;
21286829c878SJohannes Berg 	struct cfg80211_conn *conn;
2129fffd0934SJohannes Berg 	struct cfg80211_cached_keys *connect_keys;
2130d3236553SJohannes Berg 
2131667503ddSJohannes Berg 	struct list_head event_list;
2132667503ddSJohannes Berg 	spinlock_t event_lock;
2133667503ddSJohannes Berg 
213419957bb3SJohannes Berg 	struct cfg80211_internal_bss *authtry_bsses[MAX_AUTH_BSSES];
213519957bb3SJohannes Berg 	struct cfg80211_internal_bss *auth_bsses[MAX_AUTH_BSSES];
213619957bb3SJohannes Berg 	struct cfg80211_internal_bss *current_bss; /* associated / joined */
2137f444de05SJohannes Berg 	struct ieee80211_channel *channel;
213819957bb3SJohannes Berg 
2139ffb9eb3dSKalle Valo 	bool ps;
2140ffb9eb3dSKalle Valo 	int ps_timeout;
2141ffb9eb3dSKalle Valo 
214256d1893dSJohannes Berg 	int beacon_interval;
214356d1893dSJohannes Berg 
21443d23e349SJohannes Berg #ifdef CONFIG_CFG80211_WEXT
2145d3236553SJohannes Berg 	/* wext data */
2146cbe8fa9cSJohannes Berg 	struct {
2147cbe8fa9cSJohannes Berg 		struct cfg80211_ibss_params ibss;
2148f2129354SJohannes Berg 		struct cfg80211_connect_params connect;
2149fffd0934SJohannes Berg 		struct cfg80211_cached_keys *keys;
2150f2129354SJohannes Berg 		u8 *ie;
2151f2129354SJohannes Berg 		size_t ie_len;
2152f401a6f7SJohannes Berg 		u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
2153f2129354SJohannes Berg 		u8 ssid[IEEE80211_MAX_SSID_LEN];
215408645126SJohannes Berg 		s8 default_key, default_mgmt_key;
2155ffb9eb3dSKalle Valo 		bool prev_bssid_valid;
2156cbe8fa9cSJohannes Berg 	} wext;
2157d3236553SJohannes Berg #endif
2158d3236553SJohannes Berg };
2159d3236553SJohannes Berg 
2160d3236553SJohannes Berg /**
2161d3236553SJohannes Berg  * wdev_priv - return wiphy priv from wireless_dev
2162d3236553SJohannes Berg  *
2163d3236553SJohannes Berg  * @wdev: The wireless device whose wiphy's priv pointer to return
2164d3236553SJohannes Berg  */
2165d3236553SJohannes Berg static inline void *wdev_priv(struct wireless_dev *wdev)
2166d3236553SJohannes Berg {
2167d3236553SJohannes Berg 	BUG_ON(!wdev);
2168d3236553SJohannes Berg 	return wiphy_priv(wdev->wiphy);
2169d3236553SJohannes Berg }
2170d3236553SJohannes Berg 
2171d70e9693SJohannes Berg /**
2172d70e9693SJohannes Berg  * DOC: Utility functions
2173d70e9693SJohannes Berg  *
2174d70e9693SJohannes Berg  * cfg80211 offers a number of utility functions that can be useful.
2175d3236553SJohannes Berg  */
2176d3236553SJohannes Berg 
2177d3236553SJohannes Berg /**
2178d3236553SJohannes Berg  * ieee80211_channel_to_frequency - convert channel number to frequency
2179abe37c4bSJohannes Berg  * @chan: channel number
218059eb21a6SBruno Randolf  * @band: band, necessary due to channel number overlap
2181d3236553SJohannes Berg  */
218259eb21a6SBruno Randolf extern int ieee80211_channel_to_frequency(int chan, enum ieee80211_band band);
2183d3236553SJohannes Berg 
2184d3236553SJohannes Berg /**
2185d3236553SJohannes Berg  * ieee80211_frequency_to_channel - convert frequency to channel number
2186abe37c4bSJohannes Berg  * @freq: center frequency
2187d3236553SJohannes Berg  */
2188d3236553SJohannes Berg extern int ieee80211_frequency_to_channel(int freq);
2189d3236553SJohannes Berg 
2190d3236553SJohannes Berg /*
2191d3236553SJohannes Berg  * Name indirection necessary because the ieee80211 code also has
2192d3236553SJohannes Berg  * a function named "ieee80211_get_channel", so if you include
2193d3236553SJohannes Berg  * cfg80211's header file you get cfg80211's version, if you try
2194d3236553SJohannes Berg  * to include both header files you'll (rightfully!) get a symbol
2195d3236553SJohannes Berg  * clash.
2196d3236553SJohannes Berg  */
2197d3236553SJohannes Berg extern struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
2198d3236553SJohannes Berg 							 int freq);
2199d3236553SJohannes Berg /**
2200d3236553SJohannes Berg  * ieee80211_get_channel - get channel struct from wiphy for specified frequency
2201abe37c4bSJohannes Berg  * @wiphy: the struct wiphy to get the channel for
2202abe37c4bSJohannes Berg  * @freq: the center frequency of the channel
2203d3236553SJohannes Berg  */
2204d3236553SJohannes Berg static inline struct ieee80211_channel *
2205d3236553SJohannes Berg ieee80211_get_channel(struct wiphy *wiphy, int freq)
2206d3236553SJohannes Berg {
2207d3236553SJohannes Berg 	return __ieee80211_get_channel(wiphy, freq);
2208d3236553SJohannes Berg }
2209d3236553SJohannes Berg 
2210d3236553SJohannes Berg /**
2211d3236553SJohannes Berg  * ieee80211_get_response_rate - get basic rate for a given rate
2212d3236553SJohannes Berg  *
2213d3236553SJohannes Berg  * @sband: the band to look for rates in
2214d3236553SJohannes Berg  * @basic_rates: bitmap of basic rates
2215d3236553SJohannes Berg  * @bitrate: the bitrate for which to find the basic rate
2216d3236553SJohannes Berg  *
2217d3236553SJohannes Berg  * This function returns the basic rate corresponding to a given
2218d3236553SJohannes Berg  * bitrate, that is the next lower bitrate contained in the basic
2219d3236553SJohannes Berg  * rate map, which is, for this function, given as a bitmap of
2220d3236553SJohannes Berg  * indices of rates in the band's bitrate table.
2221d3236553SJohannes Berg  */
2222d3236553SJohannes Berg struct ieee80211_rate *
2223d3236553SJohannes Berg ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
2224d3236553SJohannes Berg 			    u32 basic_rates, int bitrate);
2225d3236553SJohannes Berg 
2226d3236553SJohannes Berg /*
2227d3236553SJohannes Berg  * Radiotap parsing functions -- for controlled injection support
2228d3236553SJohannes Berg  *
2229d3236553SJohannes Berg  * Implemented in net/wireless/radiotap.c
2230d3236553SJohannes Berg  * Documentation in Documentation/networking/radiotap-headers.txt
2231d3236553SJohannes Berg  */
2232d3236553SJohannes Berg 
223333e5a2f7SJohannes Berg struct radiotap_align_size {
223433e5a2f7SJohannes Berg 	uint8_t align:4, size:4;
223533e5a2f7SJohannes Berg };
223633e5a2f7SJohannes Berg 
223733e5a2f7SJohannes Berg struct ieee80211_radiotap_namespace {
223833e5a2f7SJohannes Berg 	const struct radiotap_align_size *align_size;
223933e5a2f7SJohannes Berg 	int n_bits;
224033e5a2f7SJohannes Berg 	uint32_t oui;
224133e5a2f7SJohannes Berg 	uint8_t subns;
224233e5a2f7SJohannes Berg };
224333e5a2f7SJohannes Berg 
224433e5a2f7SJohannes Berg struct ieee80211_radiotap_vendor_namespaces {
224533e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_namespace *ns;
224633e5a2f7SJohannes Berg 	int n_ns;
224733e5a2f7SJohannes Berg };
224833e5a2f7SJohannes Berg 
2249d3236553SJohannes Berg /**
2250d3236553SJohannes Berg  * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
225133e5a2f7SJohannes Berg  * @this_arg_index: index of current arg, valid after each successful call
225233e5a2f7SJohannes Berg  *	to ieee80211_radiotap_iterator_next()
225333e5a2f7SJohannes Berg  * @this_arg: pointer to current radiotap arg; it is valid after each
225433e5a2f7SJohannes Berg  *	call to ieee80211_radiotap_iterator_next() but also after
225533e5a2f7SJohannes Berg  *	ieee80211_radiotap_iterator_init() where it will point to
225633e5a2f7SJohannes Berg  *	the beginning of the actual data portion
225733e5a2f7SJohannes Berg  * @this_arg_size: length of the current arg, for convenience
225833e5a2f7SJohannes Berg  * @current_namespace: pointer to the current namespace definition
225933e5a2f7SJohannes Berg  *	(or internally %NULL if the current namespace is unknown)
226033e5a2f7SJohannes Berg  * @is_radiotap_ns: indicates whether the current namespace is the default
226133e5a2f7SJohannes Berg  *	radiotap namespace or not
226233e5a2f7SJohannes Berg  *
226333e5a2f7SJohannes Berg  * @_rtheader: pointer to the radiotap header we are walking through
226433e5a2f7SJohannes Berg  * @_max_length: length of radiotap header in cpu byte ordering
226533e5a2f7SJohannes Berg  * @_arg_index: next argument index
226633e5a2f7SJohannes Berg  * @_arg: next argument pointer
226733e5a2f7SJohannes Berg  * @_next_bitmap: internal pointer to next present u32
226833e5a2f7SJohannes Berg  * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
226933e5a2f7SJohannes Berg  * @_vns: vendor namespace definitions
227033e5a2f7SJohannes Berg  * @_next_ns_data: beginning of the next namespace's data
227133e5a2f7SJohannes Berg  * @_reset_on_ext: internal; reset the arg index to 0 when going to the
227233e5a2f7SJohannes Berg  *	next bitmap word
227333e5a2f7SJohannes Berg  *
227433e5a2f7SJohannes Berg  * Describes the radiotap parser state. Fields prefixed with an underscore
227533e5a2f7SJohannes Berg  * must not be used by users of the parser, only by the parser internally.
2276d3236553SJohannes Berg  */
2277d3236553SJohannes Berg 
2278d3236553SJohannes Berg struct ieee80211_radiotap_iterator {
227933e5a2f7SJohannes Berg 	struct ieee80211_radiotap_header *_rtheader;
228033e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_vendor_namespaces *_vns;
228133e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_namespace *current_namespace;
2282d3236553SJohannes Berg 
228333e5a2f7SJohannes Berg 	unsigned char *_arg, *_next_ns_data;
228467272440SJohannes Berg 	__le32 *_next_bitmap;
228533e5a2f7SJohannes Berg 
228633e5a2f7SJohannes Berg 	unsigned char *this_arg;
228733e5a2f7SJohannes Berg 	int this_arg_index;
228833e5a2f7SJohannes Berg 	int this_arg_size;
228933e5a2f7SJohannes Berg 
229033e5a2f7SJohannes Berg 	int is_radiotap_ns;
229133e5a2f7SJohannes Berg 
229233e5a2f7SJohannes Berg 	int _max_length;
229333e5a2f7SJohannes Berg 	int _arg_index;
229433e5a2f7SJohannes Berg 	uint32_t _bitmap_shifter;
229533e5a2f7SJohannes Berg 	int _reset_on_ext;
2296d3236553SJohannes Berg };
2297d3236553SJohannes Berg 
2298d3236553SJohannes Berg extern int ieee80211_radiotap_iterator_init(
2299d3236553SJohannes Berg 	struct ieee80211_radiotap_iterator *iterator,
2300d3236553SJohannes Berg 	struct ieee80211_radiotap_header *radiotap_header,
230133e5a2f7SJohannes Berg 	int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns);
2302d3236553SJohannes Berg 
2303d3236553SJohannes Berg extern int ieee80211_radiotap_iterator_next(
2304d3236553SJohannes Berg 	struct ieee80211_radiotap_iterator *iterator);
2305d3236553SJohannes Berg 
230633e5a2f7SJohannes Berg 
2307e31a16d6SZhu Yi extern const unsigned char rfc1042_header[6];
2308e31a16d6SZhu Yi extern const unsigned char bridge_tunnel_header[6];
2309e31a16d6SZhu Yi 
23100879fa44SYogesh Ashok Powar /* Parsed Information Elements */
23110879fa44SYogesh Ashok Powar struct ieee802_11_elems {
23120879fa44SYogesh Ashok Powar 	u8 *ie_start;
23130879fa44SYogesh Ashok Powar 	size_t total_len;
23140879fa44SYogesh Ashok Powar 
23150879fa44SYogesh Ashok Powar 	/* pointers to IEs */
23160879fa44SYogesh Ashok Powar 	u8 *ssid;
23170879fa44SYogesh Ashok Powar 	u8 *supp_rates;
23180879fa44SYogesh Ashok Powar 	u8 *fh_params;
23190879fa44SYogesh Ashok Powar 	u8 *ds_params;
23200879fa44SYogesh Ashok Powar 	u8 *cf_params;
23210879fa44SYogesh Ashok Powar 	struct ieee80211_tim_ie *tim;
23220879fa44SYogesh Ashok Powar 	u8 *ibss_params;
23230879fa44SYogesh Ashok Powar 	u8 *challenge;
23240879fa44SYogesh Ashok Powar 	u8 *wpa;
23250879fa44SYogesh Ashok Powar 	u8 *rsn;
23260879fa44SYogesh Ashok Powar 	u8 *erp_info;
23270879fa44SYogesh Ashok Powar 	u8 *ext_supp_rates;
23280879fa44SYogesh Ashok Powar 	u8 *wmm_info;
23290879fa44SYogesh Ashok Powar 	u8 *wmm_param;
23300879fa44SYogesh Ashok Powar 	struct ieee80211_ht_cap *ht_cap_elem;
23310879fa44SYogesh Ashok Powar 	struct ieee80211_ht_info *ht_info_elem;
23320879fa44SYogesh Ashok Powar 	struct ieee80211_meshconf_ie *mesh_config;
23330879fa44SYogesh Ashok Powar 	u8 *mesh_id;
23348db09850SThomas Pedersen 	u8 *peering;
23350879fa44SYogesh Ashok Powar 	u8 *preq;
23360879fa44SYogesh Ashok Powar 	u8 *prep;
23370879fa44SYogesh Ashok Powar 	u8 *perr;
23380879fa44SYogesh Ashok Powar 	struct ieee80211_rann_ie *rann;
23390879fa44SYogesh Ashok Powar 	u8 *ch_switch_elem;
23400879fa44SYogesh Ashok Powar 	u8 *country_elem;
23410879fa44SYogesh Ashok Powar 	u8 *pwr_constr_elem;
23420879fa44SYogesh Ashok Powar 	u8 *quiet_elem;	/* first quite element */
23430879fa44SYogesh Ashok Powar 	u8 *timeout_int;
23440879fa44SYogesh Ashok Powar 
23450879fa44SYogesh Ashok Powar 	/* length of them, respectively */
23460879fa44SYogesh Ashok Powar 	u8 ssid_len;
23470879fa44SYogesh Ashok Powar 	u8 supp_rates_len;
23480879fa44SYogesh Ashok Powar 	u8 fh_params_len;
23490879fa44SYogesh Ashok Powar 	u8 ds_params_len;
23500879fa44SYogesh Ashok Powar 	u8 cf_params_len;
23510879fa44SYogesh Ashok Powar 	u8 tim_len;
23520879fa44SYogesh Ashok Powar 	u8 ibss_params_len;
23530879fa44SYogesh Ashok Powar 	u8 challenge_len;
23540879fa44SYogesh Ashok Powar 	u8 wpa_len;
23550879fa44SYogesh Ashok Powar 	u8 rsn_len;
23560879fa44SYogesh Ashok Powar 	u8 erp_info_len;
23570879fa44SYogesh Ashok Powar 	u8 ext_supp_rates_len;
23580879fa44SYogesh Ashok Powar 	u8 wmm_info_len;
23590879fa44SYogesh Ashok Powar 	u8 wmm_param_len;
23600879fa44SYogesh Ashok Powar 	u8 mesh_id_len;
23618db09850SThomas Pedersen 	u8 peering_len;
23620879fa44SYogesh Ashok Powar 	u8 preq_len;
23630879fa44SYogesh Ashok Powar 	u8 prep_len;
23640879fa44SYogesh Ashok Powar 	u8 perr_len;
23650879fa44SYogesh Ashok Powar 	u8 ch_switch_elem_len;
23660879fa44SYogesh Ashok Powar 	u8 country_elem_len;
23670879fa44SYogesh Ashok Powar 	u8 pwr_constr_elem_len;
23680879fa44SYogesh Ashok Powar 	u8 quiet_elem_len;
23690879fa44SYogesh Ashok Powar 	u8 num_of_quiet_elem;	/* can be more the one */
23700879fa44SYogesh Ashok Powar 	u8 timeout_int_len;
23710879fa44SYogesh Ashok Powar };
23720879fa44SYogesh Ashok Powar 
2373e31a16d6SZhu Yi /**
2374e31a16d6SZhu Yi  * ieee80211_get_hdrlen_from_skb - get header length from data
2375e31a16d6SZhu Yi  *
2376e31a16d6SZhu Yi  * Given an skb with a raw 802.11 header at the data pointer this function
2377e31a16d6SZhu Yi  * returns the 802.11 header length in bytes (not including encryption
2378e31a16d6SZhu Yi  * headers). If the data in the sk_buff is too short to contain a valid 802.11
2379e31a16d6SZhu Yi  * header the function returns 0.
2380e31a16d6SZhu Yi  *
2381e31a16d6SZhu Yi  * @skb: the frame
2382e31a16d6SZhu Yi  */
2383e31a16d6SZhu Yi unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
2384e31a16d6SZhu Yi 
2385e31a16d6SZhu Yi /**
2386e31a16d6SZhu Yi  * ieee80211_hdrlen - get header length in bytes from frame control
2387e31a16d6SZhu Yi  * @fc: frame control field in little-endian format
2388e31a16d6SZhu Yi  */
2389633adf1aSJohannes Berg unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
2390e31a16d6SZhu Yi 
2391e31a16d6SZhu Yi /**
2392d70e9693SJohannes Berg  * DOC: Data path helpers
2393d70e9693SJohannes Berg  *
2394d70e9693SJohannes Berg  * In addition to generic utilities, cfg80211 also offers
2395d70e9693SJohannes Berg  * functions that help implement the data path for devices
2396d70e9693SJohannes Berg  * that do not do the 802.11/802.3 conversion on the device.
2397d70e9693SJohannes Berg  */
2398d70e9693SJohannes Berg 
2399d70e9693SJohannes Berg /**
2400e31a16d6SZhu Yi  * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
2401e31a16d6SZhu Yi  * @skb: the 802.11 data frame
2402e31a16d6SZhu Yi  * @addr: the device MAC address
2403e31a16d6SZhu Yi  * @iftype: the virtual interface type
2404e31a16d6SZhu Yi  */
2405eaf85ca7SZhu Yi int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
2406e31a16d6SZhu Yi 			   enum nl80211_iftype iftype);
2407e31a16d6SZhu Yi 
2408e31a16d6SZhu Yi /**
2409e31a16d6SZhu Yi  * ieee80211_data_from_8023 - convert an 802.3 frame to 802.11
2410e31a16d6SZhu Yi  * @skb: the 802.3 frame
2411e31a16d6SZhu Yi  * @addr: the device MAC address
2412e31a16d6SZhu Yi  * @iftype: the virtual interface type
2413e31a16d6SZhu Yi  * @bssid: the network bssid (used only for iftype STATION and ADHOC)
2414e31a16d6SZhu Yi  * @qos: build 802.11 QoS data frame
2415e31a16d6SZhu Yi  */
2416eaf85ca7SZhu Yi int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
2417e31a16d6SZhu Yi 			     enum nl80211_iftype iftype, u8 *bssid, bool qos);
2418e31a16d6SZhu Yi 
2419e31a16d6SZhu Yi /**
2420eaf85ca7SZhu Yi  * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
2421eaf85ca7SZhu Yi  *
2422eaf85ca7SZhu Yi  * Decode an IEEE 802.11n A-MSDU frame and convert it to a list of
2423eaf85ca7SZhu Yi  * 802.3 frames. The @list will be empty if the decode fails. The
2424eaf85ca7SZhu Yi  * @skb is consumed after the function returns.
2425eaf85ca7SZhu Yi  *
2426eaf85ca7SZhu Yi  * @skb: The input IEEE 802.11n A-MSDU frame.
2427eaf85ca7SZhu Yi  * @list: The output list of 802.3 frames. It must be allocated and
2428eaf85ca7SZhu Yi  *	initialized by by the caller.
2429eaf85ca7SZhu Yi  * @addr: The device MAC address.
2430eaf85ca7SZhu Yi  * @iftype: The device interface type.
2431eaf85ca7SZhu Yi  * @extra_headroom: The hardware extra headroom for SKBs in the @list.
24328b3becadSYogesh Ashok Powar  * @has_80211_header: Set it true if SKB is with IEEE 802.11 header.
2433eaf85ca7SZhu Yi  */
2434eaf85ca7SZhu Yi void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
2435eaf85ca7SZhu Yi 			      const u8 *addr, enum nl80211_iftype iftype,
24368b3becadSYogesh Ashok Powar 			      const unsigned int extra_headroom,
24378b3becadSYogesh Ashok Powar 			      bool has_80211_header);
2438eaf85ca7SZhu Yi 
2439eaf85ca7SZhu Yi /**
2440e31a16d6SZhu Yi  * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
2441e31a16d6SZhu Yi  * @skb: the data frame
2442e31a16d6SZhu Yi  */
2443e31a16d6SZhu Yi unsigned int cfg80211_classify8021d(struct sk_buff *skb);
2444e31a16d6SZhu Yi 
2445c21dbf92SJohannes Berg /**
2446c21dbf92SJohannes Berg  * cfg80211_find_ie - find information element in data
2447c21dbf92SJohannes Berg  *
2448c21dbf92SJohannes Berg  * @eid: element ID
2449c21dbf92SJohannes Berg  * @ies: data consisting of IEs
2450c21dbf92SJohannes Berg  * @len: length of data
2451c21dbf92SJohannes Berg  *
2452c21dbf92SJohannes Berg  * This function will return %NULL if the element ID could
2453c21dbf92SJohannes Berg  * not be found or if the element is invalid (claims to be
2454c21dbf92SJohannes Berg  * longer than the given data), or a pointer to the first byte
2455c21dbf92SJohannes Berg  * of the requested element, that is the byte containing the
2456c21dbf92SJohannes Berg  * element ID. There are no checks on the element length
2457c21dbf92SJohannes Berg  * other than having to fit into the given data.
2458c21dbf92SJohannes Berg  */
2459c21dbf92SJohannes Berg const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len);
2460c21dbf92SJohannes Berg 
2461d70e9693SJohannes Berg /**
2462d70e9693SJohannes Berg  * DOC: Regulatory enforcement infrastructure
2463d70e9693SJohannes Berg  *
2464d70e9693SJohannes Berg  * TODO
2465d3236553SJohannes Berg  */
2466d3236553SJohannes Berg 
2467d3236553SJohannes Berg /**
2468d3236553SJohannes Berg  * regulatory_hint - driver hint to the wireless core a regulatory domain
2469d3236553SJohannes Berg  * @wiphy: the wireless device giving the hint (used only for reporting
2470d3236553SJohannes Berg  *	conflicts)
2471d3236553SJohannes Berg  * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
2472d3236553SJohannes Berg  * 	should be in. If @rd is set this should be NULL. Note that if you
2473d3236553SJohannes Berg  * 	set this to NULL you should still set rd->alpha2 to some accepted
2474d3236553SJohannes Berg  * 	alpha2.
2475d3236553SJohannes Berg  *
2476d3236553SJohannes Berg  * Wireless drivers can use this function to hint to the wireless core
2477d3236553SJohannes Berg  * what it believes should be the current regulatory domain by
2478d3236553SJohannes Berg  * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
2479d3236553SJohannes Berg  * domain should be in or by providing a completely build regulatory domain.
2480d3236553SJohannes Berg  * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
2481d3236553SJohannes Berg  * for a regulatory domain structure for the respective country.
2482d3236553SJohannes Berg  *
2483d3236553SJohannes Berg  * The wiphy must have been registered to cfg80211 prior to this call.
2484d3236553SJohannes Berg  * For cfg80211 drivers this means you must first use wiphy_register(),
2485d3236553SJohannes Berg  * for mac80211 drivers you must first use ieee80211_register_hw().
2486d3236553SJohannes Berg  *
2487d3236553SJohannes Berg  * Drivers should check the return value, its possible you can get
2488d3236553SJohannes Berg  * an -ENOMEM.
2489d3236553SJohannes Berg  */
2490d3236553SJohannes Berg extern int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
2491d3236553SJohannes Berg 
2492d3236553SJohannes Berg /**
2493d3236553SJohannes Berg  * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
2494d3236553SJohannes Berg  * @wiphy: the wireless device we want to process the regulatory domain on
2495d3236553SJohannes Berg  * @regd: the custom regulatory domain to use for this wiphy
2496d3236553SJohannes Berg  *
2497d3236553SJohannes Berg  * Drivers can sometimes have custom regulatory domains which do not apply
2498d3236553SJohannes Berg  * to a specific country. Drivers can use this to apply such custom regulatory
2499d3236553SJohannes Berg  * domains. This routine must be called prior to wiphy registration. The
2500d3236553SJohannes Berg  * custom regulatory domain will be trusted completely and as such previous
2501d3236553SJohannes Berg  * default channel settings will be disregarded. If no rule is found for a
2502d3236553SJohannes Berg  * channel on the regulatory domain the channel will be disabled.
2503d3236553SJohannes Berg  */
2504d3236553SJohannes Berg extern void wiphy_apply_custom_regulatory(
2505d3236553SJohannes Berg 	struct wiphy *wiphy,
2506d3236553SJohannes Berg 	const struct ieee80211_regdomain *regd);
2507d3236553SJohannes Berg 
2508d3236553SJohannes Berg /**
2509d3236553SJohannes Berg  * freq_reg_info - get regulatory information for the given frequency
2510d3236553SJohannes Berg  * @wiphy: the wiphy for which we want to process this rule for
2511d3236553SJohannes Berg  * @center_freq: Frequency in KHz for which we want regulatory information for
2512038659e7SLuis R. Rodriguez  * @desired_bw_khz: the desired max bandwidth you want to use per
2513038659e7SLuis R. Rodriguez  *	channel. Note that this is still 20 MHz if you want to use HT40
2514038659e7SLuis R. Rodriguez  *	as HT40 makes use of two channels for its 40 MHz width bandwidth.
2515038659e7SLuis R. Rodriguez  *	If set to 0 we'll assume you want the standard 20 MHz.
2516d3236553SJohannes Berg  * @reg_rule: the regulatory rule which we have for this frequency
2517d3236553SJohannes Berg  *
2518d3236553SJohannes Berg  * Use this function to get the regulatory rule for a specific frequency on
2519d3236553SJohannes Berg  * a given wireless device. If the device has a specific regulatory domain
2520d3236553SJohannes Berg  * it wants to follow we respect that unless a country IE has been received
2521d3236553SJohannes Berg  * and processed already.
2522d3236553SJohannes Berg  *
2523d3236553SJohannes Berg  * Returns 0 if it was able to find a valid regulatory rule which does
2524d3236553SJohannes Berg  * apply to the given center_freq otherwise it returns non-zero. It will
2525d3236553SJohannes Berg  * also return -ERANGE if we determine the given center_freq does not even have
2526d3236553SJohannes Berg  * a regulatory rule for a frequency range in the center_freq's band. See
2527d3236553SJohannes Berg  * freq_in_rule_band() for our current definition of a band -- this is purely
2528d3236553SJohannes Berg  * subjective and right now its 802.11 specific.
2529d3236553SJohannes Berg  */
2530038659e7SLuis R. Rodriguez extern int freq_reg_info(struct wiphy *wiphy,
2531038659e7SLuis R. Rodriguez 			 u32 center_freq,
2532038659e7SLuis R. Rodriguez 			 u32 desired_bw_khz,
2533d3236553SJohannes Berg 			 const struct ieee80211_reg_rule **reg_rule);
2534d3236553SJohannes Berg 
2535d3236553SJohannes Berg /*
2536d3236553SJohannes Berg  * callbacks for asynchronous cfg80211 methods, notification
2537d3236553SJohannes Berg  * functions and BSS handling helpers
2538d3236553SJohannes Berg  */
2539d3236553SJohannes Berg 
25402a519311SJohannes Berg /**
25412a519311SJohannes Berg  * cfg80211_scan_done - notify that scan finished
25422a519311SJohannes Berg  *
25432a519311SJohannes Berg  * @request: the corresponding scan request
25442a519311SJohannes Berg  * @aborted: set to true if the scan was aborted for any reason,
25452a519311SJohannes Berg  *	userspace will be notified of that
25462a519311SJohannes Berg  */
25472a519311SJohannes Berg void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted);
25482a519311SJohannes Berg 
25492a519311SJohannes Berg /**
2550807f8a8cSLuciano Coelho  * cfg80211_sched_scan_results - notify that new scan results are available
2551807f8a8cSLuciano Coelho  *
2552807f8a8cSLuciano Coelho  * @wiphy: the wiphy which got scheduled scan results
2553807f8a8cSLuciano Coelho  */
2554807f8a8cSLuciano Coelho void cfg80211_sched_scan_results(struct wiphy *wiphy);
2555807f8a8cSLuciano Coelho 
2556807f8a8cSLuciano Coelho /**
2557807f8a8cSLuciano Coelho  * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
2558807f8a8cSLuciano Coelho  *
2559807f8a8cSLuciano Coelho  * @wiphy: the wiphy on which the scheduled scan stopped
2560807f8a8cSLuciano Coelho  *
2561807f8a8cSLuciano Coelho  * The driver can call this function to inform cfg80211 that the
2562807f8a8cSLuciano Coelho  * scheduled scan had to be stopped, for whatever reason.  The driver
2563807f8a8cSLuciano Coelho  * is then called back via the sched_scan_stop operation when done.
2564807f8a8cSLuciano Coelho  */
2565807f8a8cSLuciano Coelho void cfg80211_sched_scan_stopped(struct wiphy *wiphy);
2566807f8a8cSLuciano Coelho 
2567807f8a8cSLuciano Coelho /**
2568abe37c4bSJohannes Berg  * cfg80211_inform_bss_frame - inform cfg80211 of a received BSS frame
25692a519311SJohannes Berg  *
25702a519311SJohannes Berg  * @wiphy: the wiphy reporting the BSS
2571abe37c4bSJohannes Berg  * @channel: The channel the frame was received on
2572abe37c4bSJohannes Berg  * @mgmt: the management frame (probe response or beacon)
2573abe37c4bSJohannes Berg  * @len: length of the management frame
257477965c97SJohannes Berg  * @signal: the signal strength, type depends on the wiphy's signal_type
25752a519311SJohannes Berg  * @gfp: context flags
25762a519311SJohannes Berg  *
25772a519311SJohannes Berg  * This informs cfg80211 that BSS information was found and
25782a519311SJohannes Berg  * the BSS should be updated/added.
25792a519311SJohannes Berg  */
25802a519311SJohannes Berg struct cfg80211_bss*
25812a519311SJohannes Berg cfg80211_inform_bss_frame(struct wiphy *wiphy,
25822a519311SJohannes Berg 			  struct ieee80211_channel *channel,
25832a519311SJohannes Berg 			  struct ieee80211_mgmt *mgmt, size_t len,
258477965c97SJohannes Berg 			  s32 signal, gfp_t gfp);
25852a519311SJohannes Berg 
2586abe37c4bSJohannes Berg /**
2587abe37c4bSJohannes Berg  * cfg80211_inform_bss - inform cfg80211 of a new BSS
2588abe37c4bSJohannes Berg  *
2589abe37c4bSJohannes Berg  * @wiphy: the wiphy reporting the BSS
2590abe37c4bSJohannes Berg  * @channel: The channel the frame was received on
2591abe37c4bSJohannes Berg  * @bssid: the BSSID of the BSS
2592abe37c4bSJohannes Berg  * @timestamp: the TSF timestamp sent by the peer
2593abe37c4bSJohannes Berg  * @capability: the capability field sent by the peer
2594abe37c4bSJohannes Berg  * @beacon_interval: the beacon interval announced by the peer
2595abe37c4bSJohannes Berg  * @ie: additional IEs sent by the peer
2596abe37c4bSJohannes Berg  * @ielen: length of the additional IEs
2597abe37c4bSJohannes Berg  * @signal: the signal strength, type depends on the wiphy's signal_type
2598abe37c4bSJohannes Berg  * @gfp: context flags
2599abe37c4bSJohannes Berg  *
2600abe37c4bSJohannes Berg  * This informs cfg80211 that BSS information was found and
2601abe37c4bSJohannes Berg  * the BSS should be updated/added.
2602abe37c4bSJohannes Berg  */
260306aa7afaSJussi Kivilinna struct cfg80211_bss*
260406aa7afaSJussi Kivilinna cfg80211_inform_bss(struct wiphy *wiphy,
260506aa7afaSJussi Kivilinna 		    struct ieee80211_channel *channel,
260606aa7afaSJussi Kivilinna 		    const u8 *bssid,
260706aa7afaSJussi Kivilinna 		    u64 timestamp, u16 capability, u16 beacon_interval,
260806aa7afaSJussi Kivilinna 		    const u8 *ie, size_t ielen,
260906aa7afaSJussi Kivilinna 		    s32 signal, gfp_t gfp);
261006aa7afaSJussi Kivilinna 
26112a519311SJohannes Berg struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
26122a519311SJohannes Berg 				      struct ieee80211_channel *channel,
26132a519311SJohannes Berg 				      const u8 *bssid,
261479420f09SJohannes Berg 				      const u8 *ssid, size_t ssid_len,
261579420f09SJohannes Berg 				      u16 capa_mask, u16 capa_val);
261679420f09SJohannes Berg static inline struct cfg80211_bss *
261779420f09SJohannes Berg cfg80211_get_ibss(struct wiphy *wiphy,
261879420f09SJohannes Berg 		  struct ieee80211_channel *channel,
261979420f09SJohannes Berg 		  const u8 *ssid, size_t ssid_len)
262079420f09SJohannes Berg {
262179420f09SJohannes Berg 	return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
262279420f09SJohannes Berg 				WLAN_CAPABILITY_IBSS, WLAN_CAPABILITY_IBSS);
262379420f09SJohannes Berg }
262479420f09SJohannes Berg 
26252a519311SJohannes Berg struct cfg80211_bss *cfg80211_get_mesh(struct wiphy *wiphy,
26262a519311SJohannes Berg 				       struct ieee80211_channel *channel,
26272a519311SJohannes Berg 				       const u8 *meshid, size_t meshidlen,
26282a519311SJohannes Berg 				       const u8 *meshcfg);
26292a519311SJohannes Berg void cfg80211_put_bss(struct cfg80211_bss *bss);
2630d3236553SJohannes Berg 
2631d491af19SJohannes Berg /**
2632d491af19SJohannes Berg  * cfg80211_unlink_bss - unlink BSS from internal data structures
2633d491af19SJohannes Berg  * @wiphy: the wiphy
2634d491af19SJohannes Berg  * @bss: the bss to remove
2635d491af19SJohannes Berg  *
2636d491af19SJohannes Berg  * This function removes the given BSS from the internal data structures
2637d491af19SJohannes Berg  * thereby making it no longer show up in scan results etc. Use this
2638d491af19SJohannes Berg  * function when you detect a BSS is gone. Normally BSSes will also time
2639d491af19SJohannes Berg  * out, so it is not necessary to use this function at all.
2640d491af19SJohannes Berg  */
2641d491af19SJohannes Berg void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
2642fee52678SJohannes Berg 
26436039f6d2SJouni Malinen /**
26446039f6d2SJouni Malinen  * cfg80211_send_rx_auth - notification of processed authentication
26456039f6d2SJouni Malinen  * @dev: network device
26466039f6d2SJouni Malinen  * @buf: authentication frame (header + body)
26476039f6d2SJouni Malinen  * @len: length of the frame data
26486039f6d2SJouni Malinen  *
26496039f6d2SJouni Malinen  * This function is called whenever an authentication has been processed in
26501965c853SJouni Malinen  * station mode. The driver is required to call either this function or
26511965c853SJouni Malinen  * cfg80211_send_auth_timeout() to indicate the result of cfg80211_ops::auth()
2652cb0b4bebSJohannes Berg  * call. This function may sleep.
26536039f6d2SJouni Malinen  */
2654cb0b4bebSJohannes Berg void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len);
26556039f6d2SJouni Malinen 
26566039f6d2SJouni Malinen /**
26571965c853SJouni Malinen  * cfg80211_send_auth_timeout - notification of timed out authentication
26581965c853SJouni Malinen  * @dev: network device
26591965c853SJouni Malinen  * @addr: The MAC address of the device with which the authentication timed out
2660cb0b4bebSJohannes Berg  *
2661cb0b4bebSJohannes Berg  * This function may sleep.
26621965c853SJouni Malinen  */
2663cb0b4bebSJohannes Berg void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr);
26641965c853SJouni Malinen 
26651965c853SJouni Malinen /**
2666a58ce43fSJohannes Berg  * __cfg80211_auth_canceled - notify cfg80211 that authentication was canceled
2667a58ce43fSJohannes Berg  * @dev: network device
2668a58ce43fSJohannes Berg  * @addr: The MAC address of the device with which the authentication timed out
2669a58ce43fSJohannes Berg  *
2670a58ce43fSJohannes Berg  * When a pending authentication had no action yet, the driver may decide
2671a58ce43fSJohannes Berg  * to not send a deauth frame, but in that case must calls this function
2672a58ce43fSJohannes Berg  * to tell cfg80211 about this decision. It is only valid to call this
2673a58ce43fSJohannes Berg  * function within the deauth() callback.
2674a58ce43fSJohannes Berg  */
2675a58ce43fSJohannes Berg void __cfg80211_auth_canceled(struct net_device *dev, const u8 *addr);
2676a58ce43fSJohannes Berg 
2677a58ce43fSJohannes Berg /**
26786039f6d2SJouni Malinen  * cfg80211_send_rx_assoc - notification of processed association
26796039f6d2SJouni Malinen  * @dev: network device
26806039f6d2SJouni Malinen  * @buf: (re)association response frame (header + body)
26816039f6d2SJouni Malinen  * @len: length of the frame data
26826039f6d2SJouni Malinen  *
26836039f6d2SJouni Malinen  * This function is called whenever a (re)association response has been
26841965c853SJouni Malinen  * processed in station mode. The driver is required to call either this
26851965c853SJouni Malinen  * function or cfg80211_send_assoc_timeout() to indicate the result of
2686cb0b4bebSJohannes Berg  * cfg80211_ops::assoc() call. This function may sleep.
26876039f6d2SJouni Malinen  */
2688cb0b4bebSJohannes Berg void cfg80211_send_rx_assoc(struct net_device *dev, const u8 *buf, size_t len);
26896039f6d2SJouni Malinen 
26906039f6d2SJouni Malinen /**
26911965c853SJouni Malinen  * cfg80211_send_assoc_timeout - notification of timed out association
26921965c853SJouni Malinen  * @dev: network device
26931965c853SJouni Malinen  * @addr: The MAC address of the device with which the association timed out
2694cb0b4bebSJohannes Berg  *
2695cb0b4bebSJohannes Berg  * This function may sleep.
26961965c853SJouni Malinen  */
2697cb0b4bebSJohannes Berg void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr);
26981965c853SJouni Malinen 
26991965c853SJouni Malinen /**
270053b46b84SJouni Malinen  * cfg80211_send_deauth - notification of processed deauthentication
27016039f6d2SJouni Malinen  * @dev: network device
27026039f6d2SJouni Malinen  * @buf: deauthentication frame (header + body)
27036039f6d2SJouni Malinen  * @len: length of the frame data
27046039f6d2SJouni Malinen  *
27056039f6d2SJouni Malinen  * This function is called whenever deauthentication has been processed in
270653b46b84SJouni Malinen  * station mode. This includes both received deauthentication frames and
2707cb0b4bebSJohannes Berg  * locally generated ones. This function may sleep.
27086039f6d2SJouni Malinen  */
2709ce470613SHolger Schurig void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
2710ce470613SHolger Schurig 
2711ce470613SHolger Schurig /**
2712ce470613SHolger Schurig  * __cfg80211_send_deauth - notification of processed deauthentication
2713ce470613SHolger Schurig  * @dev: network device
2714ce470613SHolger Schurig  * @buf: deauthentication frame (header + body)
2715ce470613SHolger Schurig  * @len: length of the frame data
2716ce470613SHolger Schurig  *
2717ce470613SHolger Schurig  * Like cfg80211_send_deauth(), but doesn't take the wdev lock.
2718ce470613SHolger Schurig  */
2719ce470613SHolger Schurig void __cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
27206039f6d2SJouni Malinen 
27216039f6d2SJouni Malinen /**
272253b46b84SJouni Malinen  * cfg80211_send_disassoc - notification of processed disassociation
27236039f6d2SJouni Malinen  * @dev: network device
27246039f6d2SJouni Malinen  * @buf: disassociation response frame (header + body)
27256039f6d2SJouni Malinen  * @len: length of the frame data
27266039f6d2SJouni Malinen  *
27276039f6d2SJouni Malinen  * This function is called whenever disassociation has been processed in
272853b46b84SJouni Malinen  * station mode. This includes both received disassociation frames and locally
2729cb0b4bebSJohannes Berg  * generated ones. This function may sleep.
27306039f6d2SJouni Malinen  */
2731ce470613SHolger Schurig void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len);
2732ce470613SHolger Schurig 
2733ce470613SHolger Schurig /**
2734ce470613SHolger Schurig  * __cfg80211_send_disassoc - notification of processed disassociation
2735ce470613SHolger Schurig  * @dev: network device
2736ce470613SHolger Schurig  * @buf: disassociation response frame (header + body)
2737ce470613SHolger Schurig  * @len: length of the frame data
2738ce470613SHolger Schurig  *
2739ce470613SHolger Schurig  * Like cfg80211_send_disassoc(), but doesn't take the wdev lock.
2740ce470613SHolger Schurig  */
2741ce470613SHolger Schurig void __cfg80211_send_disassoc(struct net_device *dev, const u8 *buf,
2742ce470613SHolger Schurig 	size_t len);
27436039f6d2SJouni Malinen 
2744a08c1c1aSKalle Valo /**
2745cf4e594eSJouni Malinen  * cfg80211_send_unprot_deauth - notification of unprotected deauthentication
2746cf4e594eSJouni Malinen  * @dev: network device
2747cf4e594eSJouni Malinen  * @buf: deauthentication frame (header + body)
2748cf4e594eSJouni Malinen  * @len: length of the frame data
2749cf4e594eSJouni Malinen  *
2750cf4e594eSJouni Malinen  * This function is called whenever a received Deauthentication frame has been
2751cf4e594eSJouni Malinen  * dropped in station mode because of MFP being used but the Deauthentication
2752cf4e594eSJouni Malinen  * frame was not protected. This function may sleep.
2753cf4e594eSJouni Malinen  */
2754cf4e594eSJouni Malinen void cfg80211_send_unprot_deauth(struct net_device *dev, const u8 *buf,
2755cf4e594eSJouni Malinen 				 size_t len);
2756cf4e594eSJouni Malinen 
2757cf4e594eSJouni Malinen /**
2758cf4e594eSJouni Malinen  * cfg80211_send_unprot_disassoc - notification of unprotected disassociation
2759cf4e594eSJouni Malinen  * @dev: network device
2760cf4e594eSJouni Malinen  * @buf: disassociation frame (header + body)
2761cf4e594eSJouni Malinen  * @len: length of the frame data
2762cf4e594eSJouni Malinen  *
2763cf4e594eSJouni Malinen  * This function is called whenever a received Disassociation frame has been
2764cf4e594eSJouni Malinen  * dropped in station mode because of MFP being used but the Disassociation
2765cf4e594eSJouni Malinen  * frame was not protected. This function may sleep.
2766cf4e594eSJouni Malinen  */
2767cf4e594eSJouni Malinen void cfg80211_send_unprot_disassoc(struct net_device *dev, const u8 *buf,
2768cf4e594eSJouni Malinen 				   size_t len);
2769cf4e594eSJouni Malinen 
2770cf4e594eSJouni Malinen /**
2771a3b8b056SJouni Malinen  * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
2772a3b8b056SJouni Malinen  * @dev: network device
2773a3b8b056SJouni Malinen  * @addr: The source MAC address of the frame
2774a3b8b056SJouni Malinen  * @key_type: The key type that the received frame used
2775a66b98dbSArik Nemtsov  * @key_id: Key identifier (0..3). Can be -1 if missing.
2776a3b8b056SJouni Malinen  * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
2777e6d6e342SJohannes Berg  * @gfp: allocation flags
2778a3b8b056SJouni Malinen  *
2779a3b8b056SJouni Malinen  * This function is called whenever the local MAC detects a MIC failure in a
2780a3b8b056SJouni Malinen  * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
2781a3b8b056SJouni Malinen  * primitive.
2782a3b8b056SJouni Malinen  */
2783a3b8b056SJouni Malinen void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
2784a3b8b056SJouni Malinen 				  enum nl80211_key_type key_type, int key_id,
2785e6d6e342SJohannes Berg 				  const u8 *tsc, gfp_t gfp);
2786a3b8b056SJouni Malinen 
278704a773adSJohannes Berg /**
278804a773adSJohannes Berg  * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
278904a773adSJohannes Berg  *
279004a773adSJohannes Berg  * @dev: network device
279104a773adSJohannes Berg  * @bssid: the BSSID of the IBSS joined
279204a773adSJohannes Berg  * @gfp: allocation flags
279304a773adSJohannes Berg  *
279404a773adSJohannes Berg  * This function notifies cfg80211 that the device joined an IBSS or
279504a773adSJohannes Berg  * switched to a different BSSID. Before this function can be called,
279604a773adSJohannes Berg  * either a beacon has to have been received from the IBSS, or one of
279704a773adSJohannes Berg  * the cfg80211_inform_bss{,_frame} functions must have been called
279804a773adSJohannes Berg  * with the locally generated beacon -- this guarantees that there is
279904a773adSJohannes Berg  * always a scan result for this IBSS. cfg80211 will handle the rest.
280004a773adSJohannes Berg  */
280104a773adSJohannes Berg void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp);
280204a773adSJohannes Berg 
28031f87f7d3SJohannes Berg /**
2804c93b5e71SJavier Cardona  * cfg80211_notify_new_candidate - notify cfg80211 of a new mesh peer candidate
2805c93b5e71SJavier Cardona  *
2806c93b5e71SJavier Cardona  * @dev: network device
2807c93b5e71SJavier Cardona  * @macaddr: the MAC address of the new candidate
2808c93b5e71SJavier Cardona  * @ie: information elements advertised by the peer candidate
2809c93b5e71SJavier Cardona  * @ie_len: lenght of the information elements buffer
2810c93b5e71SJavier Cardona  * @gfp: allocation flags
2811c93b5e71SJavier Cardona  *
2812c93b5e71SJavier Cardona  * This function notifies cfg80211 that the mesh peer candidate has been
2813c93b5e71SJavier Cardona  * detected, most likely via a beacon or, less likely, via a probe response.
2814c93b5e71SJavier Cardona  * cfg80211 then sends a notification to userspace.
2815c93b5e71SJavier Cardona  */
2816c93b5e71SJavier Cardona void cfg80211_notify_new_peer_candidate(struct net_device *dev,
2817c93b5e71SJavier Cardona 		const u8 *macaddr, const u8 *ie, u8 ie_len, gfp_t gfp);
2818c93b5e71SJavier Cardona 
2819c93b5e71SJavier Cardona /**
2820d70e9693SJohannes Berg  * DOC: RFkill integration
2821d70e9693SJohannes Berg  *
2822d70e9693SJohannes Berg  * RFkill integration in cfg80211 is almost invisible to drivers,
2823d70e9693SJohannes Berg  * as cfg80211 automatically registers an rfkill instance for each
2824d70e9693SJohannes Berg  * wireless device it knows about. Soft kill is also translated
2825d70e9693SJohannes Berg  * into disconnecting and turning all interfaces off, drivers are
2826d70e9693SJohannes Berg  * expected to turn off the device when all interfaces are down.
2827d70e9693SJohannes Berg  *
2828d70e9693SJohannes Berg  * However, devices may have a hard RFkill line, in which case they
2829d70e9693SJohannes Berg  * also need to interact with the rfkill subsystem, via cfg80211.
2830d70e9693SJohannes Berg  * They can do this with a few helper functions documented here.
2831d70e9693SJohannes Berg  */
2832d70e9693SJohannes Berg 
2833d70e9693SJohannes Berg /**
28341f87f7d3SJohannes Berg  * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
28351f87f7d3SJohannes Berg  * @wiphy: the wiphy
28361f87f7d3SJohannes Berg  * @blocked: block status
28371f87f7d3SJohannes Berg  */
28381f87f7d3SJohannes Berg void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked);
28391f87f7d3SJohannes Berg 
28401f87f7d3SJohannes Berg /**
28411f87f7d3SJohannes Berg  * wiphy_rfkill_start_polling - start polling rfkill
28421f87f7d3SJohannes Berg  * @wiphy: the wiphy
28431f87f7d3SJohannes Berg  */
28441f87f7d3SJohannes Berg void wiphy_rfkill_start_polling(struct wiphy *wiphy);
28451f87f7d3SJohannes Berg 
28461f87f7d3SJohannes Berg /**
28471f87f7d3SJohannes Berg  * wiphy_rfkill_stop_polling - stop polling rfkill
28481f87f7d3SJohannes Berg  * @wiphy: the wiphy
28491f87f7d3SJohannes Berg  */
28501f87f7d3SJohannes Berg void wiphy_rfkill_stop_polling(struct wiphy *wiphy);
28511f87f7d3SJohannes Berg 
2852aff89a9bSJohannes Berg #ifdef CONFIG_NL80211_TESTMODE
2853aff89a9bSJohannes Berg /**
2854d70e9693SJohannes Berg  * DOC: Test mode
2855d70e9693SJohannes Berg  *
2856d70e9693SJohannes Berg  * Test mode is a set of utility functions to allow drivers to
2857d70e9693SJohannes Berg  * interact with driver-specific tools to aid, for instance,
2858d70e9693SJohannes Berg  * factory programming.
2859d70e9693SJohannes Berg  *
2860d70e9693SJohannes Berg  * This chapter describes how drivers interact with it, for more
2861d70e9693SJohannes Berg  * information see the nl80211 book's chapter on it.
2862d70e9693SJohannes Berg  */
2863d70e9693SJohannes Berg 
2864d70e9693SJohannes Berg /**
2865aff89a9bSJohannes Berg  * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
2866aff89a9bSJohannes Berg  * @wiphy: the wiphy
2867aff89a9bSJohannes Berg  * @approxlen: an upper bound of the length of the data that will
2868aff89a9bSJohannes Berg  *	be put into the skb
2869aff89a9bSJohannes Berg  *
2870aff89a9bSJohannes Berg  * This function allocates and pre-fills an skb for a reply to
2871aff89a9bSJohannes Berg  * the testmode command. Since it is intended for a reply, calling
2872aff89a9bSJohannes Berg  * it outside of the @testmode_cmd operation is invalid.
2873aff89a9bSJohannes Berg  *
2874aff89a9bSJohannes Berg  * The returned skb (or %NULL if any errors happen) is pre-filled
2875aff89a9bSJohannes Berg  * with the wiphy index and set up in a way that any data that is
2876aff89a9bSJohannes Berg  * put into the skb (with skb_put(), nla_put() or similar) will end
2877aff89a9bSJohannes Berg  * up being within the %NL80211_ATTR_TESTDATA attribute, so all that
2878aff89a9bSJohannes Berg  * needs to be done with the skb is adding data for the corresponding
2879aff89a9bSJohannes Berg  * userspace tool which can then read that data out of the testdata
2880aff89a9bSJohannes Berg  * attribute. You must not modify the skb in any other way.
2881aff89a9bSJohannes Berg  *
2882aff89a9bSJohannes Berg  * When done, call cfg80211_testmode_reply() with the skb and return
2883aff89a9bSJohannes Berg  * its error code as the result of the @testmode_cmd operation.
2884aff89a9bSJohannes Berg  */
2885aff89a9bSJohannes Berg struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
2886aff89a9bSJohannes Berg 						  int approxlen);
2887aff89a9bSJohannes Berg 
2888aff89a9bSJohannes Berg /**
2889aff89a9bSJohannes Berg  * cfg80211_testmode_reply - send the reply skb
2890aff89a9bSJohannes Berg  * @skb: The skb, must have been allocated with
2891aff89a9bSJohannes Berg  *	cfg80211_testmode_alloc_reply_skb()
2892aff89a9bSJohannes Berg  *
2893aff89a9bSJohannes Berg  * Returns an error code or 0 on success, since calling this
2894aff89a9bSJohannes Berg  * function will usually be the last thing before returning
2895aff89a9bSJohannes Berg  * from the @testmode_cmd you should return the error code.
2896aff89a9bSJohannes Berg  * Note that this function consumes the skb regardless of the
2897aff89a9bSJohannes Berg  * return value.
2898aff89a9bSJohannes Berg  */
2899aff89a9bSJohannes Berg int cfg80211_testmode_reply(struct sk_buff *skb);
2900aff89a9bSJohannes Berg 
2901aff89a9bSJohannes Berg /**
2902aff89a9bSJohannes Berg  * cfg80211_testmode_alloc_event_skb - allocate testmode event
2903aff89a9bSJohannes Berg  * @wiphy: the wiphy
2904aff89a9bSJohannes Berg  * @approxlen: an upper bound of the length of the data that will
2905aff89a9bSJohannes Berg  *	be put into the skb
2906aff89a9bSJohannes Berg  * @gfp: allocation flags
2907aff89a9bSJohannes Berg  *
2908aff89a9bSJohannes Berg  * This function allocates and pre-fills an skb for an event on the
2909aff89a9bSJohannes Berg  * testmode multicast group.
2910aff89a9bSJohannes Berg  *
2911aff89a9bSJohannes Berg  * The returned skb (or %NULL if any errors happen) is set up in the
2912aff89a9bSJohannes Berg  * same way as with cfg80211_testmode_alloc_reply_skb() but prepared
2913aff89a9bSJohannes Berg  * for an event. As there, you should simply add data to it that will
2914aff89a9bSJohannes Berg  * then end up in the %NL80211_ATTR_TESTDATA attribute. Again, you must
2915aff89a9bSJohannes Berg  * not modify the skb in any other way.
2916aff89a9bSJohannes Berg  *
2917aff89a9bSJohannes Berg  * When done filling the skb, call cfg80211_testmode_event() with the
2918aff89a9bSJohannes Berg  * skb to send the event.
2919aff89a9bSJohannes Berg  */
2920aff89a9bSJohannes Berg struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
2921aff89a9bSJohannes Berg 						  int approxlen, gfp_t gfp);
2922aff89a9bSJohannes Berg 
2923aff89a9bSJohannes Berg /**
2924aff89a9bSJohannes Berg  * cfg80211_testmode_event - send the event
2925aff89a9bSJohannes Berg  * @skb: The skb, must have been allocated with
2926aff89a9bSJohannes Berg  *	cfg80211_testmode_alloc_event_skb()
2927aff89a9bSJohannes Berg  * @gfp: allocation flags
2928aff89a9bSJohannes Berg  *
2929aff89a9bSJohannes Berg  * This function sends the given @skb, which must have been allocated
2930aff89a9bSJohannes Berg  * by cfg80211_testmode_alloc_event_skb(), as an event. It always
2931aff89a9bSJohannes Berg  * consumes it.
2932aff89a9bSJohannes Berg  */
2933aff89a9bSJohannes Berg void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp);
2934aff89a9bSJohannes Berg 
2935aff89a9bSJohannes Berg #define CFG80211_TESTMODE_CMD(cmd)	.testmode_cmd = (cmd),
293671063f0eSWey-Yi Guy #define CFG80211_TESTMODE_DUMP(cmd)	.testmode_dump = (cmd),
2937aff89a9bSJohannes Berg #else
2938aff89a9bSJohannes Berg #define CFG80211_TESTMODE_CMD(cmd)
293971063f0eSWey-Yi Guy #define CFG80211_TESTMODE_DUMP(cmd)
2940aff89a9bSJohannes Berg #endif
2941aff89a9bSJohannes Berg 
2942b23aa676SSamuel Ortiz /**
2943b23aa676SSamuel Ortiz  * cfg80211_connect_result - notify cfg80211 of connection result
2944b23aa676SSamuel Ortiz  *
2945b23aa676SSamuel Ortiz  * @dev: network device
2946b23aa676SSamuel Ortiz  * @bssid: the BSSID of the AP
2947b23aa676SSamuel Ortiz  * @req_ie: association request IEs (maybe be %NULL)
2948b23aa676SSamuel Ortiz  * @req_ie_len: association request IEs length
2949b23aa676SSamuel Ortiz  * @resp_ie: association response IEs (may be %NULL)
2950b23aa676SSamuel Ortiz  * @resp_ie_len: assoc response IEs length
2951b23aa676SSamuel Ortiz  * @status: status code, 0 for successful connection, use
2952b23aa676SSamuel Ortiz  *	%WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
2953b23aa676SSamuel Ortiz  *	the real status code for failures.
2954b23aa676SSamuel Ortiz  * @gfp: allocation flags
2955b23aa676SSamuel Ortiz  *
2956b23aa676SSamuel Ortiz  * It should be called by the underlying driver whenever connect() has
2957b23aa676SSamuel Ortiz  * succeeded.
2958b23aa676SSamuel Ortiz  */
2959b23aa676SSamuel Ortiz void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
2960b23aa676SSamuel Ortiz 			     const u8 *req_ie, size_t req_ie_len,
2961b23aa676SSamuel Ortiz 			     const u8 *resp_ie, size_t resp_ie_len,
2962b23aa676SSamuel Ortiz 			     u16 status, gfp_t gfp);
2963b23aa676SSamuel Ortiz 
2964b23aa676SSamuel Ortiz /**
2965b23aa676SSamuel Ortiz  * cfg80211_roamed - notify cfg80211 of roaming
2966b23aa676SSamuel Ortiz  *
2967b23aa676SSamuel Ortiz  * @dev: network device
2968ed9d0102SJouni Malinen  * @channel: the channel of the new AP
2969b23aa676SSamuel Ortiz  * @bssid: the BSSID of the new AP
2970b23aa676SSamuel Ortiz  * @req_ie: association request IEs (maybe be %NULL)
2971b23aa676SSamuel Ortiz  * @req_ie_len: association request IEs length
2972b23aa676SSamuel Ortiz  * @resp_ie: association response IEs (may be %NULL)
2973b23aa676SSamuel Ortiz  * @resp_ie_len: assoc response IEs length
2974b23aa676SSamuel Ortiz  * @gfp: allocation flags
2975b23aa676SSamuel Ortiz  *
2976b23aa676SSamuel Ortiz  * It should be called by the underlying driver whenever it roamed
2977b23aa676SSamuel Ortiz  * from one AP to another while connected.
2978b23aa676SSamuel Ortiz  */
2979ed9d0102SJouni Malinen void cfg80211_roamed(struct net_device *dev,
2980ed9d0102SJouni Malinen 		     struct ieee80211_channel *channel,
2981ed9d0102SJouni Malinen 		     const u8 *bssid,
2982b23aa676SSamuel Ortiz 		     const u8 *req_ie, size_t req_ie_len,
2983b23aa676SSamuel Ortiz 		     const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
2984b23aa676SSamuel Ortiz 
2985b23aa676SSamuel Ortiz /**
2986b23aa676SSamuel Ortiz  * cfg80211_disconnected - notify cfg80211 that connection was dropped
2987b23aa676SSamuel Ortiz  *
2988b23aa676SSamuel Ortiz  * @dev: network device
2989b23aa676SSamuel Ortiz  * @ie: information elements of the deauth/disassoc frame (may be %NULL)
2990b23aa676SSamuel Ortiz  * @ie_len: length of IEs
2991b23aa676SSamuel Ortiz  * @reason: reason code for the disconnection, set it to 0 if unknown
2992b23aa676SSamuel Ortiz  * @gfp: allocation flags
2993b23aa676SSamuel Ortiz  *
2994b23aa676SSamuel Ortiz  * After it calls this function, the driver should enter an idle state
2995b23aa676SSamuel Ortiz  * and not try to connect to any AP any more.
2996b23aa676SSamuel Ortiz  */
2997b23aa676SSamuel Ortiz void cfg80211_disconnected(struct net_device *dev, u16 reason,
2998b23aa676SSamuel Ortiz 			   u8 *ie, size_t ie_len, gfp_t gfp);
2999b23aa676SSamuel Ortiz 
30009588bbd5SJouni Malinen /**
30019588bbd5SJouni Malinen  * cfg80211_ready_on_channel - notification of remain_on_channel start
30029588bbd5SJouni Malinen  * @dev: network device
30039588bbd5SJouni Malinen  * @cookie: the request cookie
30049588bbd5SJouni Malinen  * @chan: The current channel (from remain_on_channel request)
30059588bbd5SJouni Malinen  * @channel_type: Channel type
30069588bbd5SJouni Malinen  * @duration: Duration in milliseconds that the driver intents to remain on the
30079588bbd5SJouni Malinen  *	channel
30089588bbd5SJouni Malinen  * @gfp: allocation flags
30099588bbd5SJouni Malinen  */
30109588bbd5SJouni Malinen void cfg80211_ready_on_channel(struct net_device *dev, u64 cookie,
30119588bbd5SJouni Malinen 			       struct ieee80211_channel *chan,
30129588bbd5SJouni Malinen 			       enum nl80211_channel_type channel_type,
30139588bbd5SJouni Malinen 			       unsigned int duration, gfp_t gfp);
30149588bbd5SJouni Malinen 
30159588bbd5SJouni Malinen /**
30169588bbd5SJouni Malinen  * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
30179588bbd5SJouni Malinen  * @dev: network device
30189588bbd5SJouni Malinen  * @cookie: the request cookie
30199588bbd5SJouni Malinen  * @chan: The current channel (from remain_on_channel request)
30209588bbd5SJouni Malinen  * @channel_type: Channel type
30219588bbd5SJouni Malinen  * @gfp: allocation flags
30229588bbd5SJouni Malinen  */
30239588bbd5SJouni Malinen void cfg80211_remain_on_channel_expired(struct net_device *dev,
30249588bbd5SJouni Malinen 					u64 cookie,
30259588bbd5SJouni Malinen 					struct ieee80211_channel *chan,
30269588bbd5SJouni Malinen 					enum nl80211_channel_type channel_type,
30279588bbd5SJouni Malinen 					gfp_t gfp);
3028b23aa676SSamuel Ortiz 
302998b62183SJohannes Berg 
303098b62183SJohannes Berg /**
303198b62183SJohannes Berg  * cfg80211_new_sta - notify userspace about station
303298b62183SJohannes Berg  *
303398b62183SJohannes Berg  * @dev: the netdev
303498b62183SJohannes Berg  * @mac_addr: the station's address
303598b62183SJohannes Berg  * @sinfo: the station information
303698b62183SJohannes Berg  * @gfp: allocation flags
303798b62183SJohannes Berg  */
303898b62183SJohannes Berg void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
303998b62183SJohannes Berg 		      struct station_info *sinfo, gfp_t gfp);
304098b62183SJohannes Berg 
3041026331c4SJouni Malinen /**
3042ec15e68bSJouni Malinen  * cfg80211_del_sta - notify userspace about deletion of a station
3043ec15e68bSJouni Malinen  *
3044ec15e68bSJouni Malinen  * @dev: the netdev
3045ec15e68bSJouni Malinen  * @mac_addr: the station's address
3046ec15e68bSJouni Malinen  * @gfp: allocation flags
3047ec15e68bSJouni Malinen  */
3048ec15e68bSJouni Malinen void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp);
3049ec15e68bSJouni Malinen 
3050ec15e68bSJouni Malinen /**
30512e161f78SJohannes Berg  * cfg80211_rx_mgmt - notification of received, unprocessed management frame
3052026331c4SJouni Malinen  * @dev: network device
3053026331c4SJouni Malinen  * @freq: Frequency on which the frame was received in MHz
30542e161f78SJohannes Berg  * @buf: Management frame (header + body)
3055026331c4SJouni Malinen  * @len: length of the frame data
3056026331c4SJouni Malinen  * @gfp: context flags
30572e161f78SJohannes Berg  *
30582e161f78SJohannes Berg  * Returns %true if a user space application has registered for this frame.
30592e161f78SJohannes Berg  * For action frames, that makes it responsible for rejecting unrecognized
30602e161f78SJohannes Berg  * action frames; %false otherwise, in which case for action frames the
30612e161f78SJohannes Berg  * driver is responsible for rejecting the frame.
3062026331c4SJouni Malinen  *
3063026331c4SJouni Malinen  * This function is called whenever an Action frame is received for a station
3064026331c4SJouni Malinen  * mode interface, but is not processed in kernel.
3065026331c4SJouni Malinen  */
30662e161f78SJohannes Berg bool cfg80211_rx_mgmt(struct net_device *dev, int freq, const u8 *buf,
3067026331c4SJouni Malinen 		      size_t len, gfp_t gfp);
3068026331c4SJouni Malinen 
3069026331c4SJouni Malinen /**
30702e161f78SJohannes Berg  * cfg80211_mgmt_tx_status - notification of TX status for management frame
3071026331c4SJouni Malinen  * @dev: network device
30722e161f78SJohannes Berg  * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
30732e161f78SJohannes Berg  * @buf: Management frame (header + body)
3074026331c4SJouni Malinen  * @len: length of the frame data
3075026331c4SJouni Malinen  * @ack: Whether frame was acknowledged
3076026331c4SJouni Malinen  * @gfp: context flags
3077026331c4SJouni Malinen  *
30782e161f78SJohannes Berg  * This function is called whenever a management frame was requested to be
30792e161f78SJohannes Berg  * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
3080026331c4SJouni Malinen  * transmission attempt.
3081026331c4SJouni Malinen  */
30822e161f78SJohannes Berg void cfg80211_mgmt_tx_status(struct net_device *dev, u64 cookie,
3083026331c4SJouni Malinen 			     const u8 *buf, size_t len, bool ack, gfp_t gfp);
3084026331c4SJouni Malinen 
3085d6dc1a38SJuuso Oikarinen 
3086d6dc1a38SJuuso Oikarinen /**
3087d6dc1a38SJuuso Oikarinen  * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
3088d6dc1a38SJuuso Oikarinen  * @dev: network device
3089d6dc1a38SJuuso Oikarinen  * @rssi_event: the triggered RSSI event
3090d6dc1a38SJuuso Oikarinen  * @gfp: context flags
3091d6dc1a38SJuuso Oikarinen  *
3092d6dc1a38SJuuso Oikarinen  * This function is called when a configured connection quality monitoring
3093d6dc1a38SJuuso Oikarinen  * rssi threshold reached event occurs.
3094d6dc1a38SJuuso Oikarinen  */
3095d6dc1a38SJuuso Oikarinen void cfg80211_cqm_rssi_notify(struct net_device *dev,
3096d6dc1a38SJuuso Oikarinen 			      enum nl80211_cqm_rssi_threshold_event rssi_event,
3097d6dc1a38SJuuso Oikarinen 			      gfp_t gfp);
3098d6dc1a38SJuuso Oikarinen 
3099c063dbf5SJohannes Berg /**
3100c063dbf5SJohannes Berg  * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
3101c063dbf5SJohannes Berg  * @dev: network device
3102c063dbf5SJohannes Berg  * @peer: peer's MAC address
3103c063dbf5SJohannes Berg  * @num_packets: how many packets were lost -- should be a fixed threshold
3104c063dbf5SJohannes Berg  *	but probably no less than maybe 50, or maybe a throughput dependent
3105c063dbf5SJohannes Berg  *	threshold (to account for temporary interference)
3106c063dbf5SJohannes Berg  * @gfp: context flags
3107c063dbf5SJohannes Berg  */
3108c063dbf5SJohannes Berg void cfg80211_cqm_pktloss_notify(struct net_device *dev,
3109c063dbf5SJohannes Berg 				 const u8 *peer, u32 num_packets, gfp_t gfp);
3110c063dbf5SJohannes Berg 
3111e5497d76SJohannes Berg /**
3112e5497d76SJohannes Berg  * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying
3113e5497d76SJohannes Berg  * @dev: network device
3114e5497d76SJohannes Berg  * @bssid: BSSID of AP (to avoid races)
3115e5497d76SJohannes Berg  * @replay_ctr: new replay counter
3116af71ff85SJohannes Berg  * @gfp: allocation flags
3117e5497d76SJohannes Berg  */
3118e5497d76SJohannes Berg void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
3119e5497d76SJohannes Berg 			       const u8 *replay_ctr, gfp_t gfp);
3120e5497d76SJohannes Berg 
3121e1db74fcSJoe Perches /* Logging, debugging and troubleshooting/diagnostic helpers. */
3122e1db74fcSJoe Perches 
3123e1db74fcSJoe Perches /* wiphy_printk helpers, similar to dev_printk */
3124e1db74fcSJoe Perches 
3125e1db74fcSJoe Perches #define wiphy_printk(level, wiphy, format, args...)		\
31269c376639SJoe Perches 	dev_printk(level, &(wiphy)->dev, format, ##args)
3127e1db74fcSJoe Perches #define wiphy_emerg(wiphy, format, args...)			\
31289c376639SJoe Perches 	dev_emerg(&(wiphy)->dev, format, ##args)
3129e1db74fcSJoe Perches #define wiphy_alert(wiphy, format, args...)			\
31309c376639SJoe Perches 	dev_alert(&(wiphy)->dev, format, ##args)
3131e1db74fcSJoe Perches #define wiphy_crit(wiphy, format, args...)			\
31329c376639SJoe Perches 	dev_crit(&(wiphy)->dev, format, ##args)
3133e1db74fcSJoe Perches #define wiphy_err(wiphy, format, args...)			\
31349c376639SJoe Perches 	dev_err(&(wiphy)->dev, format, ##args)
3135e1db74fcSJoe Perches #define wiphy_warn(wiphy, format, args...)			\
31369c376639SJoe Perches 	dev_warn(&(wiphy)->dev, format, ##args)
3137e1db74fcSJoe Perches #define wiphy_notice(wiphy, format, args...)			\
31389c376639SJoe Perches 	dev_notice(&(wiphy)->dev, format, ##args)
3139e1db74fcSJoe Perches #define wiphy_info(wiphy, format, args...)			\
31409c376639SJoe Perches 	dev_info(&(wiphy)->dev, format, ##args)
3141073730d7SJoe Perches 
31429c376639SJoe Perches #define wiphy_debug(wiphy, format, args...)			\
3143e1db74fcSJoe Perches 	wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
31449c376639SJoe Perches 
3145e1db74fcSJoe Perches #define wiphy_dbg(wiphy, format, args...)			\
31469c376639SJoe Perches 	dev_dbg(&(wiphy)->dev, format, ##args)
3147e1db74fcSJoe Perches 
3148e1db74fcSJoe Perches #if defined(VERBOSE_DEBUG)
3149e1db74fcSJoe Perches #define wiphy_vdbg	wiphy_dbg
3150e1db74fcSJoe Perches #else
3151e1db74fcSJoe Perches #define wiphy_vdbg(wiphy, format, args...)				\
3152e1db74fcSJoe Perches ({									\
3153e1db74fcSJoe Perches 	if (0)								\
3154e1db74fcSJoe Perches 		wiphy_printk(KERN_DEBUG, wiphy, format, ##args);	\
3155e1db74fcSJoe Perches 	0;								\
3156e1db74fcSJoe Perches })
3157e1db74fcSJoe Perches #endif
3158e1db74fcSJoe Perches 
3159e1db74fcSJoe Perches /*
3160e1db74fcSJoe Perches  * wiphy_WARN() acts like wiphy_printk(), but with the key difference
3161e1db74fcSJoe Perches  * of using a WARN/WARN_ON to get the message out, including the
3162e1db74fcSJoe Perches  * file/line information and a backtrace.
3163e1db74fcSJoe Perches  */
3164e1db74fcSJoe Perches #define wiphy_WARN(wiphy, format, args...)			\
3165e1db74fcSJoe Perches 	WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
3166e1db74fcSJoe Perches 
3167704232c2SJohannes Berg #endif /* __NET_CFG80211_H */
3168