xref: /linux/include/net/cfg80211.h (revision 77765eaf5cfb6b8dd98ec8b54b411d74ff6095f1)
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>
16187f1882SPaul Gortmaker #include <linux/bug.h>
17704232c2SJohannes Berg #include <linux/netlink.h>
18704232c2SJohannes Berg #include <linux/skbuff.h>
1955682965SJohannes Berg #include <linux/nl80211.h>
202a519311SJohannes Berg #include <linux/if_ether.h>
212a519311SJohannes Berg #include <linux/ieee80211.h>
22d3236553SJohannes Berg #include <net/regulatory.h>
23d3236553SJohannes Berg 
24d70e9693SJohannes Berg /**
25d70e9693SJohannes Berg  * DOC: Introduction
26d70e9693SJohannes Berg  *
27d70e9693SJohannes Berg  * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
28d70e9693SJohannes Berg  * userspace and drivers, and offers some utility functionality associated
29d70e9693SJohannes Berg  * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
30d70e9693SJohannes Berg  * by all modern wireless drivers in Linux, so that they offer a consistent
31d70e9693SJohannes Berg  * API through nl80211. For backward compatibility, cfg80211 also offers
32d70e9693SJohannes Berg  * wireless extensions to userspace, but hides them from drivers completely.
33d70e9693SJohannes Berg  *
34d70e9693SJohannes Berg  * Additionally, cfg80211 contains code to help enforce regulatory spectrum
35d70e9693SJohannes Berg  * use restrictions.
36d70e9693SJohannes Berg  */
37d70e9693SJohannes Berg 
38d70e9693SJohannes Berg 
39d70e9693SJohannes Berg /**
40d70e9693SJohannes Berg  * DOC: Device registration
41d70e9693SJohannes Berg  *
42d70e9693SJohannes Berg  * In order for a driver to use cfg80211, it must register the hardware device
43d70e9693SJohannes Berg  * with cfg80211. This happens through a number of hardware capability structs
44d70e9693SJohannes Berg  * described below.
45d70e9693SJohannes Berg  *
46d70e9693SJohannes Berg  * The fundamental structure for each device is the 'wiphy', of which each
47d70e9693SJohannes Berg  * instance describes a physical wireless device connected to the system. Each
48d70e9693SJohannes Berg  * such wiphy can have zero, one, or many virtual interfaces associated with
49d70e9693SJohannes Berg  * it, which need to be identified as such by pointing the network interface's
50d70e9693SJohannes Berg  * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
51d70e9693SJohannes Berg  * the wireless part of the interface, normally this struct is embedded in the
52d70e9693SJohannes Berg  * network interface's private data area. Drivers can optionally allow creating
53d70e9693SJohannes Berg  * or destroying virtual interfaces on the fly, but without at least one or the
54d70e9693SJohannes Berg  * ability to create some the wireless device isn't useful.
55d70e9693SJohannes Berg  *
56d70e9693SJohannes Berg  * Each wiphy structure contains device capability information, and also has
57d70e9693SJohannes Berg  * a pointer to the various operations the driver offers. The definitions and
58d70e9693SJohannes Berg  * structures here describe these capabilities in detail.
59d70e9693SJohannes Berg  */
60d70e9693SJohannes Berg 
619f5e8f6eSJohannes Berg struct wiphy;
629f5e8f6eSJohannes Berg 
63704232c2SJohannes Berg /*
64d3236553SJohannes Berg  * wireless hardware capability structures
65d3236553SJohannes Berg  */
66d3236553SJohannes Berg 
67d3236553SJohannes Berg /**
68d3236553SJohannes Berg  * enum ieee80211_band - supported frequency bands
69704232c2SJohannes Berg  *
70d3236553SJohannes Berg  * The bands are assigned this way because the supported
71d3236553SJohannes Berg  * bitrates differ in these bands.
72d3236553SJohannes Berg  *
73d3236553SJohannes Berg  * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band
74d3236553SJohannes Berg  * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7)
753a0c52a6SVladimir Kondratiev  * @IEEE80211_BAND_60GHZ: around 60 GHz band (58.32 - 64.80 GHz)
76abe37c4bSJohannes Berg  * @IEEE80211_NUM_BANDS: number of defined bands
77d3236553SJohannes Berg  */
78d3236553SJohannes Berg enum ieee80211_band {
7913ae75b1SJouni Malinen 	IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ,
8013ae75b1SJouni Malinen 	IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ,
813a0c52a6SVladimir Kondratiev 	IEEE80211_BAND_60GHZ = NL80211_BAND_60GHZ,
82d3236553SJohannes Berg 
83d3236553SJohannes Berg 	/* keep last */
84d3236553SJohannes Berg 	IEEE80211_NUM_BANDS
85d3236553SJohannes Berg };
86d3236553SJohannes Berg 
87d3236553SJohannes Berg /**
88d3236553SJohannes Berg  * enum ieee80211_channel_flags - channel flags
89d3236553SJohannes Berg  *
90d3236553SJohannes Berg  * Channel flags set by the regulatory control code.
91d3236553SJohannes Berg  *
92d3236553SJohannes Berg  * @IEEE80211_CHAN_DISABLED: This channel is disabled.
93d3236553SJohannes Berg  * @IEEE80211_CHAN_PASSIVE_SCAN: Only passive scanning is permitted
94d3236553SJohannes Berg  *	on this channel.
95d3236553SJohannes Berg  * @IEEE80211_CHAN_NO_IBSS: IBSS is not allowed on this channel.
96d3236553SJohannes Berg  * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel.
97689da1b3SLuis R. Rodriguez  * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel
98d3236553SJohannes Berg  * 	is not permitted.
99689da1b3SLuis R. Rodriguez  * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel
100d3236553SJohannes Berg  * 	is not permitted.
10103f6b084SSeth Forshee  * @IEEE80211_CHAN_NO_OFDM: OFDM is not allowed on this channel.
102d3236553SJohannes Berg  */
103d3236553SJohannes Berg enum ieee80211_channel_flags {
104d3236553SJohannes Berg 	IEEE80211_CHAN_DISABLED		= 1<<0,
105d3236553SJohannes Berg 	IEEE80211_CHAN_PASSIVE_SCAN	= 1<<1,
106d3236553SJohannes Berg 	IEEE80211_CHAN_NO_IBSS		= 1<<2,
107d3236553SJohannes Berg 	IEEE80211_CHAN_RADAR		= 1<<3,
108689da1b3SLuis R. Rodriguez 	IEEE80211_CHAN_NO_HT40PLUS	= 1<<4,
109689da1b3SLuis R. Rodriguez 	IEEE80211_CHAN_NO_HT40MINUS	= 1<<5,
11003f6b084SSeth Forshee 	IEEE80211_CHAN_NO_OFDM		= 1<<6,
111d3236553SJohannes Berg };
112d3236553SJohannes Berg 
113038659e7SLuis R. Rodriguez #define IEEE80211_CHAN_NO_HT40 \
114689da1b3SLuis R. Rodriguez 	(IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
115038659e7SLuis R. Rodriguez 
116d3236553SJohannes Berg /**
117d3236553SJohannes Berg  * struct ieee80211_channel - channel definition
118d3236553SJohannes Berg  *
119d3236553SJohannes Berg  * This structure describes a single channel for use
120d3236553SJohannes Berg  * with cfg80211.
121d3236553SJohannes Berg  *
122d3236553SJohannes Berg  * @center_freq: center frequency in MHz
123d3236553SJohannes Berg  * @hw_value: hardware-specific value for the channel
124d3236553SJohannes Berg  * @flags: channel flags from &enum ieee80211_channel_flags.
125d3236553SJohannes Berg  * @orig_flags: channel flags at registration time, used by regulatory
126d3236553SJohannes Berg  *	code to support devices with additional restrictions
127d3236553SJohannes Berg  * @band: band this channel belongs to.
128d3236553SJohannes Berg  * @max_antenna_gain: maximum antenna gain in dBi
129d3236553SJohannes Berg  * @max_power: maximum transmission power (in dBm)
130eccc068eSHong Wu  * @max_reg_power: maximum regulatory transmission power (in dBm)
131d3236553SJohannes Berg  * @beacon_found: helper to regulatory code to indicate when a beacon
132d3236553SJohannes Berg  *	has been found on this channel. Use regulatory_hint_found_beacon()
13377c2061dSWalter Goldens  *	to enable this, this is useful only on 5 GHz band.
134d3236553SJohannes Berg  * @orig_mag: internal use
135d3236553SJohannes Berg  * @orig_mpwr: internal use
136d3236553SJohannes Berg  */
137d3236553SJohannes Berg struct ieee80211_channel {
138d3236553SJohannes Berg 	enum ieee80211_band band;
139d3236553SJohannes Berg 	u16 center_freq;
140d3236553SJohannes Berg 	u16 hw_value;
141d3236553SJohannes Berg 	u32 flags;
142d3236553SJohannes Berg 	int max_antenna_gain;
143d3236553SJohannes Berg 	int max_power;
144eccc068eSHong Wu 	int max_reg_power;
145d3236553SJohannes Berg 	bool beacon_found;
146d3236553SJohannes Berg 	u32 orig_flags;
147d3236553SJohannes Berg 	int orig_mag, orig_mpwr;
148d3236553SJohannes Berg };
149d3236553SJohannes Berg 
150d3236553SJohannes Berg /**
151d3236553SJohannes Berg  * enum ieee80211_rate_flags - rate flags
152d3236553SJohannes Berg  *
153d3236553SJohannes Berg  * Hardware/specification flags for rates. These are structured
154d3236553SJohannes Berg  * in a way that allows using the same bitrate structure for
155d3236553SJohannes Berg  * different bands/PHY modes.
156d3236553SJohannes Berg  *
157d3236553SJohannes Berg  * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
158d3236553SJohannes Berg  *	preamble on this bitrate; only relevant in 2.4GHz band and
159d3236553SJohannes Berg  *	with CCK rates.
160d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
161d3236553SJohannes Berg  *	when used with 802.11a (on the 5 GHz band); filled by the
162d3236553SJohannes Berg  *	core code when registering the wiphy.
163d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
164d3236553SJohannes Berg  *	when used with 802.11b (on the 2.4 GHz band); filled by the
165d3236553SJohannes Berg  *	core code when registering the wiphy.
166d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
167d3236553SJohannes Berg  *	when used with 802.11g (on the 2.4 GHz band); filled by the
168d3236553SJohannes Berg  *	core code when registering the wiphy.
169d3236553SJohannes Berg  * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
170d3236553SJohannes Berg  */
171d3236553SJohannes Berg enum ieee80211_rate_flags {
172d3236553SJohannes Berg 	IEEE80211_RATE_SHORT_PREAMBLE	= 1<<0,
173d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_A	= 1<<1,
174d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_B	= 1<<2,
175d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_G	= 1<<3,
176d3236553SJohannes Berg 	IEEE80211_RATE_ERP_G		= 1<<4,
177d3236553SJohannes Berg };
178d3236553SJohannes Berg 
179d3236553SJohannes Berg /**
180d3236553SJohannes Berg  * struct ieee80211_rate - bitrate definition
181d3236553SJohannes Berg  *
182d3236553SJohannes Berg  * This structure describes a bitrate that an 802.11 PHY can
183d3236553SJohannes Berg  * operate with. The two values @hw_value and @hw_value_short
184d3236553SJohannes Berg  * are only for driver use when pointers to this structure are
185d3236553SJohannes Berg  * passed around.
186d3236553SJohannes Berg  *
187d3236553SJohannes Berg  * @flags: rate-specific flags
188d3236553SJohannes Berg  * @bitrate: bitrate in units of 100 Kbps
189d3236553SJohannes Berg  * @hw_value: driver/hardware value for this rate
190d3236553SJohannes Berg  * @hw_value_short: driver/hardware value for this rate when
191d3236553SJohannes Berg  *	short preamble is used
192d3236553SJohannes Berg  */
193d3236553SJohannes Berg struct ieee80211_rate {
194d3236553SJohannes Berg 	u32 flags;
195d3236553SJohannes Berg 	u16 bitrate;
196d3236553SJohannes Berg 	u16 hw_value, hw_value_short;
197d3236553SJohannes Berg };
198d3236553SJohannes Berg 
199d3236553SJohannes Berg /**
200d3236553SJohannes Berg  * struct ieee80211_sta_ht_cap - STA's HT capabilities
201d3236553SJohannes Berg  *
202d3236553SJohannes Berg  * This structure describes most essential parameters needed
203d3236553SJohannes Berg  * to describe 802.11n HT capabilities for an STA.
204d3236553SJohannes Berg  *
205d3236553SJohannes Berg  * @ht_supported: is HT supported by the STA
206d3236553SJohannes Berg  * @cap: HT capabilities map as described in 802.11n spec
207d3236553SJohannes Berg  * @ampdu_factor: Maximum A-MPDU length factor
208d3236553SJohannes Berg  * @ampdu_density: Minimum A-MPDU spacing
209d3236553SJohannes Berg  * @mcs: Supported MCS rates
210d3236553SJohannes Berg  */
211d3236553SJohannes Berg struct ieee80211_sta_ht_cap {
212d3236553SJohannes Berg 	u16 cap; /* use IEEE80211_HT_CAP_ */
213d3236553SJohannes Berg 	bool ht_supported;
214d3236553SJohannes Berg 	u8 ampdu_factor;
215d3236553SJohannes Berg 	u8 ampdu_density;
216d3236553SJohannes Berg 	struct ieee80211_mcs_info mcs;
217d3236553SJohannes Berg };
218d3236553SJohannes Berg 
219d3236553SJohannes Berg /**
220bf0c111eSMahesh Palivela  * struct ieee80211_sta_vht_cap - STA's VHT capabilities
221bf0c111eSMahesh Palivela  *
222bf0c111eSMahesh Palivela  * This structure describes most essential parameters needed
223bf0c111eSMahesh Palivela  * to describe 802.11ac VHT capabilities for an STA.
224bf0c111eSMahesh Palivela  *
225bf0c111eSMahesh Palivela  * @vht_supported: is VHT supported by the STA
226bf0c111eSMahesh Palivela  * @cap: VHT capabilities map as described in 802.11ac spec
227bf0c111eSMahesh Palivela  * @vht_mcs: Supported VHT MCS rates
228bf0c111eSMahesh Palivela  */
229bf0c111eSMahesh Palivela struct ieee80211_sta_vht_cap {
230bf0c111eSMahesh Palivela 	bool vht_supported;
231bf0c111eSMahesh Palivela 	u32 cap; /* use IEEE80211_VHT_CAP_ */
232bf0c111eSMahesh Palivela 	struct ieee80211_vht_mcs_info vht_mcs;
233bf0c111eSMahesh Palivela };
234bf0c111eSMahesh Palivela 
235bf0c111eSMahesh Palivela /**
236d3236553SJohannes Berg  * struct ieee80211_supported_band - frequency band definition
237d3236553SJohannes Berg  *
238d3236553SJohannes Berg  * This structure describes a frequency band a wiphy
239d3236553SJohannes Berg  * is able to operate in.
240d3236553SJohannes Berg  *
241d3236553SJohannes Berg  * @channels: Array of channels the hardware can operate in
242d3236553SJohannes Berg  *	in this band.
243d3236553SJohannes Berg  * @band: the band this structure represents
244d3236553SJohannes Berg  * @n_channels: Number of channels in @channels
245d3236553SJohannes Berg  * @bitrates: Array of bitrates the hardware can operate with
246d3236553SJohannes Berg  *	in this band. Must be sorted to give a valid "supported
247d3236553SJohannes Berg  *	rates" IE, i.e. CCK rates first, then OFDM.
248d3236553SJohannes Berg  * @n_bitrates: Number of bitrates in @bitrates
249abe37c4bSJohannes Berg  * @ht_cap: HT capabilities in this band
250c9a0a302SRobert P. J. Day  * @vht_cap: VHT capabilities in this band
251d3236553SJohannes Berg  */
252d3236553SJohannes Berg struct ieee80211_supported_band {
253d3236553SJohannes Berg 	struct ieee80211_channel *channels;
254d3236553SJohannes Berg 	struct ieee80211_rate *bitrates;
255d3236553SJohannes Berg 	enum ieee80211_band band;
256d3236553SJohannes Berg 	int n_channels;
257d3236553SJohannes Berg 	int n_bitrates;
258d3236553SJohannes Berg 	struct ieee80211_sta_ht_cap ht_cap;
259bf0c111eSMahesh Palivela 	struct ieee80211_sta_vht_cap vht_cap;
260d3236553SJohannes Berg };
261d3236553SJohannes Berg 
262d3236553SJohannes Berg /*
263d3236553SJohannes Berg  * Wireless hardware/device configuration structures and methods
264704232c2SJohannes Berg  */
265704232c2SJohannes Berg 
2662ec600d6SLuis Carlos Cobo /**
267d70e9693SJohannes Berg  * DOC: Actions and configuration
268d70e9693SJohannes Berg  *
269d70e9693SJohannes Berg  * Each wireless device and each virtual interface offer a set of configuration
270d70e9693SJohannes Berg  * operations and other actions that are invoked by userspace. Each of these
271d70e9693SJohannes Berg  * actions is described in the operations structure, and the parameters these
272d70e9693SJohannes Berg  * operations use are described separately.
273d70e9693SJohannes Berg  *
274d70e9693SJohannes Berg  * Additionally, some operations are asynchronous and expect to get status
275d70e9693SJohannes Berg  * information via some functions that drivers need to call.
276d70e9693SJohannes Berg  *
277d70e9693SJohannes Berg  * Scanning and BSS list handling with its associated functionality is described
278d70e9693SJohannes Berg  * in a separate chapter.
279d70e9693SJohannes Berg  */
280d70e9693SJohannes Berg 
281d70e9693SJohannes Berg /**
2822ec600d6SLuis Carlos Cobo  * struct vif_params - describes virtual interface parameters
2838b787643SFelix Fietkau  * @use_4addr: use 4-address frames
2841c18f145SArend van Spriel  * @macaddr: address to use for this virtual interface. This will only
2851c18f145SArend van Spriel  * 	be used for non-netdevice interfaces. If this parameter is set
2861c18f145SArend van Spriel  * 	to zero address the driver may determine the address as needed.
2872ec600d6SLuis Carlos Cobo  */
2882ec600d6SLuis Carlos Cobo struct vif_params {
2898b787643SFelix Fietkau        int use_4addr;
2901c18f145SArend van Spriel        u8 macaddr[ETH_ALEN];
2912ec600d6SLuis Carlos Cobo };
2922ec600d6SLuis Carlos Cobo 
29341ade00fSJohannes Berg /**
29441ade00fSJohannes Berg  * struct key_params - key information
29541ade00fSJohannes Berg  *
29641ade00fSJohannes Berg  * Information about a key
29741ade00fSJohannes Berg  *
29841ade00fSJohannes Berg  * @key: key material
29941ade00fSJohannes Berg  * @key_len: length of key material
30041ade00fSJohannes Berg  * @cipher: cipher suite selector
30141ade00fSJohannes Berg  * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
30241ade00fSJohannes Berg  *	with the get_key() callback, must be in little endian,
30341ade00fSJohannes Berg  *	length given by @seq_len.
304abe37c4bSJohannes Berg  * @seq_len: length of @seq.
30541ade00fSJohannes Berg  */
30641ade00fSJohannes Berg struct key_params {
30741ade00fSJohannes Berg 	u8 *key;
30841ade00fSJohannes Berg 	u8 *seq;
30941ade00fSJohannes Berg 	int key_len;
31041ade00fSJohannes Berg 	int seq_len;
31141ade00fSJohannes Berg 	u32 cipher;
31241ade00fSJohannes Berg };
31341ade00fSJohannes Berg 
314ed1b6cc7SJohannes Berg /**
315683b6d3bSJohannes Berg  * struct cfg80211_chan_def - channel definition
316683b6d3bSJohannes Berg  * @chan: the (control) channel
3173d9d1d66SJohannes Berg  * @width: channel width
3183d9d1d66SJohannes Berg  * @center_freq1: center frequency of first segment
3193d9d1d66SJohannes Berg  * @center_freq2: center frequency of second segment
3203d9d1d66SJohannes Berg  *	(only with 80+80 MHz)
321683b6d3bSJohannes Berg  */
322683b6d3bSJohannes Berg struct cfg80211_chan_def {
323683b6d3bSJohannes Berg 	struct ieee80211_channel *chan;
3243d9d1d66SJohannes Berg 	enum nl80211_chan_width width;
3253d9d1d66SJohannes Berg 	u32 center_freq1;
3263d9d1d66SJohannes Berg 	u32 center_freq2;
327683b6d3bSJohannes Berg };
328683b6d3bSJohannes Berg 
3293d9d1d66SJohannes Berg /**
3303d9d1d66SJohannes Berg  * cfg80211_get_chandef_type - return old channel type from chandef
3313d9d1d66SJohannes Berg  * @chandef: the channel definition
3323d9d1d66SJohannes Berg  *
3330ae997dcSYacine Belkadi  * Return: The old channel type (NOHT, HT20, HT40+/-) from a given
3343d9d1d66SJohannes Berg  * chandef, which must have a bandwidth allowing this conversion.
3353d9d1d66SJohannes Berg  */
336683b6d3bSJohannes Berg static inline enum nl80211_channel_type
337683b6d3bSJohannes Berg cfg80211_get_chandef_type(const struct cfg80211_chan_def *chandef)
338683b6d3bSJohannes Berg {
3393d9d1d66SJohannes Berg 	switch (chandef->width) {
3403d9d1d66SJohannes Berg 	case NL80211_CHAN_WIDTH_20_NOHT:
3413d9d1d66SJohannes Berg 		return NL80211_CHAN_NO_HT;
3423d9d1d66SJohannes Berg 	case NL80211_CHAN_WIDTH_20:
3433d9d1d66SJohannes Berg 		return NL80211_CHAN_HT20;
3443d9d1d66SJohannes Berg 	case NL80211_CHAN_WIDTH_40:
3453d9d1d66SJohannes Berg 		if (chandef->center_freq1 > chandef->chan->center_freq)
3463d9d1d66SJohannes Berg 			return NL80211_CHAN_HT40PLUS;
3473d9d1d66SJohannes Berg 		return NL80211_CHAN_HT40MINUS;
3483d9d1d66SJohannes Berg 	default:
3493d9d1d66SJohannes Berg 		WARN_ON(1);
3503d9d1d66SJohannes Berg 		return NL80211_CHAN_NO_HT;
351683b6d3bSJohannes Berg 	}
3523d9d1d66SJohannes Berg }
3533d9d1d66SJohannes Berg 
3543d9d1d66SJohannes Berg /**
3553d9d1d66SJohannes Berg  * cfg80211_chandef_create - create channel definition using channel type
3563d9d1d66SJohannes Berg  * @chandef: the channel definition struct to fill
3573d9d1d66SJohannes Berg  * @channel: the control channel
3583d9d1d66SJohannes Berg  * @chantype: the channel type
3593d9d1d66SJohannes Berg  *
3603d9d1d66SJohannes Berg  * Given a channel type, create a channel definition.
3613d9d1d66SJohannes Berg  */
3623d9d1d66SJohannes Berg void cfg80211_chandef_create(struct cfg80211_chan_def *chandef,
3633d9d1d66SJohannes Berg 			     struct ieee80211_channel *channel,
3643d9d1d66SJohannes Berg 			     enum nl80211_channel_type chantype);
3653d9d1d66SJohannes Berg 
3663d9d1d66SJohannes Berg /**
3673d9d1d66SJohannes Berg  * cfg80211_chandef_identical - check if two channel definitions are identical
3683d9d1d66SJohannes Berg  * @chandef1: first channel definition
3693d9d1d66SJohannes Berg  * @chandef2: second channel definition
3703d9d1d66SJohannes Berg  *
3710ae997dcSYacine Belkadi  * Return: %true if the channels defined by the channel definitions are
3723d9d1d66SJohannes Berg  * identical, %false otherwise.
3733d9d1d66SJohannes Berg  */
3743d9d1d66SJohannes Berg static inline bool
3753d9d1d66SJohannes Berg cfg80211_chandef_identical(const struct cfg80211_chan_def *chandef1,
3763d9d1d66SJohannes Berg 			   const struct cfg80211_chan_def *chandef2)
3773d9d1d66SJohannes Berg {
3783d9d1d66SJohannes Berg 	return (chandef1->chan == chandef2->chan &&
3793d9d1d66SJohannes Berg 		chandef1->width == chandef2->width &&
3803d9d1d66SJohannes Berg 		chandef1->center_freq1 == chandef2->center_freq1 &&
3813d9d1d66SJohannes Berg 		chandef1->center_freq2 == chandef2->center_freq2);
3823d9d1d66SJohannes Berg }
3833d9d1d66SJohannes Berg 
3843d9d1d66SJohannes Berg /**
3853d9d1d66SJohannes Berg  * cfg80211_chandef_compatible - check if two channel definitions are compatible
3863d9d1d66SJohannes Berg  * @chandef1: first channel definition
3873d9d1d66SJohannes Berg  * @chandef2: second channel definition
3883d9d1d66SJohannes Berg  *
3890ae997dcSYacine Belkadi  * Return: %NULL if the given channel definitions are incompatible,
3903d9d1d66SJohannes Berg  * chandef1 or chandef2 otherwise.
3913d9d1d66SJohannes Berg  */
3923d9d1d66SJohannes Berg const struct cfg80211_chan_def *
3933d9d1d66SJohannes Berg cfg80211_chandef_compatible(const struct cfg80211_chan_def *chandef1,
3943d9d1d66SJohannes Berg 			    const struct cfg80211_chan_def *chandef2);
395683b6d3bSJohannes Berg 
396683b6d3bSJohannes Berg /**
3979f5e8f6eSJohannes Berg  * cfg80211_chandef_valid - check if a channel definition is valid
3989f5e8f6eSJohannes Berg  * @chandef: the channel definition to check
3990ae997dcSYacine Belkadi  * Return: %true if the channel definition is valid. %false otherwise.
4009f5e8f6eSJohannes Berg  */
4019f5e8f6eSJohannes Berg bool cfg80211_chandef_valid(const struct cfg80211_chan_def *chandef);
4029f5e8f6eSJohannes Berg 
4039f5e8f6eSJohannes Berg /**
4049f5e8f6eSJohannes Berg  * cfg80211_chandef_usable - check if secondary channels can be used
4059f5e8f6eSJohannes Berg  * @wiphy: the wiphy to validate against
4069f5e8f6eSJohannes Berg  * @chandef: the channel definition to check
4070ae997dcSYacine Belkadi  * @prohibited_flags: the regulatory channel flags that must not be set
4080ae997dcSYacine Belkadi  * Return: %true if secondary channels are usable. %false otherwise.
4099f5e8f6eSJohannes Berg  */
4109f5e8f6eSJohannes Berg bool cfg80211_chandef_usable(struct wiphy *wiphy,
4119f5e8f6eSJohannes Berg 			     const struct cfg80211_chan_def *chandef,
4129f5e8f6eSJohannes Berg 			     u32 prohibited_flags);
4139f5e8f6eSJohannes Berg 
4149f5e8f6eSJohannes Berg /**
41561fa713cSHolger Schurig  * enum survey_info_flags - survey information flags
41661fa713cSHolger Schurig  *
417abe37c4bSJohannes Berg  * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
41817e5a808SFelix Fietkau  * @SURVEY_INFO_IN_USE: channel is currently being used
4198610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME: channel active time (in ms) was filled in
4208610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_BUSY: channel busy time was filled in
4218610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_EXT_BUSY: extension channel busy time was filled in
4228610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_RX: channel receive time was filled in
4238610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_TX: channel transmit time was filled in
424abe37c4bSJohannes Berg  *
42561fa713cSHolger Schurig  * Used by the driver to indicate which info in &struct survey_info
42661fa713cSHolger Schurig  * it has filled in during the get_survey().
42761fa713cSHolger Schurig  */
42861fa713cSHolger Schurig enum survey_info_flags {
42961fa713cSHolger Schurig 	SURVEY_INFO_NOISE_DBM = 1<<0,
43017e5a808SFelix Fietkau 	SURVEY_INFO_IN_USE = 1<<1,
4318610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME = 1<<2,
4328610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_BUSY = 1<<3,
4338610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_EXT_BUSY = 1<<4,
4348610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_RX = 1<<5,
4358610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_TX = 1<<6,
43661fa713cSHolger Schurig };
43761fa713cSHolger Schurig 
43861fa713cSHolger Schurig /**
43961fa713cSHolger Schurig  * struct survey_info - channel survey response
44061fa713cSHolger Schurig  *
44161fa713cSHolger Schurig  * @channel: the channel this survey record reports, mandatory
44261fa713cSHolger Schurig  * @filled: bitflag of flags from &enum survey_info_flags
44361fa713cSHolger Schurig  * @noise: channel noise in dBm. This and all following fields are
44461fa713cSHolger Schurig  *     optional
4458610c29aSFelix Fietkau  * @channel_time: amount of time in ms the radio spent on the channel
4468610c29aSFelix Fietkau  * @channel_time_busy: amount of time the primary channel was sensed busy
4478610c29aSFelix Fietkau  * @channel_time_ext_busy: amount of time the extension channel was sensed busy
4488610c29aSFelix Fietkau  * @channel_time_rx: amount of time the radio spent receiving data
4498610c29aSFelix Fietkau  * @channel_time_tx: amount of time the radio spent transmitting data
45061fa713cSHolger Schurig  *
451abe37c4bSJohannes Berg  * Used by dump_survey() to report back per-channel survey information.
452abe37c4bSJohannes Berg  *
45361fa713cSHolger Schurig  * This structure can later be expanded with things like
45461fa713cSHolger Schurig  * channel duty cycle etc.
45561fa713cSHolger Schurig  */
45661fa713cSHolger Schurig struct survey_info {
45761fa713cSHolger Schurig 	struct ieee80211_channel *channel;
4588610c29aSFelix Fietkau 	u64 channel_time;
4598610c29aSFelix Fietkau 	u64 channel_time_busy;
4608610c29aSFelix Fietkau 	u64 channel_time_ext_busy;
4618610c29aSFelix Fietkau 	u64 channel_time_rx;
4628610c29aSFelix Fietkau 	u64 channel_time_tx;
46361fa713cSHolger Schurig 	u32 filled;
46461fa713cSHolger Schurig 	s8 noise;
46561fa713cSHolger Schurig };
46661fa713cSHolger Schurig 
46761fa713cSHolger Schurig /**
4685fb628e9SJouni Malinen  * struct cfg80211_crypto_settings - Crypto settings
4695fb628e9SJouni Malinen  * @wpa_versions: indicates which, if any, WPA versions are enabled
4705fb628e9SJouni Malinen  *	(from enum nl80211_wpa_versions)
4715fb628e9SJouni Malinen  * @cipher_group: group key cipher suite (or 0 if unset)
4725fb628e9SJouni Malinen  * @n_ciphers_pairwise: number of AP supported unicast ciphers
4735fb628e9SJouni Malinen  * @ciphers_pairwise: unicast key cipher suites
4745fb628e9SJouni Malinen  * @n_akm_suites: number of AKM suites
4755fb628e9SJouni Malinen  * @akm_suites: AKM suites
4765fb628e9SJouni Malinen  * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
4775fb628e9SJouni Malinen  *	sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
4785fb628e9SJouni Malinen  *	required to assume that the port is unauthorized until authorized by
4795fb628e9SJouni Malinen  *	user space. Otherwise, port is marked authorized by default.
4805fb628e9SJouni Malinen  * @control_port_ethertype: the control port protocol that should be
4815fb628e9SJouni Malinen  *	allowed through even on unauthorized ports
4825fb628e9SJouni Malinen  * @control_port_no_encrypt: TRUE to prevent encryption of control port
4835fb628e9SJouni Malinen  *	protocol frames.
4845fb628e9SJouni Malinen  */
4855fb628e9SJouni Malinen struct cfg80211_crypto_settings {
4865fb628e9SJouni Malinen 	u32 wpa_versions;
4875fb628e9SJouni Malinen 	u32 cipher_group;
4885fb628e9SJouni Malinen 	int n_ciphers_pairwise;
4895fb628e9SJouni Malinen 	u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
4905fb628e9SJouni Malinen 	int n_akm_suites;
4915fb628e9SJouni Malinen 	u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
4925fb628e9SJouni Malinen 	bool control_port;
4935fb628e9SJouni Malinen 	__be16 control_port_ethertype;
4945fb628e9SJouni Malinen 	bool control_port_no_encrypt;
4955fb628e9SJouni Malinen };
4965fb628e9SJouni Malinen 
4975fb628e9SJouni Malinen /**
4988860020eSJohannes Berg  * struct cfg80211_beacon_data - beacon data
499ed1b6cc7SJohannes Berg  * @head: head portion of beacon (before TIM IE)
500ed1b6cc7SJohannes Berg  *     or %NULL if not changed
501ed1b6cc7SJohannes Berg  * @tail: tail portion of beacon (after TIM IE)
502ed1b6cc7SJohannes Berg  *     or %NULL if not changed
503ed1b6cc7SJohannes Berg  * @head_len: length of @head
504ed1b6cc7SJohannes Berg  * @tail_len: length of @tail
5059946ecfbSJouni Malinen  * @beacon_ies: extra information element(s) to add into Beacon frames or %NULL
5069946ecfbSJouni Malinen  * @beacon_ies_len: length of beacon_ies in octets
5079946ecfbSJouni Malinen  * @proberesp_ies: extra information element(s) to add into Probe Response
5089946ecfbSJouni Malinen  *	frames or %NULL
5099946ecfbSJouni Malinen  * @proberesp_ies_len: length of proberesp_ies in octets
5109946ecfbSJouni Malinen  * @assocresp_ies: extra information element(s) to add into (Re)Association
5119946ecfbSJouni Malinen  *	Response frames or %NULL
5129946ecfbSJouni Malinen  * @assocresp_ies_len: length of assocresp_ies in octets
51300f740e1SArik Nemtsov  * @probe_resp_len: length of probe response template (@probe_resp)
51400f740e1SArik Nemtsov  * @probe_resp: probe response template (AP mode only)
515ed1b6cc7SJohannes Berg  */
5168860020eSJohannes Berg struct cfg80211_beacon_data {
5178860020eSJohannes Berg 	const u8 *head, *tail;
5188860020eSJohannes Berg 	const u8 *beacon_ies;
5198860020eSJohannes Berg 	const u8 *proberesp_ies;
5208860020eSJohannes Berg 	const u8 *assocresp_ies;
5218860020eSJohannes Berg 	const u8 *probe_resp;
5228860020eSJohannes Berg 
5238860020eSJohannes Berg 	size_t head_len, tail_len;
5248860020eSJohannes Berg 	size_t beacon_ies_len;
5258860020eSJohannes Berg 	size_t proberesp_ies_len;
5268860020eSJohannes Berg 	size_t assocresp_ies_len;
5278860020eSJohannes Berg 	size_t probe_resp_len;
5288860020eSJohannes Berg };
5298860020eSJohannes Berg 
5306d45a74bSVasanthakumar Thiagarajan struct mac_address {
5316d45a74bSVasanthakumar Thiagarajan 	u8 addr[ETH_ALEN];
5326d45a74bSVasanthakumar Thiagarajan };
5336d45a74bSVasanthakumar Thiagarajan 
5348860020eSJohannes Berg /**
535*77765eafSVasanthakumar Thiagarajan  * struct cfg80211_acl_data - Access control list data
536*77765eafSVasanthakumar Thiagarajan  *
537*77765eafSVasanthakumar Thiagarajan  * @acl_policy: ACL policy to be applied on the station's
538*77765eafSVasanthakumar Thiagarajan 	entry specified by mac_addr
539*77765eafSVasanthakumar Thiagarajan  * @n_acl_entries: Number of MAC address entries passed
540*77765eafSVasanthakumar Thiagarajan  * @mac_addrs: List of MAC addresses of stations to be used for ACL
541*77765eafSVasanthakumar Thiagarajan  */
542*77765eafSVasanthakumar Thiagarajan struct cfg80211_acl_data {
543*77765eafSVasanthakumar Thiagarajan 	enum nl80211_acl_policy acl_policy;
544*77765eafSVasanthakumar Thiagarajan 	int n_acl_entries;
545*77765eafSVasanthakumar Thiagarajan 
546*77765eafSVasanthakumar Thiagarajan 	/* Keep it last */
547*77765eafSVasanthakumar Thiagarajan 	struct mac_address mac_addrs[];
548*77765eafSVasanthakumar Thiagarajan };
549*77765eafSVasanthakumar Thiagarajan 
550*77765eafSVasanthakumar Thiagarajan /**
5518860020eSJohannes Berg  * struct cfg80211_ap_settings - AP configuration
5528860020eSJohannes Berg  *
5538860020eSJohannes Berg  * Used to configure an AP interface.
5548860020eSJohannes Berg  *
555683b6d3bSJohannes Berg  * @chandef: defines the channel to use
5568860020eSJohannes Berg  * @beacon: beacon data
5578860020eSJohannes Berg  * @beacon_interval: beacon interval
5588860020eSJohannes Berg  * @dtim_period: DTIM period
5598860020eSJohannes Berg  * @ssid: SSID to be used in the BSS (note: may be %NULL if not provided from
5608860020eSJohannes Berg  *	user space)
5618860020eSJohannes Berg  * @ssid_len: length of @ssid
5628860020eSJohannes Berg  * @hidden_ssid: whether to hide the SSID in Beacon/Probe Response frames
5638860020eSJohannes Berg  * @crypto: crypto settings
5648860020eSJohannes Berg  * @privacy: the BSS uses privacy
5658860020eSJohannes Berg  * @auth_type: Authentication type (algorithm)
5661b658f11SVasanthakumar Thiagarajan  * @inactivity_timeout: time in seconds to determine station's inactivity.
56753cabad7SJohannes Berg  * @p2p_ctwindow: P2P CT Window
56853cabad7SJohannes Berg  * @p2p_opp_ps: P2P opportunistic PS
569*77765eafSVasanthakumar Thiagarajan  * @acl: ACL configuration used by the drivers which has support for
570*77765eafSVasanthakumar Thiagarajan  *	MAC address based access control
5718860020eSJohannes Berg  */
5728860020eSJohannes Berg struct cfg80211_ap_settings {
573683b6d3bSJohannes Berg 	struct cfg80211_chan_def chandef;
574aa430da4SJohannes Berg 
5758860020eSJohannes Berg 	struct cfg80211_beacon_data beacon;
5768860020eSJohannes Berg 
5778860020eSJohannes Berg 	int beacon_interval, dtim_period;
57832e9de84SJouni Malinen 	const u8 *ssid;
57932e9de84SJouni Malinen 	size_t ssid_len;
58032e9de84SJouni Malinen 	enum nl80211_hidden_ssid hidden_ssid;
5815fb628e9SJouni Malinen 	struct cfg80211_crypto_settings crypto;
5825fb628e9SJouni Malinen 	bool privacy;
5835fb628e9SJouni Malinen 	enum nl80211_auth_type auth_type;
5841b658f11SVasanthakumar Thiagarajan 	int inactivity_timeout;
58553cabad7SJohannes Berg 	u8 p2p_ctwindow;
58653cabad7SJohannes Berg 	bool p2p_opp_ps;
587*77765eafSVasanthakumar Thiagarajan 	const struct cfg80211_acl_data *acl;
588ed1b6cc7SJohannes Berg };
589ed1b6cc7SJohannes Berg 
5905727ef1bSJohannes Berg /**
5912ec600d6SLuis Carlos Cobo  * enum plink_action - actions to perform in mesh peers
5922ec600d6SLuis Carlos Cobo  *
5932ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_INVALID: action 0 is reserved
5942ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_OPEN: start mesh peer link establishment
595abe37c4bSJohannes Berg  * @PLINK_ACTION_BLOCK: block traffic from this mesh peer
5962ec600d6SLuis Carlos Cobo  */
5972ec600d6SLuis Carlos Cobo enum plink_actions {
5982ec600d6SLuis Carlos Cobo 	PLINK_ACTION_INVALID,
5992ec600d6SLuis Carlos Cobo 	PLINK_ACTION_OPEN,
6002ec600d6SLuis Carlos Cobo 	PLINK_ACTION_BLOCK,
6012ec600d6SLuis Carlos Cobo };
6022ec600d6SLuis Carlos Cobo 
6032ec600d6SLuis Carlos Cobo /**
6043b9ce80cSJohannes Berg  * enum station_parameters_apply_mask - station parameter values to apply
6053b9ce80cSJohannes Berg  * @STATION_PARAM_APPLY_UAPSD: apply new uAPSD parameters (uapsd_queues, max_sp)
6063b9ce80cSJohannes Berg  *
6073b9ce80cSJohannes Berg  * Not all station parameters have in-band "no change" signalling,
6083b9ce80cSJohannes Berg  * for those that don't these flags will are used.
6093b9ce80cSJohannes Berg  */
6103b9ce80cSJohannes Berg enum station_parameters_apply_mask {
6113b9ce80cSJohannes Berg 	STATION_PARAM_APPLY_UAPSD = BIT(0),
6123b9ce80cSJohannes Berg };
6133b9ce80cSJohannes Berg 
6143b9ce80cSJohannes Berg /**
6155727ef1bSJohannes Berg  * struct station_parameters - station parameters
6165727ef1bSJohannes Berg  *
6175727ef1bSJohannes Berg  * Used to change and create a new station.
6185727ef1bSJohannes Berg  *
6195727ef1bSJohannes Berg  * @vlan: vlan interface station should belong to
6205727ef1bSJohannes Berg  * @supported_rates: supported rates in IEEE 802.11 format
6215727ef1bSJohannes Berg  *	(or NULL for no change)
6225727ef1bSJohannes Berg  * @supported_rates_len: number of supported rates
623eccb8e8fSJohannes Berg  * @sta_flags_mask: station flags that changed
624eccb8e8fSJohannes Berg  *	(bitmask of BIT(NL80211_STA_FLAG_...))
625eccb8e8fSJohannes Berg  * @sta_flags_set: station flags values
626eccb8e8fSJohannes Berg  *	(bitmask of BIT(NL80211_STA_FLAG_...))
6275727ef1bSJohannes Berg  * @listen_interval: listen interval or -1 for no change
6285727ef1bSJohannes Berg  * @aid: AID or zero for no change
629abe37c4bSJohannes Berg  * @plink_action: plink action to take
6309c3990aaSJavier Cardona  * @plink_state: set the peer link state for a station
631abe37c4bSJohannes Berg  * @ht_capa: HT capabilities of station
632f461be3eSMahesh Palivela  * @vht_capa: VHT capabilities of station
633910868dbSEliad Peller  * @uapsd_queues: bitmap of queues configured for uapsd. same format
634910868dbSEliad Peller  *	as the AC bitmap in the QoS info field
635910868dbSEliad Peller  * @max_sp: max Service Period. same format as the MAX_SP in the
636910868dbSEliad Peller  *	QoS info field (but already shifted down)
637c26887d2SJohannes Berg  * @sta_modify_mask: bitmap indicating which parameters changed
638c26887d2SJohannes Berg  *	(for those that don't have a natural "no change" value),
639c26887d2SJohannes Berg  *	see &enum station_parameters_apply_mask
6403b1c5a53SMarco Porsch  * @local_pm: local link-specific mesh power save mode (no change when set
6413b1c5a53SMarco Porsch  *	to unknown)
6425727ef1bSJohannes Berg  */
6435727ef1bSJohannes Berg struct station_parameters {
6445727ef1bSJohannes Berg 	u8 *supported_rates;
6455727ef1bSJohannes Berg 	struct net_device *vlan;
646eccb8e8fSJohannes Berg 	u32 sta_flags_mask, sta_flags_set;
6473b9ce80cSJohannes Berg 	u32 sta_modify_mask;
6485727ef1bSJohannes Berg 	int listen_interval;
6495727ef1bSJohannes Berg 	u16 aid;
6505727ef1bSJohannes Berg 	u8 supported_rates_len;
6512ec600d6SLuis Carlos Cobo 	u8 plink_action;
6529c3990aaSJavier Cardona 	u8 plink_state;
65336aedc90SJouni Malinen 	struct ieee80211_ht_cap *ht_capa;
654f461be3eSMahesh Palivela 	struct ieee80211_vht_cap *vht_capa;
655c75786c9SEliad Peller 	u8 uapsd_queues;
656c75786c9SEliad Peller 	u8 max_sp;
6573b1c5a53SMarco Porsch 	enum nl80211_mesh_power_mode local_pm;
6585727ef1bSJohannes Berg };
6595727ef1bSJohannes Berg 
660fd5b74dcSJohannes Berg /**
6612ec600d6SLuis Carlos Cobo  * enum station_info_flags - station information flags
662fd5b74dcSJohannes Berg  *
6632ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct station_info
6642ec600d6SLuis Carlos Cobo  * it has filled in during get_station() or dump_station().
665fd5b74dcSJohannes Berg  *
6662ec600d6SLuis Carlos Cobo  * @STATION_INFO_INACTIVE_TIME: @inactive_time filled
6672ec600d6SLuis Carlos Cobo  * @STATION_INFO_RX_BYTES: @rx_bytes filled
6682ec600d6SLuis Carlos Cobo  * @STATION_INFO_TX_BYTES: @tx_bytes filled
6692ec600d6SLuis Carlos Cobo  * @STATION_INFO_LLID: @llid filled
6702ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLID: @plid filled
6712ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLINK_STATE: @plink_state filled
672420e7fabSHenning Rogge  * @STATION_INFO_SIGNAL: @signal filled
673c8dcfd8aSFelix Fietkau  * @STATION_INFO_TX_BITRATE: @txrate fields are filled
674420e7fabSHenning Rogge  *  (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs)
67598c8a60aSJouni Malinen  * @STATION_INFO_RX_PACKETS: @rx_packets filled
67698c8a60aSJouni Malinen  * @STATION_INFO_TX_PACKETS: @tx_packets filled
677b206b4efSBruno Randolf  * @STATION_INFO_TX_RETRIES: @tx_retries filled
678b206b4efSBruno Randolf  * @STATION_INFO_TX_FAILED: @tx_failed filled
6795a5c731aSBen Greear  * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled
680541a45a1SBruno Randolf  * @STATION_INFO_SIGNAL_AVG: @signal_avg filled
681c8dcfd8aSFelix Fietkau  * @STATION_INFO_RX_BITRATE: @rxrate fields are filled
682f4263c98SPaul Stewart  * @STATION_INFO_BSS_PARAM: @bss_param filled
683ebe27c91SMohammed Shafi Shajakhan  * @STATION_INFO_CONNECTED_TIME: @connected_time filled
684040bdf71SFelix Fietkau  * @STATION_INFO_ASSOC_REQ_IES: @assoc_req_ies filled
685bb6e753eSHelmut Schaa  * @STATION_INFO_STA_FLAGS: @sta_flags filled
686a85e1d55SPaul Stewart  * @STATION_INFO_BEACON_LOSS_COUNT: @beacon_loss_count filled
687d299a1f2SJavier Cardona  * @STATION_INFO_T_OFFSET: @t_offset filled
6883b1c5a53SMarco Porsch  * @STATION_INFO_LOCAL_PM: @local_pm filled
6893b1c5a53SMarco Porsch  * @STATION_INFO_PEER_PM: @peer_pm filled
6903b1c5a53SMarco Porsch  * @STATION_INFO_NONPEER_PM: @nonpeer_pm filled
691fd5b74dcSJohannes Berg  */
6922ec600d6SLuis Carlos Cobo enum station_info_flags {
6932ec600d6SLuis Carlos Cobo 	STATION_INFO_INACTIVE_TIME	= 1<<0,
6942ec600d6SLuis Carlos Cobo 	STATION_INFO_RX_BYTES		= 1<<1,
6952ec600d6SLuis Carlos Cobo 	STATION_INFO_TX_BYTES		= 1<<2,
6962ec600d6SLuis Carlos Cobo 	STATION_INFO_LLID		= 1<<3,
6972ec600d6SLuis Carlos Cobo 	STATION_INFO_PLID		= 1<<4,
6982ec600d6SLuis Carlos Cobo 	STATION_INFO_PLINK_STATE	= 1<<5,
699420e7fabSHenning Rogge 	STATION_INFO_SIGNAL		= 1<<6,
700420e7fabSHenning Rogge 	STATION_INFO_TX_BITRATE		= 1<<7,
70198c8a60aSJouni Malinen 	STATION_INFO_RX_PACKETS		= 1<<8,
70298c8a60aSJouni Malinen 	STATION_INFO_TX_PACKETS		= 1<<9,
703b206b4efSBruno Randolf 	STATION_INFO_TX_RETRIES		= 1<<10,
704b206b4efSBruno Randolf 	STATION_INFO_TX_FAILED		= 1<<11,
7055a5c731aSBen Greear 	STATION_INFO_RX_DROP_MISC	= 1<<12,
706541a45a1SBruno Randolf 	STATION_INFO_SIGNAL_AVG		= 1<<13,
707c8dcfd8aSFelix Fietkau 	STATION_INFO_RX_BITRATE		= 1<<14,
708f4263c98SPaul Stewart 	STATION_INFO_BSS_PARAM          = 1<<15,
709040bdf71SFelix Fietkau 	STATION_INFO_CONNECTED_TIME	= 1<<16,
710bb6e753eSHelmut Schaa 	STATION_INFO_ASSOC_REQ_IES	= 1<<17,
711a85e1d55SPaul Stewart 	STATION_INFO_STA_FLAGS		= 1<<18,
712d299a1f2SJavier Cardona 	STATION_INFO_BEACON_LOSS_COUNT	= 1<<19,
713d299a1f2SJavier Cardona 	STATION_INFO_T_OFFSET		= 1<<20,
7143b1c5a53SMarco Porsch 	STATION_INFO_LOCAL_PM		= 1<<21,
7153b1c5a53SMarco Porsch 	STATION_INFO_PEER_PM		= 1<<22,
7163b1c5a53SMarco Porsch 	STATION_INFO_NONPEER_PM		= 1<<23,
717420e7fabSHenning Rogge };
718420e7fabSHenning Rogge 
719420e7fabSHenning Rogge /**
720420e7fabSHenning Rogge  * enum station_info_rate_flags - bitrate info flags
721420e7fabSHenning Rogge  *
722420e7fabSHenning Rogge  * Used by the driver to indicate the specific rate transmission
723420e7fabSHenning Rogge  * type for 802.11n transmissions.
724420e7fabSHenning Rogge  *
725db9c64cfSJohannes Berg  * @RATE_INFO_FLAGS_MCS: mcs field filled with HT MCS
726db9c64cfSJohannes Berg  * @RATE_INFO_FLAGS_VHT_MCS: mcs field filled with VHT MCS
727db9c64cfSJohannes Berg  * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 MHz width transmission
728db9c64cfSJohannes Berg  * @RATE_INFO_FLAGS_80_MHZ_WIDTH: 80 MHz width transmission
729db9c64cfSJohannes Berg  * @RATE_INFO_FLAGS_80P80_MHZ_WIDTH: 80+80 MHz width transmission
730db9c64cfSJohannes Berg  * @RATE_INFO_FLAGS_160_MHZ_WIDTH: 160 MHz width transmission
731420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
732db9c64cfSJohannes Berg  * @RATE_INFO_FLAGS_60G: 60GHz MCS
733420e7fabSHenning Rogge  */
734420e7fabSHenning Rogge enum rate_info_flags {
735db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_MCS			= BIT(0),
736db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_VHT_MCS			= BIT(1),
737db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_40_MHZ_WIDTH		= BIT(2),
738db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_80_MHZ_WIDTH		= BIT(3),
739db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_80P80_MHZ_WIDTH		= BIT(4),
740db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_160_MHZ_WIDTH		= BIT(5),
741db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_SHORT_GI		= BIT(6),
742db9c64cfSJohannes Berg 	RATE_INFO_FLAGS_60G			= BIT(7),
743420e7fabSHenning Rogge };
744420e7fabSHenning Rogge 
745420e7fabSHenning Rogge /**
746420e7fabSHenning Rogge  * struct rate_info - bitrate information
747420e7fabSHenning Rogge  *
748420e7fabSHenning Rogge  * Information about a receiving or transmitting bitrate
749420e7fabSHenning Rogge  *
750420e7fabSHenning Rogge  * @flags: bitflag of flags from &enum rate_info_flags
751420e7fabSHenning Rogge  * @mcs: mcs index if struct describes a 802.11n bitrate
752420e7fabSHenning Rogge  * @legacy: bitrate in 100kbit/s for 802.11abg
753db9c64cfSJohannes Berg  * @nss: number of streams (VHT only)
754420e7fabSHenning Rogge  */
755420e7fabSHenning Rogge struct rate_info {
756420e7fabSHenning Rogge 	u8 flags;
757420e7fabSHenning Rogge 	u8 mcs;
758420e7fabSHenning Rogge 	u16 legacy;
759db9c64cfSJohannes Berg 	u8 nss;
760fd5b74dcSJohannes Berg };
761fd5b74dcSJohannes Berg 
762fd5b74dcSJohannes Berg /**
763f4263c98SPaul Stewart  * enum station_info_rate_flags - bitrate info flags
764f4263c98SPaul Stewart  *
765f4263c98SPaul Stewart  * Used by the driver to indicate the specific rate transmission
766f4263c98SPaul Stewart  * type for 802.11n transmissions.
767f4263c98SPaul Stewart  *
768f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
769f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
770f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
771f4263c98SPaul Stewart  */
772f4263c98SPaul Stewart enum bss_param_flags {
773f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_CTS_PROT	= 1<<0,
774f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_SHORT_PREAMBLE	= 1<<1,
775f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_SHORT_SLOT_TIME	= 1<<2,
776f4263c98SPaul Stewart };
777f4263c98SPaul Stewart 
778f4263c98SPaul Stewart /**
779f4263c98SPaul Stewart  * struct sta_bss_parameters - BSS parameters for the attached station
780f4263c98SPaul Stewart  *
781f4263c98SPaul Stewart  * Information about the currently associated BSS
782f4263c98SPaul Stewart  *
783f4263c98SPaul Stewart  * @flags: bitflag of flags from &enum bss_param_flags
784f4263c98SPaul Stewart  * @dtim_period: DTIM period for the BSS
785f4263c98SPaul Stewart  * @beacon_interval: beacon interval
786f4263c98SPaul Stewart  */
787f4263c98SPaul Stewart struct sta_bss_parameters {
788f4263c98SPaul Stewart 	u8 flags;
789f4263c98SPaul Stewart 	u8 dtim_period;
790f4263c98SPaul Stewart 	u16 beacon_interval;
791f4263c98SPaul Stewart };
792f4263c98SPaul Stewart 
793f4263c98SPaul Stewart /**
7942ec600d6SLuis Carlos Cobo  * struct station_info - station information
795fd5b74dcSJohannes Berg  *
7962ec600d6SLuis Carlos Cobo  * Station information filled by driver for get_station() and dump_station.
797fd5b74dcSJohannes Berg  *
7982ec600d6SLuis Carlos Cobo  * @filled: bitflag of flags from &enum station_info_flags
799ebe27c91SMohammed Shafi Shajakhan  * @connected_time: time(in secs) since a station is last connected
800fd5b74dcSJohannes Berg  * @inactive_time: time since last station activity (tx/rx) in milliseconds
801fd5b74dcSJohannes Berg  * @rx_bytes: bytes received from this station
802fd5b74dcSJohannes Berg  * @tx_bytes: bytes transmitted to this station
8032ec600d6SLuis Carlos Cobo  * @llid: mesh local link id
8042ec600d6SLuis Carlos Cobo  * @plid: mesh peer link id
8052ec600d6SLuis Carlos Cobo  * @plink_state: mesh peer link state
80673c3df3bSJohannes Berg  * @signal: The signal strength, type depends on the wiphy's signal_type.
80773c3df3bSJohannes Berg  *	For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
80873c3df3bSJohannes Berg  * @signal_avg: Average signal strength, type depends on the wiphy's signal_type.
80973c3df3bSJohannes Berg  *	For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
810858022aaSRandy Dunlap  * @txrate: current unicast bitrate from this station
811858022aaSRandy Dunlap  * @rxrate: current unicast bitrate to this station
81298c8a60aSJouni Malinen  * @rx_packets: packets received from this station
81398c8a60aSJouni Malinen  * @tx_packets: packets transmitted to this station
814b206b4efSBruno Randolf  * @tx_retries: cumulative retry counts
815b206b4efSBruno Randolf  * @tx_failed: number of failed transmissions (retries exceeded, no ACK)
8165a5c731aSBen Greear  * @rx_dropped_misc:  Dropped for un-specified reason.
8171ba01458SRandy Dunlap  * @bss_param: current BSS parameters
818f5ea9120SJohannes Berg  * @generation: generation number for nl80211 dumps.
819f5ea9120SJohannes Berg  *	This number should increase every time the list of stations
820f5ea9120SJohannes Berg  *	changes, i.e. when a station is added or removed, so that
821f5ea9120SJohannes Berg  *	userspace can tell whether it got a consistent snapshot.
82250d3dfb7SJouni Malinen  * @assoc_req_ies: IEs from (Re)Association Request.
82350d3dfb7SJouni Malinen  *	This is used only when in AP mode with drivers that do not use
82450d3dfb7SJouni Malinen  *	user space MLME/SME implementation. The information is provided for
82550d3dfb7SJouni Malinen  *	the cfg80211_new_sta() calls to notify user space of the IEs.
82650d3dfb7SJouni Malinen  * @assoc_req_ies_len: Length of assoc_req_ies buffer in octets.
827c26887d2SJohannes Berg  * @sta_flags: station flags mask & values
828a85e1d55SPaul Stewart  * @beacon_loss_count: Number of times beacon loss event has triggered.
829d299a1f2SJavier Cardona  * @t_offset: Time offset of the station relative to this host.
8303b1c5a53SMarco Porsch  * @local_pm: local mesh STA power save mode
8313b1c5a53SMarco Porsch  * @peer_pm: peer mesh STA power save mode
8323b1c5a53SMarco Porsch  * @nonpeer_pm: non-peer mesh STA power save mode
833fd5b74dcSJohannes Berg  */
8342ec600d6SLuis Carlos Cobo struct station_info {
835fd5b74dcSJohannes Berg 	u32 filled;
836ebe27c91SMohammed Shafi Shajakhan 	u32 connected_time;
837fd5b74dcSJohannes Berg 	u32 inactive_time;
838fd5b74dcSJohannes Berg 	u32 rx_bytes;
839fd5b74dcSJohannes Berg 	u32 tx_bytes;
8402ec600d6SLuis Carlos Cobo 	u16 llid;
8412ec600d6SLuis Carlos Cobo 	u16 plid;
8422ec600d6SLuis Carlos Cobo 	u8 plink_state;
843420e7fabSHenning Rogge 	s8 signal;
844541a45a1SBruno Randolf 	s8 signal_avg;
845420e7fabSHenning Rogge 	struct rate_info txrate;
846c8dcfd8aSFelix Fietkau 	struct rate_info rxrate;
84798c8a60aSJouni Malinen 	u32 rx_packets;
84898c8a60aSJouni Malinen 	u32 tx_packets;
849b206b4efSBruno Randolf 	u32 tx_retries;
850b206b4efSBruno Randolf 	u32 tx_failed;
8515a5c731aSBen Greear 	u32 rx_dropped_misc;
852f4263c98SPaul Stewart 	struct sta_bss_parameters bss_param;
853bb6e753eSHelmut Schaa 	struct nl80211_sta_flag_update sta_flags;
854f5ea9120SJohannes Berg 
855f5ea9120SJohannes Berg 	int generation;
85650d3dfb7SJouni Malinen 
85750d3dfb7SJouni Malinen 	const u8 *assoc_req_ies;
85850d3dfb7SJouni Malinen 	size_t assoc_req_ies_len;
859f612cedfSJouni Malinen 
860a85e1d55SPaul Stewart 	u32 beacon_loss_count;
861d299a1f2SJavier Cardona 	s64 t_offset;
8623b1c5a53SMarco Porsch 	enum nl80211_mesh_power_mode local_pm;
8633b1c5a53SMarco Porsch 	enum nl80211_mesh_power_mode peer_pm;
8643b1c5a53SMarco Porsch 	enum nl80211_mesh_power_mode nonpeer_pm;
865a85e1d55SPaul Stewart 
866f612cedfSJouni Malinen 	/*
867f612cedfSJouni Malinen 	 * Note: Add a new enum station_info_flags value for each new field and
868f612cedfSJouni Malinen 	 * use it to check which fields are initialized.
869f612cedfSJouni Malinen 	 */
870fd5b74dcSJohannes Berg };
871fd5b74dcSJohannes Berg 
87266f7ac50SMichael Wu /**
87366f7ac50SMichael Wu  * enum monitor_flags - monitor flags
87466f7ac50SMichael Wu  *
87566f7ac50SMichael Wu  * Monitor interface configuration flags. Note that these must be the bits
87666f7ac50SMichael Wu  * according to the nl80211 flags.
87766f7ac50SMichael Wu  *
87866f7ac50SMichael Wu  * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
87966f7ac50SMichael Wu  * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
88066f7ac50SMichael Wu  * @MONITOR_FLAG_CONTROL: pass control frames
88166f7ac50SMichael Wu  * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
88266f7ac50SMichael Wu  * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
88366f7ac50SMichael Wu  */
88466f7ac50SMichael Wu enum monitor_flags {
88566f7ac50SMichael Wu 	MONITOR_FLAG_FCSFAIL		= 1<<NL80211_MNTR_FLAG_FCSFAIL,
88666f7ac50SMichael Wu 	MONITOR_FLAG_PLCPFAIL		= 1<<NL80211_MNTR_FLAG_PLCPFAIL,
88766f7ac50SMichael Wu 	MONITOR_FLAG_CONTROL		= 1<<NL80211_MNTR_FLAG_CONTROL,
88866f7ac50SMichael Wu 	MONITOR_FLAG_OTHER_BSS		= 1<<NL80211_MNTR_FLAG_OTHER_BSS,
88966f7ac50SMichael Wu 	MONITOR_FLAG_COOK_FRAMES	= 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
89066f7ac50SMichael Wu };
89166f7ac50SMichael Wu 
8922ec600d6SLuis Carlos Cobo /**
8932ec600d6SLuis Carlos Cobo  * enum mpath_info_flags -  mesh path information flags
8942ec600d6SLuis Carlos Cobo  *
8952ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct mpath_info it has filled
8962ec600d6SLuis Carlos Cobo  * in during get_station() or dump_station().
8972ec600d6SLuis Carlos Cobo  *
898abe37c4bSJohannes Berg  * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
899abe37c4bSJohannes Berg  * @MPATH_INFO_SN: @sn filled
900abe37c4bSJohannes Berg  * @MPATH_INFO_METRIC: @metric filled
901abe37c4bSJohannes Berg  * @MPATH_INFO_EXPTIME: @exptime filled
902abe37c4bSJohannes Berg  * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
903abe37c4bSJohannes Berg  * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
904abe37c4bSJohannes Berg  * @MPATH_INFO_FLAGS: @flags filled
9052ec600d6SLuis Carlos Cobo  */
9062ec600d6SLuis Carlos Cobo enum mpath_info_flags {
9072ec600d6SLuis Carlos Cobo 	MPATH_INFO_FRAME_QLEN		= BIT(0),
908d19b3bf6SRui Paulo 	MPATH_INFO_SN			= BIT(1),
9092ec600d6SLuis Carlos Cobo 	MPATH_INFO_METRIC		= BIT(2),
9102ec600d6SLuis Carlos Cobo 	MPATH_INFO_EXPTIME		= BIT(3),
9112ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_TIMEOUT	= BIT(4),
9122ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_RETRIES	= BIT(5),
9132ec600d6SLuis Carlos Cobo 	MPATH_INFO_FLAGS		= BIT(6),
9142ec600d6SLuis Carlos Cobo };
9152ec600d6SLuis Carlos Cobo 
9162ec600d6SLuis Carlos Cobo /**
9172ec600d6SLuis Carlos Cobo  * struct mpath_info - mesh path information
9182ec600d6SLuis Carlos Cobo  *
9192ec600d6SLuis Carlos Cobo  * Mesh path information filled by driver for get_mpath() and dump_mpath().
9202ec600d6SLuis Carlos Cobo  *
9212ec600d6SLuis Carlos Cobo  * @filled: bitfield of flags from &enum mpath_info_flags
9222ec600d6SLuis Carlos Cobo  * @frame_qlen: number of queued frames for this destination
923d19b3bf6SRui Paulo  * @sn: target sequence number
9242ec600d6SLuis Carlos Cobo  * @metric: metric (cost) of this mesh path
9252ec600d6SLuis Carlos Cobo  * @exptime: expiration time for the mesh path from now, in msecs
9262ec600d6SLuis Carlos Cobo  * @flags: mesh path flags
9272ec600d6SLuis Carlos Cobo  * @discovery_timeout: total mesh path discovery timeout, in msecs
9282ec600d6SLuis Carlos Cobo  * @discovery_retries: mesh path discovery retries
929f5ea9120SJohannes Berg  * @generation: generation number for nl80211 dumps.
930f5ea9120SJohannes Berg  *	This number should increase every time the list of mesh paths
931f5ea9120SJohannes Berg  *	changes, i.e. when a station is added or removed, so that
932f5ea9120SJohannes Berg  *	userspace can tell whether it got a consistent snapshot.
9332ec600d6SLuis Carlos Cobo  */
9342ec600d6SLuis Carlos Cobo struct mpath_info {
9352ec600d6SLuis Carlos Cobo 	u32 filled;
9362ec600d6SLuis Carlos Cobo 	u32 frame_qlen;
937d19b3bf6SRui Paulo 	u32 sn;
9382ec600d6SLuis Carlos Cobo 	u32 metric;
9392ec600d6SLuis Carlos Cobo 	u32 exptime;
9402ec600d6SLuis Carlos Cobo 	u32 discovery_timeout;
9412ec600d6SLuis Carlos Cobo 	u8 discovery_retries;
9422ec600d6SLuis Carlos Cobo 	u8 flags;
943f5ea9120SJohannes Berg 
944f5ea9120SJohannes Berg 	int generation;
9452ec600d6SLuis Carlos Cobo };
9462ec600d6SLuis Carlos Cobo 
9479f1ba906SJouni Malinen /**
9489f1ba906SJouni Malinen  * struct bss_parameters - BSS parameters
9499f1ba906SJouni Malinen  *
9509f1ba906SJouni Malinen  * Used to change BSS parameters (mainly for AP mode).
9519f1ba906SJouni Malinen  *
9529f1ba906SJouni Malinen  * @use_cts_prot: Whether to use CTS protection
9539f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
9549f1ba906SJouni Malinen  * @use_short_preamble: Whether the use of short preambles is allowed
9559f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
9569f1ba906SJouni Malinen  * @use_short_slot_time: Whether the use of short slot time is allowed
9579f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
95890c97a04SJouni Malinen  * @basic_rates: basic rates in IEEE 802.11 format
95990c97a04SJouni Malinen  *	(or NULL for no change)
96090c97a04SJouni Malinen  * @basic_rates_len: number of basic rates
961fd8aaaf3SFelix Fietkau  * @ap_isolate: do not forward packets between connected stations
96250b12f59SHelmut Schaa  * @ht_opmode: HT Operation mode
96350b12f59SHelmut Schaa  * 	(u16 = opmode, -1 = do not change)
96453cabad7SJohannes Berg  * @p2p_ctwindow: P2P CT Window (-1 = no change)
96553cabad7SJohannes Berg  * @p2p_opp_ps: P2P opportunistic PS (-1 = no change)
9669f1ba906SJouni Malinen  */
9679f1ba906SJouni Malinen struct bss_parameters {
9689f1ba906SJouni Malinen 	int use_cts_prot;
9699f1ba906SJouni Malinen 	int use_short_preamble;
9709f1ba906SJouni Malinen 	int use_short_slot_time;
97190c97a04SJouni Malinen 	u8 *basic_rates;
97290c97a04SJouni Malinen 	u8 basic_rates_len;
973fd8aaaf3SFelix Fietkau 	int ap_isolate;
97450b12f59SHelmut Schaa 	int ht_opmode;
97553cabad7SJohannes Berg 	s8 p2p_ctwindow, p2p_opp_ps;
9769f1ba906SJouni Malinen };
9772ec600d6SLuis Carlos Cobo 
9783ddd53f3SChun-Yeow Yeoh /**
97929cbe68cSJohannes Berg  * struct mesh_config - 802.11s mesh configuration
98029cbe68cSJohannes Berg  *
98129cbe68cSJohannes Berg  * These parameters can be changed while the mesh is active.
9823ddd53f3SChun-Yeow Yeoh  *
9833ddd53f3SChun-Yeow Yeoh  * @dot11MeshRetryTimeout: the initial retry timeout in millisecond units used
9843ddd53f3SChun-Yeow Yeoh  *	by the Mesh Peering Open message
9853ddd53f3SChun-Yeow Yeoh  * @dot11MeshConfirmTimeout: the initial retry timeout in millisecond units
9863ddd53f3SChun-Yeow Yeoh  *	used by the Mesh Peering Open message
9873ddd53f3SChun-Yeow Yeoh  * @dot11MeshHoldingTimeout: the confirm timeout in millisecond units used by
9883ddd53f3SChun-Yeow Yeoh  *	the mesh peering management to close a mesh peering
9893ddd53f3SChun-Yeow Yeoh  * @dot11MeshMaxPeerLinks: the maximum number of peer links allowed on this
9903ddd53f3SChun-Yeow Yeoh  *	mesh interface
9913ddd53f3SChun-Yeow Yeoh  * @dot11MeshMaxRetries: the maximum number of peer link open retries that can
9923ddd53f3SChun-Yeow Yeoh  *	be sent to establish a new peer link instance in a mesh
9933ddd53f3SChun-Yeow Yeoh  * @dot11MeshTTL: the value of TTL field set at a source mesh STA
9943ddd53f3SChun-Yeow Yeoh  * @element_ttl: the value of TTL field set at a mesh STA for path selection
9953ddd53f3SChun-Yeow Yeoh  *	elements
9963ddd53f3SChun-Yeow Yeoh  * @auto_open_plinks: whether we should automatically open peer links when we
9973ddd53f3SChun-Yeow Yeoh  *	detect compatible mesh peers
9983ddd53f3SChun-Yeow Yeoh  * @dot11MeshNbrOffsetMaxNeighbor: the maximum number of neighbors to
9993ddd53f3SChun-Yeow Yeoh  *	synchronize to for 11s default synchronization method
10003ddd53f3SChun-Yeow Yeoh  * @dot11MeshHWMPmaxPREQretries: the number of action frames containing a PREQ
10013ddd53f3SChun-Yeow Yeoh  *	that an originator mesh STA can send to a particular path target
10023ddd53f3SChun-Yeow Yeoh  * @path_refresh_time: how frequently to refresh mesh paths in milliseconds
10033ddd53f3SChun-Yeow Yeoh  * @min_discovery_timeout: the minimum length of time to wait until giving up on
10043ddd53f3SChun-Yeow Yeoh  *	a path discovery in milliseconds
10053ddd53f3SChun-Yeow Yeoh  * @dot11MeshHWMPactivePathTimeout: the time (in TUs) for which mesh STAs
10063ddd53f3SChun-Yeow Yeoh  *	receiving a PREQ shall consider the forwarding information from the
10073ddd53f3SChun-Yeow Yeoh  *	root to be valid. (TU = time unit)
10083ddd53f3SChun-Yeow Yeoh  * @dot11MeshHWMPpreqMinInterval: the minimum interval of time (in TUs) during
10093ddd53f3SChun-Yeow Yeoh  *	which a mesh STA can send only one action frame containing a PREQ
10103ddd53f3SChun-Yeow Yeoh  *	element
10113ddd53f3SChun-Yeow Yeoh  * @dot11MeshHWMPperrMinInterval: the minimum interval of time (in TUs) during
10123ddd53f3SChun-Yeow Yeoh  *	which a mesh STA can send only one Action frame containing a PERR
10133ddd53f3SChun-Yeow Yeoh  *	element
10143ddd53f3SChun-Yeow Yeoh  * @dot11MeshHWMPnetDiameterTraversalTime: the interval of time (in TUs) that
10153ddd53f3SChun-Yeow Yeoh  *	it takes for an HWMP information element to propagate across the mesh
10163ddd53f3SChun-Yeow Yeoh  * @dot11MeshHWMPRootMode: the configuration of a mesh STA as root mesh STA
10173ddd53f3SChun-Yeow Yeoh  * @dot11MeshHWMPRannInterval: the interval of time (in TUs) between root
10183ddd53f3SChun-Yeow Yeoh  *	announcements are transmitted
10193ddd53f3SChun-Yeow Yeoh  * @dot11MeshGateAnnouncementProtocol: whether to advertise that this mesh
10203ddd53f3SChun-Yeow Yeoh  *	station has access to a broader network beyond the MBSS. (This is
10213ddd53f3SChun-Yeow Yeoh  *	missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol set to true
10223ddd53f3SChun-Yeow Yeoh  *	only means that the station will announce others it's a mesh gate, but
10233ddd53f3SChun-Yeow Yeoh  *	not necessarily using the gate announcement protocol. Still keeping the
10243ddd53f3SChun-Yeow Yeoh  *	same nomenclature to be in sync with the spec)
10253ddd53f3SChun-Yeow Yeoh  * @dot11MeshForwarding: whether the Mesh STA is forwarding or non-forwarding
10263ddd53f3SChun-Yeow Yeoh  *	entity (default is TRUE - forwarding entity)
10273ddd53f3SChun-Yeow Yeoh  * @rssi_threshold: the threshold for average signal strength of candidate
10283ddd53f3SChun-Yeow Yeoh  *	station to establish a peer link
10293ddd53f3SChun-Yeow Yeoh  * @ht_opmode: mesh HT protection mode
1030ac1073a6SChun-Yeow Yeoh  *
1031ac1073a6SChun-Yeow Yeoh  * @dot11MeshHWMPactivePathToRootTimeout: The time (in TUs) for which mesh STAs
1032ac1073a6SChun-Yeow Yeoh  *	receiving a proactive PREQ shall consider the forwarding information to
1033ac1073a6SChun-Yeow Yeoh  *	the root mesh STA to be valid.
1034ac1073a6SChun-Yeow Yeoh  *
1035ac1073a6SChun-Yeow Yeoh  * @dot11MeshHWMProotInterval: The interval of time (in TUs) between proactive
1036ac1073a6SChun-Yeow Yeoh  *	PREQs are transmitted.
1037728b19e5SChun-Yeow Yeoh  * @dot11MeshHWMPconfirmationInterval: The minimum interval of time (in TUs)
1038728b19e5SChun-Yeow Yeoh  *	during which a mesh STA can send only one Action frame containing
1039728b19e5SChun-Yeow Yeoh  *	a PREQ element for root path confirmation.
10403b1c5a53SMarco Porsch  * @power_mode: The default mesh power save mode which will be the initial
10413b1c5a53SMarco Porsch  *	setting for new peer links.
10423b1c5a53SMarco Porsch  * @dot11MeshAwakeWindowDuration: The duration in TUs the STA will remain awake
10433b1c5a53SMarco Porsch  *	after transmitting its beacon.
104429cbe68cSJohannes Berg  */
104593da9cc1Scolin@cozybit.com struct mesh_config {
104693da9cc1Scolin@cozybit.com 	u16 dot11MeshRetryTimeout;
104793da9cc1Scolin@cozybit.com 	u16 dot11MeshConfirmTimeout;
104893da9cc1Scolin@cozybit.com 	u16 dot11MeshHoldingTimeout;
104993da9cc1Scolin@cozybit.com 	u16 dot11MeshMaxPeerLinks;
105093da9cc1Scolin@cozybit.com 	u8 dot11MeshMaxRetries;
105193da9cc1Scolin@cozybit.com 	u8 dot11MeshTTL;
105245904f21SJavier Cardona 	u8 element_ttl;
105393da9cc1Scolin@cozybit.com 	bool auto_open_plinks;
1054d299a1f2SJavier Cardona 	u32 dot11MeshNbrOffsetMaxNeighbor;
105593da9cc1Scolin@cozybit.com 	u8 dot11MeshHWMPmaxPREQretries;
105693da9cc1Scolin@cozybit.com 	u32 path_refresh_time;
105793da9cc1Scolin@cozybit.com 	u16 min_discovery_timeout;
105893da9cc1Scolin@cozybit.com 	u32 dot11MeshHWMPactivePathTimeout;
105993da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPpreqMinInterval;
1060dca7e943SThomas Pedersen 	u16 dot11MeshHWMPperrMinInterval;
106193da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPnetDiameterTraversalTime;
106263c5723bSRui Paulo 	u8 dot11MeshHWMPRootMode;
10630507e159SJavier Cardona 	u16 dot11MeshHWMPRannInterval;
106416dd7267SJavier Cardona 	bool dot11MeshGateAnnouncementProtocol;
106594f90656SChun-Yeow Yeoh 	bool dot11MeshForwarding;
106655335137SAshok Nagarajan 	s32 rssi_threshold;
106770c33eaaSAshok Nagarajan 	u16 ht_opmode;
1068ac1073a6SChun-Yeow Yeoh 	u32 dot11MeshHWMPactivePathToRootTimeout;
1069ac1073a6SChun-Yeow Yeoh 	u16 dot11MeshHWMProotInterval;
1070728b19e5SChun-Yeow Yeoh 	u16 dot11MeshHWMPconfirmationInterval;
10713b1c5a53SMarco Porsch 	enum nl80211_mesh_power_mode power_mode;
10723b1c5a53SMarco Porsch 	u16 dot11MeshAwakeWindowDuration;
107393da9cc1Scolin@cozybit.com };
107493da9cc1Scolin@cozybit.com 
107531888487SJouni Malinen /**
107629cbe68cSJohannes Berg  * struct mesh_setup - 802.11s mesh setup configuration
1077683b6d3bSJohannes Berg  * @chandef: defines the channel to use
107829cbe68cSJohannes Berg  * @mesh_id: the mesh ID
107929cbe68cSJohannes Berg  * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
1080d299a1f2SJavier Cardona  * @sync_method: which synchronization method to use
1081c80d545dSJavier Cardona  * @path_sel_proto: which path selection protocol to use
1082c80d545dSJavier Cardona  * @path_metric: which metric to use
1083581a8b0fSJavier Cardona  * @ie: vendor information elements (optional)
1084581a8b0fSJavier Cardona  * @ie_len: length of vendor information elements
1085b130e5ceSJavier Cardona  * @is_authenticated: this mesh requires authentication
1086b130e5ceSJavier Cardona  * @is_secure: this mesh uses security
10879bdbf04dSMarco Porsch  * @dtim_period: DTIM period to use
10889bdbf04dSMarco Porsch  * @beacon_interval: beacon interval to use
10894bb62344SChun-Yeow Yeoh  * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a]
109029cbe68cSJohannes Berg  *
109129cbe68cSJohannes Berg  * These parameters are fixed when the mesh is created.
109229cbe68cSJohannes Berg  */
109329cbe68cSJohannes Berg struct mesh_setup {
1094683b6d3bSJohannes Berg 	struct cfg80211_chan_def chandef;
109529cbe68cSJohannes Berg 	const u8 *mesh_id;
109629cbe68cSJohannes Berg 	u8 mesh_id_len;
1097d299a1f2SJavier Cardona 	u8 sync_method;
1098c80d545dSJavier Cardona 	u8 path_sel_proto;
1099c80d545dSJavier Cardona 	u8 path_metric;
1100581a8b0fSJavier Cardona 	const u8 *ie;
1101581a8b0fSJavier Cardona 	u8 ie_len;
1102b130e5ceSJavier Cardona 	bool is_authenticated;
110315d5dda6SJavier Cardona 	bool is_secure;
11049bdbf04dSMarco Porsch 	u8 dtim_period;
11059bdbf04dSMarco Porsch 	u16 beacon_interval;
11064bb62344SChun-Yeow Yeoh 	int mcast_rate[IEEE80211_NUM_BANDS];
110729cbe68cSJohannes Berg };
110829cbe68cSJohannes Berg 
110929cbe68cSJohannes Berg /**
111031888487SJouni Malinen  * struct ieee80211_txq_params - TX queue parameters
1111a3304b0aSJohannes Berg  * @ac: AC identifier
111231888487SJouni Malinen  * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
111331888487SJouni Malinen  * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
111431888487SJouni Malinen  *	1..32767]
111531888487SJouni Malinen  * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
111631888487SJouni Malinen  *	1..32767]
111731888487SJouni Malinen  * @aifs: Arbitration interframe space [0..255]
111831888487SJouni Malinen  */
111931888487SJouni Malinen struct ieee80211_txq_params {
1120a3304b0aSJohannes Berg 	enum nl80211_ac ac;
112131888487SJouni Malinen 	u16 txop;
112231888487SJouni Malinen 	u16 cwmin;
112331888487SJouni Malinen 	u16 cwmax;
112431888487SJouni Malinen 	u8 aifs;
112531888487SJouni Malinen };
112631888487SJouni Malinen 
1127d70e9693SJohannes Berg /**
1128d70e9693SJohannes Berg  * DOC: Scanning and BSS list handling
1129d70e9693SJohannes Berg  *
1130d70e9693SJohannes Berg  * The scanning process itself is fairly simple, but cfg80211 offers quite
1131d70e9693SJohannes Berg  * a bit of helper functionality. To start a scan, the scan operation will
1132d70e9693SJohannes Berg  * be invoked with a scan definition. This scan definition contains the
1133d70e9693SJohannes Berg  * channels to scan, and the SSIDs to send probe requests for (including the
1134d70e9693SJohannes Berg  * wildcard, if desired). A passive scan is indicated by having no SSIDs to
1135d70e9693SJohannes Berg  * probe. Additionally, a scan request may contain extra information elements
1136d70e9693SJohannes Berg  * that should be added to the probe request. The IEs are guaranteed to be
1137d70e9693SJohannes Berg  * well-formed, and will not exceed the maximum length the driver advertised
1138d70e9693SJohannes Berg  * in the wiphy structure.
1139d70e9693SJohannes Berg  *
1140d70e9693SJohannes Berg  * When scanning finds a BSS, cfg80211 needs to be notified of that, because
1141d70e9693SJohannes Berg  * it is responsible for maintaining the BSS list; the driver should not
1142d70e9693SJohannes Berg  * maintain a list itself. For this notification, various functions exist.
1143d70e9693SJohannes Berg  *
1144d70e9693SJohannes Berg  * Since drivers do not maintain a BSS list, there are also a number of
1145d70e9693SJohannes Berg  * functions to search for a BSS and obtain information about it from the
1146d70e9693SJohannes Berg  * BSS structure cfg80211 maintains. The BSS list is also made available
1147d70e9693SJohannes Berg  * to userspace.
1148d70e9693SJohannes Berg  */
114972bdcf34SJouni Malinen 
1150704232c2SJohannes Berg /**
11512a519311SJohannes Berg  * struct cfg80211_ssid - SSID description
11522a519311SJohannes Berg  * @ssid: the SSID
11532a519311SJohannes Berg  * @ssid_len: length of the ssid
11542a519311SJohannes Berg  */
11552a519311SJohannes Berg struct cfg80211_ssid {
11562a519311SJohannes Berg 	u8 ssid[IEEE80211_MAX_SSID_LEN];
11572a519311SJohannes Berg 	u8 ssid_len;
11582a519311SJohannes Berg };
11592a519311SJohannes Berg 
11602a519311SJohannes Berg /**
11612a519311SJohannes Berg  * struct cfg80211_scan_request - scan request description
11622a519311SJohannes Berg  *
11632a519311SJohannes Berg  * @ssids: SSIDs to scan for (active scan only)
11642a519311SJohannes Berg  * @n_ssids: number of SSIDs
11652a519311SJohannes Berg  * @channels: channels to scan on.
1166ca3dbc20SHelmut Schaa  * @n_channels: total number of channels to scan
116770692ad2SJouni Malinen  * @ie: optional information element(s) to add into Probe Request or %NULL
116870692ad2SJouni Malinen  * @ie_len: length of ie in octets
1169ed473771SSam Leffler  * @flags: bit field of flags controlling operation
117034850ab2SJohannes Berg  * @rates: bitmap of rates to advertise for each band
11712a519311SJohannes Berg  * @wiphy: the wiphy this was for
117215d6030bSSam Leffler  * @scan_start: time (in jiffies) when the scan started
1173fd014284SJohannes Berg  * @wdev: the wireless device to scan for
1174abe37c4bSJohannes Berg  * @aborted: (internal) scan request was notified as aborted
1175e9f935e3SRajkumar Manoharan  * @no_cck: used to send probe requests at non CCK rate in 2GHz band
11762a519311SJohannes Berg  */
11772a519311SJohannes Berg struct cfg80211_scan_request {
11782a519311SJohannes Berg 	struct cfg80211_ssid *ssids;
11792a519311SJohannes Berg 	int n_ssids;
11802a519311SJohannes Berg 	u32 n_channels;
1181de95a54bSJohannes Berg 	const u8 *ie;
118270692ad2SJouni Malinen 	size_t ie_len;
1183ed473771SSam Leffler 	u32 flags;
11842a519311SJohannes Berg 
118534850ab2SJohannes Berg 	u32 rates[IEEE80211_NUM_BANDS];
118634850ab2SJohannes Berg 
1187fd014284SJohannes Berg 	struct wireless_dev *wdev;
1188fd014284SJohannes Berg 
11892a519311SJohannes Berg 	/* internal */
11902a519311SJohannes Berg 	struct wiphy *wiphy;
119115d6030bSSam Leffler 	unsigned long scan_start;
1192667503ddSJohannes Berg 	bool aborted;
1193e9f935e3SRajkumar Manoharan 	bool no_cck;
11945ba63533SJohannes Berg 
11955ba63533SJohannes Berg 	/* keep last */
11965ba63533SJohannes Berg 	struct ieee80211_channel *channels[0];
11972a519311SJohannes Berg };
11982a519311SJohannes Berg 
11992a519311SJohannes Berg /**
1200a1f1c21cSLuciano Coelho  * struct cfg80211_match_set - sets of attributes to match
1201a1f1c21cSLuciano Coelho  *
1202a1f1c21cSLuciano Coelho  * @ssid: SSID to be matched
1203a1f1c21cSLuciano Coelho  */
1204a1f1c21cSLuciano Coelho struct cfg80211_match_set {
1205a1f1c21cSLuciano Coelho 	struct cfg80211_ssid ssid;
1206a1f1c21cSLuciano Coelho };
1207a1f1c21cSLuciano Coelho 
1208a1f1c21cSLuciano Coelho /**
1209807f8a8cSLuciano Coelho  * struct cfg80211_sched_scan_request - scheduled scan request description
1210807f8a8cSLuciano Coelho  *
1211807f8a8cSLuciano Coelho  * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
1212807f8a8cSLuciano Coelho  * @n_ssids: number of SSIDs
1213807f8a8cSLuciano Coelho  * @n_channels: total number of channels to scan
1214bbe6ad6dSLuciano Coelho  * @interval: interval between each scheduled scan cycle
1215807f8a8cSLuciano Coelho  * @ie: optional information element(s) to add into Probe Request or %NULL
1216807f8a8cSLuciano Coelho  * @ie_len: length of ie in octets
1217ed473771SSam Leffler  * @flags: bit field of flags controlling operation
1218a1f1c21cSLuciano Coelho  * @match_sets: sets of parameters to be matched for a scan result
1219a1f1c21cSLuciano Coelho  * 	entry to be considered valid and to be passed to the host
1220a1f1c21cSLuciano Coelho  * 	(others are filtered out).
1221a1f1c21cSLuciano Coelho  *	If ommited, all results are passed.
1222a1f1c21cSLuciano Coelho  * @n_match_sets: number of match sets
1223807f8a8cSLuciano Coelho  * @wiphy: the wiphy this was for
1224807f8a8cSLuciano Coelho  * @dev: the interface
1225807f8a8cSLuciano Coelho  * @channels: channels to scan
122688e920b4SThomas Pedersen  * @rssi_thold: don't report scan results below this threshold (in s32 dBm)
1227807f8a8cSLuciano Coelho  */
1228807f8a8cSLuciano Coelho struct cfg80211_sched_scan_request {
1229807f8a8cSLuciano Coelho 	struct cfg80211_ssid *ssids;
1230807f8a8cSLuciano Coelho 	int n_ssids;
1231807f8a8cSLuciano Coelho 	u32 n_channels;
1232bbe6ad6dSLuciano Coelho 	u32 interval;
1233807f8a8cSLuciano Coelho 	const u8 *ie;
1234807f8a8cSLuciano Coelho 	size_t ie_len;
1235ed473771SSam Leffler 	u32 flags;
1236a1f1c21cSLuciano Coelho 	struct cfg80211_match_set *match_sets;
1237a1f1c21cSLuciano Coelho 	int n_match_sets;
123888e920b4SThomas Pedersen 	s32 rssi_thold;
1239807f8a8cSLuciano Coelho 
1240807f8a8cSLuciano Coelho 	/* internal */
1241807f8a8cSLuciano Coelho 	struct wiphy *wiphy;
1242807f8a8cSLuciano Coelho 	struct net_device *dev;
124315d6030bSSam Leffler 	unsigned long scan_start;
1244807f8a8cSLuciano Coelho 
1245807f8a8cSLuciano Coelho 	/* keep last */
1246807f8a8cSLuciano Coelho 	struct ieee80211_channel *channels[0];
1247807f8a8cSLuciano Coelho };
1248807f8a8cSLuciano Coelho 
1249807f8a8cSLuciano Coelho /**
12502a519311SJohannes Berg  * enum cfg80211_signal_type - signal type
12512a519311SJohannes Berg  *
12522a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
12532a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
12542a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
12552a519311SJohannes Berg  */
12562a519311SJohannes Berg enum cfg80211_signal_type {
12572a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_NONE,
12582a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_MBM,
12592a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_UNSPEC,
12602a519311SJohannes Berg };
12612a519311SJohannes Berg 
12622a519311SJohannes Berg /**
12639caf0364SJohannes Berg  * struct cfg80211_bss_ie_data - BSS entry IE data
12649caf0364SJohannes Berg  * @rcu_head: internal use, for freeing
12659caf0364SJohannes Berg  * @len: length of the IEs
12669caf0364SJohannes Berg  * @data: IE data
12679caf0364SJohannes Berg  */
12689caf0364SJohannes Berg struct cfg80211_bss_ies {
12699caf0364SJohannes Berg 	struct rcu_head rcu_head;
12709caf0364SJohannes Berg 	int len;
12719caf0364SJohannes Berg 	u8 data[];
12729caf0364SJohannes Berg };
12739caf0364SJohannes Berg 
12749caf0364SJohannes Berg /**
12752a519311SJohannes Berg  * struct cfg80211_bss - BSS description
12762a519311SJohannes Berg  *
12772a519311SJohannes Berg  * This structure describes a BSS (which may also be a mesh network)
12782a519311SJohannes Berg  * for use in scan results and similar.
12792a519311SJohannes Berg  *
1280abe37c4bSJohannes Berg  * @channel: channel this BSS is on
12812a519311SJohannes Berg  * @bssid: BSSID of the BSS
12822a519311SJohannes Berg  * @tsf: timestamp of last received update
12832a519311SJohannes Berg  * @beacon_interval: the beacon interval as from the frame
12842a519311SJohannes Berg  * @capability: the capability field in host byte order
12859caf0364SJohannes Berg  * @ies: the information elements (Note that there
128634a6eddbSJouni Malinen  *	is no guarantee that these are well-formed!); this is a pointer to
128734a6eddbSJouni Malinen  *	either the beacon_ies or proberesp_ies depending on whether Probe
128834a6eddbSJouni Malinen  *	Response frame has been received
128934a6eddbSJouni Malinen  * @beacon_ies: the information elements from the last Beacon frame
129034a6eddbSJouni Malinen  * @proberesp_ies: the information elements from the last Probe Response frame
129177965c97SJohannes Berg  * @signal: signal strength value (type depends on the wiphy's signal_type)
129278c1c7e1SJohannes Berg  * @free_priv: function pointer to free private data
12932a519311SJohannes Berg  * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
12942a519311SJohannes Berg  */
12952a519311SJohannes Berg struct cfg80211_bss {
12969caf0364SJohannes Berg 	u64 tsf;
12979caf0364SJohannes Berg 
12982a519311SJohannes Berg 	struct ieee80211_channel *channel;
12992a519311SJohannes Berg 
13009caf0364SJohannes Berg 	const struct cfg80211_bss_ies __rcu *ies;
13019caf0364SJohannes Berg 	const struct cfg80211_bss_ies __rcu *beacon_ies;
13029caf0364SJohannes Berg 	const struct cfg80211_bss_ies __rcu *proberesp_ies;
13039caf0364SJohannes Berg 
13049caf0364SJohannes Berg 	void (*free_priv)(struct cfg80211_bss *bss);
13052a519311SJohannes Berg 
13062a519311SJohannes Berg 	s32 signal;
13072a519311SJohannes Berg 
13089caf0364SJohannes Berg 	u16 beacon_interval;
13099caf0364SJohannes Berg 	u16 capability;
13109caf0364SJohannes Berg 
13119caf0364SJohannes Berg 	u8 bssid[ETH_ALEN];
13129caf0364SJohannes Berg 
13131c06ef98SJohannes Berg 	u8 priv[0] __aligned(sizeof(void *));
13142a519311SJohannes Berg };
13152a519311SJohannes Berg 
13162a519311SJohannes Berg /**
1317517357c6SJohannes Berg  * ieee80211_bss_get_ie - find IE with given ID
1318517357c6SJohannes Berg  * @bss: the bss to search
1319517357c6SJohannes Berg  * @ie: the IE ID
13209caf0364SJohannes Berg  *
13219caf0364SJohannes Berg  * Note that the return value is an RCU-protected pointer, so
13229caf0364SJohannes Berg  * rcu_read_lock() must be held when calling this function.
13230ae997dcSYacine Belkadi  * Return: %NULL if not found.
1324517357c6SJohannes Berg  */
1325517357c6SJohannes Berg const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
1326517357c6SJohannes Berg 
1327517357c6SJohannes Berg 
1328517357c6SJohannes Berg /**
1329636a5d36SJouni Malinen  * struct cfg80211_auth_request - Authentication request data
1330636a5d36SJouni Malinen  *
1331636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1332636a5d36SJouni Malinen  * authentication.
1333636a5d36SJouni Malinen  *
133419957bb3SJohannes Berg  * @bss: The BSS to authenticate with.
1335636a5d36SJouni Malinen  * @auth_type: Authentication type (algorithm)
1336636a5d36SJouni Malinen  * @ie: Extra IEs to add to Authentication frame or %NULL
1337636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
1338fffd0934SJohannes Berg  * @key_len: length of WEP key for shared key authentication
1339fffd0934SJohannes Berg  * @key_idx: index of WEP key for shared key authentication
1340fffd0934SJohannes Berg  * @key: WEP key for shared key authentication
1341e39e5b5eSJouni Malinen  * @sae_data: Non-IE data to use with SAE or %NULL. This starts with
1342e39e5b5eSJouni Malinen  *	Authentication transaction sequence number field.
1343e39e5b5eSJouni Malinen  * @sae_data_len: Length of sae_data buffer in octets
1344636a5d36SJouni Malinen  */
1345636a5d36SJouni Malinen struct cfg80211_auth_request {
134619957bb3SJohannes Berg 	struct cfg80211_bss *bss;
1347636a5d36SJouni Malinen 	const u8 *ie;
1348636a5d36SJouni Malinen 	size_t ie_len;
134919957bb3SJohannes Berg 	enum nl80211_auth_type auth_type;
1350fffd0934SJohannes Berg 	const u8 *key;
1351fffd0934SJohannes Berg 	u8 key_len, key_idx;
1352e39e5b5eSJouni Malinen 	const u8 *sae_data;
1353e39e5b5eSJouni Malinen 	size_t sae_data_len;
1354636a5d36SJouni Malinen };
1355636a5d36SJouni Malinen 
1356636a5d36SJouni Malinen /**
13577e7c8926SBen Greear  * enum cfg80211_assoc_req_flags - Over-ride default behaviour in association.
13587e7c8926SBen Greear  *
13597e7c8926SBen Greear  * @ASSOC_REQ_DISABLE_HT:  Disable HT (802.11n)
13607e7c8926SBen Greear  */
13617e7c8926SBen Greear enum cfg80211_assoc_req_flags {
13627e7c8926SBen Greear 	ASSOC_REQ_DISABLE_HT		= BIT(0),
13637e7c8926SBen Greear };
13647e7c8926SBen Greear 
13657e7c8926SBen Greear /**
1366636a5d36SJouni Malinen  * struct cfg80211_assoc_request - (Re)Association request data
1367636a5d36SJouni Malinen  *
1368636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1369636a5d36SJouni Malinen  * (re)association.
137095de817bSJohannes Berg  * @bss: The BSS to associate with. If the call is successful the driver
137195de817bSJohannes Berg  *	is given a reference that it must release, normally via a call to
137295de817bSJohannes Berg  *	cfg80211_send_rx_assoc(), or, if association timed out, with a
137395de817bSJohannes Berg  *	call to cfg80211_put_bss() (in addition to calling
137495de817bSJohannes Berg  *	cfg80211_send_assoc_timeout())
1375636a5d36SJouni Malinen  * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
1376636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
1377dc6382ceSJouni Malinen  * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
1378b23aa676SSamuel Ortiz  * @crypto: crypto settings
13793e5d7649SJohannes Berg  * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
13807e7c8926SBen Greear  * @flags:  See &enum cfg80211_assoc_req_flags
13817e7c8926SBen Greear  * @ht_capa:  HT Capabilities over-rides.  Values set in ht_capa_mask
13827e7c8926SBen Greear  *   will be used in ht_capa.  Un-supported values will be ignored.
13837e7c8926SBen Greear  * @ht_capa_mask:  The bits of ht_capa which are to be used.
1384636a5d36SJouni Malinen  */
1385636a5d36SJouni Malinen struct cfg80211_assoc_request {
138619957bb3SJohannes Berg 	struct cfg80211_bss *bss;
13873e5d7649SJohannes Berg 	const u8 *ie, *prev_bssid;
1388636a5d36SJouni Malinen 	size_t ie_len;
1389b23aa676SSamuel Ortiz 	struct cfg80211_crypto_settings crypto;
139019957bb3SJohannes Berg 	bool use_mfp;
13917e7c8926SBen Greear 	u32 flags;
13927e7c8926SBen Greear 	struct ieee80211_ht_cap ht_capa;
13937e7c8926SBen Greear 	struct ieee80211_ht_cap ht_capa_mask;
1394636a5d36SJouni Malinen };
1395636a5d36SJouni Malinen 
1396636a5d36SJouni Malinen /**
1397636a5d36SJouni Malinen  * struct cfg80211_deauth_request - Deauthentication request data
1398636a5d36SJouni Malinen  *
1399636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1400636a5d36SJouni Malinen  * deauthentication.
1401636a5d36SJouni Malinen  *
140295de817bSJohannes Berg  * @bssid: the BSSID of the BSS to deauthenticate from
1403636a5d36SJouni Malinen  * @ie: Extra IEs to add to Deauthentication frame or %NULL
1404636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
140519957bb3SJohannes Berg  * @reason_code: The reason code for the deauthentication
1406636a5d36SJouni Malinen  */
1407636a5d36SJouni Malinen struct cfg80211_deauth_request {
140895de817bSJohannes Berg 	const u8 *bssid;
1409636a5d36SJouni Malinen 	const u8 *ie;
1410636a5d36SJouni Malinen 	size_t ie_len;
141119957bb3SJohannes Berg 	u16 reason_code;
14126863255bSStanislaw Gruszka 	bool local_state_change;
1413636a5d36SJouni Malinen };
1414636a5d36SJouni Malinen 
1415636a5d36SJouni Malinen /**
1416636a5d36SJouni Malinen  * struct cfg80211_disassoc_request - Disassociation request data
1417636a5d36SJouni Malinen  *
1418636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1419636a5d36SJouni Malinen  * disassocation.
1420636a5d36SJouni Malinen  *
142119957bb3SJohannes Berg  * @bss: the BSS to disassociate from
1422636a5d36SJouni Malinen  * @ie: Extra IEs to add to Disassociation frame or %NULL
1423636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
142419957bb3SJohannes Berg  * @reason_code: The reason code for the disassociation
1425d5cdfacbSJouni Malinen  * @local_state_change: This is a request for a local state only, i.e., no
1426d5cdfacbSJouni Malinen  *	Disassociation frame is to be transmitted.
1427636a5d36SJouni Malinen  */
1428636a5d36SJouni Malinen struct cfg80211_disassoc_request {
142919957bb3SJohannes Berg 	struct cfg80211_bss *bss;
1430636a5d36SJouni Malinen 	const u8 *ie;
1431636a5d36SJouni Malinen 	size_t ie_len;
143219957bb3SJohannes Berg 	u16 reason_code;
1433d5cdfacbSJouni Malinen 	bool local_state_change;
1434636a5d36SJouni Malinen };
1435636a5d36SJouni Malinen 
1436636a5d36SJouni Malinen /**
143704a773adSJohannes Berg  * struct cfg80211_ibss_params - IBSS parameters
143804a773adSJohannes Berg  *
143904a773adSJohannes Berg  * This structure defines the IBSS parameters for the join_ibss()
144004a773adSJohannes Berg  * method.
144104a773adSJohannes Berg  *
144204a773adSJohannes Berg  * @ssid: The SSID, will always be non-null.
144304a773adSJohannes Berg  * @ssid_len: The length of the SSID, will always be non-zero.
144404a773adSJohannes Berg  * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
144504a773adSJohannes Berg  *	search for IBSSs with a different BSSID.
1446683b6d3bSJohannes Berg  * @chandef: defines the channel to use if no other IBSS to join can be found
144704a773adSJohannes Berg  * @channel_fixed: The channel should be fixed -- do not search for
144804a773adSJohannes Berg  *	IBSSs to join on other channels.
144904a773adSJohannes Berg  * @ie: information element(s) to include in the beacon
145004a773adSJohannes Berg  * @ie_len: length of that
14518e30bc55SJohannes Berg  * @beacon_interval: beacon interval to use
1452fffd0934SJohannes Berg  * @privacy: this is a protected network, keys will be configured
1453fffd0934SJohannes Berg  *	after joining
1454267335d6SAntonio Quartulli  * @control_port: whether user space controls IEEE 802.1X port, i.e.,
1455267335d6SAntonio Quartulli  *	sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
1456267335d6SAntonio Quartulli  *	required to assume that the port is unauthorized until authorized by
1457267335d6SAntonio Quartulli  *	user space. Otherwise, port is marked authorized by default.
1458fbd2c8dcSTeemu Paasikivi  * @basic_rates: bitmap of basic rates to use when creating the IBSS
1459dd5b4cc7SFelix Fietkau  * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
146004a773adSJohannes Berg  */
146104a773adSJohannes Berg struct cfg80211_ibss_params {
146204a773adSJohannes Berg 	u8 *ssid;
146304a773adSJohannes Berg 	u8 *bssid;
1464683b6d3bSJohannes Berg 	struct cfg80211_chan_def chandef;
146504a773adSJohannes Berg 	u8 *ie;
146604a773adSJohannes Berg 	u8 ssid_len, ie_len;
14678e30bc55SJohannes Berg 	u16 beacon_interval;
1468fbd2c8dcSTeemu Paasikivi 	u32 basic_rates;
146904a773adSJohannes Berg 	bool channel_fixed;
1470fffd0934SJohannes Berg 	bool privacy;
1471267335d6SAntonio Quartulli 	bool control_port;
1472dd5b4cc7SFelix Fietkau 	int mcast_rate[IEEE80211_NUM_BANDS];
147304a773adSJohannes Berg };
147404a773adSJohannes Berg 
147504a773adSJohannes Berg /**
1476b23aa676SSamuel Ortiz  * struct cfg80211_connect_params - Connection parameters
1477b23aa676SSamuel Ortiz  *
1478b23aa676SSamuel Ortiz  * This structure provides information needed to complete IEEE 802.11
1479b23aa676SSamuel Ortiz  * authentication and association.
1480b23aa676SSamuel Ortiz  *
1481b23aa676SSamuel Ortiz  * @channel: The channel to use or %NULL if not specified (auto-select based
1482b23aa676SSamuel Ortiz  *	on scan results)
1483b23aa676SSamuel Ortiz  * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
1484b23aa676SSamuel Ortiz  *	results)
1485b23aa676SSamuel Ortiz  * @ssid: SSID
1486b23aa676SSamuel Ortiz  * @ssid_len: Length of ssid in octets
1487b23aa676SSamuel Ortiz  * @auth_type: Authentication type (algorithm)
1488abe37c4bSJohannes Berg  * @ie: IEs for association request
1489abe37c4bSJohannes Berg  * @ie_len: Length of assoc_ie in octets
1490b23aa676SSamuel Ortiz  * @privacy: indicates whether privacy-enabled APs should be used
1491cee00a95SJouni Malinen  * @mfp: indicate whether management frame protection is used
1492b23aa676SSamuel Ortiz  * @crypto: crypto settings
1493fffd0934SJohannes Berg  * @key_len: length of WEP key for shared key authentication
1494fffd0934SJohannes Berg  * @key_idx: index of WEP key for shared key authentication
1495fffd0934SJohannes Berg  * @key: WEP key for shared key authentication
14967e7c8926SBen Greear  * @flags:  See &enum cfg80211_assoc_req_flags
14974486ea98SBala Shanmugam  * @bg_scan_period:  Background scan period in seconds
14984486ea98SBala Shanmugam  *   or -1 to indicate that default value is to be used.
14997e7c8926SBen Greear  * @ht_capa:  HT Capabilities over-rides.  Values set in ht_capa_mask
15007e7c8926SBen Greear  *   will be used in ht_capa.  Un-supported values will be ignored.
15017e7c8926SBen Greear  * @ht_capa_mask:  The bits of ht_capa which are to be used.
1502b23aa676SSamuel Ortiz  */
1503b23aa676SSamuel Ortiz struct cfg80211_connect_params {
1504b23aa676SSamuel Ortiz 	struct ieee80211_channel *channel;
1505b23aa676SSamuel Ortiz 	u8 *bssid;
1506b23aa676SSamuel Ortiz 	u8 *ssid;
1507b23aa676SSamuel Ortiz 	size_t ssid_len;
1508b23aa676SSamuel Ortiz 	enum nl80211_auth_type auth_type;
1509b23aa676SSamuel Ortiz 	u8 *ie;
1510b23aa676SSamuel Ortiz 	size_t ie_len;
1511b23aa676SSamuel Ortiz 	bool privacy;
1512cee00a95SJouni Malinen 	enum nl80211_mfp mfp;
1513b23aa676SSamuel Ortiz 	struct cfg80211_crypto_settings crypto;
1514fffd0934SJohannes Berg 	const u8 *key;
1515fffd0934SJohannes Berg 	u8 key_len, key_idx;
15167e7c8926SBen Greear 	u32 flags;
15174486ea98SBala Shanmugam 	int bg_scan_period;
15187e7c8926SBen Greear 	struct ieee80211_ht_cap ht_capa;
15197e7c8926SBen Greear 	struct ieee80211_ht_cap ht_capa_mask;
1520b23aa676SSamuel Ortiz };
1521b23aa676SSamuel Ortiz 
1522b23aa676SSamuel Ortiz /**
1523b9a5f8caSJouni Malinen  * enum wiphy_params_flags - set_wiphy_params bitfield values
1524abe37c4bSJohannes Berg  * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
1525abe37c4bSJohannes Berg  * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
1526abe37c4bSJohannes Berg  * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
1527abe37c4bSJohannes Berg  * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
1528abe37c4bSJohannes Berg  * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
1529b9a5f8caSJouni Malinen  */
1530b9a5f8caSJouni Malinen enum wiphy_params_flags {
1531b9a5f8caSJouni Malinen 	WIPHY_PARAM_RETRY_SHORT		= 1 << 0,
1532b9a5f8caSJouni Malinen 	WIPHY_PARAM_RETRY_LONG		= 1 << 1,
1533b9a5f8caSJouni Malinen 	WIPHY_PARAM_FRAG_THRESHOLD	= 1 << 2,
1534b9a5f8caSJouni Malinen 	WIPHY_PARAM_RTS_THRESHOLD	= 1 << 3,
153581077e82SLukáš Turek 	WIPHY_PARAM_COVERAGE_CLASS	= 1 << 4,
1536b9a5f8caSJouni Malinen };
1537b9a5f8caSJouni Malinen 
15389930380fSJohannes Berg /*
15399930380fSJohannes Berg  * cfg80211_bitrate_mask - masks for bitrate control
15409930380fSJohannes Berg  */
15419930380fSJohannes Berg struct cfg80211_bitrate_mask {
15429930380fSJohannes Berg 	struct {
15439930380fSJohannes Berg 		u32 legacy;
154424db78c0SSimon Wunderlich 		u8 mcs[IEEE80211_HT_MCS_MASK_LEN];
15459930380fSJohannes Berg 	} control[IEEE80211_NUM_BANDS];
15469930380fSJohannes Berg };
154767fbb16bSSamuel Ortiz /**
154867fbb16bSSamuel Ortiz  * struct cfg80211_pmksa - PMK Security Association
154967fbb16bSSamuel Ortiz  *
155067fbb16bSSamuel Ortiz  * This structure is passed to the set/del_pmksa() method for PMKSA
155167fbb16bSSamuel Ortiz  * caching.
155267fbb16bSSamuel Ortiz  *
155367fbb16bSSamuel Ortiz  * @bssid: The AP's BSSID.
155467fbb16bSSamuel Ortiz  * @pmkid: The PMK material itself.
155567fbb16bSSamuel Ortiz  */
155667fbb16bSSamuel Ortiz struct cfg80211_pmksa {
155767fbb16bSSamuel Ortiz 	u8 *bssid;
155867fbb16bSSamuel Ortiz 	u8 *pmkid;
155967fbb16bSSamuel Ortiz };
15609930380fSJohannes Berg 
15617643a2c3SJohannes Berg /**
1562ff1b6e69SJohannes Berg  * struct cfg80211_wowlan_trig_pkt_pattern - packet pattern
1563ff1b6e69SJohannes Berg  * @mask: bitmask where to match pattern and where to ignore bytes,
1564ff1b6e69SJohannes Berg  *	one bit per byte, in same format as nl80211
1565ff1b6e69SJohannes Berg  * @pattern: bytes to match where bitmask is 1
1566ff1b6e69SJohannes Berg  * @pattern_len: length of pattern (in bytes)
1567ff1b6e69SJohannes Berg  *
1568ff1b6e69SJohannes Berg  * Internal note: @mask and @pattern are allocated in one chunk of
1569ff1b6e69SJohannes Berg  * memory, free @mask only!
1570ff1b6e69SJohannes Berg  */
1571ff1b6e69SJohannes Berg struct cfg80211_wowlan_trig_pkt_pattern {
1572ff1b6e69SJohannes Berg 	u8 *mask, *pattern;
1573ff1b6e69SJohannes Berg 	int pattern_len;
1574ff1b6e69SJohannes Berg };
1575ff1b6e69SJohannes Berg 
1576ff1b6e69SJohannes Berg /**
1577ff1b6e69SJohannes Berg  * struct cfg80211_wowlan - Wake on Wireless-LAN support info
1578ff1b6e69SJohannes Berg  *
1579ff1b6e69SJohannes Berg  * This structure defines the enabled WoWLAN triggers for the device.
1580ff1b6e69SJohannes Berg  * @any: wake up on any activity -- special trigger if device continues
1581ff1b6e69SJohannes Berg  *	operating as normal during suspend
1582ff1b6e69SJohannes Berg  * @disconnect: wake up if getting disconnected
1583ff1b6e69SJohannes Berg  * @magic_pkt: wake up on receiving magic packet
1584ff1b6e69SJohannes Berg  * @patterns: wake up on receiving packet matching a pattern
1585ff1b6e69SJohannes Berg  * @n_patterns: number of patterns
158677dbbb13SJohannes Berg  * @gtk_rekey_failure: wake up on GTK rekey failure
158777dbbb13SJohannes Berg  * @eap_identity_req: wake up on EAP identity request packet
158877dbbb13SJohannes Berg  * @four_way_handshake: wake up on 4-way handshake
158977dbbb13SJohannes Berg  * @rfkill_release: wake up when rfkill is released
1590ff1b6e69SJohannes Berg  */
1591ff1b6e69SJohannes Berg struct cfg80211_wowlan {
159277dbbb13SJohannes Berg 	bool any, disconnect, magic_pkt, gtk_rekey_failure,
159377dbbb13SJohannes Berg 	     eap_identity_req, four_way_handshake,
159477dbbb13SJohannes Berg 	     rfkill_release;
1595ff1b6e69SJohannes Berg 	struct cfg80211_wowlan_trig_pkt_pattern *patterns;
1596ff1b6e69SJohannes Berg 	int n_patterns;
1597ff1b6e69SJohannes Berg };
1598ff1b6e69SJohannes Berg 
1599ff1b6e69SJohannes Berg /**
1600e5497d76SJohannes Berg  * struct cfg80211_gtk_rekey_data - rekey data
1601e5497d76SJohannes Berg  * @kek: key encryption key
1602e5497d76SJohannes Berg  * @kck: key confirmation key
1603e5497d76SJohannes Berg  * @replay_ctr: replay counter
1604e5497d76SJohannes Berg  */
1605e5497d76SJohannes Berg struct cfg80211_gtk_rekey_data {
1606e5497d76SJohannes Berg 	u8 kek[NL80211_KEK_LEN];
1607e5497d76SJohannes Berg 	u8 kck[NL80211_KCK_LEN];
1608e5497d76SJohannes Berg 	u8 replay_ctr[NL80211_REPLAY_CTR_LEN];
1609e5497d76SJohannes Berg };
1610e5497d76SJohannes Berg 
1611e5497d76SJohannes Berg /**
1612704232c2SJohannes Berg  * struct cfg80211_ops - backend description for wireless configuration
1613704232c2SJohannes Berg  *
1614704232c2SJohannes Berg  * This struct is registered by fullmac card drivers and/or wireless stacks
1615704232c2SJohannes Berg  * in order to handle configuration requests on their interfaces.
1616704232c2SJohannes Berg  *
1617704232c2SJohannes Berg  * All callbacks except where otherwise noted should return 0
1618704232c2SJohannes Berg  * on success or a negative error code.
1619704232c2SJohannes Berg  *
162043fb45cbSJohannes Berg  * All operations are currently invoked under rtnl for consistency with the
162143fb45cbSJohannes Berg  * wireless extensions but this is subject to reevaluation as soon as this
162243fb45cbSJohannes Berg  * code is used more widely and we have a first user without wext.
162343fb45cbSJohannes Berg  *
1624ff1b6e69SJohannes Berg  * @suspend: wiphy device needs to be suspended. The variable @wow will
1625ff1b6e69SJohannes Berg  *	be %NULL or contain the enabled Wake-on-Wireless triggers that are
1626ff1b6e69SJohannes Berg  *	configured for the device.
16270378b3f1SJohannes Berg  * @resume: wiphy device needs to be resumed
16286d52563fSJohannes Berg  * @set_wakeup: Called when WoWLAN is enabled/disabled, use this callback
16296d52563fSJohannes Berg  *	to call device_set_wakeup_enable() to enable/disable wakeup from
16306d52563fSJohannes Berg  *	the device.
16310378b3f1SJohannes Berg  *
163260719ffdSJohannes Berg  * @add_virtual_intf: create a new virtual interface with the given name,
1633463d0183SJohannes Berg  *	must set the struct wireless_dev's iftype. Beware: You must create
163484efbb84SJohannes Berg  *	the new netdev in the wiphy's network namespace! Returns the struct
163598104fdeSJohannes Berg  *	wireless_dev, or an ERR_PTR. For P2P device wdevs, the driver must
163698104fdeSJohannes Berg  *	also set the address member in the wdev.
1637704232c2SJohannes Berg  *
163884efbb84SJohannes Berg  * @del_virtual_intf: remove the virtual interface
163955682965SJohannes Berg  *
164060719ffdSJohannes Berg  * @change_virtual_intf: change type/configuration of virtual interface,
164160719ffdSJohannes Berg  *	keep the struct wireless_dev's iftype updated.
164255682965SJohannes Berg  *
164341ade00fSJohannes Berg  * @add_key: add a key with the given parameters. @mac_addr will be %NULL
164441ade00fSJohannes Berg  *	when adding a group key.
164541ade00fSJohannes Berg  *
164641ade00fSJohannes Berg  * @get_key: get information about the key with the given parameters.
164741ade00fSJohannes Berg  *	@mac_addr will be %NULL when requesting information for a group
164841ade00fSJohannes Berg  *	key. All pointers given to the @callback function need not be valid
1649e3da574aSJohannes Berg  *	after it returns. This function should return an error if it is
1650e3da574aSJohannes Berg  *	not possible to retrieve the key, -ENOENT if it doesn't exist.
165141ade00fSJohannes Berg  *
165241ade00fSJohannes Berg  * @del_key: remove a key given the @mac_addr (%NULL for a group key)
1653e3da574aSJohannes Berg  *	and @key_index, return -ENOENT if the key doesn't exist.
165441ade00fSJohannes Berg  *
165541ade00fSJohannes Berg  * @set_default_key: set the default key on an interface
1656ed1b6cc7SJohannes Berg  *
16573cfcf6acSJouni Malinen  * @set_default_mgmt_key: set the default management frame key on an interface
16583cfcf6acSJouni Malinen  *
1659e5497d76SJohannes Berg  * @set_rekey_data: give the data necessary for GTK rekeying to the driver
1660e5497d76SJohannes Berg  *
1661c04a4ff7SJohannes Berg  * @start_ap: Start acting in AP mode defined by the parameters.
1662c04a4ff7SJohannes Berg  * @change_beacon: Change the beacon parameters for an access point mode
1663c04a4ff7SJohannes Berg  *	interface. This should reject the call when AP mode wasn't started.
1664c04a4ff7SJohannes Berg  * @stop_ap: Stop being an AP, including stopping beaconing.
16655727ef1bSJohannes Berg  *
16665727ef1bSJohannes Berg  * @add_station: Add a new station.
16675727ef1bSJohannes Berg  * @del_station: Remove a station; @mac may be NULL to remove all stations.
1668bdd90d5eSJohannes Berg  * @change_station: Modify a given station. Note that flags changes are not much
1669bdd90d5eSJohannes Berg  *	validated in cfg80211, in particular the auth/assoc/authorized flags
1670bdd90d5eSJohannes Berg  *	might come to the driver in invalid combinations -- make sure to check
1671bdd90d5eSJohannes Berg  *	them, also against the existing state! Also, supported_rates changes are
1672bdd90d5eSJohannes Berg  *	not checked in station mode -- drivers need to reject (or ignore) them
1673bdd90d5eSJohannes Berg  *	for anything but TDLS peers.
1674abe37c4bSJohannes Berg  * @get_station: get station information for the station identified by @mac
1675abe37c4bSJohannes Berg  * @dump_station: dump station callback -- resume dump at index @idx
1676abe37c4bSJohannes Berg  *
1677abe37c4bSJohannes Berg  * @add_mpath: add a fixed mesh path
1678abe37c4bSJohannes Berg  * @del_mpath: delete a given mesh path
1679abe37c4bSJohannes Berg  * @change_mpath: change a given mesh path
1680abe37c4bSJohannes Berg  * @get_mpath: get a mesh path for the given parameters
1681abe37c4bSJohannes Berg  * @dump_mpath: dump mesh path callback -- resume dump at index @idx
1682f52555a4SJohannes Berg  * @join_mesh: join the mesh network with the specified parameters
1683f52555a4SJohannes Berg  * @leave_mesh: leave the current mesh network
16842ec600d6SLuis Carlos Cobo  *
168524bdd9f4SJavier Cardona  * @get_mesh_config: Get the current mesh configuration
168693da9cc1Scolin@cozybit.com  *
168724bdd9f4SJavier Cardona  * @update_mesh_config: Update mesh parameters on a running mesh.
168893da9cc1Scolin@cozybit.com  *	The mask is a bitfield which tells us which parameters to
168993da9cc1Scolin@cozybit.com  *	set, and which to leave alone.
169093da9cc1Scolin@cozybit.com  *
16919f1ba906SJouni Malinen  * @change_bss: Modify parameters for a given BSS.
169231888487SJouni Malinen  *
169331888487SJouni Malinen  * @set_txq_params: Set TX queue parameters
169472bdcf34SJouni Malinen  *
1695e8c9bd5bSJohannes Berg  * @libertas_set_mesh_channel: Only for backward compatibility for libertas,
1696e8c9bd5bSJohannes Berg  *	as it doesn't implement join_mesh and needs to set the channel to
1697e8c9bd5bSJohannes Berg  *	join the mesh instead.
1698e8c9bd5bSJohannes Berg  *
1699e8c9bd5bSJohannes Berg  * @set_monitor_channel: Set the monitor mode channel for the device. If other
1700e8c9bd5bSJohannes Berg  *	interfaces are active this callback should reject the configuration.
1701e8c9bd5bSJohannes Berg  *	If no interfaces are active or the device is down, the channel should
1702e8c9bd5bSJohannes Berg  *	be stored for when a monitor interface becomes active.
17039aed3cc1SJouni Malinen  *
17042a519311SJohannes Berg  * @scan: Request to do a scan. If returning zero, the scan request is given
17052a519311SJohannes Berg  *	the driver, and will be valid until passed to cfg80211_scan_done().
17062a519311SJohannes Berg  *	For scan results, call cfg80211_inform_bss(); you can call this outside
17072a519311SJohannes Berg  *	the scan/scan_done bracket too.
1708636a5d36SJouni Malinen  *
1709636a5d36SJouni Malinen  * @auth: Request to authenticate with the specified peer
1710636a5d36SJouni Malinen  * @assoc: Request to (re)associate with the specified peer
1711636a5d36SJouni Malinen  * @deauth: Request to deauthenticate from the specified peer
1712636a5d36SJouni Malinen  * @disassoc: Request to disassociate from the specified peer
171304a773adSJohannes Berg  *
1714b23aa676SSamuel Ortiz  * @connect: Connect to the ESS with the specified parameters. When connected,
1715b23aa676SSamuel Ortiz  *	call cfg80211_connect_result() with status code %WLAN_STATUS_SUCCESS.
1716b23aa676SSamuel Ortiz  *	If the connection fails for some reason, call cfg80211_connect_result()
1717b23aa676SSamuel Ortiz  *	with the status from the AP.
1718b23aa676SSamuel Ortiz  * @disconnect: Disconnect from the BSS/ESS.
1719b23aa676SSamuel Ortiz  *
172004a773adSJohannes Berg  * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
172104a773adSJohannes Berg  *	cfg80211_ibss_joined(), also call that function when changing BSSID due
172204a773adSJohannes Berg  *	to a merge.
172304a773adSJohannes Berg  * @leave_ibss: Leave the IBSS.
1724b9a5f8caSJouni Malinen  *
1725f4e583c8SAntonio Quartulli  * @set_mcast_rate: Set the specified multicast rate (only if vif is in ADHOC or
1726f4e583c8SAntonio Quartulli  *	MESH mode)
1727f4e583c8SAntonio Quartulli  *
1728b9a5f8caSJouni Malinen  * @set_wiphy_params: Notify that wiphy parameters have changed;
1729b9a5f8caSJouni Malinen  *	@changed bitfield (see &enum wiphy_params_flags) describes which values
1730b9a5f8caSJouni Malinen  *	have changed. The actual parameter values are available in
1731b9a5f8caSJouni Malinen  *	struct wiphy. If returning an error, no value should be changed.
17327643a2c3SJohannes Berg  *
17331432de07SLuis R. Rodriguez  * @set_tx_power: set the transmit power according to the parameters,
1734c8442118SJohannes Berg  *	the power passed is in mBm, to get dBm use MBM_TO_DBM(). The
1735c8442118SJohannes Berg  *	wdev may be %NULL if power was set for the wiphy, and will
1736c8442118SJohannes Berg  *	always be %NULL unless the driver supports per-vif TX power
1737c8442118SJohannes Berg  *	(as advertised by the nl80211 feature flag.)
17387643a2c3SJohannes Berg  * @get_tx_power: store the current TX power into the dbm variable;
17391f87f7d3SJohannes Berg  *	return 0 if successful
17401f87f7d3SJohannes Berg  *
1741abe37c4bSJohannes Berg  * @set_wds_peer: set the WDS peer for a WDS interface
1742abe37c4bSJohannes Berg  *
17431f87f7d3SJohannes Berg  * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
17441f87f7d3SJohannes Berg  *	functions to adjust rfkill hw state
1745aff89a9bSJohannes Berg  *
174661fa713cSHolger Schurig  * @dump_survey: get site survey information.
174761fa713cSHolger Schurig  *
17489588bbd5SJouni Malinen  * @remain_on_channel: Request the driver to remain awake on the specified
17499588bbd5SJouni Malinen  *	channel for the specified duration to complete an off-channel
17509588bbd5SJouni Malinen  *	operation (e.g., public action frame exchange). When the driver is
17519588bbd5SJouni Malinen  *	ready on the requested channel, it must indicate this with an event
17529588bbd5SJouni Malinen  *	notification by calling cfg80211_ready_on_channel().
17539588bbd5SJouni Malinen  * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
17549588bbd5SJouni Malinen  *	This allows the operation to be terminated prior to timeout based on
17559588bbd5SJouni Malinen  *	the duration value.
1756f7ca38dfSJohannes Berg  * @mgmt_tx: Transmit a management frame.
1757f7ca38dfSJohannes Berg  * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
1758f7ca38dfSJohannes Berg  *	frame on another channel
17599588bbd5SJouni Malinen  *
1760aff89a9bSJohannes Berg  * @testmode_cmd: run a test mode command
176171063f0eSWey-Yi Guy  * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
176271063f0eSWey-Yi Guy  *	used by the function, but 0 and 1 must not be touched. Additionally,
176371063f0eSWey-Yi Guy  *	return error codes other than -ENOBUFS and -ENOENT will terminate the
176471063f0eSWey-Yi Guy  *	dump and return to userspace with an error, so be careful. If any data
176571063f0eSWey-Yi Guy  *	was passed in from userspace then the data/len arguments will be present
176671063f0eSWey-Yi Guy  *	and point to the data contained in %NL80211_ATTR_TESTDATA.
176767fbb16bSSamuel Ortiz  *
1768abe37c4bSJohannes Berg  * @set_bitrate_mask: set the bitrate mask configuration
1769abe37c4bSJohannes Berg  *
177067fbb16bSSamuel Ortiz  * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
177167fbb16bSSamuel Ortiz  *	devices running firmwares capable of generating the (re) association
177267fbb16bSSamuel Ortiz  *	RSN IE. It allows for faster roaming between WPA2 BSSIDs.
177367fbb16bSSamuel Ortiz  * @del_pmksa: Delete a cached PMKID.
177467fbb16bSSamuel Ortiz  * @flush_pmksa: Flush all cached PMKIDs.
17759043f3b8SJuuso Oikarinen  * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
17769043f3b8SJuuso Oikarinen  *	allows the driver to adjust the dynamic ps timeout value.
1777d6dc1a38SJuuso Oikarinen  * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
177884f10708SThomas Pedersen  * @set_cqm_txe_config: Configure connection quality monitor TX error
177984f10708SThomas Pedersen  *	thresholds.
1780807f8a8cSLuciano Coelho  * @sched_scan_start: Tell the driver to start a scheduled scan.
178130d08a46SArend van Spriel  * @sched_scan_stop: Tell the driver to stop an ongoing scheduled scan.
178267fbb16bSSamuel Ortiz  *
1783271733cfSJohannes Berg  * @mgmt_frame_register: Notify driver that a management frame type was
1784271733cfSJohannes Berg  *	registered. Note that this callback may not sleep, and cannot run
1785271733cfSJohannes Berg  *	concurrently with itself.
1786547025d5SBruno Randolf  *
1787547025d5SBruno Randolf  * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
1788547025d5SBruno Randolf  *	Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
1789547025d5SBruno Randolf  *	reject TX/RX mask combinations they cannot support by returning -EINVAL
1790547025d5SBruno Randolf  *	(also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
1791547025d5SBruno Randolf  *
1792547025d5SBruno Randolf  * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
17933677713bSJohn W. Linville  *
17943677713bSJohn W. Linville  * @set_ringparam: Set tx and rx ring sizes.
17953677713bSJohn W. Linville  *
17963677713bSJohn W. Linville  * @get_ringparam: Get tx and rx ring current and maximum sizes.
1797109086ceSArik Nemtsov  *
1798109086ceSArik Nemtsov  * @tdls_mgmt: Transmit a TDLS management frame.
1799109086ceSArik Nemtsov  * @tdls_oper: Perform a high-level TDLS operation (e.g. TDLS link setup).
18007f6cf311SJohannes Berg  *
18017f6cf311SJohannes Berg  * @probe_client: probe an associated client, must return a cookie that it
18027f6cf311SJohannes Berg  *	later passes to cfg80211_probe_status().
18031d9d9213SSimon Wunderlich  *
18041d9d9213SSimon Wunderlich  * @set_noack_map: Set the NoAck Map for the TIDs.
1805d6199218SBen Greear  *
1806d6199218SBen Greear  * @get_et_sset_count:  Ethtool API to get string-set count.
1807d6199218SBen Greear  *	See @ethtool_ops.get_sset_count
1808d6199218SBen Greear  *
1809d6199218SBen Greear  * @get_et_stats:  Ethtool API to get a set of u64 stats.
1810d6199218SBen Greear  *	See @ethtool_ops.get_ethtool_stats
1811d6199218SBen Greear  *
1812d6199218SBen Greear  * @get_et_strings:  Ethtool API to get a set of strings to describe stats
1813d6199218SBen Greear  *	and perhaps other supported types of ethtool data-sets.
1814d6199218SBen Greear  *	See @ethtool_ops.get_strings
18155b7ccaf3SJohannes Berg  *
18165b7ccaf3SJohannes Berg  * @get_channel: Get the current operating channel for the virtual interface.
18175b7ccaf3SJohannes Berg  *	For monitor interfaces, it should return %NULL unless there's a single
18185b7ccaf3SJohannes Berg  *	current monitoring channel.
181998104fdeSJohannes Berg  *
182098104fdeSJohannes Berg  * @start_p2p_device: Start the given P2P device.
182198104fdeSJohannes Berg  * @stop_p2p_device: Stop the given P2P device.
1822*77765eafSVasanthakumar Thiagarajan  *
1823*77765eafSVasanthakumar Thiagarajan  * @set_mac_acl: Sets MAC address control list in AP and P2P GO mode.
1824*77765eafSVasanthakumar Thiagarajan  *	Parameters include ACL policy, an array of MAC address of stations
1825*77765eafSVasanthakumar Thiagarajan  *	and the number of MAC addresses. If there is already a list in driver
1826*77765eafSVasanthakumar Thiagarajan  *	this new list replaces the existing one. Driver has to clear its ACL
1827*77765eafSVasanthakumar Thiagarajan  *	when number of MAC addresses entries is passed as 0. Drivers which
1828*77765eafSVasanthakumar Thiagarajan  *	advertise the support for MAC based ACL have to implement this callback.
1829704232c2SJohannes Berg  */
1830704232c2SJohannes Berg struct cfg80211_ops {
1831ff1b6e69SJohannes Berg 	int	(*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
18320378b3f1SJohannes Berg 	int	(*resume)(struct wiphy *wiphy);
18336d52563fSJohannes Berg 	void	(*set_wakeup)(struct wiphy *wiphy, bool enabled);
18340378b3f1SJohannes Berg 
183584efbb84SJohannes Berg 	struct wireless_dev * (*add_virtual_intf)(struct wiphy *wiphy,
1836552bff0cSJohannes Berg 						  const char *name,
1837f9e10ce4SJohannes Berg 						  enum nl80211_iftype type,
1838f9e10ce4SJohannes Berg 						  u32 *flags,
18392ec600d6SLuis Carlos Cobo 						  struct vif_params *params);
184084efbb84SJohannes Berg 	int	(*del_virtual_intf)(struct wiphy *wiphy,
184184efbb84SJohannes Berg 				    struct wireless_dev *wdev);
1842e36d56b6SJohannes Berg 	int	(*change_virtual_intf)(struct wiphy *wiphy,
1843e36d56b6SJohannes Berg 				       struct net_device *dev,
18442ec600d6SLuis Carlos Cobo 				       enum nl80211_iftype type, u32 *flags,
18452ec600d6SLuis Carlos Cobo 				       struct vif_params *params);
184641ade00fSJohannes Berg 
184741ade00fSJohannes Berg 	int	(*add_key)(struct wiphy *wiphy, struct net_device *netdev,
1848e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr,
184941ade00fSJohannes Berg 			   struct key_params *params);
185041ade00fSJohannes Berg 	int	(*get_key)(struct wiphy *wiphy, struct net_device *netdev,
1851e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr,
1852e31b8213SJohannes Berg 			   void *cookie,
185341ade00fSJohannes Berg 			   void (*callback)(void *cookie, struct key_params*));
185441ade00fSJohannes Berg 	int	(*del_key)(struct wiphy *wiphy, struct net_device *netdev,
1855e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr);
185641ade00fSJohannes Berg 	int	(*set_default_key)(struct wiphy *wiphy,
185741ade00fSJohannes Berg 				   struct net_device *netdev,
1858dbd2fd65SJohannes Berg 				   u8 key_index, bool unicast, bool multicast);
18593cfcf6acSJouni Malinen 	int	(*set_default_mgmt_key)(struct wiphy *wiphy,
18603cfcf6acSJouni Malinen 					struct net_device *netdev,
18613cfcf6acSJouni Malinen 					u8 key_index);
1862ed1b6cc7SJohannes Berg 
18638860020eSJohannes Berg 	int	(*start_ap)(struct wiphy *wiphy, struct net_device *dev,
18648860020eSJohannes Berg 			    struct cfg80211_ap_settings *settings);
18658860020eSJohannes Berg 	int	(*change_beacon)(struct wiphy *wiphy, struct net_device *dev,
18668860020eSJohannes Berg 				 struct cfg80211_beacon_data *info);
18678860020eSJohannes Berg 	int	(*stop_ap)(struct wiphy *wiphy, struct net_device *dev);
18685727ef1bSJohannes Berg 
18695727ef1bSJohannes Berg 
18705727ef1bSJohannes Berg 	int	(*add_station)(struct wiphy *wiphy, struct net_device *dev,
18715727ef1bSJohannes Berg 			       u8 *mac, struct station_parameters *params);
18725727ef1bSJohannes Berg 	int	(*del_station)(struct wiphy *wiphy, struct net_device *dev,
18735727ef1bSJohannes Berg 			       u8 *mac);
18745727ef1bSJohannes Berg 	int	(*change_station)(struct wiphy *wiphy, struct net_device *dev,
18755727ef1bSJohannes Berg 				  u8 *mac, struct station_parameters *params);
1876fd5b74dcSJohannes Berg 	int	(*get_station)(struct wiphy *wiphy, struct net_device *dev,
18772ec600d6SLuis Carlos Cobo 			       u8 *mac, struct station_info *sinfo);
18782ec600d6SLuis Carlos Cobo 	int	(*dump_station)(struct wiphy *wiphy, struct net_device *dev,
18792ec600d6SLuis Carlos Cobo 			       int idx, u8 *mac, struct station_info *sinfo);
18802ec600d6SLuis Carlos Cobo 
18812ec600d6SLuis Carlos Cobo 	int	(*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
18822ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop);
18832ec600d6SLuis Carlos Cobo 	int	(*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
18842ec600d6SLuis Carlos Cobo 			       u8 *dst);
18852ec600d6SLuis Carlos Cobo 	int	(*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
18862ec600d6SLuis Carlos Cobo 				  u8 *dst, u8 *next_hop);
18872ec600d6SLuis Carlos Cobo 	int	(*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
18882ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop,
18892ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
18902ec600d6SLuis Carlos Cobo 	int	(*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
18912ec600d6SLuis Carlos Cobo 			       int idx, u8 *dst, u8 *next_hop,
18922ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
189324bdd9f4SJavier Cardona 	int	(*get_mesh_config)(struct wiphy *wiphy,
189493da9cc1Scolin@cozybit.com 				struct net_device *dev,
189593da9cc1Scolin@cozybit.com 				struct mesh_config *conf);
189624bdd9f4SJavier Cardona 	int	(*update_mesh_config)(struct wiphy *wiphy,
189729cbe68cSJohannes Berg 				      struct net_device *dev, u32 mask,
189829cbe68cSJohannes Berg 				      const struct mesh_config *nconf);
189929cbe68cSJohannes Berg 	int	(*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
190029cbe68cSJohannes Berg 			     const struct mesh_config *conf,
190129cbe68cSJohannes Berg 			     const struct mesh_setup *setup);
190229cbe68cSJohannes Berg 	int	(*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
190329cbe68cSJohannes Berg 
19049f1ba906SJouni Malinen 	int	(*change_bss)(struct wiphy *wiphy, struct net_device *dev,
19059f1ba906SJouni Malinen 			      struct bss_parameters *params);
190631888487SJouni Malinen 
1907f70f01c2SEliad Peller 	int	(*set_txq_params)(struct wiphy *wiphy, struct net_device *dev,
190831888487SJouni Malinen 				  struct ieee80211_txq_params *params);
190972bdcf34SJouni Malinen 
1910e8c9bd5bSJohannes Berg 	int	(*libertas_set_mesh_channel)(struct wiphy *wiphy,
1911e8c9bd5bSJohannes Berg 					     struct net_device *dev,
1912e8c9bd5bSJohannes Berg 					     struct ieee80211_channel *chan);
1913e8c9bd5bSJohannes Berg 
1914e8c9bd5bSJohannes Berg 	int	(*set_monitor_channel)(struct wiphy *wiphy,
1915683b6d3bSJohannes Berg 				       struct cfg80211_chan_def *chandef);
19169aed3cc1SJouni Malinen 
1917fd014284SJohannes Berg 	int	(*scan)(struct wiphy *wiphy,
19182a519311SJohannes Berg 			struct cfg80211_scan_request *request);
1919636a5d36SJouni Malinen 
1920636a5d36SJouni Malinen 	int	(*auth)(struct wiphy *wiphy, struct net_device *dev,
1921636a5d36SJouni Malinen 			struct cfg80211_auth_request *req);
1922636a5d36SJouni Malinen 	int	(*assoc)(struct wiphy *wiphy, struct net_device *dev,
1923636a5d36SJouni Malinen 			 struct cfg80211_assoc_request *req);
1924636a5d36SJouni Malinen 	int	(*deauth)(struct wiphy *wiphy, struct net_device *dev,
192563c9c5e7SJohannes Berg 			  struct cfg80211_deauth_request *req);
1926636a5d36SJouni Malinen 	int	(*disassoc)(struct wiphy *wiphy, struct net_device *dev,
192763c9c5e7SJohannes Berg 			    struct cfg80211_disassoc_request *req);
192804a773adSJohannes Berg 
1929b23aa676SSamuel Ortiz 	int	(*connect)(struct wiphy *wiphy, struct net_device *dev,
1930b23aa676SSamuel Ortiz 			   struct cfg80211_connect_params *sme);
1931b23aa676SSamuel Ortiz 	int	(*disconnect)(struct wiphy *wiphy, struct net_device *dev,
1932b23aa676SSamuel Ortiz 			      u16 reason_code);
1933b23aa676SSamuel Ortiz 
193404a773adSJohannes Berg 	int	(*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
193504a773adSJohannes Berg 			     struct cfg80211_ibss_params *params);
193604a773adSJohannes Berg 	int	(*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
1937b9a5f8caSJouni Malinen 
1938f4e583c8SAntonio Quartulli 	int	(*set_mcast_rate)(struct wiphy *wiphy, struct net_device *dev,
1939f4e583c8SAntonio Quartulli 				  int rate[IEEE80211_NUM_BANDS]);
1940f4e583c8SAntonio Quartulli 
1941b9a5f8caSJouni Malinen 	int	(*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
19427643a2c3SJohannes Berg 
1943c8442118SJohannes Berg 	int	(*set_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
1944fa61cf70SJuuso Oikarinen 				enum nl80211_tx_power_setting type, int mbm);
1945c8442118SJohannes Berg 	int	(*get_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
1946c8442118SJohannes Berg 				int *dbm);
19471f87f7d3SJohannes Berg 
1948ab737a4fSJohannes Berg 	int	(*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
1949388ac775SJohannes Berg 				const u8 *addr);
1950ab737a4fSJohannes Berg 
19511f87f7d3SJohannes Berg 	void	(*rfkill_poll)(struct wiphy *wiphy);
1952aff89a9bSJohannes Berg 
1953aff89a9bSJohannes Berg #ifdef CONFIG_NL80211_TESTMODE
1954aff89a9bSJohannes Berg 	int	(*testmode_cmd)(struct wiphy *wiphy, void *data, int len);
195571063f0eSWey-Yi Guy 	int	(*testmode_dump)(struct wiphy *wiphy, struct sk_buff *skb,
195671063f0eSWey-Yi Guy 				 struct netlink_callback *cb,
195771063f0eSWey-Yi Guy 				 void *data, int len);
1958aff89a9bSJohannes Berg #endif
1959bc92afd9SJohannes Berg 
19609930380fSJohannes Berg 	int	(*set_bitrate_mask)(struct wiphy *wiphy,
19619930380fSJohannes Berg 				    struct net_device *dev,
19629930380fSJohannes Berg 				    const u8 *peer,
19639930380fSJohannes Berg 				    const struct cfg80211_bitrate_mask *mask);
19649930380fSJohannes Berg 
196561fa713cSHolger Schurig 	int	(*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
196661fa713cSHolger Schurig 			int idx, struct survey_info *info);
196761fa713cSHolger Schurig 
196867fbb16bSSamuel Ortiz 	int	(*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
196967fbb16bSSamuel Ortiz 			     struct cfg80211_pmksa *pmksa);
197067fbb16bSSamuel Ortiz 	int	(*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
197167fbb16bSSamuel Ortiz 			     struct cfg80211_pmksa *pmksa);
197267fbb16bSSamuel Ortiz 	int	(*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
197367fbb16bSSamuel Ortiz 
19749588bbd5SJouni Malinen 	int	(*remain_on_channel)(struct wiphy *wiphy,
197571bbc994SJohannes Berg 				     struct wireless_dev *wdev,
19769588bbd5SJouni Malinen 				     struct ieee80211_channel *chan,
19779588bbd5SJouni Malinen 				     unsigned int duration,
19789588bbd5SJouni Malinen 				     u64 *cookie);
19799588bbd5SJouni Malinen 	int	(*cancel_remain_on_channel)(struct wiphy *wiphy,
198071bbc994SJohannes Berg 					    struct wireless_dev *wdev,
19819588bbd5SJouni Malinen 					    u64 cookie);
19829588bbd5SJouni Malinen 
198371bbc994SJohannes Berg 	int	(*mgmt_tx)(struct wiphy *wiphy, struct wireless_dev *wdev,
1984f7ca38dfSJohannes Berg 			  struct ieee80211_channel *chan, bool offchan,
198542d97a59SJohannes Berg 			  unsigned int wait, const u8 *buf, size_t len,
198642d97a59SJohannes Berg 			  bool no_cck, bool dont_wait_for_ack, u64 *cookie);
1987f7ca38dfSJohannes Berg 	int	(*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
198871bbc994SJohannes Berg 				       struct wireless_dev *wdev,
1989f7ca38dfSJohannes Berg 				       u64 cookie);
1990026331c4SJouni Malinen 
1991bc92afd9SJohannes Berg 	int	(*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
1992bc92afd9SJohannes Berg 				  bool enabled, int timeout);
1993d6dc1a38SJuuso Oikarinen 
1994d6dc1a38SJuuso Oikarinen 	int	(*set_cqm_rssi_config)(struct wiphy *wiphy,
1995d6dc1a38SJuuso Oikarinen 				       struct net_device *dev,
1996d6dc1a38SJuuso Oikarinen 				       s32 rssi_thold, u32 rssi_hyst);
1997271733cfSJohannes Berg 
199884f10708SThomas Pedersen 	int	(*set_cqm_txe_config)(struct wiphy *wiphy,
199984f10708SThomas Pedersen 				      struct net_device *dev,
200084f10708SThomas Pedersen 				      u32 rate, u32 pkts, u32 intvl);
200184f10708SThomas Pedersen 
2002271733cfSJohannes Berg 	void	(*mgmt_frame_register)(struct wiphy *wiphy,
200371bbc994SJohannes Berg 				       struct wireless_dev *wdev,
2004271733cfSJohannes Berg 				       u16 frame_type, bool reg);
2005afe0cbf8SBruno Randolf 
2006afe0cbf8SBruno Randolf 	int	(*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
2007afe0cbf8SBruno Randolf 	int	(*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
20083677713bSJohn W. Linville 
20093677713bSJohn W. Linville 	int	(*set_ringparam)(struct wiphy *wiphy, u32 tx, u32 rx);
20103677713bSJohn W. Linville 	void	(*get_ringparam)(struct wiphy *wiphy,
20113677713bSJohn W. Linville 				 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
2012807f8a8cSLuciano Coelho 
2013807f8a8cSLuciano Coelho 	int	(*sched_scan_start)(struct wiphy *wiphy,
2014807f8a8cSLuciano Coelho 				struct net_device *dev,
2015807f8a8cSLuciano Coelho 				struct cfg80211_sched_scan_request *request);
201685a9994aSLuciano Coelho 	int	(*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev);
2017e5497d76SJohannes Berg 
2018e5497d76SJohannes Berg 	int	(*set_rekey_data)(struct wiphy *wiphy, struct net_device *dev,
2019e5497d76SJohannes Berg 				  struct cfg80211_gtk_rekey_data *data);
2020109086ceSArik Nemtsov 
2021109086ceSArik Nemtsov 	int	(*tdls_mgmt)(struct wiphy *wiphy, struct net_device *dev,
2022109086ceSArik Nemtsov 			     u8 *peer, u8 action_code,  u8 dialog_token,
2023109086ceSArik Nemtsov 			     u16 status_code, const u8 *buf, size_t len);
2024109086ceSArik Nemtsov 	int	(*tdls_oper)(struct wiphy *wiphy, struct net_device *dev,
2025109086ceSArik Nemtsov 			     u8 *peer, enum nl80211_tdls_operation oper);
20267f6cf311SJohannes Berg 
20277f6cf311SJohannes Berg 	int	(*probe_client)(struct wiphy *wiphy, struct net_device *dev,
20287f6cf311SJohannes Berg 				const u8 *peer, u64 *cookie);
2029e999882aSJohannes Berg 
20301d9d9213SSimon Wunderlich 	int	(*set_noack_map)(struct wiphy *wiphy,
20311d9d9213SSimon Wunderlich 				  struct net_device *dev,
20321d9d9213SSimon Wunderlich 				  u16 noack_map);
20331d9d9213SSimon Wunderlich 
2034d6199218SBen Greear 	int	(*get_et_sset_count)(struct wiphy *wiphy,
2035d6199218SBen Greear 				     struct net_device *dev, int sset);
2036d6199218SBen Greear 	void	(*get_et_stats)(struct wiphy *wiphy, struct net_device *dev,
2037d6199218SBen Greear 				struct ethtool_stats *stats, u64 *data);
2038d6199218SBen Greear 	void	(*get_et_strings)(struct wiphy *wiphy, struct net_device *dev,
2039d6199218SBen Greear 				  u32 sset, u8 *data);
2040dbbae26aSMichal Kazior 
2041683b6d3bSJohannes Berg 	int	(*get_channel)(struct wiphy *wiphy,
20425b7ccaf3SJohannes Berg 			       struct wireless_dev *wdev,
2043683b6d3bSJohannes Berg 			       struct cfg80211_chan_def *chandef);
204498104fdeSJohannes Berg 
204598104fdeSJohannes Berg 	int	(*start_p2p_device)(struct wiphy *wiphy,
204698104fdeSJohannes Berg 				    struct wireless_dev *wdev);
204798104fdeSJohannes Berg 	void	(*stop_p2p_device)(struct wiphy *wiphy,
204898104fdeSJohannes Berg 				   struct wireless_dev *wdev);
2049*77765eafSVasanthakumar Thiagarajan 
2050*77765eafSVasanthakumar Thiagarajan 	int	(*set_mac_acl)(struct wiphy *wiphy, struct net_device *dev,
2051*77765eafSVasanthakumar Thiagarajan 			       const struct cfg80211_acl_data *params);
2052704232c2SJohannes Berg };
2053704232c2SJohannes Berg 
2054d3236553SJohannes Berg /*
2055d3236553SJohannes Berg  * wireless hardware and networking interfaces structures
2056d3236553SJohannes Berg  * and registration/helper functions
2057d3236553SJohannes Berg  */
2058d3236553SJohannes Berg 
2059d3236553SJohannes Berg /**
20605be83de5SJohannes Berg  * enum wiphy_flags - wiphy capability flags
20615be83de5SJohannes Berg  *
20625be83de5SJohannes Berg  * @WIPHY_FLAG_CUSTOM_REGULATORY:  tells us the driver for this device
2063d3236553SJohannes Berg  * 	has its own custom regulatory domain and cannot identify the
2064d3236553SJohannes Berg  * 	ISO / IEC 3166 alpha2 it belongs to. When this is enabled
2065d3236553SJohannes Berg  * 	we will disregard the first regulatory hint (when the
2066d3236553SJohannes Berg  * 	initiator is %REGDOM_SET_BY_CORE).
20675be83de5SJohannes Berg  * @WIPHY_FLAG_STRICT_REGULATORY: tells us the driver for this device will
20685be83de5SJohannes Berg  *	ignore regulatory domain settings until it gets its own regulatory
2069749b527bSLuis R. Rodriguez  *	domain via its regulatory_hint() unless the regulatory hint is
2070749b527bSLuis R. Rodriguez  *	from a country IE. After its gets its own regulatory domain it will
2071749b527bSLuis R. Rodriguez  *	only allow further regulatory domain settings to further enhance
2072749b527bSLuis R. Rodriguez  *	compliance. For example if channel 13 and 14 are disabled by this
2073749b527bSLuis R. Rodriguez  *	regulatory domain no user regulatory domain can enable these channels
2074749b527bSLuis R. Rodriguez  *	at a later time. This can be used for devices which do not have
2075749b527bSLuis R. Rodriguez  *	calibration information guaranteed for frequencies or settings
2076061acaaeSLuis R. Rodriguez  *	outside of its regulatory domain. If used in combination with
2077061acaaeSLuis R. Rodriguez  *	WIPHY_FLAG_CUSTOM_REGULATORY the inspected country IE power settings
2078061acaaeSLuis R. Rodriguez  *	will be followed.
20795be83de5SJohannes Berg  * @WIPHY_FLAG_DISABLE_BEACON_HINTS: enable this if your driver needs to ensure
20805be83de5SJohannes Berg  *	that passive scan flags and beaconing flags may not be lifted by
20815be83de5SJohannes Berg  *	cfg80211 due to regulatory beacon hints. For more information on beacon
208237184244SLuis R. Rodriguez  *	hints read the documenation for regulatory_hint_found_beacon()
20835be83de5SJohannes Berg  * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
20845be83de5SJohannes Berg  *	wiphy at all
20855be83de5SJohannes Berg  * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
20865be83de5SJohannes Berg  *	by default -- this flag will be set depending on the kernel's default
20875be83de5SJohannes Berg  *	on wiphy_new(), but can be changed by the driver if it has a good
20885be83de5SJohannes Berg  *	reason to override the default
20899bc383deSJohannes Berg  * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
20909bc383deSJohannes Berg  *	on a VLAN interface)
20919bc383deSJohannes Berg  * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
2092c0692b8fSJohannes Berg  * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
2093c0692b8fSJohannes Berg  *	control port protocol ethertype. The device also honours the
2094c0692b8fSJohannes Berg  *	control_port_no_encrypt flag.
2095e31b8213SJohannes Berg  * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
209615d5dda6SJavier Cardona  * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
209715d5dda6SJavier Cardona  *	auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
20981ba01458SRandy Dunlap  * @WIPHY_FLAG_SUPPORTS_SCHED_SCAN: The device supports scheduled scans.
2099f4b34b55SVivek Natarajan  * @WIPHY_FLAG_SUPPORTS_FW_ROAM: The device supports roaming feature in the
2100f4b34b55SVivek Natarajan  *	firmware.
2101cedb5412SEliad Peller  * @WIPHY_FLAG_AP_UAPSD: The device supports uapsd on AP.
2102109086ceSArik Nemtsov  * @WIPHY_FLAG_SUPPORTS_TDLS: The device supports TDLS (802.11z) operation.
2103109086ceSArik Nemtsov  * @WIPHY_FLAG_TDLS_EXTERNAL_SETUP: The device does not handle TDLS (802.11z)
2104109086ceSArik Nemtsov  *	link setup/discovery operations internally. Setup, discovery and
2105109086ceSArik Nemtsov  *	teardown packets should be sent through the @NL80211_CMD_TDLS_MGMT
2106109086ceSArik Nemtsov  *	command. When this flag is not set, @NL80211_CMD_TDLS_OPER should be
2107109086ceSArik Nemtsov  *	used for asking the driver/firmware to perform a TDLS operation.
2108562a7480SJohannes Berg  * @WIPHY_FLAG_HAVE_AP_SME: device integrates AP SME
21095e760230SJohannes Berg  * @WIPHY_FLAG_REPORTS_OBSS: the device will report beacons from other BSSes
21105e760230SJohannes Berg  *	when there are virtual interfaces in AP mode by calling
21115e760230SJohannes Berg  *	cfg80211_report_obss_beacon().
211287bbbe22SArik Nemtsov  * @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD: When operating as an AP, the device
211387bbbe22SArik Nemtsov  *	responds to probe-requests in hardware.
21147c4ef712SJohannes Berg  * @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
21157c4ef712SJohannes Berg  * @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
21165be83de5SJohannes Berg  */
21175be83de5SJohannes Berg enum wiphy_flags {
21185be83de5SJohannes Berg 	WIPHY_FLAG_CUSTOM_REGULATORY		= BIT(0),
21195be83de5SJohannes Berg 	WIPHY_FLAG_STRICT_REGULATORY		= BIT(1),
21205be83de5SJohannes Berg 	WIPHY_FLAG_DISABLE_BEACON_HINTS		= BIT(2),
21215be83de5SJohannes Berg 	WIPHY_FLAG_NETNS_OK			= BIT(3),
21225be83de5SJohannes Berg 	WIPHY_FLAG_PS_ON_BY_DEFAULT		= BIT(4),
21239bc383deSJohannes Berg 	WIPHY_FLAG_4ADDR_AP			= BIT(5),
21249bc383deSJohannes Berg 	WIPHY_FLAG_4ADDR_STATION		= BIT(6),
2125c0692b8fSJohannes Berg 	WIPHY_FLAG_CONTROL_PORT_PROTOCOL	= BIT(7),
2126309075cfSJussi Kivilinna 	WIPHY_FLAG_IBSS_RSN			= BIT(8),
212715d5dda6SJavier Cardona 	WIPHY_FLAG_MESH_AUTH			= BIT(10),
2128807f8a8cSLuciano Coelho 	WIPHY_FLAG_SUPPORTS_SCHED_SCAN		= BIT(11),
21298e8b41f9SJohannes Berg 	/* use hole at 12 */
2130f4b34b55SVivek Natarajan 	WIPHY_FLAG_SUPPORTS_FW_ROAM		= BIT(13),
2131cedb5412SEliad Peller 	WIPHY_FLAG_AP_UAPSD			= BIT(14),
2132109086ceSArik Nemtsov 	WIPHY_FLAG_SUPPORTS_TDLS		= BIT(15),
2133109086ceSArik Nemtsov 	WIPHY_FLAG_TDLS_EXTERNAL_SETUP		= BIT(16),
2134562a7480SJohannes Berg 	WIPHY_FLAG_HAVE_AP_SME			= BIT(17),
21355e760230SJohannes Berg 	WIPHY_FLAG_REPORTS_OBSS			= BIT(18),
213687bbbe22SArik Nemtsov 	WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD	= BIT(19),
21377c4ef712SJohannes Berg 	WIPHY_FLAG_OFFCHAN_TX			= BIT(20),
21387c4ef712SJohannes Berg 	WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL	= BIT(21),
21397527a782SJohannes Berg };
21407527a782SJohannes Berg 
21417527a782SJohannes Berg /**
21427527a782SJohannes Berg  * struct ieee80211_iface_limit - limit on certain interface types
21437527a782SJohannes Berg  * @max: maximum number of interfaces of these types
21447527a782SJohannes Berg  * @types: interface types (bits)
21457527a782SJohannes Berg  */
21467527a782SJohannes Berg struct ieee80211_iface_limit {
21477527a782SJohannes Berg 	u16 max;
21487527a782SJohannes Berg 	u16 types;
21497527a782SJohannes Berg };
21507527a782SJohannes Berg 
21517527a782SJohannes Berg /**
21527527a782SJohannes Berg  * struct ieee80211_iface_combination - possible interface combination
21537527a782SJohannes Berg  * @limits: limits for the given interface types
21547527a782SJohannes Berg  * @n_limits: number of limitations
21557527a782SJohannes Berg  * @num_different_channels: can use up to this many different channels
21567527a782SJohannes Berg  * @max_interfaces: maximum number of interfaces in total allowed in this
21577527a782SJohannes Berg  *	group
21587527a782SJohannes Berg  * @beacon_int_infra_match: In this combination, the beacon intervals
21597527a782SJohannes Berg  *	between infrastructure and AP types must match. This is required
21607527a782SJohannes Berg  *	only in special cases.
216111c4a075SSimon Wunderlich  * @radar_detect_widths: bitmap of channel widths supported for radar detection
21627527a782SJohannes Berg  *
21637527a782SJohannes Berg  * These examples can be expressed as follows:
21647527a782SJohannes Berg  *
21657527a782SJohannes Berg  * Allow #STA <= 1, #AP <= 1, matching BI, channels = 1, 2 total:
21667527a782SJohannes Berg  *
21677527a782SJohannes Berg  *  struct ieee80211_iface_limit limits1[] = {
21687527a782SJohannes Berg  *	{ .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
21697527a782SJohannes Berg  *	{ .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
21707527a782SJohannes Berg  *  };
21717527a782SJohannes Berg  *  struct ieee80211_iface_combination combination1 = {
21727527a782SJohannes Berg  *	.limits = limits1,
21737527a782SJohannes Berg  *	.n_limits = ARRAY_SIZE(limits1),
21747527a782SJohannes Berg  *	.max_interfaces = 2,
21757527a782SJohannes Berg  *	.beacon_int_infra_match = true,
21767527a782SJohannes Berg  *  };
21777527a782SJohannes Berg  *
21787527a782SJohannes Berg  *
21797527a782SJohannes Berg  * Allow #{AP, P2P-GO} <= 8, channels = 1, 8 total:
21807527a782SJohannes Berg  *
21817527a782SJohannes Berg  *  struct ieee80211_iface_limit limits2[] = {
21827527a782SJohannes Berg  *	{ .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
21837527a782SJohannes Berg  *			     BIT(NL80211_IFTYPE_P2P_GO), },
21847527a782SJohannes Berg  *  };
21857527a782SJohannes Berg  *  struct ieee80211_iface_combination combination2 = {
21867527a782SJohannes Berg  *	.limits = limits2,
21877527a782SJohannes Berg  *	.n_limits = ARRAY_SIZE(limits2),
21887527a782SJohannes Berg  *	.max_interfaces = 8,
21897527a782SJohannes Berg  *	.num_different_channels = 1,
21907527a782SJohannes Berg  *  };
21917527a782SJohannes Berg  *
21927527a782SJohannes Berg  *
21937527a782SJohannes Berg  * Allow #STA <= 1, #{P2P-client,P2P-GO} <= 3 on two channels, 4 total.
21947527a782SJohannes Berg  * This allows for an infrastructure connection and three P2P connections.
21957527a782SJohannes Berg  *
21967527a782SJohannes Berg  *  struct ieee80211_iface_limit limits3[] = {
21977527a782SJohannes Berg  *	{ .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
21987527a782SJohannes Berg  *	{ .max = 3, .types = BIT(NL80211_IFTYPE_P2P_GO) |
21997527a782SJohannes Berg  *			     BIT(NL80211_IFTYPE_P2P_CLIENT), },
22007527a782SJohannes Berg  *  };
22017527a782SJohannes Berg  *  struct ieee80211_iface_combination combination3 = {
22027527a782SJohannes Berg  *	.limits = limits3,
22037527a782SJohannes Berg  *	.n_limits = ARRAY_SIZE(limits3),
22047527a782SJohannes Berg  *	.max_interfaces = 4,
22057527a782SJohannes Berg  *	.num_different_channels = 2,
22067527a782SJohannes Berg  *  };
22077527a782SJohannes Berg  */
22087527a782SJohannes Berg struct ieee80211_iface_combination {
22097527a782SJohannes Berg 	const struct ieee80211_iface_limit *limits;
22107527a782SJohannes Berg 	u32 num_different_channels;
22117527a782SJohannes Berg 	u16 max_interfaces;
22127527a782SJohannes Berg 	u8 n_limits;
22137527a782SJohannes Berg 	bool beacon_int_infra_match;
221411c4a075SSimon Wunderlich 	u8 radar_detect_widths;
22155be83de5SJohannes Berg };
22165be83de5SJohannes Berg 
22172e161f78SJohannes Berg struct ieee80211_txrx_stypes {
22182e161f78SJohannes Berg 	u16 tx, rx;
22192e161f78SJohannes Berg };
22202e161f78SJohannes Berg 
22215be83de5SJohannes Berg /**
2222ff1b6e69SJohannes Berg  * enum wiphy_wowlan_support_flags - WoWLAN support flags
2223ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
2224ff1b6e69SJohannes Berg  *	trigger that keeps the device operating as-is and
2225ff1b6e69SJohannes Berg  *	wakes up the host on any activity, for example a
2226ff1b6e69SJohannes Berg  *	received packet that passed filtering; note that the
2227ff1b6e69SJohannes Berg  *	packet should be preserved in that case
2228ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
2229ff1b6e69SJohannes Berg  *	(see nl80211.h)
2230ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
223177dbbb13SJohannes Berg  * @WIPHY_WOWLAN_SUPPORTS_GTK_REKEY: supports GTK rekeying while asleep
223277dbbb13SJohannes Berg  * @WIPHY_WOWLAN_GTK_REKEY_FAILURE: supports wakeup on GTK rekey failure
223377dbbb13SJohannes Berg  * @WIPHY_WOWLAN_EAP_IDENTITY_REQ: supports wakeup on EAP identity request
223477dbbb13SJohannes Berg  * @WIPHY_WOWLAN_4WAY_HANDSHAKE: supports wakeup on 4-way handshake failure
223577dbbb13SJohannes Berg  * @WIPHY_WOWLAN_RFKILL_RELEASE: supports wakeup on RF-kill release
2236ff1b6e69SJohannes Berg  */
2237ff1b6e69SJohannes Berg enum wiphy_wowlan_support_flags {
2238ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_ANY		= BIT(0),
2239ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_MAGIC_PKT		= BIT(1),
2240ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_DISCONNECT		= BIT(2),
224177dbbb13SJohannes Berg 	WIPHY_WOWLAN_SUPPORTS_GTK_REKEY	= BIT(3),
224277dbbb13SJohannes Berg 	WIPHY_WOWLAN_GTK_REKEY_FAILURE	= BIT(4),
224377dbbb13SJohannes Berg 	WIPHY_WOWLAN_EAP_IDENTITY_REQ	= BIT(5),
224477dbbb13SJohannes Berg 	WIPHY_WOWLAN_4WAY_HANDSHAKE	= BIT(6),
224577dbbb13SJohannes Berg 	WIPHY_WOWLAN_RFKILL_RELEASE	= BIT(7),
2246ff1b6e69SJohannes Berg };
2247ff1b6e69SJohannes Berg 
2248ff1b6e69SJohannes Berg /**
2249ff1b6e69SJohannes Berg  * struct wiphy_wowlan_support - WoWLAN support data
2250ff1b6e69SJohannes Berg  * @flags: see &enum wiphy_wowlan_support_flags
2251ff1b6e69SJohannes Berg  * @n_patterns: number of supported wakeup patterns
2252ff1b6e69SJohannes Berg  *	(see nl80211.h for the pattern definition)
2253ff1b6e69SJohannes Berg  * @pattern_max_len: maximum length of each pattern
2254ff1b6e69SJohannes Berg  * @pattern_min_len: minimum length of each pattern
2255ff1b6e69SJohannes Berg  */
2256ff1b6e69SJohannes Berg struct wiphy_wowlan_support {
2257ff1b6e69SJohannes Berg 	u32 flags;
2258ff1b6e69SJohannes Berg 	int n_patterns;
2259ff1b6e69SJohannes Berg 	int pattern_max_len;
2260ff1b6e69SJohannes Berg 	int pattern_min_len;
2261ff1b6e69SJohannes Berg };
2262ff1b6e69SJohannes Berg 
2263ff1b6e69SJohannes Berg /**
22645be83de5SJohannes Berg  * struct wiphy - wireless hardware description
22652784fe91SLuis R. Rodriguez  * @reg_notifier: the driver's regulatory notification callback,
22662784fe91SLuis R. Rodriguez  *	note that if your driver uses wiphy_apply_custom_regulatory()
22672784fe91SLuis R. Rodriguez  *	the reg_notifier's request can be passed as NULL
2268d3236553SJohannes Berg  * @regd: the driver's regulatory domain, if one was requested via
2269d3236553SJohannes Berg  * 	the regulatory_hint() API. This can be used by the driver
2270d3236553SJohannes Berg  *	on the reg_notifier() if it chooses to ignore future
2271d3236553SJohannes Berg  *	regulatory domain changes caused by other drivers.
2272d3236553SJohannes Berg  * @signal_type: signal type reported in &struct cfg80211_bss.
2273d3236553SJohannes Berg  * @cipher_suites: supported cipher suites
2274d3236553SJohannes Berg  * @n_cipher_suites: number of supported cipher suites
2275b9a5f8caSJouni Malinen  * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
2276b9a5f8caSJouni Malinen  * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
2277b9a5f8caSJouni Malinen  * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
2278b9a5f8caSJouni Malinen  *	-1 = fragmentation disabled, only odd values >= 256 used
2279b9a5f8caSJouni Malinen  * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
2280abe37c4bSJohannes Berg  * @_net: the network namespace this wiphy currently lives in
2281ef15aac6SJohannes Berg  * @perm_addr: permanent MAC address of this device
2282ef15aac6SJohannes Berg  * @addr_mask: If the device supports multiple MAC addresses by masking,
2283ef15aac6SJohannes Berg  *	set this to a mask with variable bits set to 1, e.g. if the last
2284ef15aac6SJohannes Berg  *	four bits are variable then set it to 00:...:00:0f. The actual
2285ef15aac6SJohannes Berg  *	variable bits shall be determined by the interfaces added, with
2286ef15aac6SJohannes Berg  *	interfaces not matching the mask being rejected to be brought up.
2287ef15aac6SJohannes Berg  * @n_addresses: number of addresses in @addresses.
2288ef15aac6SJohannes Berg  * @addresses: If the device has more than one address, set this pointer
2289ef15aac6SJohannes Berg  *	to a list of addresses (6 bytes each). The first one will be used
2290ef15aac6SJohannes Berg  *	by default for perm_addr. In this case, the mask should be set to
2291ef15aac6SJohannes Berg  *	all-zeroes. In this case it is assumed that the device can handle
2292ef15aac6SJohannes Berg  *	the same number of arbitrary MAC addresses.
2293fd235913SRandy Dunlap  * @registered: protects ->resume and ->suspend sysfs callbacks against
2294fd235913SRandy Dunlap  *	unregister hardware
2295abe37c4bSJohannes Berg  * @debugfsdir: debugfs directory used for this wiphy, will be renamed
2296abe37c4bSJohannes Berg  *	automatically on wiphy renames
2297abe37c4bSJohannes Berg  * @dev: (virtual) struct device for this wiphy
22984a711a85SStanislaw Gruszka  * @registered: helps synchronize suspend/resume with wiphy unregister
2299abe37c4bSJohannes Berg  * @wext: wireless extension handlers
2300abe37c4bSJohannes Berg  * @priv: driver private data (sized according to wiphy_new() parameter)
2301abe37c4bSJohannes Berg  * @interface_modes: bitmask of interfaces types valid for this wiphy,
2302abe37c4bSJohannes Berg  *	must be set by driver
23037527a782SJohannes Berg  * @iface_combinations: Valid interface combinations array, should not
23047527a782SJohannes Berg  *	list single interface types.
23057527a782SJohannes Berg  * @n_iface_combinations: number of entries in @iface_combinations array.
23067527a782SJohannes Berg  * @software_iftypes: bitmask of software interface types, these are not
23077527a782SJohannes Berg  *	subject to any restrictions since they are purely managed in SW.
2308abe37c4bSJohannes Berg  * @flags: wiphy flags, see &enum wiphy_flags
23091f074bd8SJohannes Berg  * @features: features advertised to nl80211, see &enum nl80211_feature_flags.
2310abe37c4bSJohannes Berg  * @bss_priv_size: each BSS struct has private data allocated with it,
2311abe37c4bSJohannes Berg  *	this variable determines its size
2312abe37c4bSJohannes Berg  * @max_scan_ssids: maximum number of SSIDs the device can scan for in
2313abe37c4bSJohannes Berg  *	any given scan
231493b6aa69SLuciano Coelho  * @max_sched_scan_ssids: maximum number of SSIDs the device can scan
231593b6aa69SLuciano Coelho  *	for in any given scheduled scan
2316a1f1c21cSLuciano Coelho  * @max_match_sets: maximum number of match sets the device can handle
2317a1f1c21cSLuciano Coelho  *	when performing a scheduled scan, 0 if filtering is not
2318a1f1c21cSLuciano Coelho  *	supported.
2319abe37c4bSJohannes Berg  * @max_scan_ie_len: maximum length of user-controlled IEs device can
2320abe37c4bSJohannes Berg  *	add to probe request frames transmitted during a scan, must not
2321abe37c4bSJohannes Berg  *	include fixed IEs like supported rates
23225a865badSLuciano Coelho  * @max_sched_scan_ie_len: same as max_scan_ie_len, but for scheduled
23235a865badSLuciano Coelho  *	scans
2324abe37c4bSJohannes Berg  * @coverage_class: current coverage class
2325abe37c4bSJohannes Berg  * @fw_version: firmware version for ethtool reporting
2326abe37c4bSJohannes Berg  * @hw_version: hardware version for ethtool reporting
2327abe37c4bSJohannes Berg  * @max_num_pmkids: maximum number of PMKIDs supported by device
2328abe37c4bSJohannes Berg  * @privid: a pointer that drivers can use to identify if an arbitrary
2329abe37c4bSJohannes Berg  *	wiphy is theirs, e.g. in global notifiers
2330abe37c4bSJohannes Berg  * @bands: information about bands/channels supported by this device
23312e161f78SJohannes Berg  *
23322e161f78SJohannes Berg  * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
23332e161f78SJohannes Berg  *	transmitted through nl80211, points to an array indexed by interface
23342e161f78SJohannes Berg  *	type
2335a7ffac95SBruno Randolf  *
23367f531e03SBruno Randolf  * @available_antennas_tx: bitmap of antennas which are available to be
23377f531e03SBruno Randolf  *	configured as TX antennas. Antenna configuration commands will be
23387f531e03SBruno Randolf  *	rejected unless this or @available_antennas_rx is set.
23397f531e03SBruno Randolf  *
23407f531e03SBruno Randolf  * @available_antennas_rx: bitmap of antennas which are available to be
23417f531e03SBruno Randolf  *	configured as RX antennas. Antenna configuration commands will be
23427f531e03SBruno Randolf  *	rejected unless this or @available_antennas_tx is set.
2343a293911dSJohannes Berg  *
234415f0ebc2SRandy Dunlap  * @probe_resp_offload:
234515f0ebc2SRandy Dunlap  *	 Bitmap of supported protocols for probe response offloading.
234615f0ebc2SRandy Dunlap  *	 See &enum nl80211_probe_resp_offload_support_attr. Only valid
234715f0ebc2SRandy Dunlap  *	 when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
234815f0ebc2SRandy Dunlap  *
2349a293911dSJohannes Berg  * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
2350a293911dSJohannes Berg  *	may request, if implemented.
2351ff1b6e69SJohannes Berg  *
2352ff1b6e69SJohannes Berg  * @wowlan: WoWLAN support information
2353562a7480SJohannes Berg  *
2354562a7480SJohannes Berg  * @ap_sme_capa: AP SME capabilities, flags from &enum nl80211_ap_sme_features.
23557e7c8926SBen Greear  * @ht_capa_mod_mask:  Specify what ht_cap values can be over-ridden.
23567e7c8926SBen Greear  *	If null, then none can be over-ridden.
2357*77765eafSVasanthakumar Thiagarajan  *
2358*77765eafSVasanthakumar Thiagarajan  * @max_acl_mac_addrs: Maximum number of MAC addresses that the device
2359*77765eafSVasanthakumar Thiagarajan  *	supports for ACL.
2360d3236553SJohannes Berg  */
2361d3236553SJohannes Berg struct wiphy {
2362d3236553SJohannes Berg 	/* assign these fields before you register the wiphy */
2363d3236553SJohannes Berg 
2364ef15aac6SJohannes Berg 	/* permanent MAC address(es) */
2365d3236553SJohannes Berg 	u8 perm_addr[ETH_ALEN];
2366ef15aac6SJohannes Berg 	u8 addr_mask[ETH_ALEN];
2367ef15aac6SJohannes Berg 
2368ef15aac6SJohannes Berg 	struct mac_address *addresses;
2369d3236553SJohannes Berg 
23702e161f78SJohannes Berg 	const struct ieee80211_txrx_stypes *mgmt_stypes;
23712e161f78SJohannes Berg 
23727527a782SJohannes Berg 	const struct ieee80211_iface_combination *iface_combinations;
23737527a782SJohannes Berg 	int n_iface_combinations;
23747527a782SJohannes Berg 	u16 software_iftypes;
23757527a782SJohannes Berg 
23762e161f78SJohannes Berg 	u16 n_addresses;
23772e161f78SJohannes Berg 
2378d3236553SJohannes Berg 	/* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
2379d3236553SJohannes Berg 	u16 interface_modes;
2380d3236553SJohannes Berg 
2381*77765eafSVasanthakumar Thiagarajan 	u16 max_acl_mac_addrs;
2382*77765eafSVasanthakumar Thiagarajan 
23831f074bd8SJohannes Berg 	u32 flags, features;
2384463d0183SJohannes Berg 
2385562a7480SJohannes Berg 	u32 ap_sme_capa;
2386562a7480SJohannes Berg 
2387d3236553SJohannes Berg 	enum cfg80211_signal_type signal_type;
2388d3236553SJohannes Berg 
2389d3236553SJohannes Berg 	int bss_priv_size;
2390d3236553SJohannes Berg 	u8 max_scan_ssids;
239193b6aa69SLuciano Coelho 	u8 max_sched_scan_ssids;
2392a1f1c21cSLuciano Coelho 	u8 max_match_sets;
2393d3236553SJohannes Berg 	u16 max_scan_ie_len;
23945a865badSLuciano Coelho 	u16 max_sched_scan_ie_len;
2395d3236553SJohannes Berg 
2396d3236553SJohannes Berg 	int n_cipher_suites;
2397d3236553SJohannes Berg 	const u32 *cipher_suites;
2398d3236553SJohannes Berg 
2399b9a5f8caSJouni Malinen 	u8 retry_short;
2400b9a5f8caSJouni Malinen 	u8 retry_long;
2401b9a5f8caSJouni Malinen 	u32 frag_threshold;
2402b9a5f8caSJouni Malinen 	u32 rts_threshold;
240381077e82SLukáš Turek 	u8 coverage_class;
2404b9a5f8caSJouni Malinen 
2405dfce95f5SKalle Valo 	char fw_version[ETHTOOL_BUSINFO_LEN];
2406dfce95f5SKalle Valo 	u32 hw_version;
2407dfce95f5SKalle Valo 
2408dfb89c56SJohannes Berg #ifdef CONFIG_PM
2409ff1b6e69SJohannes Berg 	struct wiphy_wowlan_support wowlan;
2410dfb89c56SJohannes Berg #endif
2411ff1b6e69SJohannes Berg 
2412a293911dSJohannes Berg 	u16 max_remain_on_channel_duration;
2413a293911dSJohannes Berg 
241467fbb16bSSamuel Ortiz 	u8 max_num_pmkids;
241567fbb16bSSamuel Ortiz 
24167f531e03SBruno Randolf 	u32 available_antennas_tx;
24177f531e03SBruno Randolf 	u32 available_antennas_rx;
2418a7ffac95SBruno Randolf 
241987bbbe22SArik Nemtsov 	/*
242087bbbe22SArik Nemtsov 	 * Bitmap of supported protocols for probe response offloading
242187bbbe22SArik Nemtsov 	 * see &enum nl80211_probe_resp_offload_support_attr. Only valid
242287bbbe22SArik Nemtsov 	 * when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
242387bbbe22SArik Nemtsov 	 */
242487bbbe22SArik Nemtsov 	u32 probe_resp_offload;
242587bbbe22SArik Nemtsov 
2426d3236553SJohannes Berg 	/* If multiple wiphys are registered and you're handed e.g.
2427d3236553SJohannes Berg 	 * a regular netdev with assigned ieee80211_ptr, you won't
2428d3236553SJohannes Berg 	 * know whether it points to a wiphy your driver has registered
2429d3236553SJohannes Berg 	 * or not. Assign this to something global to your driver to
2430d3236553SJohannes Berg 	 * help determine whether you own this wiphy or not. */
2431cf5aa2f1SDavid Kilroy 	const void *privid;
2432d3236553SJohannes Berg 
2433d3236553SJohannes Berg 	struct ieee80211_supported_band *bands[IEEE80211_NUM_BANDS];
2434d3236553SJohannes Berg 
2435d3236553SJohannes Berg 	/* Lets us get back the wiphy on the callback */
24360c0280bdSLuis R. Rodriguez 	void (*reg_notifier)(struct wiphy *wiphy,
2437d3236553SJohannes Berg 			     struct regulatory_request *request);
2438d3236553SJohannes Berg 
2439d3236553SJohannes Berg 	/* fields below are read-only, assigned by cfg80211 */
2440d3236553SJohannes Berg 
2441458f4f9eSJohannes Berg 	const struct ieee80211_regdomain __rcu *regd;
2442d3236553SJohannes Berg 
2443d3236553SJohannes Berg 	/* the item in /sys/class/ieee80211/ points to this,
2444d3236553SJohannes Berg 	 * you need use set_wiphy_dev() (see below) */
2445d3236553SJohannes Berg 	struct device dev;
2446d3236553SJohannes Berg 
2447ecb44335SStanislaw Gruszka 	/* protects ->resume, ->suspend sysfs callbacks against unregister hw */
2448ecb44335SStanislaw Gruszka 	bool registered;
2449ecb44335SStanislaw Gruszka 
2450d3236553SJohannes Berg 	/* dir in debugfs: ieee80211/<wiphyname> */
2451d3236553SJohannes Berg 	struct dentry *debugfsdir;
2452d3236553SJohannes Berg 
24537e7c8926SBen Greear 	const struct ieee80211_ht_cap *ht_capa_mod_mask;
24547e7c8926SBen Greear 
2455463d0183SJohannes Berg #ifdef CONFIG_NET_NS
2456463d0183SJohannes Berg 	/* the network namespace this phy lives in currently */
2457463d0183SJohannes Berg 	struct net *_net;
2458463d0183SJohannes Berg #endif
2459463d0183SJohannes Berg 
24603d23e349SJohannes Berg #ifdef CONFIG_CFG80211_WEXT
24613d23e349SJohannes Berg 	const struct iw_handler_def *wext;
24623d23e349SJohannes Berg #endif
24633d23e349SJohannes Berg 
24641c06ef98SJohannes Berg 	char priv[0] __aligned(NETDEV_ALIGN);
2465d3236553SJohannes Berg };
2466d3236553SJohannes Berg 
2467463d0183SJohannes Berg static inline struct net *wiphy_net(struct wiphy *wiphy)
2468463d0183SJohannes Berg {
2469c2d9ba9bSEric Dumazet 	return read_pnet(&wiphy->_net);
2470463d0183SJohannes Berg }
2471463d0183SJohannes Berg 
2472463d0183SJohannes Berg static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
2473463d0183SJohannes Berg {
2474c2d9ba9bSEric Dumazet 	write_pnet(&wiphy->_net, net);
2475463d0183SJohannes Berg }
2476463d0183SJohannes Berg 
2477d3236553SJohannes Berg /**
2478d3236553SJohannes Berg  * wiphy_priv - return priv from wiphy
2479d3236553SJohannes Berg  *
2480d3236553SJohannes Berg  * @wiphy: the wiphy whose priv pointer to return
24810ae997dcSYacine Belkadi  * Return: The priv of @wiphy.
2482d3236553SJohannes Berg  */
2483d3236553SJohannes Berg static inline void *wiphy_priv(struct wiphy *wiphy)
2484d3236553SJohannes Berg {
2485d3236553SJohannes Berg 	BUG_ON(!wiphy);
2486d3236553SJohannes Berg 	return &wiphy->priv;
2487d3236553SJohannes Berg }
2488d3236553SJohannes Berg 
2489d3236553SJohannes Berg /**
2490f1f74825SDavid Kilroy  * priv_to_wiphy - return the wiphy containing the priv
2491f1f74825SDavid Kilroy  *
2492f1f74825SDavid Kilroy  * @priv: a pointer previously returned by wiphy_priv
24930ae997dcSYacine Belkadi  * Return: The wiphy of @priv.
2494f1f74825SDavid Kilroy  */
2495f1f74825SDavid Kilroy static inline struct wiphy *priv_to_wiphy(void *priv)
2496f1f74825SDavid Kilroy {
2497f1f74825SDavid Kilroy 	BUG_ON(!priv);
2498f1f74825SDavid Kilroy 	return container_of(priv, struct wiphy, priv);
2499f1f74825SDavid Kilroy }
2500f1f74825SDavid Kilroy 
2501f1f74825SDavid Kilroy /**
2502d3236553SJohannes Berg  * set_wiphy_dev - set device pointer for wiphy
2503d3236553SJohannes Berg  *
2504d3236553SJohannes Berg  * @wiphy: The wiphy whose device to bind
2505d3236553SJohannes Berg  * @dev: The device to parent it to
2506d3236553SJohannes Berg  */
2507d3236553SJohannes Berg static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
2508d3236553SJohannes Berg {
2509d3236553SJohannes Berg 	wiphy->dev.parent = dev;
2510d3236553SJohannes Berg }
2511d3236553SJohannes Berg 
2512d3236553SJohannes Berg /**
2513d3236553SJohannes Berg  * wiphy_dev - get wiphy dev pointer
2514d3236553SJohannes Berg  *
2515d3236553SJohannes Berg  * @wiphy: The wiphy whose device struct to look up
25160ae997dcSYacine Belkadi  * Return: The dev of @wiphy.
2517d3236553SJohannes Berg  */
2518d3236553SJohannes Berg static inline struct device *wiphy_dev(struct wiphy *wiphy)
2519d3236553SJohannes Berg {
2520d3236553SJohannes Berg 	return wiphy->dev.parent;
2521d3236553SJohannes Berg }
2522d3236553SJohannes Berg 
2523d3236553SJohannes Berg /**
2524d3236553SJohannes Berg  * wiphy_name - get wiphy name
2525d3236553SJohannes Berg  *
2526d3236553SJohannes Berg  * @wiphy: The wiphy whose name to return
25270ae997dcSYacine Belkadi  * Return: The name of @wiphy.
2528d3236553SJohannes Berg  */
2529e1db74fcSJoe Perches static inline const char *wiphy_name(const struct wiphy *wiphy)
2530d3236553SJohannes Berg {
2531d3236553SJohannes Berg 	return dev_name(&wiphy->dev);
2532d3236553SJohannes Berg }
2533d3236553SJohannes Berg 
2534d3236553SJohannes Berg /**
2535d3236553SJohannes Berg  * wiphy_new - create a new wiphy for use with cfg80211
2536d3236553SJohannes Berg  *
2537d3236553SJohannes Berg  * @ops: The configuration operations for this device
2538d3236553SJohannes Berg  * @sizeof_priv: The size of the private area to allocate
2539d3236553SJohannes Berg  *
2540d3236553SJohannes Berg  * Create a new wiphy and associate the given operations with it.
2541d3236553SJohannes Berg  * @sizeof_priv bytes are allocated for private use.
2542d3236553SJohannes Berg  *
25430ae997dcSYacine Belkadi  * Return: A pointer to the new wiphy. This pointer must be
25440ae997dcSYacine Belkadi  * assigned to each netdev's ieee80211_ptr for proper operation.
2545d3236553SJohannes Berg  */
25463dcf670bSDavid Kilroy struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv);
2547d3236553SJohannes Berg 
2548d3236553SJohannes Berg /**
2549d3236553SJohannes Berg  * wiphy_register - register a wiphy with cfg80211
2550d3236553SJohannes Berg  *
2551d3236553SJohannes Berg  * @wiphy: The wiphy to register.
2552d3236553SJohannes Berg  *
25530ae997dcSYacine Belkadi  * Return: A non-negative wiphy index or a negative error code.
2554d3236553SJohannes Berg  */
2555d3236553SJohannes Berg extern int wiphy_register(struct wiphy *wiphy);
2556d3236553SJohannes Berg 
2557d3236553SJohannes Berg /**
2558d3236553SJohannes Berg  * wiphy_unregister - deregister a wiphy from cfg80211
2559d3236553SJohannes Berg  *
2560d3236553SJohannes Berg  * @wiphy: The wiphy to unregister.
2561d3236553SJohannes Berg  *
2562d3236553SJohannes Berg  * After this call, no more requests can be made with this priv
2563d3236553SJohannes Berg  * pointer, but the call may sleep to wait for an outstanding
2564d3236553SJohannes Berg  * request that is being handled.
2565d3236553SJohannes Berg  */
2566d3236553SJohannes Berg extern void wiphy_unregister(struct wiphy *wiphy);
2567d3236553SJohannes Berg 
2568d3236553SJohannes Berg /**
2569d3236553SJohannes Berg  * wiphy_free - free wiphy
2570d3236553SJohannes Berg  *
2571d3236553SJohannes Berg  * @wiphy: The wiphy to free
2572d3236553SJohannes Berg  */
2573d3236553SJohannes Berg extern void wiphy_free(struct wiphy *wiphy);
2574d3236553SJohannes Berg 
2575fffd0934SJohannes Berg /* internal structs */
25766829c878SJohannes Berg struct cfg80211_conn;
257719957bb3SJohannes Berg struct cfg80211_internal_bss;
2578fffd0934SJohannes Berg struct cfg80211_cached_keys;
257919957bb3SJohannes Berg 
2580d3236553SJohannes Berg /**
258189a54e48SJohannes Berg  * struct wireless_dev - wireless device state
2582d3236553SJohannes Berg  *
258389a54e48SJohannes Berg  * For netdevs, this structure must be allocated by the driver
258489a54e48SJohannes Berg  * that uses the ieee80211_ptr field in struct net_device (this
258589a54e48SJohannes Berg  * is intentional so it can be allocated along with the netdev.)
258689a54e48SJohannes Berg  * It need not be registered then as netdev registration will
258789a54e48SJohannes Berg  * be intercepted by cfg80211 to see the new wireless device.
258889a54e48SJohannes Berg  *
258989a54e48SJohannes Berg  * For non-netdev uses, it must also be allocated by the driver
259089a54e48SJohannes Berg  * in response to the cfg80211 callbacks that require it, as
259189a54e48SJohannes Berg  * there's no netdev registration in that case it may not be
259289a54e48SJohannes Berg  * allocated outside of callback operations that return it.
2593d3236553SJohannes Berg  *
2594d3236553SJohannes Berg  * @wiphy: pointer to hardware description
2595d3236553SJohannes Berg  * @iftype: interface type
2596d3236553SJohannes Berg  * @list: (private) Used to collect the interfaces
259789a54e48SJohannes Berg  * @netdev: (private) Used to reference back to the netdev, may be %NULL
259889a54e48SJohannes Berg  * @identifier: (private) Identifier used in nl80211 to identify this
259989a54e48SJohannes Berg  *	wireless device if it has no netdev
2600d3236553SJohannes Berg  * @current_bss: (private) Used by the internal configuration code
2601f444de05SJohannes Berg  * @channel: (private) Used by the internal configuration code to track
2602aa430da4SJohannes Berg  *	the user-set AP, monitor and WDS channel
2603aa430da4SJohannes Berg  * @preset_chan: (private) Used by the internal configuration code to
2604aa430da4SJohannes Berg  *	track the channel to be used for AP later
2605aa430da4SJohannes Berg  * @preset_chantype: (private) the corresponding channel type
2606d3236553SJohannes Berg  * @bssid: (private) Used by the internal configuration code
2607d3236553SJohannes Berg  * @ssid: (private) Used by the internal configuration code
2608d3236553SJohannes Berg  * @ssid_len: (private) Used by the internal configuration code
260929cbe68cSJohannes Berg  * @mesh_id_len: (private) Used by the internal configuration code
261029cbe68cSJohannes Berg  * @mesh_id_up_len: (private) Used by the internal configuration code
2611d3236553SJohannes Berg  * @wext: (private) Used by the internal wireless extensions compat code
26129bc383deSJohannes Berg  * @use_4addr: indicates 4addr mode is used on this interface, must be
26139bc383deSJohannes Berg  *	set by driver (if supported) on add_interface BEFORE registering the
26149bc383deSJohannes Berg  *	netdev and may otherwise be used by driver read-only, will be update
26159bc383deSJohannes Berg  *	by cfg80211 on change_interface
26162e161f78SJohannes Berg  * @mgmt_registrations: list of registrations for management frames
26172e161f78SJohannes Berg  * @mgmt_registrations_lock: lock for the list
2618abe37c4bSJohannes Berg  * @mtx: mutex used to lock data in this struct
2619abe37c4bSJohannes Berg  * @cleanup_work: work struct used for cleanup that can't be done directly
262056d1893dSJohannes Berg  * @beacon_interval: beacon interval used on this device for transmitting
262156d1893dSJohannes Berg  *	beacons, 0 when not valid
262298104fdeSJohannes Berg  * @address: The address for this device, valid only if @netdev is %NULL
262398104fdeSJohannes Berg  * @p2p_started: true if this is a P2P Device that has been started
2624d3236553SJohannes Berg  */
2625d3236553SJohannes Berg struct wireless_dev {
2626d3236553SJohannes Berg 	struct wiphy *wiphy;
2627d3236553SJohannes Berg 	enum nl80211_iftype iftype;
2628d3236553SJohannes Berg 
2629667503ddSJohannes Berg 	/* the remainder of this struct should be private to cfg80211 */
2630d3236553SJohannes Berg 	struct list_head list;
2631d3236553SJohannes Berg 	struct net_device *netdev;
2632d3236553SJohannes Berg 
263389a54e48SJohannes Berg 	u32 identifier;
263489a54e48SJohannes Berg 
26352e161f78SJohannes Berg 	struct list_head mgmt_registrations;
26362e161f78SJohannes Berg 	spinlock_t mgmt_registrations_lock;
2637026331c4SJouni Malinen 
2638667503ddSJohannes Berg 	struct mutex mtx;
2639667503ddSJohannes Berg 
2640ad002395SJohannes Berg 	struct work_struct cleanup_work;
2641ad002395SJohannes Berg 
264298104fdeSJohannes Berg 	bool use_4addr, p2p_started;
264398104fdeSJohannes Berg 
264498104fdeSJohannes Berg 	u8 address[ETH_ALEN] __aligned(sizeof(u16));
26459bc383deSJohannes Berg 
2646b23aa676SSamuel Ortiz 	/* currently used for IBSS and SME - might be rearranged later */
2647d3236553SJohannes Berg 	u8 ssid[IEEE80211_MAX_SSID_LEN];
264829cbe68cSJohannes Berg 	u8 ssid_len, mesh_id_len, mesh_id_up_len;
2649b23aa676SSamuel Ortiz 	enum {
2650b23aa676SSamuel Ortiz 		CFG80211_SME_IDLE,
26516829c878SJohannes Berg 		CFG80211_SME_CONNECTING,
2652b23aa676SSamuel Ortiz 		CFG80211_SME_CONNECTED,
2653b23aa676SSamuel Ortiz 	} sme_state;
26546829c878SJohannes Berg 	struct cfg80211_conn *conn;
2655fffd0934SJohannes Berg 	struct cfg80211_cached_keys *connect_keys;
2656d3236553SJohannes Berg 
2657667503ddSJohannes Berg 	struct list_head event_list;
2658667503ddSJohannes Berg 	spinlock_t event_lock;
2659667503ddSJohannes Berg 
266019957bb3SJohannes Berg 	struct cfg80211_internal_bss *current_bss; /* associated / joined */
2661683b6d3bSJohannes Berg 	struct cfg80211_chan_def preset_chandef;
266219957bb3SJohannes Berg 
2663f4489ebeSMichal Kazior 	/* for AP and mesh channel tracking */
2664f4489ebeSMichal Kazior 	struct ieee80211_channel *channel;
2665f4489ebeSMichal Kazior 
2666c30a3d38SMichal Kazior 	bool ibss_fixed;
2667c30a3d38SMichal Kazior 
2668ffb9eb3dSKalle Valo 	bool ps;
2669ffb9eb3dSKalle Valo 	int ps_timeout;
2670ffb9eb3dSKalle Valo 
267156d1893dSJohannes Berg 	int beacon_interval;
267256d1893dSJohannes Berg 
267315e47304SEric W. Biederman 	u32 ap_unexpected_nlportid;
267428946da7SJohannes Berg 
26753d23e349SJohannes Berg #ifdef CONFIG_CFG80211_WEXT
2676d3236553SJohannes Berg 	/* wext data */
2677cbe8fa9cSJohannes Berg 	struct {
2678cbe8fa9cSJohannes Berg 		struct cfg80211_ibss_params ibss;
2679f2129354SJohannes Berg 		struct cfg80211_connect_params connect;
2680fffd0934SJohannes Berg 		struct cfg80211_cached_keys *keys;
2681f2129354SJohannes Berg 		u8 *ie;
2682f2129354SJohannes Berg 		size_t ie_len;
2683f401a6f7SJohannes Berg 		u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
2684f2129354SJohannes Berg 		u8 ssid[IEEE80211_MAX_SSID_LEN];
268508645126SJohannes Berg 		s8 default_key, default_mgmt_key;
2686ffb9eb3dSKalle Valo 		bool prev_bssid_valid;
2687cbe8fa9cSJohannes Berg 	} wext;
2688d3236553SJohannes Berg #endif
2689d3236553SJohannes Berg };
2690d3236553SJohannes Berg 
269198104fdeSJohannes Berg static inline u8 *wdev_address(struct wireless_dev *wdev)
269298104fdeSJohannes Berg {
269398104fdeSJohannes Berg 	if (wdev->netdev)
269498104fdeSJohannes Berg 		return wdev->netdev->dev_addr;
269598104fdeSJohannes Berg 	return wdev->address;
269698104fdeSJohannes Berg }
269798104fdeSJohannes Berg 
2698d3236553SJohannes Berg /**
2699d3236553SJohannes Berg  * wdev_priv - return wiphy priv from wireless_dev
2700d3236553SJohannes Berg  *
2701d3236553SJohannes Berg  * @wdev: The wireless device whose wiphy's priv pointer to return
27020ae997dcSYacine Belkadi  * Return: The wiphy priv of @wdev.
2703d3236553SJohannes Berg  */
2704d3236553SJohannes Berg static inline void *wdev_priv(struct wireless_dev *wdev)
2705d3236553SJohannes Berg {
2706d3236553SJohannes Berg 	BUG_ON(!wdev);
2707d3236553SJohannes Berg 	return wiphy_priv(wdev->wiphy);
2708d3236553SJohannes Berg }
2709d3236553SJohannes Berg 
2710d70e9693SJohannes Berg /**
2711d70e9693SJohannes Berg  * DOC: Utility functions
2712d70e9693SJohannes Berg  *
2713d70e9693SJohannes Berg  * cfg80211 offers a number of utility functions that can be useful.
2714d3236553SJohannes Berg  */
2715d3236553SJohannes Berg 
2716d3236553SJohannes Berg /**
2717d3236553SJohannes Berg  * ieee80211_channel_to_frequency - convert channel number to frequency
2718abe37c4bSJohannes Berg  * @chan: channel number
271959eb21a6SBruno Randolf  * @band: band, necessary due to channel number overlap
27200ae997dcSYacine Belkadi  * Return: The corresponding frequency (in MHz), or 0 if the conversion failed.
2721d3236553SJohannes Berg  */
272259eb21a6SBruno Randolf extern int ieee80211_channel_to_frequency(int chan, enum ieee80211_band band);
2723d3236553SJohannes Berg 
2724d3236553SJohannes Berg /**
2725d3236553SJohannes Berg  * ieee80211_frequency_to_channel - convert frequency to channel number
2726abe37c4bSJohannes Berg  * @freq: center frequency
27270ae997dcSYacine Belkadi  * Return: The corresponding channel, or 0 if the conversion failed.
2728d3236553SJohannes Berg  */
2729d3236553SJohannes Berg extern int ieee80211_frequency_to_channel(int freq);
2730d3236553SJohannes Berg 
2731d3236553SJohannes Berg /*
2732d3236553SJohannes Berg  * Name indirection necessary because the ieee80211 code also has
2733d3236553SJohannes Berg  * a function named "ieee80211_get_channel", so if you include
2734d3236553SJohannes Berg  * cfg80211's header file you get cfg80211's version, if you try
2735d3236553SJohannes Berg  * to include both header files you'll (rightfully!) get a symbol
2736d3236553SJohannes Berg  * clash.
2737d3236553SJohannes Berg  */
2738d3236553SJohannes Berg extern struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
2739d3236553SJohannes Berg 							 int freq);
2740d3236553SJohannes Berg /**
2741d3236553SJohannes Berg  * ieee80211_get_channel - get channel struct from wiphy for specified frequency
2742abe37c4bSJohannes Berg  * @wiphy: the struct wiphy to get the channel for
2743abe37c4bSJohannes Berg  * @freq: the center frequency of the channel
27440ae997dcSYacine Belkadi  * Return: The channel struct from @wiphy at @freq.
2745d3236553SJohannes Berg  */
2746d3236553SJohannes Berg static inline struct ieee80211_channel *
2747d3236553SJohannes Berg ieee80211_get_channel(struct wiphy *wiphy, int freq)
2748d3236553SJohannes Berg {
2749d3236553SJohannes Berg 	return __ieee80211_get_channel(wiphy, freq);
2750d3236553SJohannes Berg }
2751d3236553SJohannes Berg 
2752d3236553SJohannes Berg /**
2753d3236553SJohannes Berg  * ieee80211_get_response_rate - get basic rate for a given rate
2754d3236553SJohannes Berg  *
2755d3236553SJohannes Berg  * @sband: the band to look for rates in
2756d3236553SJohannes Berg  * @basic_rates: bitmap of basic rates
2757d3236553SJohannes Berg  * @bitrate: the bitrate for which to find the basic rate
2758d3236553SJohannes Berg  *
27590ae997dcSYacine Belkadi  * Return: The basic rate corresponding to a given bitrate, that
27600ae997dcSYacine Belkadi  * is the next lower bitrate contained in the basic rate map,
27610ae997dcSYacine Belkadi  * which is, for this function, given as a bitmap of indices of
27620ae997dcSYacine Belkadi  * rates in the band's bitrate table.
2763d3236553SJohannes Berg  */
2764d3236553SJohannes Berg struct ieee80211_rate *
2765d3236553SJohannes Berg ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
2766d3236553SJohannes Berg 			    u32 basic_rates, int bitrate);
2767d3236553SJohannes Berg 
2768d3236553SJohannes Berg /*
2769d3236553SJohannes Berg  * Radiotap parsing functions -- for controlled injection support
2770d3236553SJohannes Berg  *
2771d3236553SJohannes Berg  * Implemented in net/wireless/radiotap.c
2772d3236553SJohannes Berg  * Documentation in Documentation/networking/radiotap-headers.txt
2773d3236553SJohannes Berg  */
2774d3236553SJohannes Berg 
277533e5a2f7SJohannes Berg struct radiotap_align_size {
277633e5a2f7SJohannes Berg 	uint8_t align:4, size:4;
277733e5a2f7SJohannes Berg };
277833e5a2f7SJohannes Berg 
277933e5a2f7SJohannes Berg struct ieee80211_radiotap_namespace {
278033e5a2f7SJohannes Berg 	const struct radiotap_align_size *align_size;
278133e5a2f7SJohannes Berg 	int n_bits;
278233e5a2f7SJohannes Berg 	uint32_t oui;
278333e5a2f7SJohannes Berg 	uint8_t subns;
278433e5a2f7SJohannes Berg };
278533e5a2f7SJohannes Berg 
278633e5a2f7SJohannes Berg struct ieee80211_radiotap_vendor_namespaces {
278733e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_namespace *ns;
278833e5a2f7SJohannes Berg 	int n_ns;
278933e5a2f7SJohannes Berg };
279033e5a2f7SJohannes Berg 
2791d3236553SJohannes Berg /**
2792d3236553SJohannes Berg  * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
279333e5a2f7SJohannes Berg  * @this_arg_index: index of current arg, valid after each successful call
279433e5a2f7SJohannes Berg  *	to ieee80211_radiotap_iterator_next()
279533e5a2f7SJohannes Berg  * @this_arg: pointer to current radiotap arg; it is valid after each
279633e5a2f7SJohannes Berg  *	call to ieee80211_radiotap_iterator_next() but also after
279733e5a2f7SJohannes Berg  *	ieee80211_radiotap_iterator_init() where it will point to
279833e5a2f7SJohannes Berg  *	the beginning of the actual data portion
279933e5a2f7SJohannes Berg  * @this_arg_size: length of the current arg, for convenience
280033e5a2f7SJohannes Berg  * @current_namespace: pointer to the current namespace definition
280133e5a2f7SJohannes Berg  *	(or internally %NULL if the current namespace is unknown)
280233e5a2f7SJohannes Berg  * @is_radiotap_ns: indicates whether the current namespace is the default
280333e5a2f7SJohannes Berg  *	radiotap namespace or not
280433e5a2f7SJohannes Berg  *
280533e5a2f7SJohannes Berg  * @_rtheader: pointer to the radiotap header we are walking through
280633e5a2f7SJohannes Berg  * @_max_length: length of radiotap header in cpu byte ordering
280733e5a2f7SJohannes Berg  * @_arg_index: next argument index
280833e5a2f7SJohannes Berg  * @_arg: next argument pointer
280933e5a2f7SJohannes Berg  * @_next_bitmap: internal pointer to next present u32
281033e5a2f7SJohannes Berg  * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
281133e5a2f7SJohannes Berg  * @_vns: vendor namespace definitions
281233e5a2f7SJohannes Berg  * @_next_ns_data: beginning of the next namespace's data
281333e5a2f7SJohannes Berg  * @_reset_on_ext: internal; reset the arg index to 0 when going to the
281433e5a2f7SJohannes Berg  *	next bitmap word
281533e5a2f7SJohannes Berg  *
281633e5a2f7SJohannes Berg  * Describes the radiotap parser state. Fields prefixed with an underscore
281733e5a2f7SJohannes Berg  * must not be used by users of the parser, only by the parser internally.
2818d3236553SJohannes Berg  */
2819d3236553SJohannes Berg 
2820d3236553SJohannes Berg struct ieee80211_radiotap_iterator {
282133e5a2f7SJohannes Berg 	struct ieee80211_radiotap_header *_rtheader;
282233e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_vendor_namespaces *_vns;
282333e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_namespace *current_namespace;
2824d3236553SJohannes Berg 
282533e5a2f7SJohannes Berg 	unsigned char *_arg, *_next_ns_data;
282667272440SJohannes Berg 	__le32 *_next_bitmap;
282733e5a2f7SJohannes Berg 
282833e5a2f7SJohannes Berg 	unsigned char *this_arg;
282933e5a2f7SJohannes Berg 	int this_arg_index;
283033e5a2f7SJohannes Berg 	int this_arg_size;
283133e5a2f7SJohannes Berg 
283233e5a2f7SJohannes Berg 	int is_radiotap_ns;
283333e5a2f7SJohannes Berg 
283433e5a2f7SJohannes Berg 	int _max_length;
283533e5a2f7SJohannes Berg 	int _arg_index;
283633e5a2f7SJohannes Berg 	uint32_t _bitmap_shifter;
283733e5a2f7SJohannes Berg 	int _reset_on_ext;
2838d3236553SJohannes Berg };
2839d3236553SJohannes Berg 
2840d3236553SJohannes Berg extern int ieee80211_radiotap_iterator_init(
2841d3236553SJohannes Berg 	struct ieee80211_radiotap_iterator *iterator,
2842d3236553SJohannes Berg 	struct ieee80211_radiotap_header *radiotap_header,
284333e5a2f7SJohannes Berg 	int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns);
2844d3236553SJohannes Berg 
2845d3236553SJohannes Berg extern int ieee80211_radiotap_iterator_next(
2846d3236553SJohannes Berg 	struct ieee80211_radiotap_iterator *iterator);
2847d3236553SJohannes Berg 
284833e5a2f7SJohannes Berg 
2849e31a16d6SZhu Yi extern const unsigned char rfc1042_header[6];
2850e31a16d6SZhu Yi extern const unsigned char bridge_tunnel_header[6];
2851e31a16d6SZhu Yi 
2852e31a16d6SZhu Yi /**
2853e31a16d6SZhu Yi  * ieee80211_get_hdrlen_from_skb - get header length from data
2854e31a16d6SZhu Yi  *
2855e31a16d6SZhu Yi  * @skb: the frame
28560ae997dcSYacine Belkadi  *
28570ae997dcSYacine Belkadi  * Given an skb with a raw 802.11 header at the data pointer this function
28580ae997dcSYacine Belkadi  * returns the 802.11 header length.
28590ae997dcSYacine Belkadi  *
28600ae997dcSYacine Belkadi  * Return: The 802.11 header length in bytes (not including encryption
28610ae997dcSYacine Belkadi  * headers). Or 0 if the data in the sk_buff is too short to contain a valid
28620ae997dcSYacine Belkadi  * 802.11 header.
2863e31a16d6SZhu Yi  */
2864e31a16d6SZhu Yi unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
2865e31a16d6SZhu Yi 
2866e31a16d6SZhu Yi /**
2867e31a16d6SZhu Yi  * ieee80211_hdrlen - get header length in bytes from frame control
2868e31a16d6SZhu Yi  * @fc: frame control field in little-endian format
28690ae997dcSYacine Belkadi  * Return: The header length in bytes.
2870e31a16d6SZhu Yi  */
2871633adf1aSJohannes Berg unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
2872e31a16d6SZhu Yi 
2873e31a16d6SZhu Yi /**
28749b395bc3SJohannes Berg  * ieee80211_get_mesh_hdrlen - get mesh extension header length
28759b395bc3SJohannes Berg  * @meshhdr: the mesh extension header, only the flags field
28769b395bc3SJohannes Berg  *	(first byte) will be accessed
28770ae997dcSYacine Belkadi  * Return: The length of the extension header, which is always at
28789b395bc3SJohannes Berg  * least 6 bytes and at most 18 if address 5 and 6 are present.
28799b395bc3SJohannes Berg  */
28809b395bc3SJohannes Berg unsigned int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr);
28819b395bc3SJohannes Berg 
28829b395bc3SJohannes Berg /**
2883d70e9693SJohannes Berg  * DOC: Data path helpers
2884d70e9693SJohannes Berg  *
2885d70e9693SJohannes Berg  * In addition to generic utilities, cfg80211 also offers
2886d70e9693SJohannes Berg  * functions that help implement the data path for devices
2887d70e9693SJohannes Berg  * that do not do the 802.11/802.3 conversion on the device.
2888d70e9693SJohannes Berg  */
2889d70e9693SJohannes Berg 
2890d70e9693SJohannes Berg /**
2891e31a16d6SZhu Yi  * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
2892e31a16d6SZhu Yi  * @skb: the 802.11 data frame
2893e31a16d6SZhu Yi  * @addr: the device MAC address
2894e31a16d6SZhu Yi  * @iftype: the virtual interface type
28950ae997dcSYacine Belkadi  * Return: 0 on success. Non-zero on error.
2896e31a16d6SZhu Yi  */
2897eaf85ca7SZhu Yi int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
2898e31a16d6SZhu Yi 			   enum nl80211_iftype iftype);
2899e31a16d6SZhu Yi 
2900e31a16d6SZhu Yi /**
2901e31a16d6SZhu Yi  * ieee80211_data_from_8023 - convert an 802.3 frame to 802.11
2902e31a16d6SZhu Yi  * @skb: the 802.3 frame
2903e31a16d6SZhu Yi  * @addr: the device MAC address
2904e31a16d6SZhu Yi  * @iftype: the virtual interface type
2905e31a16d6SZhu Yi  * @bssid: the network bssid (used only for iftype STATION and ADHOC)
2906e31a16d6SZhu Yi  * @qos: build 802.11 QoS data frame
29070ae997dcSYacine Belkadi  * Return: 0 on success, or a negative error code.
2908e31a16d6SZhu Yi  */
2909eaf85ca7SZhu Yi int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
2910e31a16d6SZhu Yi 			     enum nl80211_iftype iftype, u8 *bssid, bool qos);
2911e31a16d6SZhu Yi 
2912e31a16d6SZhu Yi /**
2913eaf85ca7SZhu Yi  * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
2914eaf85ca7SZhu Yi  *
2915eaf85ca7SZhu Yi  * Decode an IEEE 802.11n A-MSDU frame and convert it to a list of
2916eaf85ca7SZhu Yi  * 802.3 frames. The @list will be empty if the decode fails. The
2917eaf85ca7SZhu Yi  * @skb is consumed after the function returns.
2918eaf85ca7SZhu Yi  *
2919eaf85ca7SZhu Yi  * @skb: The input IEEE 802.11n A-MSDU frame.
2920eaf85ca7SZhu Yi  * @list: The output list of 802.3 frames. It must be allocated and
2921eaf85ca7SZhu Yi  *	initialized by by the caller.
2922eaf85ca7SZhu Yi  * @addr: The device MAC address.
2923eaf85ca7SZhu Yi  * @iftype: The device interface type.
2924eaf85ca7SZhu Yi  * @extra_headroom: The hardware extra headroom for SKBs in the @list.
29258b3becadSYogesh Ashok Powar  * @has_80211_header: Set it true if SKB is with IEEE 802.11 header.
2926eaf85ca7SZhu Yi  */
2927eaf85ca7SZhu Yi void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
2928eaf85ca7SZhu Yi 			      const u8 *addr, enum nl80211_iftype iftype,
29298b3becadSYogesh Ashok Powar 			      const unsigned int extra_headroom,
29308b3becadSYogesh Ashok Powar 			      bool has_80211_header);
2931eaf85ca7SZhu Yi 
2932eaf85ca7SZhu Yi /**
2933e31a16d6SZhu Yi  * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
2934e31a16d6SZhu Yi  * @skb: the data frame
29350ae997dcSYacine Belkadi  * Return: The 802.1p/1d tag.
2936e31a16d6SZhu Yi  */
2937e31a16d6SZhu Yi unsigned int cfg80211_classify8021d(struct sk_buff *skb);
2938e31a16d6SZhu Yi 
2939c21dbf92SJohannes Berg /**
2940c21dbf92SJohannes Berg  * cfg80211_find_ie - find information element in data
2941c21dbf92SJohannes Berg  *
2942c21dbf92SJohannes Berg  * @eid: element ID
2943c21dbf92SJohannes Berg  * @ies: data consisting of IEs
2944c21dbf92SJohannes Berg  * @len: length of data
2945c21dbf92SJohannes Berg  *
29460ae997dcSYacine Belkadi  * Return: %NULL if the element ID could not be found or if
29470ae997dcSYacine Belkadi  * the element is invalid (claims to be longer than the given
29480ae997dcSYacine Belkadi  * data), or a pointer to the first byte of the requested
29490ae997dcSYacine Belkadi  * element, that is the byte containing the element ID.
29500ae997dcSYacine Belkadi  *
29510ae997dcSYacine Belkadi  * Note: There are no checks on the element length other than
29520ae997dcSYacine Belkadi  * having to fit into the given data.
2953c21dbf92SJohannes Berg  */
2954c21dbf92SJohannes Berg const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len);
2955c21dbf92SJohannes Berg 
2956d70e9693SJohannes Berg /**
29570c28ec58SEliad Peller  * cfg80211_find_vendor_ie - find vendor specific information element in data
29580c28ec58SEliad Peller  *
29590c28ec58SEliad Peller  * @oui: vendor OUI
29600c28ec58SEliad Peller  * @oui_type: vendor-specific OUI type
29610c28ec58SEliad Peller  * @ies: data consisting of IEs
29620c28ec58SEliad Peller  * @len: length of data
29630c28ec58SEliad Peller  *
29640ae997dcSYacine Belkadi  * Return: %NULL if the vendor specific element ID could not be found or if the
29650ae997dcSYacine Belkadi  * element is invalid (claims to be longer than the given data), or a pointer to
29660ae997dcSYacine Belkadi  * the first byte of the requested element, that is the byte containing the
29670ae997dcSYacine Belkadi  * element ID.
29680ae997dcSYacine Belkadi  *
29690ae997dcSYacine Belkadi  * Note: There are no checks on the element length other than having to fit into
29700ae997dcSYacine Belkadi  * the given data.
29710c28ec58SEliad Peller  */
29720c28ec58SEliad Peller const u8 *cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type,
29730c28ec58SEliad Peller 				  const u8 *ies, int len);
29740c28ec58SEliad Peller 
29750c28ec58SEliad Peller /**
2976d70e9693SJohannes Berg  * DOC: Regulatory enforcement infrastructure
2977d70e9693SJohannes Berg  *
2978d70e9693SJohannes Berg  * TODO
2979d3236553SJohannes Berg  */
2980d3236553SJohannes Berg 
2981d3236553SJohannes Berg /**
2982d3236553SJohannes Berg  * regulatory_hint - driver hint to the wireless core a regulatory domain
2983d3236553SJohannes Berg  * @wiphy: the wireless device giving the hint (used only for reporting
2984d3236553SJohannes Berg  *	conflicts)
2985d3236553SJohannes Berg  * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
2986d3236553SJohannes Berg  * 	should be in. If @rd is set this should be NULL. Note that if you
2987d3236553SJohannes Berg  * 	set this to NULL you should still set rd->alpha2 to some accepted
2988d3236553SJohannes Berg  * 	alpha2.
2989d3236553SJohannes Berg  *
2990d3236553SJohannes Berg  * Wireless drivers can use this function to hint to the wireless core
2991d3236553SJohannes Berg  * what it believes should be the current regulatory domain by
2992d3236553SJohannes Berg  * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
2993d3236553SJohannes Berg  * domain should be in or by providing a completely build regulatory domain.
2994d3236553SJohannes Berg  * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
2995d3236553SJohannes Berg  * for a regulatory domain structure for the respective country.
2996d3236553SJohannes Berg  *
2997d3236553SJohannes Berg  * The wiphy must have been registered to cfg80211 prior to this call.
2998d3236553SJohannes Berg  * For cfg80211 drivers this means you must first use wiphy_register(),
2999d3236553SJohannes Berg  * for mac80211 drivers you must first use ieee80211_register_hw().
3000d3236553SJohannes Berg  *
3001d3236553SJohannes Berg  * Drivers should check the return value, its possible you can get
3002d3236553SJohannes Berg  * an -ENOMEM.
30030ae997dcSYacine Belkadi  *
30040ae997dcSYacine Belkadi  * Return: 0 on success. -ENOMEM.
3005d3236553SJohannes Berg  */
3006d3236553SJohannes Berg extern int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
3007d3236553SJohannes Berg 
3008d3236553SJohannes Berg /**
3009d3236553SJohannes Berg  * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
3010d3236553SJohannes Berg  * @wiphy: the wireless device we want to process the regulatory domain on
3011d3236553SJohannes Berg  * @regd: the custom regulatory domain to use for this wiphy
3012d3236553SJohannes Berg  *
3013d3236553SJohannes Berg  * Drivers can sometimes have custom regulatory domains which do not apply
3014d3236553SJohannes Berg  * to a specific country. Drivers can use this to apply such custom regulatory
3015d3236553SJohannes Berg  * domains. This routine must be called prior to wiphy registration. The
3016d3236553SJohannes Berg  * custom regulatory domain will be trusted completely and as such previous
3017d3236553SJohannes Berg  * default channel settings will be disregarded. If no rule is found for a
3018d3236553SJohannes Berg  * channel on the regulatory domain the channel will be disabled.
3019d3236553SJohannes Berg  */
3020d3236553SJohannes Berg extern void wiphy_apply_custom_regulatory(
3021d3236553SJohannes Berg 	struct wiphy *wiphy,
3022d3236553SJohannes Berg 	const struct ieee80211_regdomain *regd);
3023d3236553SJohannes Berg 
3024d3236553SJohannes Berg /**
3025d3236553SJohannes Berg  * freq_reg_info - get regulatory information for the given frequency
3026d3236553SJohannes Berg  * @wiphy: the wiphy for which we want to process this rule for
3027d3236553SJohannes Berg  * @center_freq: Frequency in KHz for which we want regulatory information for
3028d3236553SJohannes Berg  *
3029d3236553SJohannes Berg  * Use this function to get the regulatory rule for a specific frequency on
3030d3236553SJohannes Berg  * a given wireless device. If the device has a specific regulatory domain
3031d3236553SJohannes Berg  * it wants to follow we respect that unless a country IE has been received
3032d3236553SJohannes Berg  * and processed already.
3033d3236553SJohannes Berg  *
30340ae997dcSYacine Belkadi  * Return: A valid pointer, or, when an error occurs, for example if no rule
30350ae997dcSYacine Belkadi  * can be found, the return value is encoded using ERR_PTR(). Use IS_ERR() to
30360ae997dcSYacine Belkadi  * check and PTR_ERR() to obtain the numeric return value. The numeric return
30370ae997dcSYacine Belkadi  * value will be -ERANGE if we determine the given center_freq does not even
30380ae997dcSYacine Belkadi  * have a regulatory rule for a frequency range in the center_freq's band.
30390ae997dcSYacine Belkadi  * See freq_in_rule_band() for our current definition of a band -- this is
30400ae997dcSYacine Belkadi  * purely subjective and right now it's 802.11 specific.
3041d3236553SJohannes Berg  */
3042361c9c8bSJohannes Berg const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
3043361c9c8bSJohannes Berg 					       u32 center_freq);
3044d3236553SJohannes Berg 
3045d3236553SJohannes Berg /*
3046d3236553SJohannes Berg  * callbacks for asynchronous cfg80211 methods, notification
3047d3236553SJohannes Berg  * functions and BSS handling helpers
3048d3236553SJohannes Berg  */
3049d3236553SJohannes Berg 
30502a519311SJohannes Berg /**
30512a519311SJohannes Berg  * cfg80211_scan_done - notify that scan finished
30522a519311SJohannes Berg  *
30532a519311SJohannes Berg  * @request: the corresponding scan request
30542a519311SJohannes Berg  * @aborted: set to true if the scan was aborted for any reason,
30552a519311SJohannes Berg  *	userspace will be notified of that
30562a519311SJohannes Berg  */
30572a519311SJohannes Berg void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted);
30582a519311SJohannes Berg 
30592a519311SJohannes Berg /**
3060807f8a8cSLuciano Coelho  * cfg80211_sched_scan_results - notify that new scan results are available
3061807f8a8cSLuciano Coelho  *
3062807f8a8cSLuciano Coelho  * @wiphy: the wiphy which got scheduled scan results
3063807f8a8cSLuciano Coelho  */
3064807f8a8cSLuciano Coelho void cfg80211_sched_scan_results(struct wiphy *wiphy);
3065807f8a8cSLuciano Coelho 
3066807f8a8cSLuciano Coelho /**
3067807f8a8cSLuciano Coelho  * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
3068807f8a8cSLuciano Coelho  *
3069807f8a8cSLuciano Coelho  * @wiphy: the wiphy on which the scheduled scan stopped
3070807f8a8cSLuciano Coelho  *
3071807f8a8cSLuciano Coelho  * The driver can call this function to inform cfg80211 that the
3072807f8a8cSLuciano Coelho  * scheduled scan had to be stopped, for whatever reason.  The driver
3073807f8a8cSLuciano Coelho  * is then called back via the sched_scan_stop operation when done.
3074807f8a8cSLuciano Coelho  */
3075807f8a8cSLuciano Coelho void cfg80211_sched_scan_stopped(struct wiphy *wiphy);
3076807f8a8cSLuciano Coelho 
3077807f8a8cSLuciano Coelho /**
3078abe37c4bSJohannes Berg  * cfg80211_inform_bss_frame - inform cfg80211 of a received BSS frame
30792a519311SJohannes Berg  *
30802a519311SJohannes Berg  * @wiphy: the wiphy reporting the BSS
3081abe37c4bSJohannes Berg  * @channel: The channel the frame was received on
3082abe37c4bSJohannes Berg  * @mgmt: the management frame (probe response or beacon)
3083abe37c4bSJohannes Berg  * @len: length of the management frame
308477965c97SJohannes Berg  * @signal: the signal strength, type depends on the wiphy's signal_type
30852a519311SJohannes Berg  * @gfp: context flags
30862a519311SJohannes Berg  *
30872a519311SJohannes Berg  * This informs cfg80211 that BSS information was found and
30882a519311SJohannes Berg  * the BSS should be updated/added.
3089ef100682SJohannes Berg  *
30900ae997dcSYacine Belkadi  * Return: A referenced struct, must be released with cfg80211_put_bss()!
30910ae997dcSYacine Belkadi  * Or %NULL on error.
30922a519311SJohannes Berg  */
3093ef100682SJohannes Berg struct cfg80211_bss * __must_check
30942a519311SJohannes Berg cfg80211_inform_bss_frame(struct wiphy *wiphy,
30952a519311SJohannes Berg 			  struct ieee80211_channel *channel,
30962a519311SJohannes Berg 			  struct ieee80211_mgmt *mgmt, size_t len,
309777965c97SJohannes Berg 			  s32 signal, gfp_t gfp);
30982a519311SJohannes Berg 
3099abe37c4bSJohannes Berg /**
3100abe37c4bSJohannes Berg  * cfg80211_inform_bss - inform cfg80211 of a new BSS
3101abe37c4bSJohannes Berg  *
3102abe37c4bSJohannes Berg  * @wiphy: the wiphy reporting the BSS
3103abe37c4bSJohannes Berg  * @channel: The channel the frame was received on
3104abe37c4bSJohannes Berg  * @bssid: the BSSID of the BSS
31057b8bcff2SJohannes Berg  * @tsf: the TSF sent by the peer in the beacon/probe response (or 0)
3106abe37c4bSJohannes Berg  * @capability: the capability field sent by the peer
3107abe37c4bSJohannes Berg  * @beacon_interval: the beacon interval announced by the peer
3108abe37c4bSJohannes Berg  * @ie: additional IEs sent by the peer
3109abe37c4bSJohannes Berg  * @ielen: length of the additional IEs
3110abe37c4bSJohannes Berg  * @signal: the signal strength, type depends on the wiphy's signal_type
3111abe37c4bSJohannes Berg  * @gfp: context flags
3112abe37c4bSJohannes Berg  *
3113abe37c4bSJohannes Berg  * This informs cfg80211 that BSS information was found and
3114abe37c4bSJohannes Berg  * the BSS should be updated/added.
3115ef100682SJohannes Berg  *
31160ae997dcSYacine Belkadi  * Return: A referenced struct, must be released with cfg80211_put_bss()!
31170ae997dcSYacine Belkadi  * Or %NULL on error.
3118abe37c4bSJohannes Berg  */
3119ef100682SJohannes Berg struct cfg80211_bss * __must_check
312006aa7afaSJussi Kivilinna cfg80211_inform_bss(struct wiphy *wiphy,
312106aa7afaSJussi Kivilinna 		    struct ieee80211_channel *channel,
31227b8bcff2SJohannes Berg 		    const u8 *bssid, u64 tsf, u16 capability,
31237b8bcff2SJohannes Berg 		    u16 beacon_interval, const u8 *ie, size_t ielen,
312406aa7afaSJussi Kivilinna 		    s32 signal, gfp_t gfp);
312506aa7afaSJussi Kivilinna 
31262a519311SJohannes Berg struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
31272a519311SJohannes Berg 				      struct ieee80211_channel *channel,
31282a519311SJohannes Berg 				      const u8 *bssid,
312979420f09SJohannes Berg 				      const u8 *ssid, size_t ssid_len,
313079420f09SJohannes Berg 				      u16 capa_mask, u16 capa_val);
313179420f09SJohannes Berg static inline struct cfg80211_bss *
313279420f09SJohannes Berg cfg80211_get_ibss(struct wiphy *wiphy,
313379420f09SJohannes Berg 		  struct ieee80211_channel *channel,
313479420f09SJohannes Berg 		  const u8 *ssid, size_t ssid_len)
313579420f09SJohannes Berg {
313679420f09SJohannes Berg 	return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
313779420f09SJohannes Berg 				WLAN_CAPABILITY_IBSS, WLAN_CAPABILITY_IBSS);
313879420f09SJohannes Berg }
313979420f09SJohannes Berg 
31402a519311SJohannes Berg struct cfg80211_bss *cfg80211_get_mesh(struct wiphy *wiphy,
31412a519311SJohannes Berg 				       struct ieee80211_channel *channel,
31422a519311SJohannes Berg 				       const u8 *meshid, size_t meshidlen,
31432a519311SJohannes Berg 				       const u8 *meshcfg);
31444c0c0b75SJohannes Berg /**
31454c0c0b75SJohannes Berg  * cfg80211_ref_bss - reference BSS struct
31464c0c0b75SJohannes Berg  * @bss: the BSS struct to reference
31474c0c0b75SJohannes Berg  *
31484c0c0b75SJohannes Berg  * Increments the refcount of the given BSS struct.
31494c0c0b75SJohannes Berg  */
31504c0c0b75SJohannes Berg void cfg80211_ref_bss(struct cfg80211_bss *bss);
31514c0c0b75SJohannes Berg 
31524c0c0b75SJohannes Berg /**
31534c0c0b75SJohannes Berg  * cfg80211_put_bss - unref BSS struct
31544c0c0b75SJohannes Berg  * @bss: the BSS struct
31554c0c0b75SJohannes Berg  *
31564c0c0b75SJohannes Berg  * Decrements the refcount of the given BSS struct.
31574c0c0b75SJohannes Berg  */
31582a519311SJohannes Berg void cfg80211_put_bss(struct cfg80211_bss *bss);
3159d3236553SJohannes Berg 
3160d491af19SJohannes Berg /**
3161d491af19SJohannes Berg  * cfg80211_unlink_bss - unlink BSS from internal data structures
3162d491af19SJohannes Berg  * @wiphy: the wiphy
3163d491af19SJohannes Berg  * @bss: the bss to remove
3164d491af19SJohannes Berg  *
3165d491af19SJohannes Berg  * This function removes the given BSS from the internal data structures
3166d491af19SJohannes Berg  * thereby making it no longer show up in scan results etc. Use this
3167d491af19SJohannes Berg  * function when you detect a BSS is gone. Normally BSSes will also time
3168d491af19SJohannes Berg  * out, so it is not necessary to use this function at all.
3169d491af19SJohannes Berg  */
3170d491af19SJohannes Berg void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
3171fee52678SJohannes Berg 
31726039f6d2SJouni Malinen /**
31736039f6d2SJouni Malinen  * cfg80211_send_rx_auth - notification of processed authentication
31746039f6d2SJouni Malinen  * @dev: network device
31756039f6d2SJouni Malinen  * @buf: authentication frame (header + body)
31766039f6d2SJouni Malinen  * @len: length of the frame data
31776039f6d2SJouni Malinen  *
31786039f6d2SJouni Malinen  * This function is called whenever an authentication has been processed in
31791965c853SJouni Malinen  * station mode. The driver is required to call either this function or
31801965c853SJouni Malinen  * cfg80211_send_auth_timeout() to indicate the result of cfg80211_ops::auth()
3181cb0b4bebSJohannes Berg  * call. This function may sleep.
31826039f6d2SJouni Malinen  */
3183cb0b4bebSJohannes Berg void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len);
31846039f6d2SJouni Malinen 
31856039f6d2SJouni Malinen /**
31861965c853SJouni Malinen  * cfg80211_send_auth_timeout - notification of timed out authentication
31871965c853SJouni Malinen  * @dev: network device
31881965c853SJouni Malinen  * @addr: The MAC address of the device with which the authentication timed out
3189cb0b4bebSJohannes Berg  *
3190cb0b4bebSJohannes Berg  * This function may sleep.
31911965c853SJouni Malinen  */
3192cb0b4bebSJohannes Berg void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr);
31931965c853SJouni Malinen 
31941965c853SJouni Malinen /**
31956039f6d2SJouni Malinen  * cfg80211_send_rx_assoc - notification of processed association
31966039f6d2SJouni Malinen  * @dev: network device
319795de817bSJohannes Berg  * @bss: the BSS struct association was requested for, the struct reference
319895de817bSJohannes Berg  *	is owned by cfg80211 after this call
31996039f6d2SJouni Malinen  * @buf: (re)association response frame (header + body)
32006039f6d2SJouni Malinen  * @len: length of the frame data
32016039f6d2SJouni Malinen  *
32026039f6d2SJouni Malinen  * This function is called whenever a (re)association response has been
32031965c853SJouni Malinen  * processed in station mode. The driver is required to call either this
32041965c853SJouni Malinen  * function or cfg80211_send_assoc_timeout() to indicate the result of
3205cb0b4bebSJohannes Berg  * cfg80211_ops::assoc() call. This function may sleep.
32066039f6d2SJouni Malinen  */
320795de817bSJohannes Berg void cfg80211_send_rx_assoc(struct net_device *dev, struct cfg80211_bss *bss,
320895de817bSJohannes Berg 			    const u8 *buf, size_t len);
32096039f6d2SJouni Malinen 
32106039f6d2SJouni Malinen /**
32111965c853SJouni Malinen  * cfg80211_send_assoc_timeout - notification of timed out association
32121965c853SJouni Malinen  * @dev: network device
32131965c853SJouni Malinen  * @addr: The MAC address of the device with which the association timed out
3214cb0b4bebSJohannes Berg  *
3215cb0b4bebSJohannes Berg  * This function may sleep.
32161965c853SJouni Malinen  */
3217cb0b4bebSJohannes Berg void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr);
32181965c853SJouni Malinen 
32191965c853SJouni Malinen /**
322053b46b84SJouni Malinen  * cfg80211_send_deauth - notification of processed deauthentication
32216039f6d2SJouni Malinen  * @dev: network device
32226039f6d2SJouni Malinen  * @buf: deauthentication frame (header + body)
32236039f6d2SJouni Malinen  * @len: length of the frame data
32246039f6d2SJouni Malinen  *
32256039f6d2SJouni Malinen  * This function is called whenever deauthentication has been processed in
322653b46b84SJouni Malinen  * station mode. This includes both received deauthentication frames and
3227cb0b4bebSJohannes Berg  * locally generated ones. This function may sleep.
32286039f6d2SJouni Malinen  */
3229ce470613SHolger Schurig void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
3230ce470613SHolger Schurig 
3231ce470613SHolger Schurig /**
3232ce470613SHolger Schurig  * __cfg80211_send_deauth - notification of processed deauthentication
3233ce470613SHolger Schurig  * @dev: network device
3234ce470613SHolger Schurig  * @buf: deauthentication frame (header + body)
3235ce470613SHolger Schurig  * @len: length of the frame data
3236ce470613SHolger Schurig  *
3237ce470613SHolger Schurig  * Like cfg80211_send_deauth(), but doesn't take the wdev lock.
3238ce470613SHolger Schurig  */
3239ce470613SHolger Schurig void __cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
32406039f6d2SJouni Malinen 
32416039f6d2SJouni Malinen /**
324253b46b84SJouni Malinen  * cfg80211_send_disassoc - notification of processed disassociation
32436039f6d2SJouni Malinen  * @dev: network device
32446039f6d2SJouni Malinen  * @buf: disassociation response frame (header + body)
32456039f6d2SJouni Malinen  * @len: length of the frame data
32466039f6d2SJouni Malinen  *
32476039f6d2SJouni Malinen  * This function is called whenever disassociation has been processed in
324853b46b84SJouni Malinen  * station mode. This includes both received disassociation frames and locally
3249cb0b4bebSJohannes Berg  * generated ones. This function may sleep.
32506039f6d2SJouni Malinen  */
3251ce470613SHolger Schurig void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len);
3252ce470613SHolger Schurig 
3253ce470613SHolger Schurig /**
3254ce470613SHolger Schurig  * __cfg80211_send_disassoc - notification of processed disassociation
3255ce470613SHolger Schurig  * @dev: network device
3256ce470613SHolger Schurig  * @buf: disassociation response frame (header + body)
3257ce470613SHolger Schurig  * @len: length of the frame data
3258ce470613SHolger Schurig  *
3259ce470613SHolger Schurig  * Like cfg80211_send_disassoc(), but doesn't take the wdev lock.
3260ce470613SHolger Schurig  */
3261ce470613SHolger Schurig void __cfg80211_send_disassoc(struct net_device *dev, const u8 *buf,
3262ce470613SHolger Schurig 	size_t len);
32636039f6d2SJouni Malinen 
3264a08c1c1aSKalle Valo /**
3265cf4e594eSJouni Malinen  * cfg80211_send_unprot_deauth - notification of unprotected deauthentication
3266cf4e594eSJouni Malinen  * @dev: network device
3267cf4e594eSJouni Malinen  * @buf: deauthentication frame (header + body)
3268cf4e594eSJouni Malinen  * @len: length of the frame data
3269cf4e594eSJouni Malinen  *
3270cf4e594eSJouni Malinen  * This function is called whenever a received Deauthentication frame has been
3271cf4e594eSJouni Malinen  * dropped in station mode because of MFP being used but the Deauthentication
3272cf4e594eSJouni Malinen  * frame was not protected. This function may sleep.
3273cf4e594eSJouni Malinen  */
3274cf4e594eSJouni Malinen void cfg80211_send_unprot_deauth(struct net_device *dev, const u8 *buf,
3275cf4e594eSJouni Malinen 				 size_t len);
3276cf4e594eSJouni Malinen 
3277cf4e594eSJouni Malinen /**
3278cf4e594eSJouni Malinen  * cfg80211_send_unprot_disassoc - notification of unprotected disassociation
3279cf4e594eSJouni Malinen  * @dev: network device
3280cf4e594eSJouni Malinen  * @buf: disassociation frame (header + body)
3281cf4e594eSJouni Malinen  * @len: length of the frame data
3282cf4e594eSJouni Malinen  *
3283cf4e594eSJouni Malinen  * This function is called whenever a received Disassociation frame has been
3284cf4e594eSJouni Malinen  * dropped in station mode because of MFP being used but the Disassociation
3285cf4e594eSJouni Malinen  * frame was not protected. This function may sleep.
3286cf4e594eSJouni Malinen  */
3287cf4e594eSJouni Malinen void cfg80211_send_unprot_disassoc(struct net_device *dev, const u8 *buf,
3288cf4e594eSJouni Malinen 				   size_t len);
3289cf4e594eSJouni Malinen 
3290cf4e594eSJouni Malinen /**
3291a3b8b056SJouni Malinen  * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
3292a3b8b056SJouni Malinen  * @dev: network device
3293a3b8b056SJouni Malinen  * @addr: The source MAC address of the frame
3294a3b8b056SJouni Malinen  * @key_type: The key type that the received frame used
3295a66b98dbSArik Nemtsov  * @key_id: Key identifier (0..3). Can be -1 if missing.
3296a3b8b056SJouni Malinen  * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
3297e6d6e342SJohannes Berg  * @gfp: allocation flags
3298a3b8b056SJouni Malinen  *
3299a3b8b056SJouni Malinen  * This function is called whenever the local MAC detects a MIC failure in a
3300a3b8b056SJouni Malinen  * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
3301a3b8b056SJouni Malinen  * primitive.
3302a3b8b056SJouni Malinen  */
3303a3b8b056SJouni Malinen void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
3304a3b8b056SJouni Malinen 				  enum nl80211_key_type key_type, int key_id,
3305e6d6e342SJohannes Berg 				  const u8 *tsc, gfp_t gfp);
3306a3b8b056SJouni Malinen 
330704a773adSJohannes Berg /**
330804a773adSJohannes Berg  * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
330904a773adSJohannes Berg  *
331004a773adSJohannes Berg  * @dev: network device
331104a773adSJohannes Berg  * @bssid: the BSSID of the IBSS joined
331204a773adSJohannes Berg  * @gfp: allocation flags
331304a773adSJohannes Berg  *
331404a773adSJohannes Berg  * This function notifies cfg80211 that the device joined an IBSS or
331504a773adSJohannes Berg  * switched to a different BSSID. Before this function can be called,
331604a773adSJohannes Berg  * either a beacon has to have been received from the IBSS, or one of
331704a773adSJohannes Berg  * the cfg80211_inform_bss{,_frame} functions must have been called
331804a773adSJohannes Berg  * with the locally generated beacon -- this guarantees that there is
331904a773adSJohannes Berg  * always a scan result for this IBSS. cfg80211 will handle the rest.
332004a773adSJohannes Berg  */
332104a773adSJohannes Berg void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp);
332204a773adSJohannes Berg 
33231f87f7d3SJohannes Berg /**
3324c93b5e71SJavier Cardona  * cfg80211_notify_new_candidate - notify cfg80211 of a new mesh peer candidate
3325c93b5e71SJavier Cardona  *
3326c93b5e71SJavier Cardona  * @dev: network device
3327c93b5e71SJavier Cardona  * @macaddr: the MAC address of the new candidate
3328c93b5e71SJavier Cardona  * @ie: information elements advertised by the peer candidate
3329c93b5e71SJavier Cardona  * @ie_len: lenght of the information elements buffer
3330c93b5e71SJavier Cardona  * @gfp: allocation flags
3331c93b5e71SJavier Cardona  *
3332c93b5e71SJavier Cardona  * This function notifies cfg80211 that the mesh peer candidate has been
3333c93b5e71SJavier Cardona  * detected, most likely via a beacon or, less likely, via a probe response.
3334c93b5e71SJavier Cardona  * cfg80211 then sends a notification to userspace.
3335c93b5e71SJavier Cardona  */
3336c93b5e71SJavier Cardona void cfg80211_notify_new_peer_candidate(struct net_device *dev,
3337c93b5e71SJavier Cardona 		const u8 *macaddr, const u8 *ie, u8 ie_len, gfp_t gfp);
3338c93b5e71SJavier Cardona 
3339c93b5e71SJavier Cardona /**
3340d70e9693SJohannes Berg  * DOC: RFkill integration
3341d70e9693SJohannes Berg  *
3342d70e9693SJohannes Berg  * RFkill integration in cfg80211 is almost invisible to drivers,
3343d70e9693SJohannes Berg  * as cfg80211 automatically registers an rfkill instance for each
3344d70e9693SJohannes Berg  * wireless device it knows about. Soft kill is also translated
3345d70e9693SJohannes Berg  * into disconnecting and turning all interfaces off, drivers are
3346d70e9693SJohannes Berg  * expected to turn off the device when all interfaces are down.
3347d70e9693SJohannes Berg  *
3348d70e9693SJohannes Berg  * However, devices may have a hard RFkill line, in which case they
3349d70e9693SJohannes Berg  * also need to interact with the rfkill subsystem, via cfg80211.
3350d70e9693SJohannes Berg  * They can do this with a few helper functions documented here.
3351d70e9693SJohannes Berg  */
3352d70e9693SJohannes Berg 
3353d70e9693SJohannes Berg /**
33541f87f7d3SJohannes Berg  * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
33551f87f7d3SJohannes Berg  * @wiphy: the wiphy
33561f87f7d3SJohannes Berg  * @blocked: block status
33571f87f7d3SJohannes Berg  */
33581f87f7d3SJohannes Berg void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked);
33591f87f7d3SJohannes Berg 
33601f87f7d3SJohannes Berg /**
33611f87f7d3SJohannes Berg  * wiphy_rfkill_start_polling - start polling rfkill
33621f87f7d3SJohannes Berg  * @wiphy: the wiphy
33631f87f7d3SJohannes Berg  */
33641f87f7d3SJohannes Berg void wiphy_rfkill_start_polling(struct wiphy *wiphy);
33651f87f7d3SJohannes Berg 
33661f87f7d3SJohannes Berg /**
33671f87f7d3SJohannes Berg  * wiphy_rfkill_stop_polling - stop polling rfkill
33681f87f7d3SJohannes Berg  * @wiphy: the wiphy
33691f87f7d3SJohannes Berg  */
33701f87f7d3SJohannes Berg void wiphy_rfkill_stop_polling(struct wiphy *wiphy);
33711f87f7d3SJohannes Berg 
3372aff89a9bSJohannes Berg #ifdef CONFIG_NL80211_TESTMODE
3373aff89a9bSJohannes Berg /**
3374d70e9693SJohannes Berg  * DOC: Test mode
3375d70e9693SJohannes Berg  *
3376d70e9693SJohannes Berg  * Test mode is a set of utility functions to allow drivers to
3377d70e9693SJohannes Berg  * interact with driver-specific tools to aid, for instance,
3378d70e9693SJohannes Berg  * factory programming.
3379d70e9693SJohannes Berg  *
3380d70e9693SJohannes Berg  * This chapter describes how drivers interact with it, for more
3381d70e9693SJohannes Berg  * information see the nl80211 book's chapter on it.
3382d70e9693SJohannes Berg  */
3383d70e9693SJohannes Berg 
3384d70e9693SJohannes Berg /**
3385aff89a9bSJohannes Berg  * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
3386aff89a9bSJohannes Berg  * @wiphy: the wiphy
3387aff89a9bSJohannes Berg  * @approxlen: an upper bound of the length of the data that will
3388aff89a9bSJohannes Berg  *	be put into the skb
3389aff89a9bSJohannes Berg  *
3390aff89a9bSJohannes Berg  * This function allocates and pre-fills an skb for a reply to
3391aff89a9bSJohannes Berg  * the testmode command. Since it is intended for a reply, calling
3392aff89a9bSJohannes Berg  * it outside of the @testmode_cmd operation is invalid.
3393aff89a9bSJohannes Berg  *
33940ae997dcSYacine Belkadi  * The returned skb is pre-filled with the wiphy index and set up in
33950ae997dcSYacine Belkadi  * a way that any data that is put into the skb (with skb_put(),
33960ae997dcSYacine Belkadi  * nla_put() or similar) will end up being within the
33970ae997dcSYacine Belkadi  * %NL80211_ATTR_TESTDATA attribute, so all that needs to be done
33980ae997dcSYacine Belkadi  * with the skb is adding data for the corresponding userspace tool
33990ae997dcSYacine Belkadi  * which can then read that data out of the testdata attribute. You
34000ae997dcSYacine Belkadi  * must not modify the skb in any other way.
3401aff89a9bSJohannes Berg  *
3402aff89a9bSJohannes Berg  * When done, call cfg80211_testmode_reply() with the skb and return
3403aff89a9bSJohannes Berg  * its error code as the result of the @testmode_cmd operation.
34040ae997dcSYacine Belkadi  *
34050ae997dcSYacine Belkadi  * Return: An allocated and pre-filled skb. %NULL if any errors happen.
3406aff89a9bSJohannes Berg  */
3407aff89a9bSJohannes Berg struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
3408aff89a9bSJohannes Berg 						  int approxlen);
3409aff89a9bSJohannes Berg 
3410aff89a9bSJohannes Berg /**
3411aff89a9bSJohannes Berg  * cfg80211_testmode_reply - send the reply skb
3412aff89a9bSJohannes Berg  * @skb: The skb, must have been allocated with
3413aff89a9bSJohannes Berg  *	cfg80211_testmode_alloc_reply_skb()
3414aff89a9bSJohannes Berg  *
34150ae997dcSYacine Belkadi  * Since calling this function will usually be the last thing
34160ae997dcSYacine Belkadi  * before returning from the @testmode_cmd you should return
34170ae997dcSYacine Belkadi  * the error code.  Note that this function consumes the skb
34180ae997dcSYacine Belkadi  * regardless of the return value.
34190ae997dcSYacine Belkadi  *
34200ae997dcSYacine Belkadi  * Return: An error code or 0 on success.
3421aff89a9bSJohannes Berg  */
3422aff89a9bSJohannes Berg int cfg80211_testmode_reply(struct sk_buff *skb);
3423aff89a9bSJohannes Berg 
3424aff89a9bSJohannes Berg /**
3425aff89a9bSJohannes Berg  * cfg80211_testmode_alloc_event_skb - allocate testmode event
3426aff89a9bSJohannes Berg  * @wiphy: the wiphy
3427aff89a9bSJohannes Berg  * @approxlen: an upper bound of the length of the data that will
3428aff89a9bSJohannes Berg  *	be put into the skb
3429aff89a9bSJohannes Berg  * @gfp: allocation flags
3430aff89a9bSJohannes Berg  *
3431aff89a9bSJohannes Berg  * This function allocates and pre-fills an skb for an event on the
3432aff89a9bSJohannes Berg  * testmode multicast group.
3433aff89a9bSJohannes Berg  *
34340ae997dcSYacine Belkadi  * The returned skb is set up in the same way as with
34350ae997dcSYacine Belkadi  * cfg80211_testmode_alloc_reply_skb() but prepared for an event. As
34360ae997dcSYacine Belkadi  * there, you should simply add data to it that will then end up in the
34370ae997dcSYacine Belkadi  * %NL80211_ATTR_TESTDATA attribute. Again, you must not modify the skb
34380ae997dcSYacine Belkadi  * in any other way.
3439aff89a9bSJohannes Berg  *
3440aff89a9bSJohannes Berg  * When done filling the skb, call cfg80211_testmode_event() with the
3441aff89a9bSJohannes Berg  * skb to send the event.
34420ae997dcSYacine Belkadi  *
34430ae997dcSYacine Belkadi  * Return: An allocated and pre-filled skb. %NULL if any errors happen.
3444aff89a9bSJohannes Berg  */
3445aff89a9bSJohannes Berg struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
3446aff89a9bSJohannes Berg 						  int approxlen, gfp_t gfp);
3447aff89a9bSJohannes Berg 
3448aff89a9bSJohannes Berg /**
3449aff89a9bSJohannes Berg  * cfg80211_testmode_event - send the event
3450aff89a9bSJohannes Berg  * @skb: The skb, must have been allocated with
3451aff89a9bSJohannes Berg  *	cfg80211_testmode_alloc_event_skb()
3452aff89a9bSJohannes Berg  * @gfp: allocation flags
3453aff89a9bSJohannes Berg  *
3454aff89a9bSJohannes Berg  * This function sends the given @skb, which must have been allocated
3455aff89a9bSJohannes Berg  * by cfg80211_testmode_alloc_event_skb(), as an event. It always
3456aff89a9bSJohannes Berg  * consumes it.
3457aff89a9bSJohannes Berg  */
3458aff89a9bSJohannes Berg void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp);
3459aff89a9bSJohannes Berg 
3460aff89a9bSJohannes Berg #define CFG80211_TESTMODE_CMD(cmd)	.testmode_cmd = (cmd),
346171063f0eSWey-Yi Guy #define CFG80211_TESTMODE_DUMP(cmd)	.testmode_dump = (cmd),
3462aff89a9bSJohannes Berg #else
3463aff89a9bSJohannes Berg #define CFG80211_TESTMODE_CMD(cmd)
346471063f0eSWey-Yi Guy #define CFG80211_TESTMODE_DUMP(cmd)
3465aff89a9bSJohannes Berg #endif
3466aff89a9bSJohannes Berg 
3467b23aa676SSamuel Ortiz /**
3468b23aa676SSamuel Ortiz  * cfg80211_connect_result - notify cfg80211 of connection result
3469b23aa676SSamuel Ortiz  *
3470b23aa676SSamuel Ortiz  * @dev: network device
3471b23aa676SSamuel Ortiz  * @bssid: the BSSID of the AP
3472b23aa676SSamuel Ortiz  * @req_ie: association request IEs (maybe be %NULL)
3473b23aa676SSamuel Ortiz  * @req_ie_len: association request IEs length
3474b23aa676SSamuel Ortiz  * @resp_ie: association response IEs (may be %NULL)
3475b23aa676SSamuel Ortiz  * @resp_ie_len: assoc response IEs length
3476b23aa676SSamuel Ortiz  * @status: status code, 0 for successful connection, use
3477b23aa676SSamuel Ortiz  *	%WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
3478b23aa676SSamuel Ortiz  *	the real status code for failures.
3479b23aa676SSamuel Ortiz  * @gfp: allocation flags
3480b23aa676SSamuel Ortiz  *
3481b23aa676SSamuel Ortiz  * It should be called by the underlying driver whenever connect() has
3482b23aa676SSamuel Ortiz  * succeeded.
3483b23aa676SSamuel Ortiz  */
3484b23aa676SSamuel Ortiz void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
3485b23aa676SSamuel Ortiz 			     const u8 *req_ie, size_t req_ie_len,
3486b23aa676SSamuel Ortiz 			     const u8 *resp_ie, size_t resp_ie_len,
3487b23aa676SSamuel Ortiz 			     u16 status, gfp_t gfp);
3488b23aa676SSamuel Ortiz 
3489b23aa676SSamuel Ortiz /**
3490b23aa676SSamuel Ortiz  * cfg80211_roamed - notify cfg80211 of roaming
3491b23aa676SSamuel Ortiz  *
3492b23aa676SSamuel Ortiz  * @dev: network device
3493ed9d0102SJouni Malinen  * @channel: the channel of the new AP
3494b23aa676SSamuel Ortiz  * @bssid: the BSSID of the new AP
3495b23aa676SSamuel Ortiz  * @req_ie: association request IEs (maybe be %NULL)
3496b23aa676SSamuel Ortiz  * @req_ie_len: association request IEs length
3497b23aa676SSamuel Ortiz  * @resp_ie: association response IEs (may be %NULL)
3498b23aa676SSamuel Ortiz  * @resp_ie_len: assoc response IEs length
3499b23aa676SSamuel Ortiz  * @gfp: allocation flags
3500b23aa676SSamuel Ortiz  *
3501b23aa676SSamuel Ortiz  * It should be called by the underlying driver whenever it roamed
3502b23aa676SSamuel Ortiz  * from one AP to another while connected.
3503b23aa676SSamuel Ortiz  */
3504ed9d0102SJouni Malinen void cfg80211_roamed(struct net_device *dev,
3505ed9d0102SJouni Malinen 		     struct ieee80211_channel *channel,
3506ed9d0102SJouni Malinen 		     const u8 *bssid,
3507b23aa676SSamuel Ortiz 		     const u8 *req_ie, size_t req_ie_len,
3508b23aa676SSamuel Ortiz 		     const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
3509b23aa676SSamuel Ortiz 
3510b23aa676SSamuel Ortiz /**
3511adbde344SVasanthakumar Thiagarajan  * cfg80211_roamed_bss - notify cfg80211 of roaming
3512adbde344SVasanthakumar Thiagarajan  *
3513adbde344SVasanthakumar Thiagarajan  * @dev: network device
3514adbde344SVasanthakumar Thiagarajan  * @bss: entry of bss to which STA got roamed
3515adbde344SVasanthakumar Thiagarajan  * @req_ie: association request IEs (maybe be %NULL)
3516adbde344SVasanthakumar Thiagarajan  * @req_ie_len: association request IEs length
3517adbde344SVasanthakumar Thiagarajan  * @resp_ie: association response IEs (may be %NULL)
3518adbde344SVasanthakumar Thiagarajan  * @resp_ie_len: assoc response IEs length
3519adbde344SVasanthakumar Thiagarajan  * @gfp: allocation flags
3520adbde344SVasanthakumar Thiagarajan  *
3521adbde344SVasanthakumar Thiagarajan  * This is just a wrapper to notify cfg80211 of roaming event with driver
3522adbde344SVasanthakumar Thiagarajan  * passing bss to avoid a race in timeout of the bss entry. It should be
3523adbde344SVasanthakumar Thiagarajan  * called by the underlying driver whenever it roamed from one AP to another
3524adbde344SVasanthakumar Thiagarajan  * while connected. Drivers which have roaming implemented in firmware
3525adbde344SVasanthakumar Thiagarajan  * may use this function to avoid a race in bss entry timeout where the bss
3526adbde344SVasanthakumar Thiagarajan  * entry of the new AP is seen in the driver, but gets timed out by the time
3527adbde344SVasanthakumar Thiagarajan  * it is accessed in __cfg80211_roamed() due to delay in scheduling
3528adbde344SVasanthakumar Thiagarajan  * rdev->event_work. In case of any failures, the reference is released
3529adbde344SVasanthakumar Thiagarajan  * either in cfg80211_roamed_bss() or in __cfg80211_romed(), Otherwise,
3530adbde344SVasanthakumar Thiagarajan  * it will be released while diconneting from the current bss.
3531adbde344SVasanthakumar Thiagarajan  */
3532adbde344SVasanthakumar Thiagarajan void cfg80211_roamed_bss(struct net_device *dev, struct cfg80211_bss *bss,
3533adbde344SVasanthakumar Thiagarajan 			 const u8 *req_ie, size_t req_ie_len,
3534adbde344SVasanthakumar Thiagarajan 			 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
3535adbde344SVasanthakumar Thiagarajan 
3536adbde344SVasanthakumar Thiagarajan /**
3537b23aa676SSamuel Ortiz  * cfg80211_disconnected - notify cfg80211 that connection was dropped
3538b23aa676SSamuel Ortiz  *
3539b23aa676SSamuel Ortiz  * @dev: network device
3540b23aa676SSamuel Ortiz  * @ie: information elements of the deauth/disassoc frame (may be %NULL)
3541b23aa676SSamuel Ortiz  * @ie_len: length of IEs
3542b23aa676SSamuel Ortiz  * @reason: reason code for the disconnection, set it to 0 if unknown
3543b23aa676SSamuel Ortiz  * @gfp: allocation flags
3544b23aa676SSamuel Ortiz  *
3545b23aa676SSamuel Ortiz  * After it calls this function, the driver should enter an idle state
3546b23aa676SSamuel Ortiz  * and not try to connect to any AP any more.
3547b23aa676SSamuel Ortiz  */
3548b23aa676SSamuel Ortiz void cfg80211_disconnected(struct net_device *dev, u16 reason,
3549b23aa676SSamuel Ortiz 			   u8 *ie, size_t ie_len, gfp_t gfp);
3550b23aa676SSamuel Ortiz 
35519588bbd5SJouni Malinen /**
35529588bbd5SJouni Malinen  * cfg80211_ready_on_channel - notification of remain_on_channel start
355371bbc994SJohannes Berg  * @wdev: wireless device
35549588bbd5SJouni Malinen  * @cookie: the request cookie
35559588bbd5SJouni Malinen  * @chan: The current channel (from remain_on_channel request)
35569588bbd5SJouni Malinen  * @duration: Duration in milliseconds that the driver intents to remain on the
35579588bbd5SJouni Malinen  *	channel
35589588bbd5SJouni Malinen  * @gfp: allocation flags
35599588bbd5SJouni Malinen  */
356071bbc994SJohannes Berg void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
35619588bbd5SJouni Malinen 			       struct ieee80211_channel *chan,
35629588bbd5SJouni Malinen 			       unsigned int duration, gfp_t gfp);
35639588bbd5SJouni Malinen 
35649588bbd5SJouni Malinen /**
35659588bbd5SJouni Malinen  * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
356671bbc994SJohannes Berg  * @wdev: wireless device
35679588bbd5SJouni Malinen  * @cookie: the request cookie
35689588bbd5SJouni Malinen  * @chan: The current channel (from remain_on_channel request)
35699588bbd5SJouni Malinen  * @gfp: allocation flags
35709588bbd5SJouni Malinen  */
357171bbc994SJohannes Berg void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
35729588bbd5SJouni Malinen 					struct ieee80211_channel *chan,
35739588bbd5SJouni Malinen 					gfp_t gfp);
3574b23aa676SSamuel Ortiz 
357598b62183SJohannes Berg 
357698b62183SJohannes Berg /**
357798b62183SJohannes Berg  * cfg80211_new_sta - notify userspace about station
357898b62183SJohannes Berg  *
357998b62183SJohannes Berg  * @dev: the netdev
358098b62183SJohannes Berg  * @mac_addr: the station's address
358198b62183SJohannes Berg  * @sinfo: the station information
358298b62183SJohannes Berg  * @gfp: allocation flags
358398b62183SJohannes Berg  */
358498b62183SJohannes Berg void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
358598b62183SJohannes Berg 		      struct station_info *sinfo, gfp_t gfp);
358698b62183SJohannes Berg 
3587026331c4SJouni Malinen /**
3588ec15e68bSJouni Malinen  * cfg80211_del_sta - notify userspace about deletion of a station
3589ec15e68bSJouni Malinen  *
3590ec15e68bSJouni Malinen  * @dev: the netdev
3591ec15e68bSJouni Malinen  * @mac_addr: the station's address
3592ec15e68bSJouni Malinen  * @gfp: allocation flags
3593ec15e68bSJouni Malinen  */
3594ec15e68bSJouni Malinen void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp);
3595ec15e68bSJouni Malinen 
3596ec15e68bSJouni Malinen /**
3597ed44a951SPandiyarajan Pitchaimuthu  * cfg80211_conn_failed - connection request failed notification
3598ed44a951SPandiyarajan Pitchaimuthu  *
3599ed44a951SPandiyarajan Pitchaimuthu  * @dev: the netdev
3600ed44a951SPandiyarajan Pitchaimuthu  * @mac_addr: the station's address
3601ed44a951SPandiyarajan Pitchaimuthu  * @reason: the reason for connection failure
3602ed44a951SPandiyarajan Pitchaimuthu  * @gfp: allocation flags
3603ed44a951SPandiyarajan Pitchaimuthu  *
3604ed44a951SPandiyarajan Pitchaimuthu  * Whenever a station tries to connect to an AP and if the station
3605ed44a951SPandiyarajan Pitchaimuthu  * could not connect to the AP as the AP has rejected the connection
3606ed44a951SPandiyarajan Pitchaimuthu  * for some reasons, this function is called.
3607ed44a951SPandiyarajan Pitchaimuthu  *
3608ed44a951SPandiyarajan Pitchaimuthu  * The reason for connection failure can be any of the value from
3609ed44a951SPandiyarajan Pitchaimuthu  * nl80211_connect_failed_reason enum
3610ed44a951SPandiyarajan Pitchaimuthu  */
3611ed44a951SPandiyarajan Pitchaimuthu void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
3612ed44a951SPandiyarajan Pitchaimuthu 			  enum nl80211_connect_failed_reason reason,
3613ed44a951SPandiyarajan Pitchaimuthu 			  gfp_t gfp);
3614ed44a951SPandiyarajan Pitchaimuthu 
3615ed44a951SPandiyarajan Pitchaimuthu /**
36162e161f78SJohannes Berg  * cfg80211_rx_mgmt - notification of received, unprocessed management frame
361771bbc994SJohannes Berg  * @wdev: wireless device receiving the frame
3618026331c4SJouni Malinen  * @freq: Frequency on which the frame was received in MHz
3619804483e9SJohannes Berg  * @sig_dbm: signal strength in mBm, or 0 if unknown
36202e161f78SJohannes Berg  * @buf: Management frame (header + body)
3621026331c4SJouni Malinen  * @len: length of the frame data
3622026331c4SJouni Malinen  * @gfp: context flags
36232e161f78SJohannes Berg  *
36240ae997dcSYacine Belkadi  * This function is called whenever an Action frame is received for a station
36250ae997dcSYacine Belkadi  * mode interface, but is not processed in kernel.
36260ae997dcSYacine Belkadi  *
36270ae997dcSYacine Belkadi  * Return: %true if a user space application has registered for this frame.
36282e161f78SJohannes Berg  * For action frames, that makes it responsible for rejecting unrecognized
36292e161f78SJohannes Berg  * action frames; %false otherwise, in which case for action frames the
36302e161f78SJohannes Berg  * driver is responsible for rejecting the frame.
3631026331c4SJouni Malinen  */
363271bbc994SJohannes Berg bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_dbm,
3633804483e9SJohannes Berg 		      const u8 *buf, size_t len, gfp_t gfp);
3634026331c4SJouni Malinen 
3635026331c4SJouni Malinen /**
36362e161f78SJohannes Berg  * cfg80211_mgmt_tx_status - notification of TX status for management frame
363771bbc994SJohannes Berg  * @wdev: wireless device receiving the frame
36382e161f78SJohannes Berg  * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
36392e161f78SJohannes Berg  * @buf: Management frame (header + body)
3640026331c4SJouni Malinen  * @len: length of the frame data
3641026331c4SJouni Malinen  * @ack: Whether frame was acknowledged
3642026331c4SJouni Malinen  * @gfp: context flags
3643026331c4SJouni Malinen  *
36442e161f78SJohannes Berg  * This function is called whenever a management frame was requested to be
36452e161f78SJohannes Berg  * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
3646026331c4SJouni Malinen  * transmission attempt.
3647026331c4SJouni Malinen  */
364871bbc994SJohannes Berg void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
3649026331c4SJouni Malinen 			     const u8 *buf, size_t len, bool ack, gfp_t gfp);
3650026331c4SJouni Malinen 
3651d6dc1a38SJuuso Oikarinen 
3652d6dc1a38SJuuso Oikarinen /**
3653d6dc1a38SJuuso Oikarinen  * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
3654d6dc1a38SJuuso Oikarinen  * @dev: network device
3655d6dc1a38SJuuso Oikarinen  * @rssi_event: the triggered RSSI event
3656d6dc1a38SJuuso Oikarinen  * @gfp: context flags
3657d6dc1a38SJuuso Oikarinen  *
3658d6dc1a38SJuuso Oikarinen  * This function is called when a configured connection quality monitoring
3659d6dc1a38SJuuso Oikarinen  * rssi threshold reached event occurs.
3660d6dc1a38SJuuso Oikarinen  */
3661d6dc1a38SJuuso Oikarinen void cfg80211_cqm_rssi_notify(struct net_device *dev,
3662d6dc1a38SJuuso Oikarinen 			      enum nl80211_cqm_rssi_threshold_event rssi_event,
3663d6dc1a38SJuuso Oikarinen 			      gfp_t gfp);
3664d6dc1a38SJuuso Oikarinen 
3665c063dbf5SJohannes Berg /**
3666c063dbf5SJohannes Berg  * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
3667c063dbf5SJohannes Berg  * @dev: network device
3668c063dbf5SJohannes Berg  * @peer: peer's MAC address
3669c063dbf5SJohannes Berg  * @num_packets: how many packets were lost -- should be a fixed threshold
3670c063dbf5SJohannes Berg  *	but probably no less than maybe 50, or maybe a throughput dependent
3671c063dbf5SJohannes Berg  *	threshold (to account for temporary interference)
3672c063dbf5SJohannes Berg  * @gfp: context flags
3673c063dbf5SJohannes Berg  */
3674c063dbf5SJohannes Berg void cfg80211_cqm_pktloss_notify(struct net_device *dev,
3675c063dbf5SJohannes Berg 				 const u8 *peer, u32 num_packets, gfp_t gfp);
3676c063dbf5SJohannes Berg 
3677e5497d76SJohannes Berg /**
367884f10708SThomas Pedersen  * cfg80211_cqm_txe_notify - TX error rate event
367984f10708SThomas Pedersen  * @dev: network device
368084f10708SThomas Pedersen  * @peer: peer's MAC address
368184f10708SThomas Pedersen  * @num_packets: how many packets were lost
368284f10708SThomas Pedersen  * @rate: % of packets which failed transmission
368384f10708SThomas Pedersen  * @intvl: interval (in s) over which the TX failure threshold was breached.
368484f10708SThomas Pedersen  * @gfp: context flags
368584f10708SThomas Pedersen  *
368684f10708SThomas Pedersen  * Notify userspace when configured % TX failures over number of packets in a
368784f10708SThomas Pedersen  * given interval is exceeded.
368884f10708SThomas Pedersen  */
368984f10708SThomas Pedersen void cfg80211_cqm_txe_notify(struct net_device *dev, const u8 *peer,
369084f10708SThomas Pedersen 			     u32 num_packets, u32 rate, u32 intvl, gfp_t gfp);
369184f10708SThomas Pedersen 
369284f10708SThomas Pedersen /**
3693e5497d76SJohannes Berg  * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying
3694e5497d76SJohannes Berg  * @dev: network device
3695e5497d76SJohannes Berg  * @bssid: BSSID of AP (to avoid races)
3696e5497d76SJohannes Berg  * @replay_ctr: new replay counter
3697af71ff85SJohannes Berg  * @gfp: allocation flags
3698e5497d76SJohannes Berg  */
3699e5497d76SJohannes Berg void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
3700e5497d76SJohannes Berg 			       const u8 *replay_ctr, gfp_t gfp);
3701e5497d76SJohannes Berg 
3702c9df56b4SJouni Malinen /**
3703c9df56b4SJouni Malinen  * cfg80211_pmksa_candidate_notify - notify about PMKSA caching candidate
3704c9df56b4SJouni Malinen  * @dev: network device
3705c9df56b4SJouni Malinen  * @index: candidate index (the smaller the index, the higher the priority)
3706c9df56b4SJouni Malinen  * @bssid: BSSID of AP
3707c9df56b4SJouni Malinen  * @preauth: Whether AP advertises support for RSN pre-authentication
3708c9df56b4SJouni Malinen  * @gfp: allocation flags
3709c9df56b4SJouni Malinen  */
3710c9df56b4SJouni Malinen void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
3711c9df56b4SJouni Malinen 				     const u8 *bssid, bool preauth, gfp_t gfp);
3712c9df56b4SJouni Malinen 
371328946da7SJohannes Berg /**
371428946da7SJohannes Berg  * cfg80211_rx_spurious_frame - inform userspace about a spurious frame
371528946da7SJohannes Berg  * @dev: The device the frame matched to
371628946da7SJohannes Berg  * @addr: the transmitter address
371728946da7SJohannes Berg  * @gfp: context flags
371828946da7SJohannes Berg  *
371928946da7SJohannes Berg  * This function is used in AP mode (only!) to inform userspace that
372028946da7SJohannes Berg  * a spurious class 3 frame was received, to be able to deauth the
372128946da7SJohannes Berg  * sender.
37220ae997dcSYacine Belkadi  * Return: %true if the frame was passed to userspace (or this failed
372328946da7SJohannes Berg  * for a reason other than not having a subscription.)
372428946da7SJohannes Berg  */
372528946da7SJohannes Berg bool cfg80211_rx_spurious_frame(struct net_device *dev,
372628946da7SJohannes Berg 				const u8 *addr, gfp_t gfp);
372728946da7SJohannes Berg 
37287f6cf311SJohannes Berg /**
3729b92ab5d8SJohannes Berg  * cfg80211_rx_unexpected_4addr_frame - inform about unexpected WDS frame
3730b92ab5d8SJohannes Berg  * @dev: The device the frame matched to
3731b92ab5d8SJohannes Berg  * @addr: the transmitter address
3732b92ab5d8SJohannes Berg  * @gfp: context flags
3733b92ab5d8SJohannes Berg  *
3734b92ab5d8SJohannes Berg  * This function is used in AP mode (only!) to inform userspace that
3735b92ab5d8SJohannes Berg  * an associated station sent a 4addr frame but that wasn't expected.
3736b92ab5d8SJohannes Berg  * It is allowed and desirable to send this event only once for each
3737b92ab5d8SJohannes Berg  * station to avoid event flooding.
37380ae997dcSYacine Belkadi  * Return: %true if the frame was passed to userspace (or this failed
3739b92ab5d8SJohannes Berg  * for a reason other than not having a subscription.)
3740b92ab5d8SJohannes Berg  */
3741b92ab5d8SJohannes Berg bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
3742b92ab5d8SJohannes Berg 					const u8 *addr, gfp_t gfp);
3743b92ab5d8SJohannes Berg 
3744b92ab5d8SJohannes Berg /**
37457f6cf311SJohannes Berg  * cfg80211_probe_status - notify userspace about probe status
37467f6cf311SJohannes Berg  * @dev: the device the probe was sent on
37477f6cf311SJohannes Berg  * @addr: the address of the peer
37487f6cf311SJohannes Berg  * @cookie: the cookie filled in @probe_client previously
37497f6cf311SJohannes Berg  * @acked: indicates whether probe was acked or not
37507f6cf311SJohannes Berg  * @gfp: allocation flags
37517f6cf311SJohannes Berg  */
37527f6cf311SJohannes Berg void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
37537f6cf311SJohannes Berg 			   u64 cookie, bool acked, gfp_t gfp);
37547f6cf311SJohannes Berg 
37555e760230SJohannes Berg /**
37565e760230SJohannes Berg  * cfg80211_report_obss_beacon - report beacon from other APs
37575e760230SJohannes Berg  * @wiphy: The wiphy that received the beacon
37585e760230SJohannes Berg  * @frame: the frame
37595e760230SJohannes Berg  * @len: length of the frame
37605e760230SJohannes Berg  * @freq: frequency the frame was received on
3761804483e9SJohannes Berg  * @sig_dbm: signal strength in mBm, or 0 if unknown
37625e760230SJohannes Berg  *
37635e760230SJohannes Berg  * Use this function to report to userspace when a beacon was
37645e760230SJohannes Berg  * received. It is not useful to call this when there is no
37655e760230SJohannes Berg  * netdev that is in AP/GO mode.
37665e760230SJohannes Berg  */
37675e760230SJohannes Berg void cfg80211_report_obss_beacon(struct wiphy *wiphy,
37685e760230SJohannes Berg 				 const u8 *frame, size_t len,
376937c73b5fSBen Greear 				 int freq, int sig_dbm);
37705e760230SJohannes Berg 
3771d58e7e37SJohannes Berg /**
3772683b6d3bSJohannes Berg  * cfg80211_reg_can_beacon - check if beaconing is allowed
377354858ee5SAlexander Simon  * @wiphy: the wiphy
3774683b6d3bSJohannes Berg  * @chandef: the channel definition
3775d58e7e37SJohannes Berg  *
37760ae997dcSYacine Belkadi  * Return: %true if there is no secondary channel or the secondary channel(s)
37770ae997dcSYacine Belkadi  * can be used for beaconing (i.e. is not a radar channel etc.)
377854858ee5SAlexander Simon  */
3779683b6d3bSJohannes Berg bool cfg80211_reg_can_beacon(struct wiphy *wiphy,
3780683b6d3bSJohannes Berg 			     struct cfg80211_chan_def *chandef);
378154858ee5SAlexander Simon 
37828097e149SThomas Pedersen /*
37835314526bSThomas Pedersen  * cfg80211_ch_switch_notify - update wdev channel and notify userspace
37845314526bSThomas Pedersen  * @dev: the device which switched channels
3785683b6d3bSJohannes Berg  * @chandef: the new channel definition
37865314526bSThomas Pedersen  *
37875314526bSThomas Pedersen  * Acquires wdev_lock, so must only be called from sleepable driver context!
37885314526bSThomas Pedersen  */
3789683b6d3bSJohannes Berg void cfg80211_ch_switch_notify(struct net_device *dev,
3790683b6d3bSJohannes Berg 			       struct cfg80211_chan_def *chandef);
37915314526bSThomas Pedersen 
37925314526bSThomas Pedersen /*
37933475b094SJouni Malinen  * cfg80211_tdls_oper_request - request userspace to perform TDLS operation
37943475b094SJouni Malinen  * @dev: the device on which the operation is requested
37953475b094SJouni Malinen  * @peer: the MAC address of the peer device
37963475b094SJouni Malinen  * @oper: the requested TDLS operation (NL80211_TDLS_SETUP or
37973475b094SJouni Malinen  *	NL80211_TDLS_TEARDOWN)
37983475b094SJouni Malinen  * @reason_code: the reason code for teardown request
37993475b094SJouni Malinen  * @gfp: allocation flags
38003475b094SJouni Malinen  *
38013475b094SJouni Malinen  * This function is used to request userspace to perform TDLS operation that
38023475b094SJouni Malinen  * requires knowledge of keys, i.e., link setup or teardown when the AP
38033475b094SJouni Malinen  * connection uses encryption. This is optional mechanism for the driver to use
38043475b094SJouni Malinen  * if it can automatically determine when a TDLS link could be useful (e.g.,
38053475b094SJouni Malinen  * based on traffic and signal strength for a peer).
38063475b094SJouni Malinen  */
38073475b094SJouni Malinen void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
38083475b094SJouni Malinen 				enum nl80211_tdls_operation oper,
38093475b094SJouni Malinen 				u16 reason_code, gfp_t gfp);
38103475b094SJouni Malinen 
38113475b094SJouni Malinen /*
38128097e149SThomas Pedersen  * cfg80211_calculate_bitrate - calculate actual bitrate (in 100Kbps units)
38138097e149SThomas Pedersen  * @rate: given rate_info to calculate bitrate from
38148097e149SThomas Pedersen  *
38158097e149SThomas Pedersen  * return 0 if MCS index >= 32
38168097e149SThomas Pedersen  */
38178eb41c8dSVladimir Kondratiev u32 cfg80211_calculate_bitrate(struct rate_info *rate);
38188097e149SThomas Pedersen 
381998104fdeSJohannes Berg /**
382098104fdeSJohannes Berg  * cfg80211_unregister_wdev - remove the given wdev
382198104fdeSJohannes Berg  * @wdev: struct wireless_dev to remove
382298104fdeSJohannes Berg  *
382398104fdeSJohannes Berg  * Call this function only for wdevs that have no netdev assigned,
382498104fdeSJohannes Berg  * e.g. P2P Devices. It removes the device from the list so that
382598104fdeSJohannes Berg  * it can no longer be used. It is necessary to call this function
382698104fdeSJohannes Berg  * even when cfg80211 requests the removal of the interface by
382798104fdeSJohannes Berg  * calling the del_virtual_intf() callback. The function must also
382898104fdeSJohannes Berg  * be called when the driver wishes to unregister the wdev, e.g.
382998104fdeSJohannes Berg  * when the device is unbound from the driver.
383098104fdeSJohannes Berg  *
383198104fdeSJohannes Berg  * Requires the RTNL to be held.
383298104fdeSJohannes Berg  */
383398104fdeSJohannes Berg void cfg80211_unregister_wdev(struct wireless_dev *wdev);
383498104fdeSJohannes Berg 
38350ee45355SJohannes Berg /**
38360ee45355SJohannes Berg  * cfg80211_get_p2p_attr - find and copy a P2P attribute from IE buffer
38370ee45355SJohannes Berg  * @ies: the input IE buffer
38380ee45355SJohannes Berg  * @len: the input length
38390ee45355SJohannes Berg  * @attr: the attribute ID to find
38400ee45355SJohannes Berg  * @buf: output buffer, can be %NULL if the data isn't needed, e.g.
38410ee45355SJohannes Berg  *	if the function is only called to get the needed buffer size
38420ee45355SJohannes Berg  * @bufsize: size of the output buffer
38430ee45355SJohannes Berg  *
38440ee45355SJohannes Berg  * The function finds a given P2P attribute in the (vendor) IEs and
38450ee45355SJohannes Berg  * copies its contents to the given buffer.
38460ee45355SJohannes Berg  *
38470ae997dcSYacine Belkadi  * Return: A negative error code (-%EILSEQ or -%ENOENT) if the data is
38480ae997dcSYacine Belkadi  * malformed or the attribute can't be found (respectively), or the
38490ae997dcSYacine Belkadi  * length of the found attribute (which can be zero).
38500ee45355SJohannes Berg  */
3851c216e641SArend van Spriel int cfg80211_get_p2p_attr(const u8 *ies, unsigned int len,
3852c216e641SArend van Spriel 			  enum ieee80211_p2p_attr_id attr,
3853c216e641SArend van Spriel 			  u8 *buf, unsigned int bufsize);
38540ee45355SJohannes Berg 
3855e1db74fcSJoe Perches /* Logging, debugging and troubleshooting/diagnostic helpers. */
3856e1db74fcSJoe Perches 
3857e1db74fcSJoe Perches /* wiphy_printk helpers, similar to dev_printk */
3858e1db74fcSJoe Perches 
3859e1db74fcSJoe Perches #define wiphy_printk(level, wiphy, format, args...)		\
38609c376639SJoe Perches 	dev_printk(level, &(wiphy)->dev, format, ##args)
3861e1db74fcSJoe Perches #define wiphy_emerg(wiphy, format, args...)			\
38629c376639SJoe Perches 	dev_emerg(&(wiphy)->dev, format, ##args)
3863e1db74fcSJoe Perches #define wiphy_alert(wiphy, format, args...)			\
38649c376639SJoe Perches 	dev_alert(&(wiphy)->dev, format, ##args)
3865e1db74fcSJoe Perches #define wiphy_crit(wiphy, format, args...)			\
38669c376639SJoe Perches 	dev_crit(&(wiphy)->dev, format, ##args)
3867e1db74fcSJoe Perches #define wiphy_err(wiphy, format, args...)			\
38689c376639SJoe Perches 	dev_err(&(wiphy)->dev, format, ##args)
3869e1db74fcSJoe Perches #define wiphy_warn(wiphy, format, args...)			\
38709c376639SJoe Perches 	dev_warn(&(wiphy)->dev, format, ##args)
3871e1db74fcSJoe Perches #define wiphy_notice(wiphy, format, args...)			\
38729c376639SJoe Perches 	dev_notice(&(wiphy)->dev, format, ##args)
3873e1db74fcSJoe Perches #define wiphy_info(wiphy, format, args...)			\
38749c376639SJoe Perches 	dev_info(&(wiphy)->dev, format, ##args)
3875073730d7SJoe Perches 
38769c376639SJoe Perches #define wiphy_debug(wiphy, format, args...)			\
3877e1db74fcSJoe Perches 	wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
38789c376639SJoe Perches 
3879e1db74fcSJoe Perches #define wiphy_dbg(wiphy, format, args...)			\
38809c376639SJoe Perches 	dev_dbg(&(wiphy)->dev, format, ##args)
3881e1db74fcSJoe Perches 
3882e1db74fcSJoe Perches #if defined(VERBOSE_DEBUG)
3883e1db74fcSJoe Perches #define wiphy_vdbg	wiphy_dbg
3884e1db74fcSJoe Perches #else
3885e1db74fcSJoe Perches #define wiphy_vdbg(wiphy, format, args...)				\
3886e1db74fcSJoe Perches ({									\
3887e1db74fcSJoe Perches 	if (0)								\
3888e1db74fcSJoe Perches 		wiphy_printk(KERN_DEBUG, wiphy, format, ##args);	\
3889e1db74fcSJoe Perches 	0;								\
3890e1db74fcSJoe Perches })
3891e1db74fcSJoe Perches #endif
3892e1db74fcSJoe Perches 
3893e1db74fcSJoe Perches /*
3894e1db74fcSJoe Perches  * wiphy_WARN() acts like wiphy_printk(), but with the key difference
3895e1db74fcSJoe Perches  * of using a WARN/WARN_ON to get the message out, including the
3896e1db74fcSJoe Perches  * file/line information and a backtrace.
3897e1db74fcSJoe Perches  */
3898e1db74fcSJoe Perches #define wiphy_WARN(wiphy, format, args...)			\
3899e1db74fcSJoe Perches 	WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
3900e1db74fcSJoe Perches 
3901704232c2SJohannes Berg #endif /* __NET_CFG80211_H */
3902