xref: /linux/include/net/cfg80211.h (revision bbe6ad6dcb1eb26bd12ec85320f402721c3383ae)
1704232c2SJohannes Berg #ifndef __NET_CFG80211_H
2704232c2SJohannes Berg #define __NET_CFG80211_H
3d3236553SJohannes Berg /*
4d3236553SJohannes Berg  * 802.11 device and configuration interface
5d3236553SJohannes Berg  *
6026331c4SJouni Malinen  * Copyright 2006-2010	Johannes Berg <johannes@sipsolutions.net>
7d3236553SJohannes Berg  *
8d3236553SJohannes Berg  * This program is free software; you can redistribute it and/or modify
9d3236553SJohannes Berg  * it under the terms of the GNU General Public License version 2 as
10d3236553SJohannes Berg  * published by the Free Software Foundation.
11d3236553SJohannes Berg  */
12704232c2SJohannes Berg 
13d3236553SJohannes Berg #include <linux/netdevice.h>
14d3236553SJohannes Berg #include <linux/debugfs.h>
15d3236553SJohannes Berg #include <linux/list.h>
16704232c2SJohannes Berg #include <linux/netlink.h>
17704232c2SJohannes Berg #include <linux/skbuff.h>
1855682965SJohannes Berg #include <linux/nl80211.h>
192a519311SJohannes Berg #include <linux/if_ether.h>
202a519311SJohannes Berg #include <linux/ieee80211.h>
21d3236553SJohannes Berg #include <net/regulatory.h>
22d3236553SJohannes Berg 
23fee52678SJohannes Berg /* remove once we remove the wext stuff */
24d3236553SJohannes Berg #include <net/iw_handler.h>
25d3236553SJohannes Berg #include <linux/wireless.h>
26d3236553SJohannes Berg 
27704232c2SJohannes Berg 
28d70e9693SJohannes Berg /**
29d70e9693SJohannes Berg  * DOC: Introduction
30d70e9693SJohannes Berg  *
31d70e9693SJohannes Berg  * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
32d70e9693SJohannes Berg  * userspace and drivers, and offers some utility functionality associated
33d70e9693SJohannes Berg  * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
34d70e9693SJohannes Berg  * by all modern wireless drivers in Linux, so that they offer a consistent
35d70e9693SJohannes Berg  * API through nl80211. For backward compatibility, cfg80211 also offers
36d70e9693SJohannes Berg  * wireless extensions to userspace, but hides them from drivers completely.
37d70e9693SJohannes Berg  *
38d70e9693SJohannes Berg  * Additionally, cfg80211 contains code to help enforce regulatory spectrum
39d70e9693SJohannes Berg  * use restrictions.
40d70e9693SJohannes Berg  */
41d70e9693SJohannes Berg 
42d70e9693SJohannes Berg 
43d70e9693SJohannes Berg /**
44d70e9693SJohannes Berg  * DOC: Device registration
45d70e9693SJohannes Berg  *
46d70e9693SJohannes Berg  * In order for a driver to use cfg80211, it must register the hardware device
47d70e9693SJohannes Berg  * with cfg80211. This happens through a number of hardware capability structs
48d70e9693SJohannes Berg  * described below.
49d70e9693SJohannes Berg  *
50d70e9693SJohannes Berg  * The fundamental structure for each device is the 'wiphy', of which each
51d70e9693SJohannes Berg  * instance describes a physical wireless device connected to the system. Each
52d70e9693SJohannes Berg  * such wiphy can have zero, one, or many virtual interfaces associated with
53d70e9693SJohannes Berg  * it, which need to be identified as such by pointing the network interface's
54d70e9693SJohannes Berg  * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
55d70e9693SJohannes Berg  * the wireless part of the interface, normally this struct is embedded in the
56d70e9693SJohannes Berg  * network interface's private data area. Drivers can optionally allow creating
57d70e9693SJohannes Berg  * or destroying virtual interfaces on the fly, but without at least one or the
58d70e9693SJohannes Berg  * ability to create some the wireless device isn't useful.
59d70e9693SJohannes Berg  *
60d70e9693SJohannes Berg  * Each wiphy structure contains device capability information, and also has
61d70e9693SJohannes Berg  * a pointer to the various operations the driver offers. The definitions and
62d70e9693SJohannes Berg  * structures here describe these capabilities in detail.
63d70e9693SJohannes Berg  */
64d70e9693SJohannes Berg 
65704232c2SJohannes Berg /*
66d3236553SJohannes Berg  * wireless hardware capability structures
67d3236553SJohannes Berg  */
68d3236553SJohannes Berg 
69d3236553SJohannes Berg /**
70d3236553SJohannes Berg  * enum ieee80211_band - supported frequency bands
71704232c2SJohannes Berg  *
72d3236553SJohannes Berg  * The bands are assigned this way because the supported
73d3236553SJohannes Berg  * bitrates differ in these bands.
74d3236553SJohannes Berg  *
75d3236553SJohannes Berg  * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band
76d3236553SJohannes Berg  * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7)
77abe37c4bSJohannes Berg  * @IEEE80211_NUM_BANDS: number of defined bands
78d3236553SJohannes Berg  */
79d3236553SJohannes Berg enum ieee80211_band {
8013ae75b1SJouni Malinen 	IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ,
8113ae75b1SJouni Malinen 	IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ,
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.
101d3236553SJohannes Berg  */
102d3236553SJohannes Berg enum ieee80211_channel_flags {
103d3236553SJohannes Berg 	IEEE80211_CHAN_DISABLED		= 1<<0,
104d3236553SJohannes Berg 	IEEE80211_CHAN_PASSIVE_SCAN	= 1<<1,
105d3236553SJohannes Berg 	IEEE80211_CHAN_NO_IBSS		= 1<<2,
106d3236553SJohannes Berg 	IEEE80211_CHAN_RADAR		= 1<<3,
107689da1b3SLuis R. Rodriguez 	IEEE80211_CHAN_NO_HT40PLUS	= 1<<4,
108689da1b3SLuis R. Rodriguez 	IEEE80211_CHAN_NO_HT40MINUS	= 1<<5,
109d3236553SJohannes Berg };
110d3236553SJohannes Berg 
111038659e7SLuis R. Rodriguez #define IEEE80211_CHAN_NO_HT40 \
112689da1b3SLuis R. Rodriguez 	(IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
113038659e7SLuis R. Rodriguez 
114d3236553SJohannes Berg /**
115d3236553SJohannes Berg  * struct ieee80211_channel - channel definition
116d3236553SJohannes Berg  *
117d3236553SJohannes Berg  * This structure describes a single channel for use
118d3236553SJohannes Berg  * with cfg80211.
119d3236553SJohannes Berg  *
120d3236553SJohannes Berg  * @center_freq: center frequency in MHz
121d3236553SJohannes Berg  * @hw_value: hardware-specific value for the channel
122d3236553SJohannes Berg  * @flags: channel flags from &enum ieee80211_channel_flags.
123d3236553SJohannes Berg  * @orig_flags: channel flags at registration time, used by regulatory
124d3236553SJohannes Berg  *	code to support devices with additional restrictions
125d3236553SJohannes Berg  * @band: band this channel belongs to.
126d3236553SJohannes Berg  * @max_antenna_gain: maximum antenna gain in dBi
127d3236553SJohannes Berg  * @max_power: maximum transmission power (in dBm)
128d3236553SJohannes Berg  * @beacon_found: helper to regulatory code to indicate when a beacon
129d3236553SJohannes Berg  *	has been found on this channel. Use regulatory_hint_found_beacon()
13077c2061dSWalter Goldens  *	to enable this, this is useful only on 5 GHz band.
131d3236553SJohannes Berg  * @orig_mag: internal use
132d3236553SJohannes Berg  * @orig_mpwr: internal use
133d3236553SJohannes Berg  */
134d3236553SJohannes Berg struct ieee80211_channel {
135d3236553SJohannes Berg 	enum ieee80211_band band;
136d3236553SJohannes Berg 	u16 center_freq;
137d3236553SJohannes Berg 	u16 hw_value;
138d3236553SJohannes Berg 	u32 flags;
139d3236553SJohannes Berg 	int max_antenna_gain;
140d3236553SJohannes Berg 	int max_power;
141d3236553SJohannes Berg 	bool beacon_found;
142d3236553SJohannes Berg 	u32 orig_flags;
143d3236553SJohannes Berg 	int orig_mag, orig_mpwr;
144d3236553SJohannes Berg };
145d3236553SJohannes Berg 
146d3236553SJohannes Berg /**
147d3236553SJohannes Berg  * enum ieee80211_rate_flags - rate flags
148d3236553SJohannes Berg  *
149d3236553SJohannes Berg  * Hardware/specification flags for rates. These are structured
150d3236553SJohannes Berg  * in a way that allows using the same bitrate structure for
151d3236553SJohannes Berg  * different bands/PHY modes.
152d3236553SJohannes Berg  *
153d3236553SJohannes Berg  * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
154d3236553SJohannes Berg  *	preamble on this bitrate; only relevant in 2.4GHz band and
155d3236553SJohannes Berg  *	with CCK rates.
156d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
157d3236553SJohannes Berg  *	when used with 802.11a (on the 5 GHz band); filled by the
158d3236553SJohannes Berg  *	core code when registering the wiphy.
159d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
160d3236553SJohannes Berg  *	when used with 802.11b (on the 2.4 GHz band); filled by the
161d3236553SJohannes Berg  *	core code when registering the wiphy.
162d3236553SJohannes Berg  * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
163d3236553SJohannes Berg  *	when used with 802.11g (on the 2.4 GHz band); filled by the
164d3236553SJohannes Berg  *	core code when registering the wiphy.
165d3236553SJohannes Berg  * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
166d3236553SJohannes Berg  */
167d3236553SJohannes Berg enum ieee80211_rate_flags {
168d3236553SJohannes Berg 	IEEE80211_RATE_SHORT_PREAMBLE	= 1<<0,
169d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_A	= 1<<1,
170d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_B	= 1<<2,
171d3236553SJohannes Berg 	IEEE80211_RATE_MANDATORY_G	= 1<<3,
172d3236553SJohannes Berg 	IEEE80211_RATE_ERP_G		= 1<<4,
173d3236553SJohannes Berg };
174d3236553SJohannes Berg 
175d3236553SJohannes Berg /**
176d3236553SJohannes Berg  * struct ieee80211_rate - bitrate definition
177d3236553SJohannes Berg  *
178d3236553SJohannes Berg  * This structure describes a bitrate that an 802.11 PHY can
179d3236553SJohannes Berg  * operate with. The two values @hw_value and @hw_value_short
180d3236553SJohannes Berg  * are only for driver use when pointers to this structure are
181d3236553SJohannes Berg  * passed around.
182d3236553SJohannes Berg  *
183d3236553SJohannes Berg  * @flags: rate-specific flags
184d3236553SJohannes Berg  * @bitrate: bitrate in units of 100 Kbps
185d3236553SJohannes Berg  * @hw_value: driver/hardware value for this rate
186d3236553SJohannes Berg  * @hw_value_short: driver/hardware value for this rate when
187d3236553SJohannes Berg  *	short preamble is used
188d3236553SJohannes Berg  */
189d3236553SJohannes Berg struct ieee80211_rate {
190d3236553SJohannes Berg 	u32 flags;
191d3236553SJohannes Berg 	u16 bitrate;
192d3236553SJohannes Berg 	u16 hw_value, hw_value_short;
193d3236553SJohannes Berg };
194d3236553SJohannes Berg 
195d3236553SJohannes Berg /**
196d3236553SJohannes Berg  * struct ieee80211_sta_ht_cap - STA's HT capabilities
197d3236553SJohannes Berg  *
198d3236553SJohannes Berg  * This structure describes most essential parameters needed
199d3236553SJohannes Berg  * to describe 802.11n HT capabilities for an STA.
200d3236553SJohannes Berg  *
201d3236553SJohannes Berg  * @ht_supported: is HT supported by the STA
202d3236553SJohannes Berg  * @cap: HT capabilities map as described in 802.11n spec
203d3236553SJohannes Berg  * @ampdu_factor: Maximum A-MPDU length factor
204d3236553SJohannes Berg  * @ampdu_density: Minimum A-MPDU spacing
205d3236553SJohannes Berg  * @mcs: Supported MCS rates
206d3236553SJohannes Berg  */
207d3236553SJohannes Berg struct ieee80211_sta_ht_cap {
208d3236553SJohannes Berg 	u16 cap; /* use IEEE80211_HT_CAP_ */
209d3236553SJohannes Berg 	bool ht_supported;
210d3236553SJohannes Berg 	u8 ampdu_factor;
211d3236553SJohannes Berg 	u8 ampdu_density;
212d3236553SJohannes Berg 	struct ieee80211_mcs_info mcs;
213d3236553SJohannes Berg };
214d3236553SJohannes Berg 
215d3236553SJohannes Berg /**
216d3236553SJohannes Berg  * struct ieee80211_supported_band - frequency band definition
217d3236553SJohannes Berg  *
218d3236553SJohannes Berg  * This structure describes a frequency band a wiphy
219d3236553SJohannes Berg  * is able to operate in.
220d3236553SJohannes Berg  *
221d3236553SJohannes Berg  * @channels: Array of channels the hardware can operate in
222d3236553SJohannes Berg  *	in this band.
223d3236553SJohannes Berg  * @band: the band this structure represents
224d3236553SJohannes Berg  * @n_channels: Number of channels in @channels
225d3236553SJohannes Berg  * @bitrates: Array of bitrates the hardware can operate with
226d3236553SJohannes Berg  *	in this band. Must be sorted to give a valid "supported
227d3236553SJohannes Berg  *	rates" IE, i.e. CCK rates first, then OFDM.
228d3236553SJohannes Berg  * @n_bitrates: Number of bitrates in @bitrates
229abe37c4bSJohannes Berg  * @ht_cap: HT capabilities in this band
230d3236553SJohannes Berg  */
231d3236553SJohannes Berg struct ieee80211_supported_band {
232d3236553SJohannes Berg 	struct ieee80211_channel *channels;
233d3236553SJohannes Berg 	struct ieee80211_rate *bitrates;
234d3236553SJohannes Berg 	enum ieee80211_band band;
235d3236553SJohannes Berg 	int n_channels;
236d3236553SJohannes Berg 	int n_bitrates;
237d3236553SJohannes Berg 	struct ieee80211_sta_ht_cap ht_cap;
238d3236553SJohannes Berg };
239d3236553SJohannes Berg 
240d3236553SJohannes Berg /*
241d3236553SJohannes Berg  * Wireless hardware/device configuration structures and methods
242704232c2SJohannes Berg  */
243704232c2SJohannes Berg 
2442ec600d6SLuis Carlos Cobo /**
245d70e9693SJohannes Berg  * DOC: Actions and configuration
246d70e9693SJohannes Berg  *
247d70e9693SJohannes Berg  * Each wireless device and each virtual interface offer a set of configuration
248d70e9693SJohannes Berg  * operations and other actions that are invoked by userspace. Each of these
249d70e9693SJohannes Berg  * actions is described in the operations structure, and the parameters these
250d70e9693SJohannes Berg  * operations use are described separately.
251d70e9693SJohannes Berg  *
252d70e9693SJohannes Berg  * Additionally, some operations are asynchronous and expect to get status
253d70e9693SJohannes Berg  * information via some functions that drivers need to call.
254d70e9693SJohannes Berg  *
255d70e9693SJohannes Berg  * Scanning and BSS list handling with its associated functionality is described
256d70e9693SJohannes Berg  * in a separate chapter.
257d70e9693SJohannes Berg  */
258d70e9693SJohannes Berg 
259d70e9693SJohannes Berg /**
2602ec600d6SLuis Carlos Cobo  * struct vif_params - describes virtual interface parameters
2618b787643SFelix Fietkau  * @use_4addr: use 4-address frames
2622ec600d6SLuis Carlos Cobo  */
2632ec600d6SLuis Carlos Cobo struct vif_params {
2648b787643SFelix Fietkau        int use_4addr;
2652ec600d6SLuis Carlos Cobo };
2662ec600d6SLuis Carlos Cobo 
26741ade00fSJohannes Berg /**
26841ade00fSJohannes Berg  * struct key_params - key information
26941ade00fSJohannes Berg  *
27041ade00fSJohannes Berg  * Information about a key
27141ade00fSJohannes Berg  *
27241ade00fSJohannes Berg  * @key: key material
27341ade00fSJohannes Berg  * @key_len: length of key material
27441ade00fSJohannes Berg  * @cipher: cipher suite selector
27541ade00fSJohannes Berg  * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
27641ade00fSJohannes Berg  *	with the get_key() callback, must be in little endian,
27741ade00fSJohannes Berg  *	length given by @seq_len.
278abe37c4bSJohannes Berg  * @seq_len: length of @seq.
27941ade00fSJohannes Berg  */
28041ade00fSJohannes Berg struct key_params {
28141ade00fSJohannes Berg 	u8 *key;
28241ade00fSJohannes Berg 	u8 *seq;
28341ade00fSJohannes Berg 	int key_len;
28441ade00fSJohannes Berg 	int seq_len;
28541ade00fSJohannes Berg 	u32 cipher;
28641ade00fSJohannes Berg };
28741ade00fSJohannes Berg 
288ed1b6cc7SJohannes Berg /**
28961fa713cSHolger Schurig  * enum survey_info_flags - survey information flags
29061fa713cSHolger Schurig  *
291abe37c4bSJohannes Berg  * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
29217e5a808SFelix Fietkau  * @SURVEY_INFO_IN_USE: channel is currently being used
2938610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME: channel active time (in ms) was filled in
2948610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_BUSY: channel busy time was filled in
2958610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_EXT_BUSY: extension channel busy time was filled in
2968610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_RX: channel receive time was filled in
2978610c29aSFelix Fietkau  * @SURVEY_INFO_CHANNEL_TIME_TX: channel transmit time was filled in
298abe37c4bSJohannes Berg  *
29961fa713cSHolger Schurig  * Used by the driver to indicate which info in &struct survey_info
30061fa713cSHolger Schurig  * it has filled in during the get_survey().
30161fa713cSHolger Schurig  */
30261fa713cSHolger Schurig enum survey_info_flags {
30361fa713cSHolger Schurig 	SURVEY_INFO_NOISE_DBM = 1<<0,
30417e5a808SFelix Fietkau 	SURVEY_INFO_IN_USE = 1<<1,
3058610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME = 1<<2,
3068610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_BUSY = 1<<3,
3078610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_EXT_BUSY = 1<<4,
3088610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_RX = 1<<5,
3098610c29aSFelix Fietkau 	SURVEY_INFO_CHANNEL_TIME_TX = 1<<6,
31061fa713cSHolger Schurig };
31161fa713cSHolger Schurig 
31261fa713cSHolger Schurig /**
31361fa713cSHolger Schurig  * struct survey_info - channel survey response
31461fa713cSHolger Schurig  *
31561fa713cSHolger Schurig  * @channel: the channel this survey record reports, mandatory
31661fa713cSHolger Schurig  * @filled: bitflag of flags from &enum survey_info_flags
31761fa713cSHolger Schurig  * @noise: channel noise in dBm. This and all following fields are
31861fa713cSHolger Schurig  *     optional
3198610c29aSFelix Fietkau  * @channel_time: amount of time in ms the radio spent on the channel
3208610c29aSFelix Fietkau  * @channel_time_busy: amount of time the primary channel was sensed busy
3218610c29aSFelix Fietkau  * @channel_time_ext_busy: amount of time the extension channel was sensed busy
3228610c29aSFelix Fietkau  * @channel_time_rx: amount of time the radio spent receiving data
3238610c29aSFelix Fietkau  * @channel_time_tx: amount of time the radio spent transmitting data
32461fa713cSHolger Schurig  *
325abe37c4bSJohannes Berg  * Used by dump_survey() to report back per-channel survey information.
326abe37c4bSJohannes Berg  *
32761fa713cSHolger Schurig  * This structure can later be expanded with things like
32861fa713cSHolger Schurig  * channel duty cycle etc.
32961fa713cSHolger Schurig  */
33061fa713cSHolger Schurig struct survey_info {
33161fa713cSHolger Schurig 	struct ieee80211_channel *channel;
3328610c29aSFelix Fietkau 	u64 channel_time;
3338610c29aSFelix Fietkau 	u64 channel_time_busy;
3348610c29aSFelix Fietkau 	u64 channel_time_ext_busy;
3358610c29aSFelix Fietkau 	u64 channel_time_rx;
3368610c29aSFelix Fietkau 	u64 channel_time_tx;
33761fa713cSHolger Schurig 	u32 filled;
33861fa713cSHolger Schurig 	s8 noise;
33961fa713cSHolger Schurig };
34061fa713cSHolger Schurig 
34161fa713cSHolger Schurig /**
342ed1b6cc7SJohannes Berg  * struct beacon_parameters - beacon parameters
343ed1b6cc7SJohannes Berg  *
344ed1b6cc7SJohannes Berg  * Used to configure the beacon for an interface.
345ed1b6cc7SJohannes Berg  *
346ed1b6cc7SJohannes Berg  * @head: head portion of beacon (before TIM IE)
347ed1b6cc7SJohannes Berg  *     or %NULL if not changed
348ed1b6cc7SJohannes Berg  * @tail: tail portion of beacon (after TIM IE)
349ed1b6cc7SJohannes Berg  *     or %NULL if not changed
350ed1b6cc7SJohannes Berg  * @interval: beacon interval or zero if not changed
351ed1b6cc7SJohannes Berg  * @dtim_period: DTIM period or zero if not changed
352ed1b6cc7SJohannes Berg  * @head_len: length of @head
353ed1b6cc7SJohannes Berg  * @tail_len: length of @tail
354ed1b6cc7SJohannes Berg  */
355ed1b6cc7SJohannes Berg struct beacon_parameters {
356ed1b6cc7SJohannes Berg 	u8 *head, *tail;
357ed1b6cc7SJohannes Berg 	int interval, dtim_period;
358ed1b6cc7SJohannes Berg 	int head_len, tail_len;
359ed1b6cc7SJohannes Berg };
360ed1b6cc7SJohannes Berg 
3615727ef1bSJohannes Berg /**
3622ec600d6SLuis Carlos Cobo  * enum plink_action - actions to perform in mesh peers
3632ec600d6SLuis Carlos Cobo  *
3642ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_INVALID: action 0 is reserved
3652ec600d6SLuis Carlos Cobo  * @PLINK_ACTION_OPEN: start mesh peer link establishment
366abe37c4bSJohannes Berg  * @PLINK_ACTION_BLOCK: block traffic from this mesh peer
3672ec600d6SLuis Carlos Cobo  */
3682ec600d6SLuis Carlos Cobo enum plink_actions {
3692ec600d6SLuis Carlos Cobo 	PLINK_ACTION_INVALID,
3702ec600d6SLuis Carlos Cobo 	PLINK_ACTION_OPEN,
3712ec600d6SLuis Carlos Cobo 	PLINK_ACTION_BLOCK,
3722ec600d6SLuis Carlos Cobo };
3732ec600d6SLuis Carlos Cobo 
3742ec600d6SLuis Carlos Cobo /**
3759c3990aaSJavier Cardona  * enum plink_states - state of a mesh peer link finite state machine
3769c3990aaSJavier Cardona  *
3779c3990aaSJavier Cardona  * @PLINK_LISTEN: initial state, considered the implicit state of non
3789c3990aaSJavier Cardona  * existant mesh peer links
3799c3990aaSJavier Cardona  * @PLINK_OPN_SNT: mesh plink open frame has been sent to this mesh
3809c3990aaSJavier Cardona  * peer @PLINK_OPN_RCVD: mesh plink open frame has been received from
3819c3990aaSJavier Cardona  * this mesh peer
3829c3990aaSJavier Cardona  * @PLINK_CNF_RCVD: mesh plink confirm frame has been received from
3839c3990aaSJavier Cardona  * this mesh peer
3849c3990aaSJavier Cardona  * @PLINK_ESTAB: mesh peer link is established
3859c3990aaSJavier Cardona  * @PLINK_HOLDING: mesh peer link is being closed or cancelled
3869c3990aaSJavier Cardona  * @PLINK_BLOCKED: all frames transmitted from this mesh plink are
3879c3990aaSJavier Cardona  * discarded
3889c3990aaSJavier Cardona  * @PLINK_INVALID: reserved
3899c3990aaSJavier Cardona  */
3909c3990aaSJavier Cardona enum plink_state {
3919c3990aaSJavier Cardona 	PLINK_LISTEN,
3929c3990aaSJavier Cardona 	PLINK_OPN_SNT,
3939c3990aaSJavier Cardona 	PLINK_OPN_RCVD,
3949c3990aaSJavier Cardona 	PLINK_CNF_RCVD,
3959c3990aaSJavier Cardona 	PLINK_ESTAB,
3969c3990aaSJavier Cardona 	PLINK_HOLDING,
3979c3990aaSJavier Cardona 	PLINK_BLOCKED,
3989c3990aaSJavier Cardona 	PLINK_INVALID,
3999c3990aaSJavier Cardona };
4009c3990aaSJavier Cardona 
4019c3990aaSJavier Cardona /**
4025727ef1bSJohannes Berg  * struct station_parameters - station parameters
4035727ef1bSJohannes Berg  *
4045727ef1bSJohannes Berg  * Used to change and create a new station.
4055727ef1bSJohannes Berg  *
4065727ef1bSJohannes Berg  * @vlan: vlan interface station should belong to
4075727ef1bSJohannes Berg  * @supported_rates: supported rates in IEEE 802.11 format
4085727ef1bSJohannes Berg  *	(or NULL for no change)
4095727ef1bSJohannes Berg  * @supported_rates_len: number of supported rates
410eccb8e8fSJohannes Berg  * @sta_flags_mask: station flags that changed
411eccb8e8fSJohannes Berg  *	(bitmask of BIT(NL80211_STA_FLAG_...))
412eccb8e8fSJohannes Berg  * @sta_flags_set: station flags values
413eccb8e8fSJohannes Berg  *	(bitmask of BIT(NL80211_STA_FLAG_...))
4145727ef1bSJohannes Berg  * @listen_interval: listen interval or -1 for no change
4155727ef1bSJohannes Berg  * @aid: AID or zero for no change
416abe37c4bSJohannes Berg  * @plink_action: plink action to take
4179c3990aaSJavier Cardona  * @plink_state: set the peer link state for a station
418abe37c4bSJohannes Berg  * @ht_capa: HT capabilities of station
4195727ef1bSJohannes Berg  */
4205727ef1bSJohannes Berg struct station_parameters {
4215727ef1bSJohannes Berg 	u8 *supported_rates;
4225727ef1bSJohannes Berg 	struct net_device *vlan;
423eccb8e8fSJohannes Berg 	u32 sta_flags_mask, sta_flags_set;
4245727ef1bSJohannes Berg 	int listen_interval;
4255727ef1bSJohannes Berg 	u16 aid;
4265727ef1bSJohannes Berg 	u8 supported_rates_len;
4272ec600d6SLuis Carlos Cobo 	u8 plink_action;
4289c3990aaSJavier Cardona 	u8 plink_state;
42936aedc90SJouni Malinen 	struct ieee80211_ht_cap *ht_capa;
4305727ef1bSJohannes Berg };
4315727ef1bSJohannes Berg 
432fd5b74dcSJohannes Berg /**
4332ec600d6SLuis Carlos Cobo  * enum station_info_flags - station information flags
434fd5b74dcSJohannes Berg  *
4352ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct station_info
4362ec600d6SLuis Carlos Cobo  * it has filled in during get_station() or dump_station().
437fd5b74dcSJohannes Berg  *
4382ec600d6SLuis Carlos Cobo  * @STATION_INFO_INACTIVE_TIME: @inactive_time filled
4392ec600d6SLuis Carlos Cobo  * @STATION_INFO_RX_BYTES: @rx_bytes filled
4402ec600d6SLuis Carlos Cobo  * @STATION_INFO_TX_BYTES: @tx_bytes filled
4412ec600d6SLuis Carlos Cobo  * @STATION_INFO_LLID: @llid filled
4422ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLID: @plid filled
4432ec600d6SLuis Carlos Cobo  * @STATION_INFO_PLINK_STATE: @plink_state filled
444420e7fabSHenning Rogge  * @STATION_INFO_SIGNAL: @signal filled
445c8dcfd8aSFelix Fietkau  * @STATION_INFO_TX_BITRATE: @txrate fields are filled
446420e7fabSHenning Rogge  *  (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs)
44798c8a60aSJouni Malinen  * @STATION_INFO_RX_PACKETS: @rx_packets filled
44898c8a60aSJouni Malinen  * @STATION_INFO_TX_PACKETS: @tx_packets filled
449b206b4efSBruno Randolf  * @STATION_INFO_TX_RETRIES: @tx_retries filled
450b206b4efSBruno Randolf  * @STATION_INFO_TX_FAILED: @tx_failed filled
4515a5c731aSBen Greear  * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled
452541a45a1SBruno Randolf  * @STATION_INFO_SIGNAL_AVG: @signal_avg filled
453c8dcfd8aSFelix Fietkau  * @STATION_INFO_RX_BITRATE: @rxrate fields are filled
454f4263c98SPaul Stewart  * @STATION_INFO_BSS_PARAM: @bss_param filled
455ebe27c91SMohammed Shafi Shajakhan  * @STATION_INFO_CONNECTED_TIME: @connected_time filled
456fd5b74dcSJohannes Berg  */
4572ec600d6SLuis Carlos Cobo enum station_info_flags {
4582ec600d6SLuis Carlos Cobo 	STATION_INFO_INACTIVE_TIME	= 1<<0,
4592ec600d6SLuis Carlos Cobo 	STATION_INFO_RX_BYTES		= 1<<1,
4602ec600d6SLuis Carlos Cobo 	STATION_INFO_TX_BYTES		= 1<<2,
4612ec600d6SLuis Carlos Cobo 	STATION_INFO_LLID		= 1<<3,
4622ec600d6SLuis Carlos Cobo 	STATION_INFO_PLID		= 1<<4,
4632ec600d6SLuis Carlos Cobo 	STATION_INFO_PLINK_STATE	= 1<<5,
464420e7fabSHenning Rogge 	STATION_INFO_SIGNAL		= 1<<6,
465420e7fabSHenning Rogge 	STATION_INFO_TX_BITRATE		= 1<<7,
46698c8a60aSJouni Malinen 	STATION_INFO_RX_PACKETS		= 1<<8,
46798c8a60aSJouni Malinen 	STATION_INFO_TX_PACKETS		= 1<<9,
468b206b4efSBruno Randolf 	STATION_INFO_TX_RETRIES		= 1<<10,
469b206b4efSBruno Randolf 	STATION_INFO_TX_FAILED		= 1<<11,
4705a5c731aSBen Greear 	STATION_INFO_RX_DROP_MISC	= 1<<12,
471541a45a1SBruno Randolf 	STATION_INFO_SIGNAL_AVG		= 1<<13,
472c8dcfd8aSFelix Fietkau 	STATION_INFO_RX_BITRATE		= 1<<14,
473f4263c98SPaul Stewart 	STATION_INFO_BSS_PARAM          = 1<<15,
474ebe27c91SMohammed Shafi Shajakhan 	STATION_INFO_CONNECTED_TIME	= 1<<16
475420e7fabSHenning Rogge };
476420e7fabSHenning Rogge 
477420e7fabSHenning Rogge /**
478420e7fabSHenning Rogge  * enum station_info_rate_flags - bitrate info flags
479420e7fabSHenning Rogge  *
480420e7fabSHenning Rogge  * Used by the driver to indicate the specific rate transmission
481420e7fabSHenning Rogge  * type for 802.11n transmissions.
482420e7fabSHenning Rogge  *
483420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_MCS: @tx_bitrate_mcs filled
484420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 Mhz width transmission
485420e7fabSHenning Rogge  * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
486420e7fabSHenning Rogge  */
487420e7fabSHenning Rogge enum rate_info_flags {
488420e7fabSHenning Rogge 	RATE_INFO_FLAGS_MCS		= 1<<0,
489420e7fabSHenning Rogge 	RATE_INFO_FLAGS_40_MHZ_WIDTH	= 1<<1,
490420e7fabSHenning Rogge 	RATE_INFO_FLAGS_SHORT_GI	= 1<<2,
491420e7fabSHenning Rogge };
492420e7fabSHenning Rogge 
493420e7fabSHenning Rogge /**
494420e7fabSHenning Rogge  * struct rate_info - bitrate information
495420e7fabSHenning Rogge  *
496420e7fabSHenning Rogge  * Information about a receiving or transmitting bitrate
497420e7fabSHenning Rogge  *
498420e7fabSHenning Rogge  * @flags: bitflag of flags from &enum rate_info_flags
499420e7fabSHenning Rogge  * @mcs: mcs index if struct describes a 802.11n bitrate
500420e7fabSHenning Rogge  * @legacy: bitrate in 100kbit/s for 802.11abg
501420e7fabSHenning Rogge  */
502420e7fabSHenning Rogge struct rate_info {
503420e7fabSHenning Rogge 	u8 flags;
504420e7fabSHenning Rogge 	u8 mcs;
505420e7fabSHenning Rogge 	u16 legacy;
506fd5b74dcSJohannes Berg };
507fd5b74dcSJohannes Berg 
508fd5b74dcSJohannes Berg /**
509f4263c98SPaul Stewart  * enum station_info_rate_flags - bitrate info flags
510f4263c98SPaul Stewart  *
511f4263c98SPaul Stewart  * Used by the driver to indicate the specific rate transmission
512f4263c98SPaul Stewart  * type for 802.11n transmissions.
513f4263c98SPaul Stewart  *
514f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
515f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
516f4263c98SPaul Stewart  * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
517f4263c98SPaul Stewart  */
518f4263c98SPaul Stewart enum bss_param_flags {
519f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_CTS_PROT	= 1<<0,
520f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_SHORT_PREAMBLE	= 1<<1,
521f4263c98SPaul Stewart 	BSS_PARAM_FLAGS_SHORT_SLOT_TIME	= 1<<2,
522f4263c98SPaul Stewart };
523f4263c98SPaul Stewart 
524f4263c98SPaul Stewart /**
525f4263c98SPaul Stewart  * struct sta_bss_parameters - BSS parameters for the attached station
526f4263c98SPaul Stewart  *
527f4263c98SPaul Stewart  * Information about the currently associated BSS
528f4263c98SPaul Stewart  *
529f4263c98SPaul Stewart  * @flags: bitflag of flags from &enum bss_param_flags
530f4263c98SPaul Stewart  * @dtim_period: DTIM period for the BSS
531f4263c98SPaul Stewart  * @beacon_interval: beacon interval
532f4263c98SPaul Stewart  */
533f4263c98SPaul Stewart struct sta_bss_parameters {
534f4263c98SPaul Stewart 	u8 flags;
535f4263c98SPaul Stewart 	u8 dtim_period;
536f4263c98SPaul Stewart 	u16 beacon_interval;
537f4263c98SPaul Stewart };
538f4263c98SPaul Stewart 
539f4263c98SPaul Stewart /**
5402ec600d6SLuis Carlos Cobo  * struct station_info - station information
541fd5b74dcSJohannes Berg  *
5422ec600d6SLuis Carlos Cobo  * Station information filled by driver for get_station() and dump_station.
543fd5b74dcSJohannes Berg  *
5442ec600d6SLuis Carlos Cobo  * @filled: bitflag of flags from &enum station_info_flags
545ebe27c91SMohammed Shafi Shajakhan  * @connected_time: time(in secs) since a station is last connected
546fd5b74dcSJohannes Berg  * @inactive_time: time since last station activity (tx/rx) in milliseconds
547fd5b74dcSJohannes Berg  * @rx_bytes: bytes received from this station
548fd5b74dcSJohannes Berg  * @tx_bytes: bytes transmitted to this station
5492ec600d6SLuis Carlos Cobo  * @llid: mesh local link id
5502ec600d6SLuis Carlos Cobo  * @plid: mesh peer link id
5512ec600d6SLuis Carlos Cobo  * @plink_state: mesh peer link state
552420e7fabSHenning Rogge  * @signal: signal strength of last received packet in dBm
553541a45a1SBruno Randolf  * @signal_avg: signal strength average in dBm
554858022aaSRandy Dunlap  * @txrate: current unicast bitrate from this station
555858022aaSRandy Dunlap  * @rxrate: current unicast bitrate to this station
55698c8a60aSJouni Malinen  * @rx_packets: packets received from this station
55798c8a60aSJouni Malinen  * @tx_packets: packets transmitted to this station
558b206b4efSBruno Randolf  * @tx_retries: cumulative retry counts
559b206b4efSBruno Randolf  * @tx_failed: number of failed transmissions (retries exceeded, no ACK)
5605a5c731aSBen Greear  * @rx_dropped_misc:  Dropped for un-specified reason.
561f5ea9120SJohannes Berg  * @generation: generation number for nl80211 dumps.
562f5ea9120SJohannes Berg  *	This number should increase every time the list of stations
563f5ea9120SJohannes Berg  *	changes, i.e. when a station is added or removed, so that
564f5ea9120SJohannes Berg  *	userspace can tell whether it got a consistent snapshot.
565fd5b74dcSJohannes Berg  */
5662ec600d6SLuis Carlos Cobo struct station_info {
567fd5b74dcSJohannes Berg 	u32 filled;
568ebe27c91SMohammed Shafi Shajakhan 	u32 connected_time;
569fd5b74dcSJohannes Berg 	u32 inactive_time;
570fd5b74dcSJohannes Berg 	u32 rx_bytes;
571fd5b74dcSJohannes Berg 	u32 tx_bytes;
5722ec600d6SLuis Carlos Cobo 	u16 llid;
5732ec600d6SLuis Carlos Cobo 	u16 plid;
5742ec600d6SLuis Carlos Cobo 	u8 plink_state;
575420e7fabSHenning Rogge 	s8 signal;
576541a45a1SBruno Randolf 	s8 signal_avg;
577420e7fabSHenning Rogge 	struct rate_info txrate;
578c8dcfd8aSFelix Fietkau 	struct rate_info rxrate;
57998c8a60aSJouni Malinen 	u32 rx_packets;
58098c8a60aSJouni Malinen 	u32 tx_packets;
581b206b4efSBruno Randolf 	u32 tx_retries;
582b206b4efSBruno Randolf 	u32 tx_failed;
5835a5c731aSBen Greear 	u32 rx_dropped_misc;
584f4263c98SPaul Stewart 	struct sta_bss_parameters bss_param;
585f5ea9120SJohannes Berg 
586f5ea9120SJohannes Berg 	int generation;
587fd5b74dcSJohannes Berg };
588fd5b74dcSJohannes Berg 
58966f7ac50SMichael Wu /**
59066f7ac50SMichael Wu  * enum monitor_flags - monitor flags
59166f7ac50SMichael Wu  *
59266f7ac50SMichael Wu  * Monitor interface configuration flags. Note that these must be the bits
59366f7ac50SMichael Wu  * according to the nl80211 flags.
59466f7ac50SMichael Wu  *
59566f7ac50SMichael Wu  * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
59666f7ac50SMichael Wu  * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
59766f7ac50SMichael Wu  * @MONITOR_FLAG_CONTROL: pass control frames
59866f7ac50SMichael Wu  * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
59966f7ac50SMichael Wu  * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
60066f7ac50SMichael Wu  */
60166f7ac50SMichael Wu enum monitor_flags {
60266f7ac50SMichael Wu 	MONITOR_FLAG_FCSFAIL		= 1<<NL80211_MNTR_FLAG_FCSFAIL,
60366f7ac50SMichael Wu 	MONITOR_FLAG_PLCPFAIL		= 1<<NL80211_MNTR_FLAG_PLCPFAIL,
60466f7ac50SMichael Wu 	MONITOR_FLAG_CONTROL		= 1<<NL80211_MNTR_FLAG_CONTROL,
60566f7ac50SMichael Wu 	MONITOR_FLAG_OTHER_BSS		= 1<<NL80211_MNTR_FLAG_OTHER_BSS,
60666f7ac50SMichael Wu 	MONITOR_FLAG_COOK_FRAMES	= 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
60766f7ac50SMichael Wu };
60866f7ac50SMichael Wu 
6092ec600d6SLuis Carlos Cobo /**
6102ec600d6SLuis Carlos Cobo  * enum mpath_info_flags -  mesh path information flags
6112ec600d6SLuis Carlos Cobo  *
6122ec600d6SLuis Carlos Cobo  * Used by the driver to indicate which info in &struct mpath_info it has filled
6132ec600d6SLuis Carlos Cobo  * in during get_station() or dump_station().
6142ec600d6SLuis Carlos Cobo  *
615abe37c4bSJohannes Berg  * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
616abe37c4bSJohannes Berg  * @MPATH_INFO_SN: @sn filled
617abe37c4bSJohannes Berg  * @MPATH_INFO_METRIC: @metric filled
618abe37c4bSJohannes Berg  * @MPATH_INFO_EXPTIME: @exptime filled
619abe37c4bSJohannes Berg  * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
620abe37c4bSJohannes Berg  * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
621abe37c4bSJohannes Berg  * @MPATH_INFO_FLAGS: @flags filled
6222ec600d6SLuis Carlos Cobo  */
6232ec600d6SLuis Carlos Cobo enum mpath_info_flags {
6242ec600d6SLuis Carlos Cobo 	MPATH_INFO_FRAME_QLEN		= BIT(0),
625d19b3bf6SRui Paulo 	MPATH_INFO_SN			= BIT(1),
6262ec600d6SLuis Carlos Cobo 	MPATH_INFO_METRIC		= BIT(2),
6272ec600d6SLuis Carlos Cobo 	MPATH_INFO_EXPTIME		= BIT(3),
6282ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_TIMEOUT	= BIT(4),
6292ec600d6SLuis Carlos Cobo 	MPATH_INFO_DISCOVERY_RETRIES	= BIT(5),
6302ec600d6SLuis Carlos Cobo 	MPATH_INFO_FLAGS		= BIT(6),
6312ec600d6SLuis Carlos Cobo };
6322ec600d6SLuis Carlos Cobo 
6332ec600d6SLuis Carlos Cobo /**
6342ec600d6SLuis Carlos Cobo  * struct mpath_info - mesh path information
6352ec600d6SLuis Carlos Cobo  *
6362ec600d6SLuis Carlos Cobo  * Mesh path information filled by driver for get_mpath() and dump_mpath().
6372ec600d6SLuis Carlos Cobo  *
6382ec600d6SLuis Carlos Cobo  * @filled: bitfield of flags from &enum mpath_info_flags
6392ec600d6SLuis Carlos Cobo  * @frame_qlen: number of queued frames for this destination
640d19b3bf6SRui Paulo  * @sn: target sequence number
6412ec600d6SLuis Carlos Cobo  * @metric: metric (cost) of this mesh path
6422ec600d6SLuis Carlos Cobo  * @exptime: expiration time for the mesh path from now, in msecs
6432ec600d6SLuis Carlos Cobo  * @flags: mesh path flags
6442ec600d6SLuis Carlos Cobo  * @discovery_timeout: total mesh path discovery timeout, in msecs
6452ec600d6SLuis Carlos Cobo  * @discovery_retries: mesh path discovery retries
646f5ea9120SJohannes Berg  * @generation: generation number for nl80211 dumps.
647f5ea9120SJohannes Berg  *	This number should increase every time the list of mesh paths
648f5ea9120SJohannes Berg  *	changes, i.e. when a station is added or removed, so that
649f5ea9120SJohannes Berg  *	userspace can tell whether it got a consistent snapshot.
6502ec600d6SLuis Carlos Cobo  */
6512ec600d6SLuis Carlos Cobo struct mpath_info {
6522ec600d6SLuis Carlos Cobo 	u32 filled;
6532ec600d6SLuis Carlos Cobo 	u32 frame_qlen;
654d19b3bf6SRui Paulo 	u32 sn;
6552ec600d6SLuis Carlos Cobo 	u32 metric;
6562ec600d6SLuis Carlos Cobo 	u32 exptime;
6572ec600d6SLuis Carlos Cobo 	u32 discovery_timeout;
6582ec600d6SLuis Carlos Cobo 	u8 discovery_retries;
6592ec600d6SLuis Carlos Cobo 	u8 flags;
660f5ea9120SJohannes Berg 
661f5ea9120SJohannes Berg 	int generation;
6622ec600d6SLuis Carlos Cobo };
6632ec600d6SLuis Carlos Cobo 
6649f1ba906SJouni Malinen /**
6659f1ba906SJouni Malinen  * struct bss_parameters - BSS parameters
6669f1ba906SJouni Malinen  *
6679f1ba906SJouni Malinen  * Used to change BSS parameters (mainly for AP mode).
6689f1ba906SJouni Malinen  *
6699f1ba906SJouni Malinen  * @use_cts_prot: Whether to use CTS protection
6709f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
6719f1ba906SJouni Malinen  * @use_short_preamble: Whether the use of short preambles is allowed
6729f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
6739f1ba906SJouni Malinen  * @use_short_slot_time: Whether the use of short slot time is allowed
6749f1ba906SJouni Malinen  *	(0 = no, 1 = yes, -1 = do not change)
67590c97a04SJouni Malinen  * @basic_rates: basic rates in IEEE 802.11 format
67690c97a04SJouni Malinen  *	(or NULL for no change)
67790c97a04SJouni Malinen  * @basic_rates_len: number of basic rates
678fd8aaaf3SFelix Fietkau  * @ap_isolate: do not forward packets between connected stations
67950b12f59SHelmut Schaa  * @ht_opmode: HT Operation mode
68050b12f59SHelmut Schaa  * 	(u16 = opmode, -1 = do not change)
6819f1ba906SJouni Malinen  */
6829f1ba906SJouni Malinen struct bss_parameters {
6839f1ba906SJouni Malinen 	int use_cts_prot;
6849f1ba906SJouni Malinen 	int use_short_preamble;
6859f1ba906SJouni Malinen 	int use_short_slot_time;
68690c97a04SJouni Malinen 	u8 *basic_rates;
68790c97a04SJouni Malinen 	u8 basic_rates_len;
688fd8aaaf3SFelix Fietkau 	int ap_isolate;
68950b12f59SHelmut Schaa 	int ht_opmode;
6909f1ba906SJouni Malinen };
6912ec600d6SLuis Carlos Cobo 
69229cbe68cSJohannes Berg /*
69329cbe68cSJohannes Berg  * struct mesh_config - 802.11s mesh configuration
69429cbe68cSJohannes Berg  *
69529cbe68cSJohannes Berg  * These parameters can be changed while the mesh is active.
69629cbe68cSJohannes Berg  */
69793da9cc1Scolin@cozybit.com struct mesh_config {
69893da9cc1Scolin@cozybit.com 	/* Timeouts in ms */
69993da9cc1Scolin@cozybit.com 	/* Mesh plink management parameters */
70093da9cc1Scolin@cozybit.com 	u16 dot11MeshRetryTimeout;
70193da9cc1Scolin@cozybit.com 	u16 dot11MeshConfirmTimeout;
70293da9cc1Scolin@cozybit.com 	u16 dot11MeshHoldingTimeout;
70393da9cc1Scolin@cozybit.com 	u16 dot11MeshMaxPeerLinks;
70493da9cc1Scolin@cozybit.com 	u8  dot11MeshMaxRetries;
70593da9cc1Scolin@cozybit.com 	u8  dot11MeshTTL;
70645904f21SJavier Cardona 	/* ttl used in path selection information elements */
70745904f21SJavier Cardona 	u8  element_ttl;
70893da9cc1Scolin@cozybit.com 	bool auto_open_plinks;
70993da9cc1Scolin@cozybit.com 	/* HWMP parameters */
71093da9cc1Scolin@cozybit.com 	u8  dot11MeshHWMPmaxPREQretries;
71193da9cc1Scolin@cozybit.com 	u32 path_refresh_time;
71293da9cc1Scolin@cozybit.com 	u16 min_discovery_timeout;
71393da9cc1Scolin@cozybit.com 	u32 dot11MeshHWMPactivePathTimeout;
71493da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPpreqMinInterval;
71593da9cc1Scolin@cozybit.com 	u16 dot11MeshHWMPnetDiameterTraversalTime;
71663c5723bSRui Paulo 	u8  dot11MeshHWMPRootMode;
71793da9cc1Scolin@cozybit.com };
71893da9cc1Scolin@cozybit.com 
71931888487SJouni Malinen /**
72029cbe68cSJohannes Berg  * struct mesh_setup - 802.11s mesh setup configuration
72129cbe68cSJohannes Berg  * @mesh_id: the mesh ID
72229cbe68cSJohannes Berg  * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
723c80d545dSJavier Cardona  * @path_sel_proto: which path selection protocol to use
724c80d545dSJavier Cardona  * @path_metric: which metric to use
725581a8b0fSJavier Cardona  * @ie: vendor information elements (optional)
726581a8b0fSJavier Cardona  * @ie_len: length of vendor information elements
727b130e5ceSJavier Cardona  * @is_authenticated: this mesh requires authentication
728b130e5ceSJavier Cardona  * @is_secure: this mesh uses security
72929cbe68cSJohannes Berg  *
73029cbe68cSJohannes Berg  * These parameters are fixed when the mesh is created.
73129cbe68cSJohannes Berg  */
73229cbe68cSJohannes Berg struct mesh_setup {
73329cbe68cSJohannes Berg 	const u8 *mesh_id;
73429cbe68cSJohannes Berg 	u8 mesh_id_len;
735c80d545dSJavier Cardona 	u8  path_sel_proto;
736c80d545dSJavier Cardona 	u8  path_metric;
737581a8b0fSJavier Cardona 	const u8 *ie;
738581a8b0fSJavier Cardona 	u8 ie_len;
739b130e5ceSJavier Cardona 	bool is_authenticated;
74015d5dda6SJavier Cardona 	bool is_secure;
74129cbe68cSJohannes Berg };
74229cbe68cSJohannes Berg 
74329cbe68cSJohannes Berg /**
74431888487SJouni Malinen  * struct ieee80211_txq_params - TX queue parameters
74531888487SJouni Malinen  * @queue: TX queue identifier (NL80211_TXQ_Q_*)
74631888487SJouni Malinen  * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
74731888487SJouni Malinen  * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
74831888487SJouni Malinen  *	1..32767]
74931888487SJouni Malinen  * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
75031888487SJouni Malinen  *	1..32767]
75131888487SJouni Malinen  * @aifs: Arbitration interframe space [0..255]
75231888487SJouni Malinen  */
75331888487SJouni Malinen struct ieee80211_txq_params {
75431888487SJouni Malinen 	enum nl80211_txq_q queue;
75531888487SJouni Malinen 	u16 txop;
75631888487SJouni Malinen 	u16 cwmin;
75731888487SJouni Malinen 	u16 cwmax;
75831888487SJouni Malinen 	u8 aifs;
75931888487SJouni Malinen };
76031888487SJouni Malinen 
761704232c2SJohannes Berg /* from net/wireless.h */
762704232c2SJohannes Berg struct wiphy;
763704232c2SJohannes Berg 
764d70e9693SJohannes Berg /**
765d70e9693SJohannes Berg  * DOC: Scanning and BSS list handling
766d70e9693SJohannes Berg  *
767d70e9693SJohannes Berg  * The scanning process itself is fairly simple, but cfg80211 offers quite
768d70e9693SJohannes Berg  * a bit of helper functionality. To start a scan, the scan operation will
769d70e9693SJohannes Berg  * be invoked with a scan definition. This scan definition contains the
770d70e9693SJohannes Berg  * channels to scan, and the SSIDs to send probe requests for (including the
771d70e9693SJohannes Berg  * wildcard, if desired). A passive scan is indicated by having no SSIDs to
772d70e9693SJohannes Berg  * probe. Additionally, a scan request may contain extra information elements
773d70e9693SJohannes Berg  * that should be added to the probe request. The IEs are guaranteed to be
774d70e9693SJohannes Berg  * well-formed, and will not exceed the maximum length the driver advertised
775d70e9693SJohannes Berg  * in the wiphy structure.
776d70e9693SJohannes Berg  *
777d70e9693SJohannes Berg  * When scanning finds a BSS, cfg80211 needs to be notified of that, because
778d70e9693SJohannes Berg  * it is responsible for maintaining the BSS list; the driver should not
779d70e9693SJohannes Berg  * maintain a list itself. For this notification, various functions exist.
780d70e9693SJohannes Berg  *
781d70e9693SJohannes Berg  * Since drivers do not maintain a BSS list, there are also a number of
782d70e9693SJohannes Berg  * functions to search for a BSS and obtain information about it from the
783d70e9693SJohannes Berg  * BSS structure cfg80211 maintains. The BSS list is also made available
784d70e9693SJohannes Berg  * to userspace.
785d70e9693SJohannes Berg  */
78672bdcf34SJouni Malinen 
787704232c2SJohannes Berg /**
7882a519311SJohannes Berg  * struct cfg80211_ssid - SSID description
7892a519311SJohannes Berg  * @ssid: the SSID
7902a519311SJohannes Berg  * @ssid_len: length of the ssid
7912a519311SJohannes Berg  */
7922a519311SJohannes Berg struct cfg80211_ssid {
7932a519311SJohannes Berg 	u8 ssid[IEEE80211_MAX_SSID_LEN];
7942a519311SJohannes Berg 	u8 ssid_len;
7952a519311SJohannes Berg };
7962a519311SJohannes Berg 
7972a519311SJohannes Berg /**
7982a519311SJohannes Berg  * struct cfg80211_scan_request - scan request description
7992a519311SJohannes Berg  *
8002a519311SJohannes Berg  * @ssids: SSIDs to scan for (active scan only)
8012a519311SJohannes Berg  * @n_ssids: number of SSIDs
8022a519311SJohannes Berg  * @channels: channels to scan on.
803ca3dbc20SHelmut Schaa  * @n_channels: total number of channels to scan
80470692ad2SJouni Malinen  * @ie: optional information element(s) to add into Probe Request or %NULL
80570692ad2SJouni Malinen  * @ie_len: length of ie in octets
8062a519311SJohannes Berg  * @wiphy: the wiphy this was for
807463d0183SJohannes Berg  * @dev: the interface
808abe37c4bSJohannes Berg  * @aborted: (internal) scan request was notified as aborted
8092a519311SJohannes Berg  */
8102a519311SJohannes Berg struct cfg80211_scan_request {
8112a519311SJohannes Berg 	struct cfg80211_ssid *ssids;
8122a519311SJohannes Berg 	int n_ssids;
8132a519311SJohannes Berg 	u32 n_channels;
814de95a54bSJohannes Berg 	const u8 *ie;
81570692ad2SJouni Malinen 	size_t ie_len;
8162a519311SJohannes Berg 
8172a519311SJohannes Berg 	/* internal */
8182a519311SJohannes Berg 	struct wiphy *wiphy;
819463d0183SJohannes Berg 	struct net_device *dev;
820667503ddSJohannes Berg 	bool aborted;
8215ba63533SJohannes Berg 
8225ba63533SJohannes Berg 	/* keep last */
8235ba63533SJohannes Berg 	struct ieee80211_channel *channels[0];
8242a519311SJohannes Berg };
8252a519311SJohannes Berg 
8262a519311SJohannes Berg /**
827807f8a8cSLuciano Coelho  * struct cfg80211_sched_scan_request - scheduled scan request description
828807f8a8cSLuciano Coelho  *
829807f8a8cSLuciano Coelho  * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
830807f8a8cSLuciano Coelho  * @n_ssids: number of SSIDs
831807f8a8cSLuciano Coelho  * @n_channels: total number of channels to scan
832*bbe6ad6dSLuciano Coelho  * @interval: interval between each scheduled scan cycle
833807f8a8cSLuciano Coelho  * @ie: optional information element(s) to add into Probe Request or %NULL
834807f8a8cSLuciano Coelho  * @ie_len: length of ie in octets
835807f8a8cSLuciano Coelho  * @wiphy: the wiphy this was for
836807f8a8cSLuciano Coelho  * @dev: the interface
837807f8a8cSLuciano Coelho  * @channels: channels to scan
838807f8a8cSLuciano Coelho  */
839807f8a8cSLuciano Coelho struct cfg80211_sched_scan_request {
840807f8a8cSLuciano Coelho 	struct cfg80211_ssid *ssids;
841807f8a8cSLuciano Coelho 	int n_ssids;
842807f8a8cSLuciano Coelho 	u32 n_channels;
843*bbe6ad6dSLuciano Coelho 	u32 interval;
844807f8a8cSLuciano Coelho 	const u8 *ie;
845807f8a8cSLuciano Coelho 	size_t ie_len;
846807f8a8cSLuciano Coelho 
847807f8a8cSLuciano Coelho 	/* internal */
848807f8a8cSLuciano Coelho 	struct wiphy *wiphy;
849807f8a8cSLuciano Coelho 	struct net_device *dev;
850807f8a8cSLuciano Coelho 
851807f8a8cSLuciano Coelho 	/* keep last */
852807f8a8cSLuciano Coelho 	struct ieee80211_channel *channels[0];
853807f8a8cSLuciano Coelho };
854807f8a8cSLuciano Coelho 
855807f8a8cSLuciano Coelho /**
8562a519311SJohannes Berg  * enum cfg80211_signal_type - signal type
8572a519311SJohannes Berg  *
8582a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
8592a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
8602a519311SJohannes Berg  * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
8612a519311SJohannes Berg  */
8622a519311SJohannes Berg enum cfg80211_signal_type {
8632a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_NONE,
8642a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_MBM,
8652a519311SJohannes Berg 	CFG80211_SIGNAL_TYPE_UNSPEC,
8662a519311SJohannes Berg };
8672a519311SJohannes Berg 
8682a519311SJohannes Berg /**
8692a519311SJohannes Berg  * struct cfg80211_bss - BSS description
8702a519311SJohannes Berg  *
8712a519311SJohannes Berg  * This structure describes a BSS (which may also be a mesh network)
8722a519311SJohannes Berg  * for use in scan results and similar.
8732a519311SJohannes Berg  *
874abe37c4bSJohannes Berg  * @channel: channel this BSS is on
8752a519311SJohannes Berg  * @bssid: BSSID of the BSS
8762a519311SJohannes Berg  * @tsf: timestamp of last received update
8772a519311SJohannes Berg  * @beacon_interval: the beacon interval as from the frame
8782a519311SJohannes Berg  * @capability: the capability field in host byte order
8792a519311SJohannes Berg  * @information_elements: the information elements (Note that there
88034a6eddbSJouni Malinen  *	is no guarantee that these are well-formed!); this is a pointer to
88134a6eddbSJouni Malinen  *	either the beacon_ies or proberesp_ies depending on whether Probe
88234a6eddbSJouni Malinen  *	Response frame has been received
8832a519311SJohannes Berg  * @len_information_elements: total length of the information elements
88434a6eddbSJouni Malinen  * @beacon_ies: the information elements from the last Beacon frame
88534a6eddbSJouni Malinen  * @len_beacon_ies: total length of the beacon_ies
88634a6eddbSJouni Malinen  * @proberesp_ies: the information elements from the last Probe Response frame
88734a6eddbSJouni Malinen  * @len_proberesp_ies: total length of the proberesp_ies
88877965c97SJohannes Berg  * @signal: signal strength value (type depends on the wiphy's signal_type)
88978c1c7e1SJohannes Berg  * @free_priv: function pointer to free private data
8902a519311SJohannes Berg  * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
8912a519311SJohannes Berg  */
8922a519311SJohannes Berg struct cfg80211_bss {
8932a519311SJohannes Berg 	struct ieee80211_channel *channel;
8942a519311SJohannes Berg 
8952a519311SJohannes Berg 	u8 bssid[ETH_ALEN];
8962a519311SJohannes Berg 	u64 tsf;
8972a519311SJohannes Berg 	u16 beacon_interval;
8982a519311SJohannes Berg 	u16 capability;
8992a519311SJohannes Berg 	u8 *information_elements;
9002a519311SJohannes Berg 	size_t len_information_elements;
90134a6eddbSJouni Malinen 	u8 *beacon_ies;
90234a6eddbSJouni Malinen 	size_t len_beacon_ies;
90334a6eddbSJouni Malinen 	u8 *proberesp_ies;
90434a6eddbSJouni Malinen 	size_t len_proberesp_ies;
9052a519311SJohannes Berg 
9062a519311SJohannes Berg 	s32 signal;
9072a519311SJohannes Berg 
90878c1c7e1SJohannes Berg 	void (*free_priv)(struct cfg80211_bss *bss);
9092a519311SJohannes Berg 	u8 priv[0] __attribute__((__aligned__(sizeof(void *))));
9102a519311SJohannes Berg };
9112a519311SJohannes Berg 
9122a519311SJohannes Berg /**
913517357c6SJohannes Berg  * ieee80211_bss_get_ie - find IE with given ID
914517357c6SJohannes Berg  * @bss: the bss to search
915517357c6SJohannes Berg  * @ie: the IE ID
916517357c6SJohannes Berg  * Returns %NULL if not found.
917517357c6SJohannes Berg  */
918517357c6SJohannes Berg const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
919517357c6SJohannes Berg 
920517357c6SJohannes Berg 
921517357c6SJohannes Berg /**
922b23aa676SSamuel Ortiz  * struct cfg80211_crypto_settings - Crypto settings
923b23aa676SSamuel Ortiz  * @wpa_versions: indicates which, if any, WPA versions are enabled
924b23aa676SSamuel Ortiz  *	(from enum nl80211_wpa_versions)
925b23aa676SSamuel Ortiz  * @cipher_group: group key cipher suite (or 0 if unset)
926b23aa676SSamuel Ortiz  * @n_ciphers_pairwise: number of AP supported unicast ciphers
927b23aa676SSamuel Ortiz  * @ciphers_pairwise: unicast key cipher suites
928b23aa676SSamuel Ortiz  * @n_akm_suites: number of AKM suites
929b23aa676SSamuel Ortiz  * @akm_suites: AKM suites
930b23aa676SSamuel Ortiz  * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
931b23aa676SSamuel Ortiz  *	sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
932b23aa676SSamuel Ortiz  *	required to assume that the port is unauthorized until authorized by
933b23aa676SSamuel Ortiz  *	user space. Otherwise, port is marked authorized by default.
934c0692b8fSJohannes Berg  * @control_port_ethertype: the control port protocol that should be
935c0692b8fSJohannes Berg  *	allowed through even on unauthorized ports
936c0692b8fSJohannes Berg  * @control_port_no_encrypt: TRUE to prevent encryption of control port
937c0692b8fSJohannes Berg  *	protocol frames.
938b23aa676SSamuel Ortiz  */
939b23aa676SSamuel Ortiz struct cfg80211_crypto_settings {
940b23aa676SSamuel Ortiz 	u32 wpa_versions;
941b23aa676SSamuel Ortiz 	u32 cipher_group;
942b23aa676SSamuel Ortiz 	int n_ciphers_pairwise;
943b23aa676SSamuel Ortiz 	u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
944b23aa676SSamuel Ortiz 	int n_akm_suites;
945b23aa676SSamuel Ortiz 	u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
946b23aa676SSamuel Ortiz 	bool control_port;
947c0692b8fSJohannes Berg 	__be16 control_port_ethertype;
948c0692b8fSJohannes Berg 	bool control_port_no_encrypt;
949b23aa676SSamuel Ortiz };
950b23aa676SSamuel Ortiz 
951b23aa676SSamuel Ortiz /**
952636a5d36SJouni Malinen  * struct cfg80211_auth_request - Authentication request data
953636a5d36SJouni Malinen  *
954636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
955636a5d36SJouni Malinen  * authentication.
956636a5d36SJouni Malinen  *
95719957bb3SJohannes Berg  * @bss: The BSS to authenticate with.
958636a5d36SJouni Malinen  * @auth_type: Authentication type (algorithm)
959636a5d36SJouni Malinen  * @ie: Extra IEs to add to Authentication frame or %NULL
960636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
961fffd0934SJohannes Berg  * @key_len: length of WEP key for shared key authentication
962fffd0934SJohannes Berg  * @key_idx: index of WEP key for shared key authentication
963fffd0934SJohannes Berg  * @key: WEP key for shared key authentication
964d5cdfacbSJouni Malinen  * @local_state_change: This is a request for a local state only, i.e., no
965d5cdfacbSJouni Malinen  *	Authentication frame is to be transmitted and authentication state is
966d5cdfacbSJouni Malinen  *	to be changed without having to wait for a response from the peer STA
967d5cdfacbSJouni Malinen  *	(AP).
968636a5d36SJouni Malinen  */
969636a5d36SJouni Malinen struct cfg80211_auth_request {
97019957bb3SJohannes Berg 	struct cfg80211_bss *bss;
971636a5d36SJouni Malinen 	const u8 *ie;
972636a5d36SJouni Malinen 	size_t ie_len;
97319957bb3SJohannes Berg 	enum nl80211_auth_type auth_type;
974fffd0934SJohannes Berg 	const u8 *key;
975fffd0934SJohannes Berg 	u8 key_len, key_idx;
976d5cdfacbSJouni Malinen 	bool local_state_change;
977636a5d36SJouni Malinen };
978636a5d36SJouni Malinen 
979636a5d36SJouni Malinen /**
980636a5d36SJouni Malinen  * struct cfg80211_assoc_request - (Re)Association request data
981636a5d36SJouni Malinen  *
982636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
983636a5d36SJouni Malinen  * (re)association.
98419957bb3SJohannes Berg  * @bss: The BSS to associate with.
985636a5d36SJouni Malinen  * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
986636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
987dc6382ceSJouni Malinen  * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
988b23aa676SSamuel Ortiz  * @crypto: crypto settings
9893e5d7649SJohannes Berg  * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
990636a5d36SJouni Malinen  */
991636a5d36SJouni Malinen struct cfg80211_assoc_request {
99219957bb3SJohannes Berg 	struct cfg80211_bss *bss;
9933e5d7649SJohannes Berg 	const u8 *ie, *prev_bssid;
994636a5d36SJouni Malinen 	size_t ie_len;
995b23aa676SSamuel Ortiz 	struct cfg80211_crypto_settings crypto;
99619957bb3SJohannes Berg 	bool use_mfp;
997636a5d36SJouni Malinen };
998636a5d36SJouni Malinen 
999636a5d36SJouni Malinen /**
1000636a5d36SJouni Malinen  * struct cfg80211_deauth_request - Deauthentication request data
1001636a5d36SJouni Malinen  *
1002636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1003636a5d36SJouni Malinen  * deauthentication.
1004636a5d36SJouni Malinen  *
100519957bb3SJohannes Berg  * @bss: the BSS to deauthenticate from
1006636a5d36SJouni Malinen  * @ie: Extra IEs to add to Deauthentication frame or %NULL
1007636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
100819957bb3SJohannes Berg  * @reason_code: The reason code for the deauthentication
1009d5cdfacbSJouni Malinen  * @local_state_change: This is a request for a local state only, i.e., no
1010d5cdfacbSJouni Malinen  *	Deauthentication frame is to be transmitted.
1011636a5d36SJouni Malinen  */
1012636a5d36SJouni Malinen struct cfg80211_deauth_request {
101319957bb3SJohannes Berg 	struct cfg80211_bss *bss;
1014636a5d36SJouni Malinen 	const u8 *ie;
1015636a5d36SJouni Malinen 	size_t ie_len;
101619957bb3SJohannes Berg 	u16 reason_code;
1017d5cdfacbSJouni Malinen 	bool local_state_change;
1018636a5d36SJouni Malinen };
1019636a5d36SJouni Malinen 
1020636a5d36SJouni Malinen /**
1021636a5d36SJouni Malinen  * struct cfg80211_disassoc_request - Disassociation request data
1022636a5d36SJouni Malinen  *
1023636a5d36SJouni Malinen  * This structure provides information needed to complete IEEE 802.11
1024636a5d36SJouni Malinen  * disassocation.
1025636a5d36SJouni Malinen  *
102619957bb3SJohannes Berg  * @bss: the BSS to disassociate from
1027636a5d36SJouni Malinen  * @ie: Extra IEs to add to Disassociation frame or %NULL
1028636a5d36SJouni Malinen  * @ie_len: Length of ie buffer in octets
102919957bb3SJohannes Berg  * @reason_code: The reason code for the disassociation
1030d5cdfacbSJouni Malinen  * @local_state_change: This is a request for a local state only, i.e., no
1031d5cdfacbSJouni Malinen  *	Disassociation frame is to be transmitted.
1032636a5d36SJouni Malinen  */
1033636a5d36SJouni Malinen struct cfg80211_disassoc_request {
103419957bb3SJohannes Berg 	struct cfg80211_bss *bss;
1035636a5d36SJouni Malinen 	const u8 *ie;
1036636a5d36SJouni Malinen 	size_t ie_len;
103719957bb3SJohannes Berg 	u16 reason_code;
1038d5cdfacbSJouni Malinen 	bool local_state_change;
1039636a5d36SJouni Malinen };
1040636a5d36SJouni Malinen 
1041636a5d36SJouni Malinen /**
104204a773adSJohannes Berg  * struct cfg80211_ibss_params - IBSS parameters
104304a773adSJohannes Berg  *
104404a773adSJohannes Berg  * This structure defines the IBSS parameters for the join_ibss()
104504a773adSJohannes Berg  * method.
104604a773adSJohannes Berg  *
104704a773adSJohannes Berg  * @ssid: The SSID, will always be non-null.
104804a773adSJohannes Berg  * @ssid_len: The length of the SSID, will always be non-zero.
104904a773adSJohannes Berg  * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
105004a773adSJohannes Berg  *	search for IBSSs with a different BSSID.
105104a773adSJohannes Berg  * @channel: The channel to use if no IBSS can be found to join.
105204a773adSJohannes Berg  * @channel_fixed: The channel should be fixed -- do not search for
105304a773adSJohannes Berg  *	IBSSs to join on other channels.
105404a773adSJohannes Berg  * @ie: information element(s) to include in the beacon
105504a773adSJohannes Berg  * @ie_len: length of that
10568e30bc55SJohannes Berg  * @beacon_interval: beacon interval to use
1057fffd0934SJohannes Berg  * @privacy: this is a protected network, keys will be configured
1058fffd0934SJohannes Berg  *	after joining
1059fbd2c8dcSTeemu Paasikivi  * @basic_rates: bitmap of basic rates to use when creating the IBSS
1060dd5b4cc7SFelix Fietkau  * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
106104a773adSJohannes Berg  */
106204a773adSJohannes Berg struct cfg80211_ibss_params {
106304a773adSJohannes Berg 	u8 *ssid;
106404a773adSJohannes Berg 	u8 *bssid;
106504a773adSJohannes Berg 	struct ieee80211_channel *channel;
106604a773adSJohannes Berg 	u8 *ie;
106704a773adSJohannes Berg 	u8 ssid_len, ie_len;
10688e30bc55SJohannes Berg 	u16 beacon_interval;
1069fbd2c8dcSTeemu Paasikivi 	u32 basic_rates;
107004a773adSJohannes Berg 	bool channel_fixed;
1071fffd0934SJohannes Berg 	bool privacy;
1072dd5b4cc7SFelix Fietkau 	int mcast_rate[IEEE80211_NUM_BANDS];
107304a773adSJohannes Berg };
107404a773adSJohannes Berg 
107504a773adSJohannes Berg /**
1076b23aa676SSamuel Ortiz  * struct cfg80211_connect_params - Connection parameters
1077b23aa676SSamuel Ortiz  *
1078b23aa676SSamuel Ortiz  * This structure provides information needed to complete IEEE 802.11
1079b23aa676SSamuel Ortiz  * authentication and association.
1080b23aa676SSamuel Ortiz  *
1081b23aa676SSamuel Ortiz  * @channel: The channel to use or %NULL if not specified (auto-select based
1082b23aa676SSamuel Ortiz  *	on scan results)
1083b23aa676SSamuel Ortiz  * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
1084b23aa676SSamuel Ortiz  *	results)
1085b23aa676SSamuel Ortiz  * @ssid: SSID
1086b23aa676SSamuel Ortiz  * @ssid_len: Length of ssid in octets
1087b23aa676SSamuel Ortiz  * @auth_type: Authentication type (algorithm)
1088abe37c4bSJohannes Berg  * @ie: IEs for association request
1089abe37c4bSJohannes Berg  * @ie_len: Length of assoc_ie in octets
1090b23aa676SSamuel Ortiz  * @privacy: indicates whether privacy-enabled APs should be used
1091b23aa676SSamuel Ortiz  * @crypto: crypto settings
1092fffd0934SJohannes Berg  * @key_len: length of WEP key for shared key authentication
1093fffd0934SJohannes Berg  * @key_idx: index of WEP key for shared key authentication
1094fffd0934SJohannes Berg  * @key: WEP key for shared key authentication
1095b23aa676SSamuel Ortiz  */
1096b23aa676SSamuel Ortiz struct cfg80211_connect_params {
1097b23aa676SSamuel Ortiz 	struct ieee80211_channel *channel;
1098b23aa676SSamuel Ortiz 	u8 *bssid;
1099b23aa676SSamuel Ortiz 	u8 *ssid;
1100b23aa676SSamuel Ortiz 	size_t ssid_len;
1101b23aa676SSamuel Ortiz 	enum nl80211_auth_type auth_type;
1102b23aa676SSamuel Ortiz 	u8 *ie;
1103b23aa676SSamuel Ortiz 	size_t ie_len;
1104b23aa676SSamuel Ortiz 	bool privacy;
1105b23aa676SSamuel Ortiz 	struct cfg80211_crypto_settings crypto;
1106fffd0934SJohannes Berg 	const u8 *key;
1107fffd0934SJohannes Berg 	u8 key_len, key_idx;
1108b23aa676SSamuel Ortiz };
1109b23aa676SSamuel Ortiz 
1110b23aa676SSamuel Ortiz /**
1111b9a5f8caSJouni Malinen  * enum wiphy_params_flags - set_wiphy_params bitfield values
1112abe37c4bSJohannes Berg  * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
1113abe37c4bSJohannes Berg  * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
1114abe37c4bSJohannes Berg  * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
1115abe37c4bSJohannes Berg  * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
1116abe37c4bSJohannes Berg  * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
1117b9a5f8caSJouni Malinen  */
1118b9a5f8caSJouni Malinen enum wiphy_params_flags {
1119b9a5f8caSJouni Malinen 	WIPHY_PARAM_RETRY_SHORT		= 1 << 0,
1120b9a5f8caSJouni Malinen 	WIPHY_PARAM_RETRY_LONG		= 1 << 1,
1121b9a5f8caSJouni Malinen 	WIPHY_PARAM_FRAG_THRESHOLD	= 1 << 2,
1122b9a5f8caSJouni Malinen 	WIPHY_PARAM_RTS_THRESHOLD	= 1 << 3,
112381077e82SLukáš Turek 	WIPHY_PARAM_COVERAGE_CLASS	= 1 << 4,
1124b9a5f8caSJouni Malinen };
1125b9a5f8caSJouni Malinen 
11269930380fSJohannes Berg /*
11279930380fSJohannes Berg  * cfg80211_bitrate_mask - masks for bitrate control
11289930380fSJohannes Berg  */
11299930380fSJohannes Berg struct cfg80211_bitrate_mask {
11309930380fSJohannes Berg 	struct {
11319930380fSJohannes Berg 		u32 legacy;
113237eb0b16SJouni Malinen 		/* TODO: add support for masking MCS rates; e.g.: */
113337eb0b16SJouni Malinen 		/* u8 mcs[IEEE80211_HT_MCS_MASK_LEN]; */
11349930380fSJohannes Berg 	} control[IEEE80211_NUM_BANDS];
11359930380fSJohannes Berg };
113667fbb16bSSamuel Ortiz /**
113767fbb16bSSamuel Ortiz  * struct cfg80211_pmksa - PMK Security Association
113867fbb16bSSamuel Ortiz  *
113967fbb16bSSamuel Ortiz  * This structure is passed to the set/del_pmksa() method for PMKSA
114067fbb16bSSamuel Ortiz  * caching.
114167fbb16bSSamuel Ortiz  *
114267fbb16bSSamuel Ortiz  * @bssid: The AP's BSSID.
114367fbb16bSSamuel Ortiz  * @pmkid: The PMK material itself.
114467fbb16bSSamuel Ortiz  */
114567fbb16bSSamuel Ortiz struct cfg80211_pmksa {
114667fbb16bSSamuel Ortiz 	u8 *bssid;
114767fbb16bSSamuel Ortiz 	u8 *pmkid;
114867fbb16bSSamuel Ortiz };
11499930380fSJohannes Berg 
11507643a2c3SJohannes Berg /**
1151ff1b6e69SJohannes Berg  * struct cfg80211_wowlan_trig_pkt_pattern - packet pattern
1152ff1b6e69SJohannes Berg  * @mask: bitmask where to match pattern and where to ignore bytes,
1153ff1b6e69SJohannes Berg  *	one bit per byte, in same format as nl80211
1154ff1b6e69SJohannes Berg  * @pattern: bytes to match where bitmask is 1
1155ff1b6e69SJohannes Berg  * @pattern_len: length of pattern (in bytes)
1156ff1b6e69SJohannes Berg  *
1157ff1b6e69SJohannes Berg  * Internal note: @mask and @pattern are allocated in one chunk of
1158ff1b6e69SJohannes Berg  * memory, free @mask only!
1159ff1b6e69SJohannes Berg  */
1160ff1b6e69SJohannes Berg struct cfg80211_wowlan_trig_pkt_pattern {
1161ff1b6e69SJohannes Berg 	u8 *mask, *pattern;
1162ff1b6e69SJohannes Berg 	int pattern_len;
1163ff1b6e69SJohannes Berg };
1164ff1b6e69SJohannes Berg 
1165ff1b6e69SJohannes Berg /**
1166ff1b6e69SJohannes Berg  * struct cfg80211_wowlan - Wake on Wireless-LAN support info
1167ff1b6e69SJohannes Berg  *
1168ff1b6e69SJohannes Berg  * This structure defines the enabled WoWLAN triggers for the device.
1169ff1b6e69SJohannes Berg  * @any: wake up on any activity -- special trigger if device continues
1170ff1b6e69SJohannes Berg  *	operating as normal during suspend
1171ff1b6e69SJohannes Berg  * @disconnect: wake up if getting disconnected
1172ff1b6e69SJohannes Berg  * @magic_pkt: wake up on receiving magic packet
1173ff1b6e69SJohannes Berg  * @patterns: wake up on receiving packet matching a pattern
1174ff1b6e69SJohannes Berg  * @n_patterns: number of patterns
1175ff1b6e69SJohannes Berg  */
1176ff1b6e69SJohannes Berg struct cfg80211_wowlan {
1177ff1b6e69SJohannes Berg 	bool any, disconnect, magic_pkt;
1178ff1b6e69SJohannes Berg 	struct cfg80211_wowlan_trig_pkt_pattern *patterns;
1179ff1b6e69SJohannes Berg 	int n_patterns;
1180ff1b6e69SJohannes Berg };
1181ff1b6e69SJohannes Berg 
1182ff1b6e69SJohannes Berg /**
1183704232c2SJohannes Berg  * struct cfg80211_ops - backend description for wireless configuration
1184704232c2SJohannes Berg  *
1185704232c2SJohannes Berg  * This struct is registered by fullmac card drivers and/or wireless stacks
1186704232c2SJohannes Berg  * in order to handle configuration requests on their interfaces.
1187704232c2SJohannes Berg  *
1188704232c2SJohannes Berg  * All callbacks except where otherwise noted should return 0
1189704232c2SJohannes Berg  * on success or a negative error code.
1190704232c2SJohannes Berg  *
119143fb45cbSJohannes Berg  * All operations are currently invoked under rtnl for consistency with the
119243fb45cbSJohannes Berg  * wireless extensions but this is subject to reevaluation as soon as this
119343fb45cbSJohannes Berg  * code is used more widely and we have a first user without wext.
119443fb45cbSJohannes Berg  *
1195ff1b6e69SJohannes Berg  * @suspend: wiphy device needs to be suspended. The variable @wow will
1196ff1b6e69SJohannes Berg  *	be %NULL or contain the enabled Wake-on-Wireless triggers that are
1197ff1b6e69SJohannes Berg  *	configured for the device.
11980378b3f1SJohannes Berg  * @resume: wiphy device needs to be resumed
11990378b3f1SJohannes Berg  *
120060719ffdSJohannes Berg  * @add_virtual_intf: create a new virtual interface with the given name,
1201463d0183SJohannes Berg  *	must set the struct wireless_dev's iftype. Beware: You must create
1202f9e10ce4SJohannes Berg  *	the new netdev in the wiphy's network namespace! Returns the netdev,
1203f9e10ce4SJohannes Berg  *	or an ERR_PTR.
1204704232c2SJohannes Berg  *
1205704232c2SJohannes Berg  * @del_virtual_intf: remove the virtual interface determined by ifindex.
120655682965SJohannes Berg  *
120760719ffdSJohannes Berg  * @change_virtual_intf: change type/configuration of virtual interface,
120860719ffdSJohannes Berg  *	keep the struct wireless_dev's iftype updated.
120955682965SJohannes Berg  *
121041ade00fSJohannes Berg  * @add_key: add a key with the given parameters. @mac_addr will be %NULL
121141ade00fSJohannes Berg  *	when adding a group key.
121241ade00fSJohannes Berg  *
121341ade00fSJohannes Berg  * @get_key: get information about the key with the given parameters.
121441ade00fSJohannes Berg  *	@mac_addr will be %NULL when requesting information for a group
121541ade00fSJohannes Berg  *	key. All pointers given to the @callback function need not be valid
1216e3da574aSJohannes Berg  *	after it returns. This function should return an error if it is
1217e3da574aSJohannes Berg  *	not possible to retrieve the key, -ENOENT if it doesn't exist.
121841ade00fSJohannes Berg  *
121941ade00fSJohannes Berg  * @del_key: remove a key given the @mac_addr (%NULL for a group key)
1220e3da574aSJohannes Berg  *	and @key_index, return -ENOENT if the key doesn't exist.
122141ade00fSJohannes Berg  *
122241ade00fSJohannes Berg  * @set_default_key: set the default key on an interface
1223ed1b6cc7SJohannes Berg  *
12243cfcf6acSJouni Malinen  * @set_default_mgmt_key: set the default management frame key on an interface
12253cfcf6acSJouni Malinen  *
1226ed1b6cc7SJohannes Berg  * @add_beacon: Add a beacon with given parameters, @head, @interval
1227ed1b6cc7SJohannes Berg  *	and @dtim_period will be valid, @tail is optional.
1228ed1b6cc7SJohannes Berg  * @set_beacon: Change the beacon parameters for an access point mode
1229ed1b6cc7SJohannes Berg  *	interface. This should reject the call when no beacon has been
1230ed1b6cc7SJohannes Berg  *	configured.
1231ed1b6cc7SJohannes Berg  * @del_beacon: Remove beacon configuration and stop sending the beacon.
12325727ef1bSJohannes Berg  *
12335727ef1bSJohannes Berg  * @add_station: Add a new station.
12345727ef1bSJohannes Berg  * @del_station: Remove a station; @mac may be NULL to remove all stations.
12355727ef1bSJohannes Berg  * @change_station: Modify a given station.
1236abe37c4bSJohannes Berg  * @get_station: get station information for the station identified by @mac
1237abe37c4bSJohannes Berg  * @dump_station: dump station callback -- resume dump at index @idx
1238abe37c4bSJohannes Berg  *
1239abe37c4bSJohannes Berg  * @add_mpath: add a fixed mesh path
1240abe37c4bSJohannes Berg  * @del_mpath: delete a given mesh path
1241abe37c4bSJohannes Berg  * @change_mpath: change a given mesh path
1242abe37c4bSJohannes Berg  * @get_mpath: get a mesh path for the given parameters
1243abe37c4bSJohannes Berg  * @dump_mpath: dump mesh path callback -- resume dump at index @idx
1244f52555a4SJohannes Berg  * @join_mesh: join the mesh network with the specified parameters
1245f52555a4SJohannes Berg  * @leave_mesh: leave the current mesh network
12462ec600d6SLuis Carlos Cobo  *
124724bdd9f4SJavier Cardona  * @get_mesh_config: Get the current mesh configuration
124893da9cc1Scolin@cozybit.com  *
124924bdd9f4SJavier Cardona  * @update_mesh_config: Update mesh parameters on a running mesh.
125093da9cc1Scolin@cozybit.com  *	The mask is a bitfield which tells us which parameters to
125193da9cc1Scolin@cozybit.com  *	set, and which to leave alone.
125293da9cc1Scolin@cozybit.com  *
12539f1ba906SJouni Malinen  * @change_bss: Modify parameters for a given BSS.
125431888487SJouni Malinen  *
125531888487SJouni Malinen  * @set_txq_params: Set TX queue parameters
125672bdcf34SJouni Malinen  *
1257f444de05SJohannes Berg  * @set_channel: Set channel for a given wireless interface. Some devices
1258f444de05SJohannes Berg  *	may support multi-channel operation (by channel hopping) so cfg80211
1259f444de05SJohannes Berg  *	doesn't verify much. Note, however, that the passed netdev may be
1260f444de05SJohannes Berg  *	%NULL as well if the user requested changing the channel for the
1261f444de05SJohannes Berg  *	device itself, or for a monitor interface.
12629aed3cc1SJouni Malinen  *
12632a519311SJohannes Berg  * @scan: Request to do a scan. If returning zero, the scan request is given
12642a519311SJohannes Berg  *	the driver, and will be valid until passed to cfg80211_scan_done().
12652a519311SJohannes Berg  *	For scan results, call cfg80211_inform_bss(); you can call this outside
12662a519311SJohannes Berg  *	the scan/scan_done bracket too.
1267636a5d36SJouni Malinen  *
1268636a5d36SJouni Malinen  * @auth: Request to authenticate with the specified peer
1269636a5d36SJouni Malinen  * @assoc: Request to (re)associate with the specified peer
1270636a5d36SJouni Malinen  * @deauth: Request to deauthenticate from the specified peer
1271636a5d36SJouni Malinen  * @disassoc: Request to disassociate from the specified peer
127204a773adSJohannes Berg  *
1273b23aa676SSamuel Ortiz  * @connect: Connect to the ESS with the specified parameters. When connected,
1274b23aa676SSamuel Ortiz  *	call cfg80211_connect_result() with status code %WLAN_STATUS_SUCCESS.
1275b23aa676SSamuel Ortiz  *	If the connection fails for some reason, call cfg80211_connect_result()
1276b23aa676SSamuel Ortiz  *	with the status from the AP.
1277b23aa676SSamuel Ortiz  * @disconnect: Disconnect from the BSS/ESS.
1278b23aa676SSamuel Ortiz  *
127904a773adSJohannes Berg  * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
128004a773adSJohannes Berg  *	cfg80211_ibss_joined(), also call that function when changing BSSID due
128104a773adSJohannes Berg  *	to a merge.
128204a773adSJohannes Berg  * @leave_ibss: Leave the IBSS.
1283b9a5f8caSJouni Malinen  *
1284b9a5f8caSJouni Malinen  * @set_wiphy_params: Notify that wiphy parameters have changed;
1285b9a5f8caSJouni Malinen  *	@changed bitfield (see &enum wiphy_params_flags) describes which values
1286b9a5f8caSJouni Malinen  *	have changed. The actual parameter values are available in
1287b9a5f8caSJouni Malinen  *	struct wiphy. If returning an error, no value should be changed.
12887643a2c3SJohannes Berg  *
12897643a2c3SJohannes Berg  * @set_tx_power: set the transmit power according to the parameters
12907643a2c3SJohannes Berg  * @get_tx_power: store the current TX power into the dbm variable;
12911f87f7d3SJohannes Berg  *	return 0 if successful
12921f87f7d3SJohannes Berg  *
1293abe37c4bSJohannes Berg  * @set_wds_peer: set the WDS peer for a WDS interface
1294abe37c4bSJohannes Berg  *
12951f87f7d3SJohannes Berg  * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
12961f87f7d3SJohannes Berg  *	functions to adjust rfkill hw state
1297aff89a9bSJohannes Berg  *
129861fa713cSHolger Schurig  * @dump_survey: get site survey information.
129961fa713cSHolger Schurig  *
13009588bbd5SJouni Malinen  * @remain_on_channel: Request the driver to remain awake on the specified
13019588bbd5SJouni Malinen  *	channel for the specified duration to complete an off-channel
13029588bbd5SJouni Malinen  *	operation (e.g., public action frame exchange). When the driver is
13039588bbd5SJouni Malinen  *	ready on the requested channel, it must indicate this with an event
13049588bbd5SJouni Malinen  *	notification by calling cfg80211_ready_on_channel().
13059588bbd5SJouni Malinen  * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
13069588bbd5SJouni Malinen  *	This allows the operation to be terminated prior to timeout based on
13079588bbd5SJouni Malinen  *	the duration value.
1308f7ca38dfSJohannes Berg  * @mgmt_tx: Transmit a management frame.
1309f7ca38dfSJohannes Berg  * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
1310f7ca38dfSJohannes Berg  *	frame on another channel
13119588bbd5SJouni Malinen  *
1312aff89a9bSJohannes Berg  * @testmode_cmd: run a test mode command
131367fbb16bSSamuel Ortiz  *
1314abe37c4bSJohannes Berg  * @set_bitrate_mask: set the bitrate mask configuration
1315abe37c4bSJohannes Berg  *
131667fbb16bSSamuel Ortiz  * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
131767fbb16bSSamuel Ortiz  *	devices running firmwares capable of generating the (re) association
131867fbb16bSSamuel Ortiz  *	RSN IE. It allows for faster roaming between WPA2 BSSIDs.
131967fbb16bSSamuel Ortiz  * @del_pmksa: Delete a cached PMKID.
132067fbb16bSSamuel Ortiz  * @flush_pmksa: Flush all cached PMKIDs.
13219043f3b8SJuuso Oikarinen  * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
13229043f3b8SJuuso Oikarinen  *	allows the driver to adjust the dynamic ps timeout value.
1323d6dc1a38SJuuso Oikarinen  * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
1324807f8a8cSLuciano Coelho  * @sched_scan_start: Tell the driver to start a scheduled scan.
1325807f8a8cSLuciano Coelho  * @sched_scan_stop: Tell the driver to stop an ongoing scheduled
1326807f8a8cSLuciano Coelho  *	scan.  The driver_initiated flag specifies whether the driver
1327807f8a8cSLuciano Coelho  *	itself has informed that the scan has stopped.
132867fbb16bSSamuel Ortiz  *
1329271733cfSJohannes Berg  * @mgmt_frame_register: Notify driver that a management frame type was
1330271733cfSJohannes Berg  *	registered. Note that this callback may not sleep, and cannot run
1331271733cfSJohannes Berg  *	concurrently with itself.
1332547025d5SBruno Randolf  *
1333547025d5SBruno Randolf  * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
1334547025d5SBruno Randolf  *	Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
1335547025d5SBruno Randolf  *	reject TX/RX mask combinations they cannot support by returning -EINVAL
1336547025d5SBruno Randolf  *	(also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
1337547025d5SBruno Randolf  *
1338547025d5SBruno Randolf  * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
13393677713bSJohn W. Linville  *
13403677713bSJohn W. Linville  * @set_ringparam: Set tx and rx ring sizes.
13413677713bSJohn W. Linville  *
13423677713bSJohn W. Linville  * @get_ringparam: Get tx and rx ring current and maximum sizes.
1343704232c2SJohannes Berg  */
1344704232c2SJohannes Berg struct cfg80211_ops {
1345ff1b6e69SJohannes Berg 	int	(*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
13460378b3f1SJohannes Berg 	int	(*resume)(struct wiphy *wiphy);
13470378b3f1SJohannes Berg 
1348f9e10ce4SJohannes Berg 	struct net_device * (*add_virtual_intf)(struct wiphy *wiphy,
1349f9e10ce4SJohannes Berg 						char *name,
1350f9e10ce4SJohannes Berg 						enum nl80211_iftype type,
1351f9e10ce4SJohannes Berg 						u32 *flags,
13522ec600d6SLuis Carlos Cobo 						struct vif_params *params);
1353463d0183SJohannes Berg 	int	(*del_virtual_intf)(struct wiphy *wiphy, struct net_device *dev);
1354e36d56b6SJohannes Berg 	int	(*change_virtual_intf)(struct wiphy *wiphy,
1355e36d56b6SJohannes Berg 				       struct net_device *dev,
13562ec600d6SLuis Carlos Cobo 				       enum nl80211_iftype type, u32 *flags,
13572ec600d6SLuis Carlos Cobo 				       struct vif_params *params);
135841ade00fSJohannes Berg 
135941ade00fSJohannes Berg 	int	(*add_key)(struct wiphy *wiphy, struct net_device *netdev,
1360e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr,
136141ade00fSJohannes Berg 			   struct key_params *params);
136241ade00fSJohannes Berg 	int	(*get_key)(struct wiphy *wiphy, struct net_device *netdev,
1363e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr,
1364e31b8213SJohannes Berg 			   void *cookie,
136541ade00fSJohannes Berg 			   void (*callback)(void *cookie, struct key_params*));
136641ade00fSJohannes Berg 	int	(*del_key)(struct wiphy *wiphy, struct net_device *netdev,
1367e31b8213SJohannes Berg 			   u8 key_index, bool pairwise, const u8 *mac_addr);
136841ade00fSJohannes Berg 	int	(*set_default_key)(struct wiphy *wiphy,
136941ade00fSJohannes Berg 				   struct net_device *netdev,
1370dbd2fd65SJohannes Berg 				   u8 key_index, bool unicast, bool multicast);
13713cfcf6acSJouni Malinen 	int	(*set_default_mgmt_key)(struct wiphy *wiphy,
13723cfcf6acSJouni Malinen 					struct net_device *netdev,
13733cfcf6acSJouni Malinen 					u8 key_index);
1374ed1b6cc7SJohannes Berg 
1375ed1b6cc7SJohannes Berg 	int	(*add_beacon)(struct wiphy *wiphy, struct net_device *dev,
1376ed1b6cc7SJohannes Berg 			      struct beacon_parameters *info);
1377ed1b6cc7SJohannes Berg 	int	(*set_beacon)(struct wiphy *wiphy, struct net_device *dev,
1378ed1b6cc7SJohannes Berg 			      struct beacon_parameters *info);
1379ed1b6cc7SJohannes Berg 	int	(*del_beacon)(struct wiphy *wiphy, struct net_device *dev);
13805727ef1bSJohannes Berg 
13815727ef1bSJohannes Berg 
13825727ef1bSJohannes Berg 	int	(*add_station)(struct wiphy *wiphy, struct net_device *dev,
13835727ef1bSJohannes Berg 			       u8 *mac, struct station_parameters *params);
13845727ef1bSJohannes Berg 	int	(*del_station)(struct wiphy *wiphy, struct net_device *dev,
13855727ef1bSJohannes Berg 			       u8 *mac);
13865727ef1bSJohannes Berg 	int	(*change_station)(struct wiphy *wiphy, struct net_device *dev,
13875727ef1bSJohannes Berg 				  u8 *mac, struct station_parameters *params);
1388fd5b74dcSJohannes Berg 	int	(*get_station)(struct wiphy *wiphy, struct net_device *dev,
13892ec600d6SLuis Carlos Cobo 			       u8 *mac, struct station_info *sinfo);
13902ec600d6SLuis Carlos Cobo 	int	(*dump_station)(struct wiphy *wiphy, struct net_device *dev,
13912ec600d6SLuis Carlos Cobo 			       int idx, u8 *mac, struct station_info *sinfo);
13922ec600d6SLuis Carlos Cobo 
13932ec600d6SLuis Carlos Cobo 	int	(*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
13942ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop);
13952ec600d6SLuis Carlos Cobo 	int	(*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
13962ec600d6SLuis Carlos Cobo 			       u8 *dst);
13972ec600d6SLuis Carlos Cobo 	int	(*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
13982ec600d6SLuis Carlos Cobo 				  u8 *dst, u8 *next_hop);
13992ec600d6SLuis Carlos Cobo 	int	(*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
14002ec600d6SLuis Carlos Cobo 			       u8 *dst, u8 *next_hop,
14012ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
14022ec600d6SLuis Carlos Cobo 	int	(*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
14032ec600d6SLuis Carlos Cobo 			       int idx, u8 *dst, u8 *next_hop,
14042ec600d6SLuis Carlos Cobo 			       struct mpath_info *pinfo);
140524bdd9f4SJavier Cardona 	int	(*get_mesh_config)(struct wiphy *wiphy,
140693da9cc1Scolin@cozybit.com 				struct net_device *dev,
140793da9cc1Scolin@cozybit.com 				struct mesh_config *conf);
140824bdd9f4SJavier Cardona 	int	(*update_mesh_config)(struct wiphy *wiphy,
140929cbe68cSJohannes Berg 				      struct net_device *dev, u32 mask,
141029cbe68cSJohannes Berg 				      const struct mesh_config *nconf);
141129cbe68cSJohannes Berg 	int	(*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
141229cbe68cSJohannes Berg 			     const struct mesh_config *conf,
141329cbe68cSJohannes Berg 			     const struct mesh_setup *setup);
141429cbe68cSJohannes Berg 	int	(*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
141529cbe68cSJohannes Berg 
14169f1ba906SJouni Malinen 	int	(*change_bss)(struct wiphy *wiphy, struct net_device *dev,
14179f1ba906SJouni Malinen 			      struct bss_parameters *params);
141831888487SJouni Malinen 
141931888487SJouni Malinen 	int	(*set_txq_params)(struct wiphy *wiphy,
142031888487SJouni Malinen 				  struct ieee80211_txq_params *params);
142172bdcf34SJouni Malinen 
1422f444de05SJohannes Berg 	int	(*set_channel)(struct wiphy *wiphy, struct net_device *dev,
142372bdcf34SJouni Malinen 			       struct ieee80211_channel *chan,
1424094d05dcSSujith 			       enum nl80211_channel_type channel_type);
14259aed3cc1SJouni Malinen 
14262a519311SJohannes Berg 	int	(*scan)(struct wiphy *wiphy, struct net_device *dev,
14272a519311SJohannes Berg 			struct cfg80211_scan_request *request);
1428636a5d36SJouni Malinen 
1429636a5d36SJouni Malinen 	int	(*auth)(struct wiphy *wiphy, struct net_device *dev,
1430636a5d36SJouni Malinen 			struct cfg80211_auth_request *req);
1431636a5d36SJouni Malinen 	int	(*assoc)(struct wiphy *wiphy, struct net_device *dev,
1432636a5d36SJouni Malinen 			 struct cfg80211_assoc_request *req);
1433636a5d36SJouni Malinen 	int	(*deauth)(struct wiphy *wiphy, struct net_device *dev,
1434667503ddSJohannes Berg 			  struct cfg80211_deauth_request *req,
1435667503ddSJohannes Berg 			  void *cookie);
1436636a5d36SJouni Malinen 	int	(*disassoc)(struct wiphy *wiphy, struct net_device *dev,
1437667503ddSJohannes Berg 			    struct cfg80211_disassoc_request *req,
1438667503ddSJohannes Berg 			    void *cookie);
143904a773adSJohannes Berg 
1440b23aa676SSamuel Ortiz 	int	(*connect)(struct wiphy *wiphy, struct net_device *dev,
1441b23aa676SSamuel Ortiz 			   struct cfg80211_connect_params *sme);
1442b23aa676SSamuel Ortiz 	int	(*disconnect)(struct wiphy *wiphy, struct net_device *dev,
1443b23aa676SSamuel Ortiz 			      u16 reason_code);
1444b23aa676SSamuel Ortiz 
144504a773adSJohannes Berg 	int	(*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
144604a773adSJohannes Berg 			     struct cfg80211_ibss_params *params);
144704a773adSJohannes Berg 	int	(*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
1448b9a5f8caSJouni Malinen 
1449b9a5f8caSJouni Malinen 	int	(*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
14507643a2c3SJohannes Berg 
14517643a2c3SJohannes Berg 	int	(*set_tx_power)(struct wiphy *wiphy,
1452fa61cf70SJuuso Oikarinen 				enum nl80211_tx_power_setting type, int mbm);
14537643a2c3SJohannes Berg 	int	(*get_tx_power)(struct wiphy *wiphy, int *dbm);
14541f87f7d3SJohannes Berg 
1455ab737a4fSJohannes Berg 	int	(*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
1456388ac775SJohannes Berg 				const u8 *addr);
1457ab737a4fSJohannes Berg 
14581f87f7d3SJohannes Berg 	void	(*rfkill_poll)(struct wiphy *wiphy);
1459aff89a9bSJohannes Berg 
1460aff89a9bSJohannes Berg #ifdef CONFIG_NL80211_TESTMODE
1461aff89a9bSJohannes Berg 	int	(*testmode_cmd)(struct wiphy *wiphy, void *data, int len);
1462aff89a9bSJohannes Berg #endif
1463bc92afd9SJohannes Berg 
14649930380fSJohannes Berg 	int	(*set_bitrate_mask)(struct wiphy *wiphy,
14659930380fSJohannes Berg 				    struct net_device *dev,
14669930380fSJohannes Berg 				    const u8 *peer,
14679930380fSJohannes Berg 				    const struct cfg80211_bitrate_mask *mask);
14689930380fSJohannes Berg 
146961fa713cSHolger Schurig 	int	(*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
147061fa713cSHolger Schurig 			int idx, struct survey_info *info);
147161fa713cSHolger Schurig 
147267fbb16bSSamuel Ortiz 	int	(*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
147367fbb16bSSamuel Ortiz 			     struct cfg80211_pmksa *pmksa);
147467fbb16bSSamuel Ortiz 	int	(*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
147567fbb16bSSamuel Ortiz 			     struct cfg80211_pmksa *pmksa);
147667fbb16bSSamuel Ortiz 	int	(*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
147767fbb16bSSamuel Ortiz 
14789588bbd5SJouni Malinen 	int	(*remain_on_channel)(struct wiphy *wiphy,
14799588bbd5SJouni Malinen 				     struct net_device *dev,
14809588bbd5SJouni Malinen 				     struct ieee80211_channel *chan,
14819588bbd5SJouni Malinen 				     enum nl80211_channel_type channel_type,
14829588bbd5SJouni Malinen 				     unsigned int duration,
14839588bbd5SJouni Malinen 				     u64 *cookie);
14849588bbd5SJouni Malinen 	int	(*cancel_remain_on_channel)(struct wiphy *wiphy,
14859588bbd5SJouni Malinen 					    struct net_device *dev,
14869588bbd5SJouni Malinen 					    u64 cookie);
14879588bbd5SJouni Malinen 
14882e161f78SJohannes Berg 	int	(*mgmt_tx)(struct wiphy *wiphy, struct net_device *dev,
1489f7ca38dfSJohannes Berg 			  struct ieee80211_channel *chan, bool offchan,
1490026331c4SJouni Malinen 			  enum nl80211_channel_type channel_type,
1491f7ca38dfSJohannes Berg 			  bool channel_type_valid, unsigned int wait,
1492026331c4SJouni Malinen 			  const u8 *buf, size_t len, u64 *cookie);
1493f7ca38dfSJohannes Berg 	int	(*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
1494f7ca38dfSJohannes Berg 				       struct net_device *dev,
1495f7ca38dfSJohannes Berg 				       u64 cookie);
1496026331c4SJouni Malinen 
1497bc92afd9SJohannes Berg 	int	(*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
1498bc92afd9SJohannes Berg 				  bool enabled, int timeout);
1499d6dc1a38SJuuso Oikarinen 
1500d6dc1a38SJuuso Oikarinen 	int	(*set_cqm_rssi_config)(struct wiphy *wiphy,
1501d6dc1a38SJuuso Oikarinen 				       struct net_device *dev,
1502d6dc1a38SJuuso Oikarinen 				       s32 rssi_thold, u32 rssi_hyst);
1503271733cfSJohannes Berg 
1504271733cfSJohannes Berg 	void	(*mgmt_frame_register)(struct wiphy *wiphy,
1505271733cfSJohannes Berg 				       struct net_device *dev,
1506271733cfSJohannes Berg 				       u16 frame_type, bool reg);
1507afe0cbf8SBruno Randolf 
1508afe0cbf8SBruno Randolf 	int	(*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
1509afe0cbf8SBruno Randolf 	int	(*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
15103677713bSJohn W. Linville 
15113677713bSJohn W. Linville 	int	(*set_ringparam)(struct wiphy *wiphy, u32 tx, u32 rx);
15123677713bSJohn W. Linville 	void	(*get_ringparam)(struct wiphy *wiphy,
15133677713bSJohn W. Linville 				 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
1514807f8a8cSLuciano Coelho 
1515807f8a8cSLuciano Coelho 	int	(*sched_scan_start)(struct wiphy *wiphy,
1516807f8a8cSLuciano Coelho 				struct net_device *dev,
1517807f8a8cSLuciano Coelho 				struct cfg80211_sched_scan_request *request);
1518807f8a8cSLuciano Coelho 	int	(*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev,
1519807f8a8cSLuciano Coelho 				   bool driver_initiated);
1520704232c2SJohannes Berg };
1521704232c2SJohannes Berg 
1522d3236553SJohannes Berg /*
1523d3236553SJohannes Berg  * wireless hardware and networking interfaces structures
1524d3236553SJohannes Berg  * and registration/helper functions
1525d3236553SJohannes Berg  */
1526d3236553SJohannes Berg 
1527d3236553SJohannes Berg /**
15285be83de5SJohannes Berg  * enum wiphy_flags - wiphy capability flags
15295be83de5SJohannes Berg  *
15305be83de5SJohannes Berg  * @WIPHY_FLAG_CUSTOM_REGULATORY:  tells us the driver for this device
1531d3236553SJohannes Berg  * 	has its own custom regulatory domain and cannot identify the
1532d3236553SJohannes Berg  * 	ISO / IEC 3166 alpha2 it belongs to. When this is enabled
1533d3236553SJohannes Berg  * 	we will disregard the first regulatory hint (when the
1534d3236553SJohannes Berg  * 	initiator is %REGDOM_SET_BY_CORE).
15355be83de5SJohannes Berg  * @WIPHY_FLAG_STRICT_REGULATORY: tells us the driver for this device will
15365be83de5SJohannes Berg  *	ignore regulatory domain settings until it gets its own regulatory
1537749b527bSLuis R. Rodriguez  *	domain via its regulatory_hint() unless the regulatory hint is
1538749b527bSLuis R. Rodriguez  *	from a country IE. After its gets its own regulatory domain it will
1539749b527bSLuis R. Rodriguez  *	only allow further regulatory domain settings to further enhance
1540749b527bSLuis R. Rodriguez  *	compliance. For example if channel 13 and 14 are disabled by this
1541749b527bSLuis R. Rodriguez  *	regulatory domain no user regulatory domain can enable these channels
1542749b527bSLuis R. Rodriguez  *	at a later time. This can be used for devices which do not have
1543749b527bSLuis R. Rodriguez  *	calibration information guaranteed for frequencies or settings
1544749b527bSLuis R. Rodriguez  *	outside of its regulatory domain.
15455be83de5SJohannes Berg  * @WIPHY_FLAG_DISABLE_BEACON_HINTS: enable this if your driver needs to ensure
15465be83de5SJohannes Berg  *	that passive scan flags and beaconing flags may not be lifted by
15475be83de5SJohannes Berg  *	cfg80211 due to regulatory beacon hints. For more information on beacon
154837184244SLuis R. Rodriguez  *	hints read the documenation for regulatory_hint_found_beacon()
15495be83de5SJohannes Berg  * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
15505be83de5SJohannes Berg  *	wiphy at all
15515be83de5SJohannes Berg  * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
15525be83de5SJohannes Berg  *	by default -- this flag will be set depending on the kernel's default
15535be83de5SJohannes Berg  *	on wiphy_new(), but can be changed by the driver if it has a good
15545be83de5SJohannes Berg  *	reason to override the default
15559bc383deSJohannes Berg  * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
15569bc383deSJohannes Berg  *	on a VLAN interface)
15579bc383deSJohannes Berg  * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
1558c0692b8fSJohannes Berg  * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
1559c0692b8fSJohannes Berg  *	control port protocol ethertype. The device also honours the
1560c0692b8fSJohannes Berg  *	control_port_no_encrypt flag.
1561e31b8213SJohannes Berg  * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
156215d5dda6SJavier Cardona  * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
156315d5dda6SJavier Cardona  *	auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
1564807f8a8cSLuciano Coelho  * @WIPHY_FLAG_SCHED_SCAN: The device supports scheduled scans.
15655be83de5SJohannes Berg  */
15665be83de5SJohannes Berg enum wiphy_flags {
15675be83de5SJohannes Berg 	WIPHY_FLAG_CUSTOM_REGULATORY		= BIT(0),
15685be83de5SJohannes Berg 	WIPHY_FLAG_STRICT_REGULATORY		= BIT(1),
15695be83de5SJohannes Berg 	WIPHY_FLAG_DISABLE_BEACON_HINTS		= BIT(2),
15705be83de5SJohannes Berg 	WIPHY_FLAG_NETNS_OK			= BIT(3),
15715be83de5SJohannes Berg 	WIPHY_FLAG_PS_ON_BY_DEFAULT		= BIT(4),
15729bc383deSJohannes Berg 	WIPHY_FLAG_4ADDR_AP			= BIT(5),
15739bc383deSJohannes Berg 	WIPHY_FLAG_4ADDR_STATION		= BIT(6),
1574c0692b8fSJohannes Berg 	WIPHY_FLAG_CONTROL_PORT_PROTOCOL	= BIT(7),
1575309075cfSJussi Kivilinna 	WIPHY_FLAG_IBSS_RSN			= BIT(8),
157615d5dda6SJavier Cardona 	WIPHY_FLAG_MESH_AUTH			= BIT(10),
1577807f8a8cSLuciano Coelho 	WIPHY_FLAG_SUPPORTS_SCHED_SCAN		= BIT(11),
15785be83de5SJohannes Berg };
15795be83de5SJohannes Berg 
1580ef15aac6SJohannes Berg struct mac_address {
1581ef15aac6SJohannes Berg 	u8 addr[ETH_ALEN];
1582ef15aac6SJohannes Berg };
1583ef15aac6SJohannes Berg 
15842e161f78SJohannes Berg struct ieee80211_txrx_stypes {
15852e161f78SJohannes Berg 	u16 tx, rx;
15862e161f78SJohannes Berg };
15872e161f78SJohannes Berg 
15885be83de5SJohannes Berg /**
1589ff1b6e69SJohannes Berg  * enum wiphy_wowlan_support_flags - WoWLAN support flags
1590ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
1591ff1b6e69SJohannes Berg  *	trigger that keeps the device operating as-is and
1592ff1b6e69SJohannes Berg  *	wakes up the host on any activity, for example a
1593ff1b6e69SJohannes Berg  *	received packet that passed filtering; note that the
1594ff1b6e69SJohannes Berg  *	packet should be preserved in that case
1595ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
1596ff1b6e69SJohannes Berg  *	(see nl80211.h)
1597ff1b6e69SJohannes Berg  * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
1598ff1b6e69SJohannes Berg  */
1599ff1b6e69SJohannes Berg enum wiphy_wowlan_support_flags {
1600ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_ANY	= BIT(0),
1601ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_MAGIC_PKT	= BIT(1),
1602ff1b6e69SJohannes Berg 	WIPHY_WOWLAN_DISCONNECT	= BIT(2),
1603ff1b6e69SJohannes Berg };
1604ff1b6e69SJohannes Berg 
1605ff1b6e69SJohannes Berg /**
1606ff1b6e69SJohannes Berg  * struct wiphy_wowlan_support - WoWLAN support data
1607ff1b6e69SJohannes Berg  * @flags: see &enum wiphy_wowlan_support_flags
1608ff1b6e69SJohannes Berg  * @n_patterns: number of supported wakeup patterns
1609ff1b6e69SJohannes Berg  *	(see nl80211.h for the pattern definition)
1610ff1b6e69SJohannes Berg  * @pattern_max_len: maximum length of each pattern
1611ff1b6e69SJohannes Berg  * @pattern_min_len: minimum length of each pattern
1612ff1b6e69SJohannes Berg  */
1613ff1b6e69SJohannes Berg struct wiphy_wowlan_support {
1614ff1b6e69SJohannes Berg 	u32 flags;
1615ff1b6e69SJohannes Berg 	int n_patterns;
1616ff1b6e69SJohannes Berg 	int pattern_max_len;
1617ff1b6e69SJohannes Berg 	int pattern_min_len;
1618ff1b6e69SJohannes Berg };
1619ff1b6e69SJohannes Berg 
1620ff1b6e69SJohannes Berg /**
16215be83de5SJohannes Berg  * struct wiphy - wireless hardware description
16222784fe91SLuis R. Rodriguez  * @reg_notifier: the driver's regulatory notification callback,
16232784fe91SLuis R. Rodriguez  *	note that if your driver uses wiphy_apply_custom_regulatory()
16242784fe91SLuis R. Rodriguez  *	the reg_notifier's request can be passed as NULL
1625d3236553SJohannes Berg  * @regd: the driver's regulatory domain, if one was requested via
1626d3236553SJohannes Berg  * 	the regulatory_hint() API. This can be used by the driver
1627d3236553SJohannes Berg  *	on the reg_notifier() if it chooses to ignore future
1628d3236553SJohannes Berg  *	regulatory domain changes caused by other drivers.
1629d3236553SJohannes Berg  * @signal_type: signal type reported in &struct cfg80211_bss.
1630d3236553SJohannes Berg  * @cipher_suites: supported cipher suites
1631d3236553SJohannes Berg  * @n_cipher_suites: number of supported cipher suites
1632b9a5f8caSJouni Malinen  * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
1633b9a5f8caSJouni Malinen  * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
1634b9a5f8caSJouni Malinen  * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
1635b9a5f8caSJouni Malinen  *	-1 = fragmentation disabled, only odd values >= 256 used
1636b9a5f8caSJouni Malinen  * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
1637abe37c4bSJohannes Berg  * @_net: the network namespace this wiphy currently lives in
1638ef15aac6SJohannes Berg  * @perm_addr: permanent MAC address of this device
1639ef15aac6SJohannes Berg  * @addr_mask: If the device supports multiple MAC addresses by masking,
1640ef15aac6SJohannes Berg  *	set this to a mask with variable bits set to 1, e.g. if the last
1641ef15aac6SJohannes Berg  *	four bits are variable then set it to 00:...:00:0f. The actual
1642ef15aac6SJohannes Berg  *	variable bits shall be determined by the interfaces added, with
1643ef15aac6SJohannes Berg  *	interfaces not matching the mask being rejected to be brought up.
1644ef15aac6SJohannes Berg  * @n_addresses: number of addresses in @addresses.
1645ef15aac6SJohannes Berg  * @addresses: If the device has more than one address, set this pointer
1646ef15aac6SJohannes Berg  *	to a list of addresses (6 bytes each). The first one will be used
1647ef15aac6SJohannes Berg  *	by default for perm_addr. In this case, the mask should be set to
1648ef15aac6SJohannes Berg  *	all-zeroes. In this case it is assumed that the device can handle
1649ef15aac6SJohannes Berg  *	the same number of arbitrary MAC addresses.
1650abe37c4bSJohannes Berg  * @debugfsdir: debugfs directory used for this wiphy, will be renamed
1651abe37c4bSJohannes Berg  *	automatically on wiphy renames
1652abe37c4bSJohannes Berg  * @dev: (virtual) struct device for this wiphy
1653abe37c4bSJohannes Berg  * @wext: wireless extension handlers
1654abe37c4bSJohannes Berg  * @priv: driver private data (sized according to wiphy_new() parameter)
1655abe37c4bSJohannes Berg  * @interface_modes: bitmask of interfaces types valid for this wiphy,
1656abe37c4bSJohannes Berg  *	must be set by driver
1657abe37c4bSJohannes Berg  * @flags: wiphy flags, see &enum wiphy_flags
1658abe37c4bSJohannes Berg  * @bss_priv_size: each BSS struct has private data allocated with it,
1659abe37c4bSJohannes Berg  *	this variable determines its size
1660abe37c4bSJohannes Berg  * @max_scan_ssids: maximum number of SSIDs the device can scan for in
1661abe37c4bSJohannes Berg  *	any given scan
1662abe37c4bSJohannes Berg  * @max_scan_ie_len: maximum length of user-controlled IEs device can
1663abe37c4bSJohannes Berg  *	add to probe request frames transmitted during a scan, must not
1664abe37c4bSJohannes Berg  *	include fixed IEs like supported rates
1665abe37c4bSJohannes Berg  * @coverage_class: current coverage class
1666abe37c4bSJohannes Berg  * @fw_version: firmware version for ethtool reporting
1667abe37c4bSJohannes Berg  * @hw_version: hardware version for ethtool reporting
1668abe37c4bSJohannes Berg  * @max_num_pmkids: maximum number of PMKIDs supported by device
1669abe37c4bSJohannes Berg  * @privid: a pointer that drivers can use to identify if an arbitrary
1670abe37c4bSJohannes Berg  *	wiphy is theirs, e.g. in global notifiers
1671abe37c4bSJohannes Berg  * @bands: information about bands/channels supported by this device
16722e161f78SJohannes Berg  *
16732e161f78SJohannes Berg  * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
16742e161f78SJohannes Berg  *	transmitted through nl80211, points to an array indexed by interface
16752e161f78SJohannes Berg  *	type
1676a7ffac95SBruno Randolf  *
16777f531e03SBruno Randolf  * @available_antennas_tx: bitmap of antennas which are available to be
16787f531e03SBruno Randolf  *	configured as TX antennas. Antenna configuration commands will be
16797f531e03SBruno Randolf  *	rejected unless this or @available_antennas_rx is set.
16807f531e03SBruno Randolf  *
16817f531e03SBruno Randolf  * @available_antennas_rx: bitmap of antennas which are available to be
16827f531e03SBruno Randolf  *	configured as RX antennas. Antenna configuration commands will be
16837f531e03SBruno Randolf  *	rejected unless this or @available_antennas_tx is set.
1684a293911dSJohannes Berg  *
1685a293911dSJohannes Berg  * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
1686a293911dSJohannes Berg  *	may request, if implemented.
1687ff1b6e69SJohannes Berg  *
1688ff1b6e69SJohannes Berg  * @wowlan: WoWLAN support information
1689d3236553SJohannes Berg  */
1690d3236553SJohannes Berg struct wiphy {
1691d3236553SJohannes Berg 	/* assign these fields before you register the wiphy */
1692d3236553SJohannes Berg 
1693ef15aac6SJohannes Berg 	/* permanent MAC address(es) */
1694d3236553SJohannes Berg 	u8 perm_addr[ETH_ALEN];
1695ef15aac6SJohannes Berg 	u8 addr_mask[ETH_ALEN];
1696ef15aac6SJohannes Berg 
1697ef15aac6SJohannes Berg 	struct mac_address *addresses;
1698d3236553SJohannes Berg 
16992e161f78SJohannes Berg 	const struct ieee80211_txrx_stypes *mgmt_stypes;
17002e161f78SJohannes Berg 
17012e161f78SJohannes Berg 	u16 n_addresses;
17022e161f78SJohannes Berg 
1703d3236553SJohannes Berg 	/* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
1704d3236553SJohannes Berg 	u16 interface_modes;
1705d3236553SJohannes Berg 
17065be83de5SJohannes Berg 	u32 flags;
1707463d0183SJohannes Berg 
1708d3236553SJohannes Berg 	enum cfg80211_signal_type signal_type;
1709d3236553SJohannes Berg 
1710d3236553SJohannes Berg 	int bss_priv_size;
1711d3236553SJohannes Berg 	u8 max_scan_ssids;
1712d3236553SJohannes Berg 	u16 max_scan_ie_len;
1713d3236553SJohannes Berg 
1714d3236553SJohannes Berg 	int n_cipher_suites;
1715d3236553SJohannes Berg 	const u32 *cipher_suites;
1716d3236553SJohannes Berg 
1717b9a5f8caSJouni Malinen 	u8 retry_short;
1718b9a5f8caSJouni Malinen 	u8 retry_long;
1719b9a5f8caSJouni Malinen 	u32 frag_threshold;
1720b9a5f8caSJouni Malinen 	u32 rts_threshold;
172181077e82SLukáš Turek 	u8 coverage_class;
1722b9a5f8caSJouni Malinen 
1723dfce95f5SKalle Valo 	char fw_version[ETHTOOL_BUSINFO_LEN];
1724dfce95f5SKalle Valo 	u32 hw_version;
1725dfce95f5SKalle Valo 
1726ff1b6e69SJohannes Berg 	struct wiphy_wowlan_support wowlan;
1727ff1b6e69SJohannes Berg 
1728a293911dSJohannes Berg 	u16 max_remain_on_channel_duration;
1729a293911dSJohannes Berg 
173067fbb16bSSamuel Ortiz 	u8 max_num_pmkids;
173167fbb16bSSamuel Ortiz 
17327f531e03SBruno Randolf 	u32 available_antennas_tx;
17337f531e03SBruno Randolf 	u32 available_antennas_rx;
1734a7ffac95SBruno Randolf 
1735d3236553SJohannes Berg 	/* If multiple wiphys are registered and you're handed e.g.
1736d3236553SJohannes Berg 	 * a regular netdev with assigned ieee80211_ptr, you won't
1737d3236553SJohannes Berg 	 * know whether it points to a wiphy your driver has registered
1738d3236553SJohannes Berg 	 * or not. Assign this to something global to your driver to
1739d3236553SJohannes Berg 	 * help determine whether you own this wiphy or not. */
1740cf5aa2f1SDavid Kilroy 	const void *privid;
1741d3236553SJohannes Berg 
1742d3236553SJohannes Berg 	struct ieee80211_supported_band *bands[IEEE80211_NUM_BANDS];
1743d3236553SJohannes Berg 
1744d3236553SJohannes Berg 	/* Lets us get back the wiphy on the callback */
1745d3236553SJohannes Berg 	int (*reg_notifier)(struct wiphy *wiphy,
1746d3236553SJohannes Berg 			    struct regulatory_request *request);
1747d3236553SJohannes Berg 
1748d3236553SJohannes Berg 	/* fields below are read-only, assigned by cfg80211 */
1749d3236553SJohannes Berg 
1750d3236553SJohannes Berg 	const struct ieee80211_regdomain *regd;
1751d3236553SJohannes Berg 
1752d3236553SJohannes Berg 	/* the item in /sys/class/ieee80211/ points to this,
1753d3236553SJohannes Berg 	 * you need use set_wiphy_dev() (see below) */
1754d3236553SJohannes Berg 	struct device dev;
1755d3236553SJohannes Berg 
1756d3236553SJohannes Berg 	/* dir in debugfs: ieee80211/<wiphyname> */
1757d3236553SJohannes Berg 	struct dentry *debugfsdir;
1758d3236553SJohannes Berg 
1759463d0183SJohannes Berg #ifdef CONFIG_NET_NS
1760463d0183SJohannes Berg 	/* the network namespace this phy lives in currently */
1761463d0183SJohannes Berg 	struct net *_net;
1762463d0183SJohannes Berg #endif
1763463d0183SJohannes Berg 
17643d23e349SJohannes Berg #ifdef CONFIG_CFG80211_WEXT
17653d23e349SJohannes Berg 	const struct iw_handler_def *wext;
17663d23e349SJohannes Berg #endif
17673d23e349SJohannes Berg 
1768d3236553SJohannes Berg 	char priv[0] __attribute__((__aligned__(NETDEV_ALIGN)));
1769d3236553SJohannes Berg };
1770d3236553SJohannes Berg 
1771463d0183SJohannes Berg static inline struct net *wiphy_net(struct wiphy *wiphy)
1772463d0183SJohannes Berg {
1773c2d9ba9bSEric Dumazet 	return read_pnet(&wiphy->_net);
1774463d0183SJohannes Berg }
1775463d0183SJohannes Berg 
1776463d0183SJohannes Berg static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
1777463d0183SJohannes Berg {
1778c2d9ba9bSEric Dumazet 	write_pnet(&wiphy->_net, net);
1779463d0183SJohannes Berg }
1780463d0183SJohannes Berg 
1781d3236553SJohannes Berg /**
1782d3236553SJohannes Berg  * wiphy_priv - return priv from wiphy
1783d3236553SJohannes Berg  *
1784d3236553SJohannes Berg  * @wiphy: the wiphy whose priv pointer to return
1785d3236553SJohannes Berg  */
1786d3236553SJohannes Berg static inline void *wiphy_priv(struct wiphy *wiphy)
1787d3236553SJohannes Berg {
1788d3236553SJohannes Berg 	BUG_ON(!wiphy);
1789d3236553SJohannes Berg 	return &wiphy->priv;
1790d3236553SJohannes Berg }
1791d3236553SJohannes Berg 
1792d3236553SJohannes Berg /**
1793f1f74825SDavid Kilroy  * priv_to_wiphy - return the wiphy containing the priv
1794f1f74825SDavid Kilroy  *
1795f1f74825SDavid Kilroy  * @priv: a pointer previously returned by wiphy_priv
1796f1f74825SDavid Kilroy  */
1797f1f74825SDavid Kilroy static inline struct wiphy *priv_to_wiphy(void *priv)
1798f1f74825SDavid Kilroy {
1799f1f74825SDavid Kilroy 	BUG_ON(!priv);
1800f1f74825SDavid Kilroy 	return container_of(priv, struct wiphy, priv);
1801f1f74825SDavid Kilroy }
1802f1f74825SDavid Kilroy 
1803f1f74825SDavid Kilroy /**
1804d3236553SJohannes Berg  * set_wiphy_dev - set device pointer for wiphy
1805d3236553SJohannes Berg  *
1806d3236553SJohannes Berg  * @wiphy: The wiphy whose device to bind
1807d3236553SJohannes Berg  * @dev: The device to parent it to
1808d3236553SJohannes Berg  */
1809d3236553SJohannes Berg static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
1810d3236553SJohannes Berg {
1811d3236553SJohannes Berg 	wiphy->dev.parent = dev;
1812d3236553SJohannes Berg }
1813d3236553SJohannes Berg 
1814d3236553SJohannes Berg /**
1815d3236553SJohannes Berg  * wiphy_dev - get wiphy dev pointer
1816d3236553SJohannes Berg  *
1817d3236553SJohannes Berg  * @wiphy: The wiphy whose device struct to look up
1818d3236553SJohannes Berg  */
1819d3236553SJohannes Berg static inline struct device *wiphy_dev(struct wiphy *wiphy)
1820d3236553SJohannes Berg {
1821d3236553SJohannes Berg 	return wiphy->dev.parent;
1822d3236553SJohannes Berg }
1823d3236553SJohannes Berg 
1824d3236553SJohannes Berg /**
1825d3236553SJohannes Berg  * wiphy_name - get wiphy name
1826d3236553SJohannes Berg  *
1827d3236553SJohannes Berg  * @wiphy: The wiphy whose name to return
1828d3236553SJohannes Berg  */
1829e1db74fcSJoe Perches static inline const char *wiphy_name(const struct wiphy *wiphy)
1830d3236553SJohannes Berg {
1831d3236553SJohannes Berg 	return dev_name(&wiphy->dev);
1832d3236553SJohannes Berg }
1833d3236553SJohannes Berg 
1834d3236553SJohannes Berg /**
1835d3236553SJohannes Berg  * wiphy_new - create a new wiphy for use with cfg80211
1836d3236553SJohannes Berg  *
1837d3236553SJohannes Berg  * @ops: The configuration operations for this device
1838d3236553SJohannes Berg  * @sizeof_priv: The size of the private area to allocate
1839d3236553SJohannes Berg  *
1840d3236553SJohannes Berg  * Create a new wiphy and associate the given operations with it.
1841d3236553SJohannes Berg  * @sizeof_priv bytes are allocated for private use.
1842d3236553SJohannes Berg  *
1843d3236553SJohannes Berg  * The returned pointer must be assigned to each netdev's
1844d3236553SJohannes Berg  * ieee80211_ptr for proper operation.
1845d3236553SJohannes Berg  */
18463dcf670bSDavid Kilroy struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv);
1847d3236553SJohannes Berg 
1848d3236553SJohannes Berg /**
1849d3236553SJohannes Berg  * wiphy_register - register a wiphy with cfg80211
1850d3236553SJohannes Berg  *
1851d3236553SJohannes Berg  * @wiphy: The wiphy to register.
1852d3236553SJohannes Berg  *
1853d3236553SJohannes Berg  * Returns a non-negative wiphy index or a negative error code.
1854d3236553SJohannes Berg  */
1855d3236553SJohannes Berg extern int wiphy_register(struct wiphy *wiphy);
1856d3236553SJohannes Berg 
1857d3236553SJohannes Berg /**
1858d3236553SJohannes Berg  * wiphy_unregister - deregister a wiphy from cfg80211
1859d3236553SJohannes Berg  *
1860d3236553SJohannes Berg  * @wiphy: The wiphy to unregister.
1861d3236553SJohannes Berg  *
1862d3236553SJohannes Berg  * After this call, no more requests can be made with this priv
1863d3236553SJohannes Berg  * pointer, but the call may sleep to wait for an outstanding
1864d3236553SJohannes Berg  * request that is being handled.
1865d3236553SJohannes Berg  */
1866d3236553SJohannes Berg extern void wiphy_unregister(struct wiphy *wiphy);
1867d3236553SJohannes Berg 
1868d3236553SJohannes Berg /**
1869d3236553SJohannes Berg  * wiphy_free - free wiphy
1870d3236553SJohannes Berg  *
1871d3236553SJohannes Berg  * @wiphy: The wiphy to free
1872d3236553SJohannes Berg  */
1873d3236553SJohannes Berg extern void wiphy_free(struct wiphy *wiphy);
1874d3236553SJohannes Berg 
1875fffd0934SJohannes Berg /* internal structs */
18766829c878SJohannes Berg struct cfg80211_conn;
187719957bb3SJohannes Berg struct cfg80211_internal_bss;
1878fffd0934SJohannes Berg struct cfg80211_cached_keys;
187919957bb3SJohannes Berg 
188019957bb3SJohannes Berg #define MAX_AUTH_BSSES		4
18816829c878SJohannes Berg 
1882d3236553SJohannes Berg /**
1883d3236553SJohannes Berg  * struct wireless_dev - wireless per-netdev state
1884d3236553SJohannes Berg  *
1885d3236553SJohannes Berg  * This structure must be allocated by the driver/stack
1886d3236553SJohannes Berg  * that uses the ieee80211_ptr field in struct net_device
1887d3236553SJohannes Berg  * (this is intentional so it can be allocated along with
1888d3236553SJohannes Berg  * the netdev.)
1889d3236553SJohannes Berg  *
1890d3236553SJohannes Berg  * @wiphy: pointer to hardware description
1891d3236553SJohannes Berg  * @iftype: interface type
1892d3236553SJohannes Berg  * @list: (private) Used to collect the interfaces
1893d3236553SJohannes Berg  * @netdev: (private) Used to reference back to the netdev
1894d3236553SJohannes Berg  * @current_bss: (private) Used by the internal configuration code
1895f444de05SJohannes Berg  * @channel: (private) Used by the internal configuration code to track
1896f444de05SJohannes Berg  *	user-set AP, monitor and WDS channels for wireless extensions
1897d3236553SJohannes Berg  * @bssid: (private) Used by the internal configuration code
1898d3236553SJohannes Berg  * @ssid: (private) Used by the internal configuration code
1899d3236553SJohannes Berg  * @ssid_len: (private) Used by the internal configuration code
190029cbe68cSJohannes Berg  * @mesh_id_len: (private) Used by the internal configuration code
190129cbe68cSJohannes Berg  * @mesh_id_up_len: (private) Used by the internal configuration code
1902d3236553SJohannes Berg  * @wext: (private) Used by the internal wireless extensions compat code
19039bc383deSJohannes Berg  * @use_4addr: indicates 4addr mode is used on this interface, must be
19049bc383deSJohannes Berg  *	set by driver (if supported) on add_interface BEFORE registering the
19059bc383deSJohannes Berg  *	netdev and may otherwise be used by driver read-only, will be update
19069bc383deSJohannes Berg  *	by cfg80211 on change_interface
19072e161f78SJohannes Berg  * @mgmt_registrations: list of registrations for management frames
19082e161f78SJohannes Berg  * @mgmt_registrations_lock: lock for the list
1909abe37c4bSJohannes Berg  * @mtx: mutex used to lock data in this struct
1910abe37c4bSJohannes Berg  * @cleanup_work: work struct used for cleanup that can't be done directly
1911d3236553SJohannes Berg  */
1912d3236553SJohannes Berg struct wireless_dev {
1913d3236553SJohannes Berg 	struct wiphy *wiphy;
1914d3236553SJohannes Berg 	enum nl80211_iftype iftype;
1915d3236553SJohannes Berg 
1916667503ddSJohannes Berg 	/* the remainder of this struct should be private to cfg80211 */
1917d3236553SJohannes Berg 	struct list_head list;
1918d3236553SJohannes Berg 	struct net_device *netdev;
1919d3236553SJohannes Berg 
19202e161f78SJohannes Berg 	struct list_head mgmt_registrations;
19212e161f78SJohannes Berg 	spinlock_t mgmt_registrations_lock;
1922026331c4SJouni Malinen 
1923667503ddSJohannes Berg 	struct mutex mtx;
1924667503ddSJohannes Berg 
1925ad002395SJohannes Berg 	struct work_struct cleanup_work;
1926ad002395SJohannes Berg 
19279bc383deSJohannes Berg 	bool use_4addr;
19289bc383deSJohannes Berg 
1929b23aa676SSamuel Ortiz 	/* currently used for IBSS and SME - might be rearranged later */
1930d3236553SJohannes Berg 	u8 ssid[IEEE80211_MAX_SSID_LEN];
193129cbe68cSJohannes Berg 	u8 ssid_len, mesh_id_len, mesh_id_up_len;
1932b23aa676SSamuel Ortiz 	enum {
1933b23aa676SSamuel Ortiz 		CFG80211_SME_IDLE,
19346829c878SJohannes Berg 		CFG80211_SME_CONNECTING,
1935b23aa676SSamuel Ortiz 		CFG80211_SME_CONNECTED,
1936b23aa676SSamuel Ortiz 	} sme_state;
19376829c878SJohannes Berg 	struct cfg80211_conn *conn;
1938fffd0934SJohannes Berg 	struct cfg80211_cached_keys *connect_keys;
1939d3236553SJohannes Berg 
1940667503ddSJohannes Berg 	struct list_head event_list;
1941667503ddSJohannes Berg 	spinlock_t event_lock;
1942667503ddSJohannes Berg 
194319957bb3SJohannes Berg 	struct cfg80211_internal_bss *authtry_bsses[MAX_AUTH_BSSES];
194419957bb3SJohannes Berg 	struct cfg80211_internal_bss *auth_bsses[MAX_AUTH_BSSES];
194519957bb3SJohannes Berg 	struct cfg80211_internal_bss *current_bss; /* associated / joined */
1946f444de05SJohannes Berg 	struct ieee80211_channel *channel;
194719957bb3SJohannes Berg 
1948ffb9eb3dSKalle Valo 	bool ps;
1949ffb9eb3dSKalle Valo 	int ps_timeout;
1950ffb9eb3dSKalle Valo 
19513d23e349SJohannes Berg #ifdef CONFIG_CFG80211_WEXT
1952d3236553SJohannes Berg 	/* wext data */
1953cbe8fa9cSJohannes Berg 	struct {
1954cbe8fa9cSJohannes Berg 		struct cfg80211_ibss_params ibss;
1955f2129354SJohannes Berg 		struct cfg80211_connect_params connect;
1956fffd0934SJohannes Berg 		struct cfg80211_cached_keys *keys;
1957f2129354SJohannes Berg 		u8 *ie;
1958f2129354SJohannes Berg 		size_t ie_len;
1959f401a6f7SJohannes Berg 		u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
1960f2129354SJohannes Berg 		u8 ssid[IEEE80211_MAX_SSID_LEN];
196108645126SJohannes Berg 		s8 default_key, default_mgmt_key;
1962ffb9eb3dSKalle Valo 		bool prev_bssid_valid;
1963cbe8fa9cSJohannes Berg 	} wext;
1964d3236553SJohannes Berg #endif
1965d3236553SJohannes Berg };
1966d3236553SJohannes Berg 
1967d3236553SJohannes Berg /**
1968d3236553SJohannes Berg  * wdev_priv - return wiphy priv from wireless_dev
1969d3236553SJohannes Berg  *
1970d3236553SJohannes Berg  * @wdev: The wireless device whose wiphy's priv pointer to return
1971d3236553SJohannes Berg  */
1972d3236553SJohannes Berg static inline void *wdev_priv(struct wireless_dev *wdev)
1973d3236553SJohannes Berg {
1974d3236553SJohannes Berg 	BUG_ON(!wdev);
1975d3236553SJohannes Berg 	return wiphy_priv(wdev->wiphy);
1976d3236553SJohannes Berg }
1977d3236553SJohannes Berg 
1978d70e9693SJohannes Berg /**
1979d70e9693SJohannes Berg  * DOC: Utility functions
1980d70e9693SJohannes Berg  *
1981d70e9693SJohannes Berg  * cfg80211 offers a number of utility functions that can be useful.
1982d3236553SJohannes Berg  */
1983d3236553SJohannes Berg 
1984d3236553SJohannes Berg /**
1985d3236553SJohannes Berg  * ieee80211_channel_to_frequency - convert channel number to frequency
1986abe37c4bSJohannes Berg  * @chan: channel number
198759eb21a6SBruno Randolf  * @band: band, necessary due to channel number overlap
1988d3236553SJohannes Berg  */
198959eb21a6SBruno Randolf extern int ieee80211_channel_to_frequency(int chan, enum ieee80211_band band);
1990d3236553SJohannes Berg 
1991d3236553SJohannes Berg /**
1992d3236553SJohannes Berg  * ieee80211_frequency_to_channel - convert frequency to channel number
1993abe37c4bSJohannes Berg  * @freq: center frequency
1994d3236553SJohannes Berg  */
1995d3236553SJohannes Berg extern int ieee80211_frequency_to_channel(int freq);
1996d3236553SJohannes Berg 
1997d3236553SJohannes Berg /*
1998d3236553SJohannes Berg  * Name indirection necessary because the ieee80211 code also has
1999d3236553SJohannes Berg  * a function named "ieee80211_get_channel", so if you include
2000d3236553SJohannes Berg  * cfg80211's header file you get cfg80211's version, if you try
2001d3236553SJohannes Berg  * to include both header files you'll (rightfully!) get a symbol
2002d3236553SJohannes Berg  * clash.
2003d3236553SJohannes Berg  */
2004d3236553SJohannes Berg extern struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
2005d3236553SJohannes Berg 							 int freq);
2006d3236553SJohannes Berg /**
2007d3236553SJohannes Berg  * ieee80211_get_channel - get channel struct from wiphy for specified frequency
2008abe37c4bSJohannes Berg  * @wiphy: the struct wiphy to get the channel for
2009abe37c4bSJohannes Berg  * @freq: the center frequency of the channel
2010d3236553SJohannes Berg  */
2011d3236553SJohannes Berg static inline struct ieee80211_channel *
2012d3236553SJohannes Berg ieee80211_get_channel(struct wiphy *wiphy, int freq)
2013d3236553SJohannes Berg {
2014d3236553SJohannes Berg 	return __ieee80211_get_channel(wiphy, freq);
2015d3236553SJohannes Berg }
2016d3236553SJohannes Berg 
2017d3236553SJohannes Berg /**
2018d3236553SJohannes Berg  * ieee80211_get_response_rate - get basic rate for a given rate
2019d3236553SJohannes Berg  *
2020d3236553SJohannes Berg  * @sband: the band to look for rates in
2021d3236553SJohannes Berg  * @basic_rates: bitmap of basic rates
2022d3236553SJohannes Berg  * @bitrate: the bitrate for which to find the basic rate
2023d3236553SJohannes Berg  *
2024d3236553SJohannes Berg  * This function returns the basic rate corresponding to a given
2025d3236553SJohannes Berg  * bitrate, that is the next lower bitrate contained in the basic
2026d3236553SJohannes Berg  * rate map, which is, for this function, given as a bitmap of
2027d3236553SJohannes Berg  * indices of rates in the band's bitrate table.
2028d3236553SJohannes Berg  */
2029d3236553SJohannes Berg struct ieee80211_rate *
2030d3236553SJohannes Berg ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
2031d3236553SJohannes Berg 			    u32 basic_rates, int bitrate);
2032d3236553SJohannes Berg 
2033d3236553SJohannes Berg /*
2034d3236553SJohannes Berg  * Radiotap parsing functions -- for controlled injection support
2035d3236553SJohannes Berg  *
2036d3236553SJohannes Berg  * Implemented in net/wireless/radiotap.c
2037d3236553SJohannes Berg  * Documentation in Documentation/networking/radiotap-headers.txt
2038d3236553SJohannes Berg  */
2039d3236553SJohannes Berg 
204033e5a2f7SJohannes Berg struct radiotap_align_size {
204133e5a2f7SJohannes Berg 	uint8_t align:4, size:4;
204233e5a2f7SJohannes Berg };
204333e5a2f7SJohannes Berg 
204433e5a2f7SJohannes Berg struct ieee80211_radiotap_namespace {
204533e5a2f7SJohannes Berg 	const struct radiotap_align_size *align_size;
204633e5a2f7SJohannes Berg 	int n_bits;
204733e5a2f7SJohannes Berg 	uint32_t oui;
204833e5a2f7SJohannes Berg 	uint8_t subns;
204933e5a2f7SJohannes Berg };
205033e5a2f7SJohannes Berg 
205133e5a2f7SJohannes Berg struct ieee80211_radiotap_vendor_namespaces {
205233e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_namespace *ns;
205333e5a2f7SJohannes Berg 	int n_ns;
205433e5a2f7SJohannes Berg };
205533e5a2f7SJohannes Berg 
2056d3236553SJohannes Berg /**
2057d3236553SJohannes Berg  * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
205833e5a2f7SJohannes Berg  * @this_arg_index: index of current arg, valid after each successful call
205933e5a2f7SJohannes Berg  *	to ieee80211_radiotap_iterator_next()
206033e5a2f7SJohannes Berg  * @this_arg: pointer to current radiotap arg; it is valid after each
206133e5a2f7SJohannes Berg  *	call to ieee80211_radiotap_iterator_next() but also after
206233e5a2f7SJohannes Berg  *	ieee80211_radiotap_iterator_init() where it will point to
206333e5a2f7SJohannes Berg  *	the beginning of the actual data portion
206433e5a2f7SJohannes Berg  * @this_arg_size: length of the current arg, for convenience
206533e5a2f7SJohannes Berg  * @current_namespace: pointer to the current namespace definition
206633e5a2f7SJohannes Berg  *	(or internally %NULL if the current namespace is unknown)
206733e5a2f7SJohannes Berg  * @is_radiotap_ns: indicates whether the current namespace is the default
206833e5a2f7SJohannes Berg  *	radiotap namespace or not
206933e5a2f7SJohannes Berg  *
207033e5a2f7SJohannes Berg  * @_rtheader: pointer to the radiotap header we are walking through
207133e5a2f7SJohannes Berg  * @_max_length: length of radiotap header in cpu byte ordering
207233e5a2f7SJohannes Berg  * @_arg_index: next argument index
207333e5a2f7SJohannes Berg  * @_arg: next argument pointer
207433e5a2f7SJohannes Berg  * @_next_bitmap: internal pointer to next present u32
207533e5a2f7SJohannes Berg  * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
207633e5a2f7SJohannes Berg  * @_vns: vendor namespace definitions
207733e5a2f7SJohannes Berg  * @_next_ns_data: beginning of the next namespace's data
207833e5a2f7SJohannes Berg  * @_reset_on_ext: internal; reset the arg index to 0 when going to the
207933e5a2f7SJohannes Berg  *	next bitmap word
208033e5a2f7SJohannes Berg  *
208133e5a2f7SJohannes Berg  * Describes the radiotap parser state. Fields prefixed with an underscore
208233e5a2f7SJohannes Berg  * must not be used by users of the parser, only by the parser internally.
2083d3236553SJohannes Berg  */
2084d3236553SJohannes Berg 
2085d3236553SJohannes Berg struct ieee80211_radiotap_iterator {
208633e5a2f7SJohannes Berg 	struct ieee80211_radiotap_header *_rtheader;
208733e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_vendor_namespaces *_vns;
208833e5a2f7SJohannes Berg 	const struct ieee80211_radiotap_namespace *current_namespace;
2089d3236553SJohannes Berg 
209033e5a2f7SJohannes Berg 	unsigned char *_arg, *_next_ns_data;
209167272440SJohannes Berg 	__le32 *_next_bitmap;
209233e5a2f7SJohannes Berg 
209333e5a2f7SJohannes Berg 	unsigned char *this_arg;
209433e5a2f7SJohannes Berg 	int this_arg_index;
209533e5a2f7SJohannes Berg 	int this_arg_size;
209633e5a2f7SJohannes Berg 
209733e5a2f7SJohannes Berg 	int is_radiotap_ns;
209833e5a2f7SJohannes Berg 
209933e5a2f7SJohannes Berg 	int _max_length;
210033e5a2f7SJohannes Berg 	int _arg_index;
210133e5a2f7SJohannes Berg 	uint32_t _bitmap_shifter;
210233e5a2f7SJohannes Berg 	int _reset_on_ext;
2103d3236553SJohannes Berg };
2104d3236553SJohannes Berg 
2105d3236553SJohannes Berg extern int ieee80211_radiotap_iterator_init(
2106d3236553SJohannes Berg 	struct ieee80211_radiotap_iterator *iterator,
2107d3236553SJohannes Berg 	struct ieee80211_radiotap_header *radiotap_header,
210833e5a2f7SJohannes Berg 	int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns);
2109d3236553SJohannes Berg 
2110d3236553SJohannes Berg extern int ieee80211_radiotap_iterator_next(
2111d3236553SJohannes Berg 	struct ieee80211_radiotap_iterator *iterator);
2112d3236553SJohannes Berg 
211333e5a2f7SJohannes Berg 
2114e31a16d6SZhu Yi extern const unsigned char rfc1042_header[6];
2115e31a16d6SZhu Yi extern const unsigned char bridge_tunnel_header[6];
2116e31a16d6SZhu Yi 
2117e31a16d6SZhu Yi /**
2118e31a16d6SZhu Yi  * ieee80211_get_hdrlen_from_skb - get header length from data
2119e31a16d6SZhu Yi  *
2120e31a16d6SZhu Yi  * Given an skb with a raw 802.11 header at the data pointer this function
2121e31a16d6SZhu Yi  * returns the 802.11 header length in bytes (not including encryption
2122e31a16d6SZhu Yi  * headers). If the data in the sk_buff is too short to contain a valid 802.11
2123e31a16d6SZhu Yi  * header the function returns 0.
2124e31a16d6SZhu Yi  *
2125e31a16d6SZhu Yi  * @skb: the frame
2126e31a16d6SZhu Yi  */
2127e31a16d6SZhu Yi unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
2128e31a16d6SZhu Yi 
2129e31a16d6SZhu Yi /**
2130e31a16d6SZhu Yi  * ieee80211_hdrlen - get header length in bytes from frame control
2131e31a16d6SZhu Yi  * @fc: frame control field in little-endian format
2132e31a16d6SZhu Yi  */
2133633adf1aSJohannes Berg unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
2134e31a16d6SZhu Yi 
2135e31a16d6SZhu Yi /**
2136d70e9693SJohannes Berg  * DOC: Data path helpers
2137d70e9693SJohannes Berg  *
2138d70e9693SJohannes Berg  * In addition to generic utilities, cfg80211 also offers
2139d70e9693SJohannes Berg  * functions that help implement the data path for devices
2140d70e9693SJohannes Berg  * that do not do the 802.11/802.3 conversion on the device.
2141d70e9693SJohannes Berg  */
2142d70e9693SJohannes Berg 
2143d70e9693SJohannes Berg /**
2144e31a16d6SZhu Yi  * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
2145e31a16d6SZhu Yi  * @skb: the 802.11 data frame
2146e31a16d6SZhu Yi  * @addr: the device MAC address
2147e31a16d6SZhu Yi  * @iftype: the virtual interface type
2148e31a16d6SZhu Yi  */
2149eaf85ca7SZhu Yi int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
2150e31a16d6SZhu Yi 			   enum nl80211_iftype iftype);
2151e31a16d6SZhu Yi 
2152e31a16d6SZhu Yi /**
2153e31a16d6SZhu Yi  * ieee80211_data_from_8023 - convert an 802.3 frame to 802.11
2154e31a16d6SZhu Yi  * @skb: the 802.3 frame
2155e31a16d6SZhu Yi  * @addr: the device MAC address
2156e31a16d6SZhu Yi  * @iftype: the virtual interface type
2157e31a16d6SZhu Yi  * @bssid: the network bssid (used only for iftype STATION and ADHOC)
2158e31a16d6SZhu Yi  * @qos: build 802.11 QoS data frame
2159e31a16d6SZhu Yi  */
2160eaf85ca7SZhu Yi int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
2161e31a16d6SZhu Yi 			     enum nl80211_iftype iftype, u8 *bssid, bool qos);
2162e31a16d6SZhu Yi 
2163e31a16d6SZhu Yi /**
2164eaf85ca7SZhu Yi  * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
2165eaf85ca7SZhu Yi  *
2166eaf85ca7SZhu Yi  * Decode an IEEE 802.11n A-MSDU frame and convert it to a list of
2167eaf85ca7SZhu Yi  * 802.3 frames. The @list will be empty if the decode fails. The
2168eaf85ca7SZhu Yi  * @skb is consumed after the function returns.
2169eaf85ca7SZhu Yi  *
2170eaf85ca7SZhu Yi  * @skb: The input IEEE 802.11n A-MSDU frame.
2171eaf85ca7SZhu Yi  * @list: The output list of 802.3 frames. It must be allocated and
2172eaf85ca7SZhu Yi  *	initialized by by the caller.
2173eaf85ca7SZhu Yi  * @addr: The device MAC address.
2174eaf85ca7SZhu Yi  * @iftype: The device interface type.
2175eaf85ca7SZhu Yi  * @extra_headroom: The hardware extra headroom for SKBs in the @list.
2176eaf85ca7SZhu Yi  */
2177eaf85ca7SZhu Yi void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
2178eaf85ca7SZhu Yi 			      const u8 *addr, enum nl80211_iftype iftype,
2179eaf85ca7SZhu Yi 			      const unsigned int extra_headroom);
2180eaf85ca7SZhu Yi 
2181eaf85ca7SZhu Yi /**
2182e31a16d6SZhu Yi  * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
2183e31a16d6SZhu Yi  * @skb: the data frame
2184e31a16d6SZhu Yi  */
2185e31a16d6SZhu Yi unsigned int cfg80211_classify8021d(struct sk_buff *skb);
2186e31a16d6SZhu Yi 
2187c21dbf92SJohannes Berg /**
2188c21dbf92SJohannes Berg  * cfg80211_find_ie - find information element in data
2189c21dbf92SJohannes Berg  *
2190c21dbf92SJohannes Berg  * @eid: element ID
2191c21dbf92SJohannes Berg  * @ies: data consisting of IEs
2192c21dbf92SJohannes Berg  * @len: length of data
2193c21dbf92SJohannes Berg  *
2194c21dbf92SJohannes Berg  * This function will return %NULL if the element ID could
2195c21dbf92SJohannes Berg  * not be found or if the element is invalid (claims to be
2196c21dbf92SJohannes Berg  * longer than the given data), or a pointer to the first byte
2197c21dbf92SJohannes Berg  * of the requested element, that is the byte containing the
2198c21dbf92SJohannes Berg  * element ID. There are no checks on the element length
2199c21dbf92SJohannes Berg  * other than having to fit into the given data.
2200c21dbf92SJohannes Berg  */
2201c21dbf92SJohannes Berg const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len);
2202c21dbf92SJohannes Berg 
2203d70e9693SJohannes Berg /**
2204d70e9693SJohannes Berg  * DOC: Regulatory enforcement infrastructure
2205d70e9693SJohannes Berg  *
2206d70e9693SJohannes Berg  * TODO
2207d3236553SJohannes Berg  */
2208d3236553SJohannes Berg 
2209d3236553SJohannes Berg /**
2210d3236553SJohannes Berg  * regulatory_hint - driver hint to the wireless core a regulatory domain
2211d3236553SJohannes Berg  * @wiphy: the wireless device giving the hint (used only for reporting
2212d3236553SJohannes Berg  *	conflicts)
2213d3236553SJohannes Berg  * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
2214d3236553SJohannes Berg  * 	should be in. If @rd is set this should be NULL. Note that if you
2215d3236553SJohannes Berg  * 	set this to NULL you should still set rd->alpha2 to some accepted
2216d3236553SJohannes Berg  * 	alpha2.
2217d3236553SJohannes Berg  *
2218d3236553SJohannes Berg  * Wireless drivers can use this function to hint to the wireless core
2219d3236553SJohannes Berg  * what it believes should be the current regulatory domain by
2220d3236553SJohannes Berg  * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
2221d3236553SJohannes Berg  * domain should be in or by providing a completely build regulatory domain.
2222d3236553SJohannes Berg  * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
2223d3236553SJohannes Berg  * for a regulatory domain structure for the respective country.
2224d3236553SJohannes Berg  *
2225d3236553SJohannes Berg  * The wiphy must have been registered to cfg80211 prior to this call.
2226d3236553SJohannes Berg  * For cfg80211 drivers this means you must first use wiphy_register(),
2227d3236553SJohannes Berg  * for mac80211 drivers you must first use ieee80211_register_hw().
2228d3236553SJohannes Berg  *
2229d3236553SJohannes Berg  * Drivers should check the return value, its possible you can get
2230d3236553SJohannes Berg  * an -ENOMEM.
2231d3236553SJohannes Berg  */
2232d3236553SJohannes Berg extern int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
2233d3236553SJohannes Berg 
2234d3236553SJohannes Berg /**
2235d3236553SJohannes Berg  * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
2236d3236553SJohannes Berg  * @wiphy: the wireless device we want to process the regulatory domain on
2237d3236553SJohannes Berg  * @regd: the custom regulatory domain to use for this wiphy
2238d3236553SJohannes Berg  *
2239d3236553SJohannes Berg  * Drivers can sometimes have custom regulatory domains which do not apply
2240d3236553SJohannes Berg  * to a specific country. Drivers can use this to apply such custom regulatory
2241d3236553SJohannes Berg  * domains. This routine must be called prior to wiphy registration. The
2242d3236553SJohannes Berg  * custom regulatory domain will be trusted completely and as such previous
2243d3236553SJohannes Berg  * default channel settings will be disregarded. If no rule is found for a
2244d3236553SJohannes Berg  * channel on the regulatory domain the channel will be disabled.
2245d3236553SJohannes Berg  */
2246d3236553SJohannes Berg extern void wiphy_apply_custom_regulatory(
2247d3236553SJohannes Berg 	struct wiphy *wiphy,
2248d3236553SJohannes Berg 	const struct ieee80211_regdomain *regd);
2249d3236553SJohannes Berg 
2250d3236553SJohannes Berg /**
2251d3236553SJohannes Berg  * freq_reg_info - get regulatory information for the given frequency
2252d3236553SJohannes Berg  * @wiphy: the wiphy for which we want to process this rule for
2253d3236553SJohannes Berg  * @center_freq: Frequency in KHz for which we want regulatory information for
2254038659e7SLuis R. Rodriguez  * @desired_bw_khz: the desired max bandwidth you want to use per
2255038659e7SLuis R. Rodriguez  *	channel. Note that this is still 20 MHz if you want to use HT40
2256038659e7SLuis R. Rodriguez  *	as HT40 makes use of two channels for its 40 MHz width bandwidth.
2257038659e7SLuis R. Rodriguez  *	If set to 0 we'll assume you want the standard 20 MHz.
2258d3236553SJohannes Berg  * @reg_rule: the regulatory rule which we have for this frequency
2259d3236553SJohannes Berg  *
2260d3236553SJohannes Berg  * Use this function to get the regulatory rule for a specific frequency on
2261d3236553SJohannes Berg  * a given wireless device. If the device has a specific regulatory domain
2262d3236553SJohannes Berg  * it wants to follow we respect that unless a country IE has been received
2263d3236553SJohannes Berg  * and processed already.
2264d3236553SJohannes Berg  *
2265d3236553SJohannes Berg  * Returns 0 if it was able to find a valid regulatory rule which does
2266d3236553SJohannes Berg  * apply to the given center_freq otherwise it returns non-zero. It will
2267d3236553SJohannes Berg  * also return -ERANGE if we determine the given center_freq does not even have
2268d3236553SJohannes Berg  * a regulatory rule for a frequency range in the center_freq's band. See
2269d3236553SJohannes Berg  * freq_in_rule_band() for our current definition of a band -- this is purely
2270d3236553SJohannes Berg  * subjective and right now its 802.11 specific.
2271d3236553SJohannes Berg  */
2272038659e7SLuis R. Rodriguez extern int freq_reg_info(struct wiphy *wiphy,
2273038659e7SLuis R. Rodriguez 			 u32 center_freq,
2274038659e7SLuis R. Rodriguez 			 u32 desired_bw_khz,
2275d3236553SJohannes Berg 			 const struct ieee80211_reg_rule **reg_rule);
2276d3236553SJohannes Berg 
2277d3236553SJohannes Berg /*
2278d3236553SJohannes Berg  * Temporary wext handlers & helper functions
2279d3236553SJohannes Berg  *
2280d3236553SJohannes Berg  * In the future cfg80211 will simply assign the entire wext handler
2281d3236553SJohannes Berg  * structure to netdevs it manages, but we're not there yet.
2282d3236553SJohannes Berg  */
2283fee52678SJohannes Berg int cfg80211_wext_giwname(struct net_device *dev,
2284fee52678SJohannes Berg 			  struct iw_request_info *info,
2285fee52678SJohannes Berg 			  char *name, char *extra);
2286e60c7744SJohannes Berg int cfg80211_wext_siwmode(struct net_device *dev, struct iw_request_info *info,
2287e60c7744SJohannes Berg 			  u32 *mode, char *extra);
2288e60c7744SJohannes Berg int cfg80211_wext_giwmode(struct net_device *dev, struct iw_request_info *info,
2289e60c7744SJohannes Berg 			  u32 *mode, char *extra);
22902a519311SJohannes Berg int cfg80211_wext_siwscan(struct net_device *dev,
22912a519311SJohannes Berg 			  struct iw_request_info *info,
22922a519311SJohannes Berg 			  union iwreq_data *wrqu, char *extra);
22932a519311SJohannes Berg int cfg80211_wext_giwscan(struct net_device *dev,
22942a519311SJohannes Berg 			  struct iw_request_info *info,
22952a519311SJohannes Berg 			  struct iw_point *data, char *extra);
2296691597cbSJohannes Berg int cfg80211_wext_siwmlme(struct net_device *dev,
2297691597cbSJohannes Berg 			  struct iw_request_info *info,
2298691597cbSJohannes Berg 			  struct iw_point *data, char *extra);
22994aa188e1SJohannes Berg int cfg80211_wext_giwrange(struct net_device *dev,
23004aa188e1SJohannes Berg 			   struct iw_request_info *info,
23014aa188e1SJohannes Berg 			   struct iw_point *data, char *extra);
2302f2129354SJohannes Berg int cfg80211_wext_siwgenie(struct net_device *dev,
2303f2129354SJohannes Berg 			   struct iw_request_info *info,
2304f2129354SJohannes Berg 			   struct iw_point *data, char *extra);
2305f2129354SJohannes Berg int cfg80211_wext_siwauth(struct net_device *dev,
2306f2129354SJohannes Berg 			  struct iw_request_info *info,
2307f2129354SJohannes Berg 			  struct iw_param *data, char *extra);
2308f2129354SJohannes Berg int cfg80211_wext_giwauth(struct net_device *dev,
2309f2129354SJohannes Berg 			  struct iw_request_info *info,
2310f2129354SJohannes Berg 			  struct iw_param *data, char *extra);
2311f2129354SJohannes Berg 
23120e82ffe3SJohannes Berg int cfg80211_wext_siwfreq(struct net_device *dev,
23130e82ffe3SJohannes Berg 			  struct iw_request_info *info,
23140e82ffe3SJohannes Berg 			  struct iw_freq *freq, char *extra);
23150e82ffe3SJohannes Berg int cfg80211_wext_giwfreq(struct net_device *dev,
23160e82ffe3SJohannes Berg 			  struct iw_request_info *info,
23170e82ffe3SJohannes Berg 			  struct iw_freq *freq, char *extra);
23181f9298f9SJohannes Berg int cfg80211_wext_siwessid(struct net_device *dev,
23191f9298f9SJohannes Berg 			   struct iw_request_info *info,
23201f9298f9SJohannes Berg 			   struct iw_point *data, char *ssid);
23211f9298f9SJohannes Berg int cfg80211_wext_giwessid(struct net_device *dev,
23221f9298f9SJohannes Berg 			   struct iw_request_info *info,
23231f9298f9SJohannes Berg 			   struct iw_point *data, char *ssid);
23249930380fSJohannes Berg int cfg80211_wext_siwrate(struct net_device *dev,
23259930380fSJohannes Berg 			  struct iw_request_info *info,
23269930380fSJohannes Berg 			  struct iw_param *rate, char *extra);
23279930380fSJohannes Berg int cfg80211_wext_giwrate(struct net_device *dev,
23289930380fSJohannes Berg 			  struct iw_request_info *info,
23299930380fSJohannes Berg 			  struct iw_param *rate, char *extra);
23309930380fSJohannes Berg 
2331b9a5f8caSJouni Malinen int cfg80211_wext_siwrts(struct net_device *dev,
2332b9a5f8caSJouni Malinen 			 struct iw_request_info *info,
2333b9a5f8caSJouni Malinen 			 struct iw_param *rts, char *extra);
2334b9a5f8caSJouni Malinen int cfg80211_wext_giwrts(struct net_device *dev,
2335b9a5f8caSJouni Malinen 			 struct iw_request_info *info,
2336b9a5f8caSJouni Malinen 			 struct iw_param *rts, char *extra);
2337b9a5f8caSJouni Malinen int cfg80211_wext_siwfrag(struct net_device *dev,
2338b9a5f8caSJouni Malinen 			  struct iw_request_info *info,
2339b9a5f8caSJouni Malinen 			  struct iw_param *frag, char *extra);
2340b9a5f8caSJouni Malinen int cfg80211_wext_giwfrag(struct net_device *dev,
2341b9a5f8caSJouni Malinen 			  struct iw_request_info *info,
2342b9a5f8caSJouni Malinen 			  struct iw_param *frag, char *extra);
2343b9a5f8caSJouni Malinen int cfg80211_wext_siwretry(struct net_device *dev,
2344b9a5f8caSJouni Malinen 			   struct iw_request_info *info,
2345b9a5f8caSJouni Malinen 			   struct iw_param *retry, char *extra);
2346b9a5f8caSJouni Malinen int cfg80211_wext_giwretry(struct net_device *dev,
2347b9a5f8caSJouni Malinen 			   struct iw_request_info *info,
2348b9a5f8caSJouni Malinen 			   struct iw_param *retry, char *extra);
234908645126SJohannes Berg int cfg80211_wext_siwencodeext(struct net_device *dev,
235008645126SJohannes Berg 			       struct iw_request_info *info,
235108645126SJohannes Berg 			       struct iw_point *erq, char *extra);
235208645126SJohannes Berg int cfg80211_wext_siwencode(struct net_device *dev,
235308645126SJohannes Berg 			    struct iw_request_info *info,
235408645126SJohannes Berg 			    struct iw_point *erq, char *keybuf);
235508645126SJohannes Berg int cfg80211_wext_giwencode(struct net_device *dev,
235608645126SJohannes Berg 			    struct iw_request_info *info,
235708645126SJohannes Berg 			    struct iw_point *erq, char *keybuf);
23587643a2c3SJohannes Berg int cfg80211_wext_siwtxpower(struct net_device *dev,
23597643a2c3SJohannes Berg 			     struct iw_request_info *info,
23607643a2c3SJohannes Berg 			     union iwreq_data *data, char *keybuf);
23617643a2c3SJohannes Berg int cfg80211_wext_giwtxpower(struct net_device *dev,
23627643a2c3SJohannes Berg 			     struct iw_request_info *info,
23637643a2c3SJohannes Berg 			     union iwreq_data *data, char *keybuf);
23648990646dSJohannes Berg struct iw_statistics *cfg80211_wireless_stats(struct net_device *dev);
2365b9a5f8caSJouni Malinen 
2366bc92afd9SJohannes Berg int cfg80211_wext_siwpower(struct net_device *dev,
2367bc92afd9SJohannes Berg 			   struct iw_request_info *info,
2368bc92afd9SJohannes Berg 			   struct iw_param *wrq, char *extra);
2369bc92afd9SJohannes Berg int cfg80211_wext_giwpower(struct net_device *dev,
2370bc92afd9SJohannes Berg 			   struct iw_request_info *info,
2371bc92afd9SJohannes Berg 			   struct iw_param *wrq, char *extra);
2372bc92afd9SJohannes Berg 
2373562e4822SJohannes Berg int cfg80211_wext_siwap(struct net_device *dev,
2374ab737a4fSJohannes Berg 			struct iw_request_info *info,
2375562e4822SJohannes Berg 			struct sockaddr *ap_addr, char *extra);
2376562e4822SJohannes Berg int cfg80211_wext_giwap(struct net_device *dev,
2377ab737a4fSJohannes Berg 			struct iw_request_info *info,
2378562e4822SJohannes Berg 			struct sockaddr *ap_addr, char *extra);
2379ab737a4fSJohannes Berg 
2380c28991a0SJohn W. Linville int cfg80211_wext_siwpmksa(struct net_device *dev,
2381c28991a0SJohn W. Linville 			   struct iw_request_info *info,
2382c28991a0SJohn W. Linville 			   struct iw_point *data, char *extra);
2383c28991a0SJohn W. Linville 
2384d3236553SJohannes Berg /*
2385d3236553SJohannes Berg  * callbacks for asynchronous cfg80211 methods, notification
2386d3236553SJohannes Berg  * functions and BSS handling helpers
2387d3236553SJohannes Berg  */
2388d3236553SJohannes Berg 
23892a519311SJohannes Berg /**
23902a519311SJohannes Berg  * cfg80211_scan_done - notify that scan finished
23912a519311SJohannes Berg  *
23922a519311SJohannes Berg  * @request: the corresponding scan request
23932a519311SJohannes Berg  * @aborted: set to true if the scan was aborted for any reason,
23942a519311SJohannes Berg  *	userspace will be notified of that
23952a519311SJohannes Berg  */
23962a519311SJohannes Berg void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted);
23972a519311SJohannes Berg 
23982a519311SJohannes Berg /**
2399807f8a8cSLuciano Coelho  * cfg80211_sched_scan_results - notify that new scan results are available
2400807f8a8cSLuciano Coelho  *
2401807f8a8cSLuciano Coelho  * @wiphy: the wiphy which got scheduled scan results
2402807f8a8cSLuciano Coelho  */
2403807f8a8cSLuciano Coelho void cfg80211_sched_scan_results(struct wiphy *wiphy);
2404807f8a8cSLuciano Coelho 
2405807f8a8cSLuciano Coelho /**
2406807f8a8cSLuciano Coelho  * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
2407807f8a8cSLuciano Coelho  *
2408807f8a8cSLuciano Coelho  * @wiphy: the wiphy on which the scheduled scan stopped
2409807f8a8cSLuciano Coelho  *
2410807f8a8cSLuciano Coelho  * The driver can call this function to inform cfg80211 that the
2411807f8a8cSLuciano Coelho  * scheduled scan had to be stopped, for whatever reason.  The driver
2412807f8a8cSLuciano Coelho  * is then called back via the sched_scan_stop operation when done.
2413807f8a8cSLuciano Coelho  */
2414807f8a8cSLuciano Coelho void cfg80211_sched_scan_stopped(struct wiphy *wiphy);
2415807f8a8cSLuciano Coelho 
2416807f8a8cSLuciano Coelho /**
2417abe37c4bSJohannes Berg  * cfg80211_inform_bss_frame - inform cfg80211 of a received BSS frame
24182a519311SJohannes Berg  *
24192a519311SJohannes Berg  * @wiphy: the wiphy reporting the BSS
2420abe37c4bSJohannes Berg  * @channel: The channel the frame was received on
2421abe37c4bSJohannes Berg  * @mgmt: the management frame (probe response or beacon)
2422abe37c4bSJohannes Berg  * @len: length of the management frame
242377965c97SJohannes Berg  * @signal: the signal strength, type depends on the wiphy's signal_type
24242a519311SJohannes Berg  * @gfp: context flags
24252a519311SJohannes Berg  *
24262a519311SJohannes Berg  * This informs cfg80211 that BSS information was found and
24272a519311SJohannes Berg  * the BSS should be updated/added.
24282a519311SJohannes Berg  */
24292a519311SJohannes Berg struct cfg80211_bss*
24302a519311SJohannes Berg cfg80211_inform_bss_frame(struct wiphy *wiphy,
24312a519311SJohannes Berg 			  struct ieee80211_channel *channel,
24322a519311SJohannes Berg 			  struct ieee80211_mgmt *mgmt, size_t len,
243377965c97SJohannes Berg 			  s32 signal, gfp_t gfp);
24342a519311SJohannes Berg 
2435abe37c4bSJohannes Berg /**
2436abe37c4bSJohannes Berg  * cfg80211_inform_bss - inform cfg80211 of a new BSS
2437abe37c4bSJohannes Berg  *
2438abe37c4bSJohannes Berg  * @wiphy: the wiphy reporting the BSS
2439abe37c4bSJohannes Berg  * @channel: The channel the frame was received on
2440abe37c4bSJohannes Berg  * @bssid: the BSSID of the BSS
2441abe37c4bSJohannes Berg  * @timestamp: the TSF timestamp sent by the peer
2442abe37c4bSJohannes Berg  * @capability: the capability field sent by the peer
2443abe37c4bSJohannes Berg  * @beacon_interval: the beacon interval announced by the peer
2444abe37c4bSJohannes Berg  * @ie: additional IEs sent by the peer
2445abe37c4bSJohannes Berg  * @ielen: length of the additional IEs
2446abe37c4bSJohannes Berg  * @signal: the signal strength, type depends on the wiphy's signal_type
2447abe37c4bSJohannes Berg  * @gfp: context flags
2448abe37c4bSJohannes Berg  *
2449abe37c4bSJohannes Berg  * This informs cfg80211 that BSS information was found and
2450abe37c4bSJohannes Berg  * the BSS should be updated/added.
2451abe37c4bSJohannes Berg  */
245206aa7afaSJussi Kivilinna struct cfg80211_bss*
245306aa7afaSJussi Kivilinna cfg80211_inform_bss(struct wiphy *wiphy,
245406aa7afaSJussi Kivilinna 		    struct ieee80211_channel *channel,
245506aa7afaSJussi Kivilinna 		    const u8 *bssid,
245606aa7afaSJussi Kivilinna 		    u64 timestamp, u16 capability, u16 beacon_interval,
245706aa7afaSJussi Kivilinna 		    const u8 *ie, size_t ielen,
245806aa7afaSJussi Kivilinna 		    s32 signal, gfp_t gfp);
245906aa7afaSJussi Kivilinna 
24602a519311SJohannes Berg struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
24612a519311SJohannes Berg 				      struct ieee80211_channel *channel,
24622a519311SJohannes Berg 				      const u8 *bssid,
246379420f09SJohannes Berg 				      const u8 *ssid, size_t ssid_len,
246479420f09SJohannes Berg 				      u16 capa_mask, u16 capa_val);
246579420f09SJohannes Berg static inline struct cfg80211_bss *
246679420f09SJohannes Berg cfg80211_get_ibss(struct wiphy *wiphy,
246779420f09SJohannes Berg 		  struct ieee80211_channel *channel,
246879420f09SJohannes Berg 		  const u8 *ssid, size_t ssid_len)
246979420f09SJohannes Berg {
247079420f09SJohannes Berg 	return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
247179420f09SJohannes Berg 				WLAN_CAPABILITY_IBSS, WLAN_CAPABILITY_IBSS);
247279420f09SJohannes Berg }
247379420f09SJohannes Berg 
24742a519311SJohannes Berg struct cfg80211_bss *cfg80211_get_mesh(struct wiphy *wiphy,
24752a519311SJohannes Berg 				       struct ieee80211_channel *channel,
24762a519311SJohannes Berg 				       const u8 *meshid, size_t meshidlen,
24772a519311SJohannes Berg 				       const u8 *meshcfg);
24782a519311SJohannes Berg void cfg80211_put_bss(struct cfg80211_bss *bss);
2479d3236553SJohannes Berg 
2480d491af19SJohannes Berg /**
2481d491af19SJohannes Berg  * cfg80211_unlink_bss - unlink BSS from internal data structures
2482d491af19SJohannes Berg  * @wiphy: the wiphy
2483d491af19SJohannes Berg  * @bss: the bss to remove
2484d491af19SJohannes Berg  *
2485d491af19SJohannes Berg  * This function removes the given BSS from the internal data structures
2486d491af19SJohannes Berg  * thereby making it no longer show up in scan results etc. Use this
2487d491af19SJohannes Berg  * function when you detect a BSS is gone. Normally BSSes will also time
2488d491af19SJohannes Berg  * out, so it is not necessary to use this function at all.
2489d491af19SJohannes Berg  */
2490d491af19SJohannes Berg void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
2491fee52678SJohannes Berg 
24926039f6d2SJouni Malinen /**
24936039f6d2SJouni Malinen  * cfg80211_send_rx_auth - notification of processed authentication
24946039f6d2SJouni Malinen  * @dev: network device
24956039f6d2SJouni Malinen  * @buf: authentication frame (header + body)
24966039f6d2SJouni Malinen  * @len: length of the frame data
24976039f6d2SJouni Malinen  *
24986039f6d2SJouni Malinen  * This function is called whenever an authentication has been processed in
24991965c853SJouni Malinen  * station mode. The driver is required to call either this function or
25001965c853SJouni Malinen  * cfg80211_send_auth_timeout() to indicate the result of cfg80211_ops::auth()
2501cb0b4bebSJohannes Berg  * call. This function may sleep.
25026039f6d2SJouni Malinen  */
2503cb0b4bebSJohannes Berg void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len);
25046039f6d2SJouni Malinen 
25056039f6d2SJouni Malinen /**
25061965c853SJouni Malinen  * cfg80211_send_auth_timeout - notification of timed out authentication
25071965c853SJouni Malinen  * @dev: network device
25081965c853SJouni Malinen  * @addr: The MAC address of the device with which the authentication timed out
2509cb0b4bebSJohannes Berg  *
2510cb0b4bebSJohannes Berg  * This function may sleep.
25111965c853SJouni Malinen  */
2512cb0b4bebSJohannes Berg void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr);
25131965c853SJouni Malinen 
25141965c853SJouni Malinen /**
2515a58ce43fSJohannes Berg  * __cfg80211_auth_canceled - notify cfg80211 that authentication was canceled
2516a58ce43fSJohannes Berg  * @dev: network device
2517a58ce43fSJohannes Berg  * @addr: The MAC address of the device with which the authentication timed out
2518a58ce43fSJohannes Berg  *
2519a58ce43fSJohannes Berg  * When a pending authentication had no action yet, the driver may decide
2520a58ce43fSJohannes Berg  * to not send a deauth frame, but in that case must calls this function
2521a58ce43fSJohannes Berg  * to tell cfg80211 about this decision. It is only valid to call this
2522a58ce43fSJohannes Berg  * function within the deauth() callback.
2523a58ce43fSJohannes Berg  */
2524a58ce43fSJohannes Berg void __cfg80211_auth_canceled(struct net_device *dev, const u8 *addr);
2525a58ce43fSJohannes Berg 
2526a58ce43fSJohannes Berg /**
25276039f6d2SJouni Malinen  * cfg80211_send_rx_assoc - notification of processed association
25286039f6d2SJouni Malinen  * @dev: network device
25296039f6d2SJouni Malinen  * @buf: (re)association response frame (header + body)
25306039f6d2SJouni Malinen  * @len: length of the frame data
25316039f6d2SJouni Malinen  *
25326039f6d2SJouni Malinen  * This function is called whenever a (re)association response has been
25331965c853SJouni Malinen  * processed in station mode. The driver is required to call either this
25341965c853SJouni Malinen  * function or cfg80211_send_assoc_timeout() to indicate the result of
2535cb0b4bebSJohannes Berg  * cfg80211_ops::assoc() call. This function may sleep.
25366039f6d2SJouni Malinen  */
2537cb0b4bebSJohannes Berg void cfg80211_send_rx_assoc(struct net_device *dev, const u8 *buf, size_t len);
25386039f6d2SJouni Malinen 
25396039f6d2SJouni Malinen /**
25401965c853SJouni Malinen  * cfg80211_send_assoc_timeout - notification of timed out association
25411965c853SJouni Malinen  * @dev: network device
25421965c853SJouni Malinen  * @addr: The MAC address of the device with which the association timed out
2543cb0b4bebSJohannes Berg  *
2544cb0b4bebSJohannes Berg  * This function may sleep.
25451965c853SJouni Malinen  */
2546cb0b4bebSJohannes Berg void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr);
25471965c853SJouni Malinen 
25481965c853SJouni Malinen /**
254953b46b84SJouni Malinen  * cfg80211_send_deauth - notification of processed deauthentication
25506039f6d2SJouni Malinen  * @dev: network device
25516039f6d2SJouni Malinen  * @buf: deauthentication frame (header + body)
25526039f6d2SJouni Malinen  * @len: length of the frame data
25536039f6d2SJouni Malinen  *
25546039f6d2SJouni Malinen  * This function is called whenever deauthentication has been processed in
255553b46b84SJouni Malinen  * station mode. This includes both received deauthentication frames and
2556cb0b4bebSJohannes Berg  * locally generated ones. This function may sleep.
25576039f6d2SJouni Malinen  */
2558ce470613SHolger Schurig void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
2559ce470613SHolger Schurig 
2560ce470613SHolger Schurig /**
2561ce470613SHolger Schurig  * __cfg80211_send_deauth - notification of processed deauthentication
2562ce470613SHolger Schurig  * @dev: network device
2563ce470613SHolger Schurig  * @buf: deauthentication frame (header + body)
2564ce470613SHolger Schurig  * @len: length of the frame data
2565ce470613SHolger Schurig  *
2566ce470613SHolger Schurig  * Like cfg80211_send_deauth(), but doesn't take the wdev lock.
2567ce470613SHolger Schurig  */
2568ce470613SHolger Schurig void __cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
25696039f6d2SJouni Malinen 
25706039f6d2SJouni Malinen /**
257153b46b84SJouni Malinen  * cfg80211_send_disassoc - notification of processed disassociation
25726039f6d2SJouni Malinen  * @dev: network device
25736039f6d2SJouni Malinen  * @buf: disassociation response frame (header + body)
25746039f6d2SJouni Malinen  * @len: length of the frame data
25756039f6d2SJouni Malinen  *
25766039f6d2SJouni Malinen  * This function is called whenever disassociation has been processed in
257753b46b84SJouni Malinen  * station mode. This includes both received disassociation frames and locally
2578cb0b4bebSJohannes Berg  * generated ones. This function may sleep.
25796039f6d2SJouni Malinen  */
2580ce470613SHolger Schurig void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len);
2581ce470613SHolger Schurig 
2582ce470613SHolger Schurig /**
2583ce470613SHolger Schurig  * __cfg80211_send_disassoc - notification of processed disassociation
2584ce470613SHolger Schurig  * @dev: network device
2585ce470613SHolger Schurig  * @buf: disassociation response frame (header + body)
2586ce470613SHolger Schurig  * @len: length of the frame data
2587ce470613SHolger Schurig  *
2588ce470613SHolger Schurig  * Like cfg80211_send_disassoc(), but doesn't take the wdev lock.
2589ce470613SHolger Schurig  */
2590ce470613SHolger Schurig void __cfg80211_send_disassoc(struct net_device *dev, const u8 *buf,
2591ce470613SHolger Schurig 	size_t len);
25926039f6d2SJouni Malinen 
2593a08c1c1aSKalle Valo /**
2594cf4e594eSJouni Malinen  * cfg80211_send_unprot_deauth - notification of unprotected deauthentication
2595cf4e594eSJouni Malinen  * @dev: network device
2596cf4e594eSJouni Malinen  * @buf: deauthentication frame (header + body)
2597cf4e594eSJouni Malinen  * @len: length of the frame data
2598cf4e594eSJouni Malinen  *
2599cf4e594eSJouni Malinen  * This function is called whenever a received Deauthentication frame has been
2600cf4e594eSJouni Malinen  * dropped in station mode because of MFP being used but the Deauthentication
2601cf4e594eSJouni Malinen  * frame was not protected. This function may sleep.
2602cf4e594eSJouni Malinen  */
2603cf4e594eSJouni Malinen void cfg80211_send_unprot_deauth(struct net_device *dev, const u8 *buf,
2604cf4e594eSJouni Malinen 				 size_t len);
2605cf4e594eSJouni Malinen 
2606cf4e594eSJouni Malinen /**
2607cf4e594eSJouni Malinen  * cfg80211_send_unprot_disassoc - notification of unprotected disassociation
2608cf4e594eSJouni Malinen  * @dev: network device
2609cf4e594eSJouni Malinen  * @buf: disassociation frame (header + body)
2610cf4e594eSJouni Malinen  * @len: length of the frame data
2611cf4e594eSJouni Malinen  *
2612cf4e594eSJouni Malinen  * This function is called whenever a received Disassociation frame has been
2613cf4e594eSJouni Malinen  * dropped in station mode because of MFP being used but the Disassociation
2614cf4e594eSJouni Malinen  * frame was not protected. This function may sleep.
2615cf4e594eSJouni Malinen  */
2616cf4e594eSJouni Malinen void cfg80211_send_unprot_disassoc(struct net_device *dev, const u8 *buf,
2617cf4e594eSJouni Malinen 				   size_t len);
2618cf4e594eSJouni Malinen 
2619cf4e594eSJouni Malinen /**
2620a3b8b056SJouni Malinen  * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
2621a3b8b056SJouni Malinen  * @dev: network device
2622a3b8b056SJouni Malinen  * @addr: The source MAC address of the frame
2623a3b8b056SJouni Malinen  * @key_type: The key type that the received frame used
2624a3b8b056SJouni Malinen  * @key_id: Key identifier (0..3)
2625a3b8b056SJouni Malinen  * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
2626e6d6e342SJohannes Berg  * @gfp: allocation flags
2627a3b8b056SJouni Malinen  *
2628a3b8b056SJouni Malinen  * This function is called whenever the local MAC detects a MIC failure in a
2629a3b8b056SJouni Malinen  * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
2630a3b8b056SJouni Malinen  * primitive.
2631a3b8b056SJouni Malinen  */
2632a3b8b056SJouni Malinen void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
2633a3b8b056SJouni Malinen 				  enum nl80211_key_type key_type, int key_id,
2634e6d6e342SJohannes Berg 				  const u8 *tsc, gfp_t gfp);
2635a3b8b056SJouni Malinen 
263604a773adSJohannes Berg /**
263704a773adSJohannes Berg  * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
263804a773adSJohannes Berg  *
263904a773adSJohannes Berg  * @dev: network device
264004a773adSJohannes Berg  * @bssid: the BSSID of the IBSS joined
264104a773adSJohannes Berg  * @gfp: allocation flags
264204a773adSJohannes Berg  *
264304a773adSJohannes Berg  * This function notifies cfg80211 that the device joined an IBSS or
264404a773adSJohannes Berg  * switched to a different BSSID. Before this function can be called,
264504a773adSJohannes Berg  * either a beacon has to have been received from the IBSS, or one of
264604a773adSJohannes Berg  * the cfg80211_inform_bss{,_frame} functions must have been called
264704a773adSJohannes Berg  * with the locally generated beacon -- this guarantees that there is
264804a773adSJohannes Berg  * always a scan result for this IBSS. cfg80211 will handle the rest.
264904a773adSJohannes Berg  */
265004a773adSJohannes Berg void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp);
265104a773adSJohannes Berg 
26521f87f7d3SJohannes Berg /**
2653c93b5e71SJavier Cardona  * cfg80211_notify_new_candidate - notify cfg80211 of a new mesh peer candidate
2654c93b5e71SJavier Cardona  *
2655c93b5e71SJavier Cardona  * @dev: network device
2656c93b5e71SJavier Cardona  * @macaddr: the MAC address of the new candidate
2657c93b5e71SJavier Cardona  * @ie: information elements advertised by the peer candidate
2658c93b5e71SJavier Cardona  * @ie_len: lenght of the information elements buffer
2659c93b5e71SJavier Cardona  * @gfp: allocation flags
2660c93b5e71SJavier Cardona  *
2661c93b5e71SJavier Cardona  * This function notifies cfg80211 that the mesh peer candidate has been
2662c93b5e71SJavier Cardona  * detected, most likely via a beacon or, less likely, via a probe response.
2663c93b5e71SJavier Cardona  * cfg80211 then sends a notification to userspace.
2664c93b5e71SJavier Cardona  */
2665c93b5e71SJavier Cardona void cfg80211_notify_new_peer_candidate(struct net_device *dev,
2666c93b5e71SJavier Cardona 		const u8 *macaddr, const u8 *ie, u8 ie_len, gfp_t gfp);
2667c93b5e71SJavier Cardona 
2668c93b5e71SJavier Cardona /**
2669d70e9693SJohannes Berg  * DOC: RFkill integration
2670d70e9693SJohannes Berg  *
2671d70e9693SJohannes Berg  * RFkill integration in cfg80211 is almost invisible to drivers,
2672d70e9693SJohannes Berg  * as cfg80211 automatically registers an rfkill instance for each
2673d70e9693SJohannes Berg  * wireless device it knows about. Soft kill is also translated
2674d70e9693SJohannes Berg  * into disconnecting and turning all interfaces off, drivers are
2675d70e9693SJohannes Berg  * expected to turn off the device when all interfaces are down.
2676d70e9693SJohannes Berg  *
2677d70e9693SJohannes Berg  * However, devices may have a hard RFkill line, in which case they
2678d70e9693SJohannes Berg  * also need to interact with the rfkill subsystem, via cfg80211.
2679d70e9693SJohannes Berg  * They can do this with a few helper functions documented here.
2680d70e9693SJohannes Berg  */
2681d70e9693SJohannes Berg 
2682d70e9693SJohannes Berg /**
26831f87f7d3SJohannes Berg  * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
26841f87f7d3SJohannes Berg  * @wiphy: the wiphy
26851f87f7d3SJohannes Berg  * @blocked: block status
26861f87f7d3SJohannes Berg  */
26871f87f7d3SJohannes Berg void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked);
26881f87f7d3SJohannes Berg 
26891f87f7d3SJohannes Berg /**
26901f87f7d3SJohannes Berg  * wiphy_rfkill_start_polling - start polling rfkill
26911f87f7d3SJohannes Berg  * @wiphy: the wiphy
26921f87f7d3SJohannes Berg  */
26931f87f7d3SJohannes Berg void wiphy_rfkill_start_polling(struct wiphy *wiphy);
26941f87f7d3SJohannes Berg 
26951f87f7d3SJohannes Berg /**
26961f87f7d3SJohannes Berg  * wiphy_rfkill_stop_polling - stop polling rfkill
26971f87f7d3SJohannes Berg  * @wiphy: the wiphy
26981f87f7d3SJohannes Berg  */
26991f87f7d3SJohannes Berg void wiphy_rfkill_stop_polling(struct wiphy *wiphy);
27001f87f7d3SJohannes Berg 
2701aff89a9bSJohannes Berg #ifdef CONFIG_NL80211_TESTMODE
2702aff89a9bSJohannes Berg /**
2703d70e9693SJohannes Berg  * DOC: Test mode
2704d70e9693SJohannes Berg  *
2705d70e9693SJohannes Berg  * Test mode is a set of utility functions to allow drivers to
2706d70e9693SJohannes Berg  * interact with driver-specific tools to aid, for instance,
2707d70e9693SJohannes Berg  * factory programming.
2708d70e9693SJohannes Berg  *
2709d70e9693SJohannes Berg  * This chapter describes how drivers interact with it, for more
2710d70e9693SJohannes Berg  * information see the nl80211 book's chapter on it.
2711d70e9693SJohannes Berg  */
2712d70e9693SJohannes Berg 
2713d70e9693SJohannes Berg /**
2714aff89a9bSJohannes Berg  * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
2715aff89a9bSJohannes Berg  * @wiphy: the wiphy
2716aff89a9bSJohannes Berg  * @approxlen: an upper bound of the length of the data that will
2717aff89a9bSJohannes Berg  *	be put into the skb
2718aff89a9bSJohannes Berg  *
2719aff89a9bSJohannes Berg  * This function allocates and pre-fills an skb for a reply to
2720aff89a9bSJohannes Berg  * the testmode command. Since it is intended for a reply, calling
2721aff89a9bSJohannes Berg  * it outside of the @testmode_cmd operation is invalid.
2722aff89a9bSJohannes Berg  *
2723aff89a9bSJohannes Berg  * The returned skb (or %NULL if any errors happen) is pre-filled
2724aff89a9bSJohannes Berg  * with the wiphy index and set up in a way that any data that is
2725aff89a9bSJohannes Berg  * put into the skb (with skb_put(), nla_put() or similar) will end
2726aff89a9bSJohannes Berg  * up being within the %NL80211_ATTR_TESTDATA attribute, so all that
2727aff89a9bSJohannes Berg  * needs to be done with the skb is adding data for the corresponding
2728aff89a9bSJohannes Berg  * userspace tool which can then read that data out of the testdata
2729aff89a9bSJohannes Berg  * attribute. You must not modify the skb in any other way.
2730aff89a9bSJohannes Berg  *
2731aff89a9bSJohannes Berg  * When done, call cfg80211_testmode_reply() with the skb and return
2732aff89a9bSJohannes Berg  * its error code as the result of the @testmode_cmd operation.
2733aff89a9bSJohannes Berg  */
2734aff89a9bSJohannes Berg struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
2735aff89a9bSJohannes Berg 						  int approxlen);
2736aff89a9bSJohannes Berg 
2737aff89a9bSJohannes Berg /**
2738aff89a9bSJohannes Berg  * cfg80211_testmode_reply - send the reply skb
2739aff89a9bSJohannes Berg  * @skb: The skb, must have been allocated with
2740aff89a9bSJohannes Berg  *	cfg80211_testmode_alloc_reply_skb()
2741aff89a9bSJohannes Berg  *
2742aff89a9bSJohannes Berg  * Returns an error code or 0 on success, since calling this
2743aff89a9bSJohannes Berg  * function will usually be the last thing before returning
2744aff89a9bSJohannes Berg  * from the @testmode_cmd you should return the error code.
2745aff89a9bSJohannes Berg  * Note that this function consumes the skb regardless of the
2746aff89a9bSJohannes Berg  * return value.
2747aff89a9bSJohannes Berg  */
2748aff89a9bSJohannes Berg int cfg80211_testmode_reply(struct sk_buff *skb);
2749aff89a9bSJohannes Berg 
2750aff89a9bSJohannes Berg /**
2751aff89a9bSJohannes Berg  * cfg80211_testmode_alloc_event_skb - allocate testmode event
2752aff89a9bSJohannes Berg  * @wiphy: the wiphy
2753aff89a9bSJohannes Berg  * @approxlen: an upper bound of the length of the data that will
2754aff89a9bSJohannes Berg  *	be put into the skb
2755aff89a9bSJohannes Berg  * @gfp: allocation flags
2756aff89a9bSJohannes Berg  *
2757aff89a9bSJohannes Berg  * This function allocates and pre-fills an skb for an event on the
2758aff89a9bSJohannes Berg  * testmode multicast group.
2759aff89a9bSJohannes Berg  *
2760aff89a9bSJohannes Berg  * The returned skb (or %NULL if any errors happen) is set up in the
2761aff89a9bSJohannes Berg  * same way as with cfg80211_testmode_alloc_reply_skb() but prepared
2762aff89a9bSJohannes Berg  * for an event. As there, you should simply add data to it that will
2763aff89a9bSJohannes Berg  * then end up in the %NL80211_ATTR_TESTDATA attribute. Again, you must
2764aff89a9bSJohannes Berg  * not modify the skb in any other way.
2765aff89a9bSJohannes Berg  *
2766aff89a9bSJohannes Berg  * When done filling the skb, call cfg80211_testmode_event() with the
2767aff89a9bSJohannes Berg  * skb to send the event.
2768aff89a9bSJohannes Berg  */
2769aff89a9bSJohannes Berg struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
2770aff89a9bSJohannes Berg 						  int approxlen, gfp_t gfp);
2771aff89a9bSJohannes Berg 
2772aff89a9bSJohannes Berg /**
2773aff89a9bSJohannes Berg  * cfg80211_testmode_event - send the event
2774aff89a9bSJohannes Berg  * @skb: The skb, must have been allocated with
2775aff89a9bSJohannes Berg  *	cfg80211_testmode_alloc_event_skb()
2776aff89a9bSJohannes Berg  * @gfp: allocation flags
2777aff89a9bSJohannes Berg  *
2778aff89a9bSJohannes Berg  * This function sends the given @skb, which must have been allocated
2779aff89a9bSJohannes Berg  * by cfg80211_testmode_alloc_event_skb(), as an event. It always
2780aff89a9bSJohannes Berg  * consumes it.
2781aff89a9bSJohannes Berg  */
2782aff89a9bSJohannes Berg void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp);
2783aff89a9bSJohannes Berg 
2784aff89a9bSJohannes Berg #define CFG80211_TESTMODE_CMD(cmd)	.testmode_cmd = (cmd),
2785aff89a9bSJohannes Berg #else
2786aff89a9bSJohannes Berg #define CFG80211_TESTMODE_CMD(cmd)
2787aff89a9bSJohannes Berg #endif
2788aff89a9bSJohannes Berg 
2789b23aa676SSamuel Ortiz /**
2790b23aa676SSamuel Ortiz  * cfg80211_connect_result - notify cfg80211 of connection result
2791b23aa676SSamuel Ortiz  *
2792b23aa676SSamuel Ortiz  * @dev: network device
2793b23aa676SSamuel Ortiz  * @bssid: the BSSID of the AP
2794b23aa676SSamuel Ortiz  * @req_ie: association request IEs (maybe be %NULL)
2795b23aa676SSamuel Ortiz  * @req_ie_len: association request IEs length
2796b23aa676SSamuel Ortiz  * @resp_ie: association response IEs (may be %NULL)
2797b23aa676SSamuel Ortiz  * @resp_ie_len: assoc response IEs length
2798b23aa676SSamuel Ortiz  * @status: status code, 0 for successful connection, use
2799b23aa676SSamuel Ortiz  *	%WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
2800b23aa676SSamuel Ortiz  *	the real status code for failures.
2801b23aa676SSamuel Ortiz  * @gfp: allocation flags
2802b23aa676SSamuel Ortiz  *
2803b23aa676SSamuel Ortiz  * It should be called by the underlying driver whenever connect() has
2804b23aa676SSamuel Ortiz  * succeeded.
2805b23aa676SSamuel Ortiz  */
2806b23aa676SSamuel Ortiz void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
2807b23aa676SSamuel Ortiz 			     const u8 *req_ie, size_t req_ie_len,
2808b23aa676SSamuel Ortiz 			     const u8 *resp_ie, size_t resp_ie_len,
2809b23aa676SSamuel Ortiz 			     u16 status, gfp_t gfp);
2810b23aa676SSamuel Ortiz 
2811b23aa676SSamuel Ortiz /**
2812b23aa676SSamuel Ortiz  * cfg80211_roamed - notify cfg80211 of roaming
2813b23aa676SSamuel Ortiz  *
2814b23aa676SSamuel Ortiz  * @dev: network device
2815b23aa676SSamuel Ortiz  * @bssid: the BSSID of the new AP
2816b23aa676SSamuel Ortiz  * @req_ie: association request IEs (maybe be %NULL)
2817b23aa676SSamuel Ortiz  * @req_ie_len: association request IEs length
2818b23aa676SSamuel Ortiz  * @resp_ie: association response IEs (may be %NULL)
2819b23aa676SSamuel Ortiz  * @resp_ie_len: assoc response IEs length
2820b23aa676SSamuel Ortiz  * @gfp: allocation flags
2821b23aa676SSamuel Ortiz  *
2822b23aa676SSamuel Ortiz  * It should be called by the underlying driver whenever it roamed
2823b23aa676SSamuel Ortiz  * from one AP to another while connected.
2824b23aa676SSamuel Ortiz  */
2825b23aa676SSamuel Ortiz void cfg80211_roamed(struct net_device *dev, const u8 *bssid,
2826b23aa676SSamuel Ortiz 		     const u8 *req_ie, size_t req_ie_len,
2827b23aa676SSamuel Ortiz 		     const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
2828b23aa676SSamuel Ortiz 
2829b23aa676SSamuel Ortiz /**
2830b23aa676SSamuel Ortiz  * cfg80211_disconnected - notify cfg80211 that connection was dropped
2831b23aa676SSamuel Ortiz  *
2832b23aa676SSamuel Ortiz  * @dev: network device
2833b23aa676SSamuel Ortiz  * @ie: information elements of the deauth/disassoc frame (may be %NULL)
2834b23aa676SSamuel Ortiz  * @ie_len: length of IEs
2835b23aa676SSamuel Ortiz  * @reason: reason code for the disconnection, set it to 0 if unknown
2836b23aa676SSamuel Ortiz  * @gfp: allocation flags
2837b23aa676SSamuel Ortiz  *
2838b23aa676SSamuel Ortiz  * After it calls this function, the driver should enter an idle state
2839b23aa676SSamuel Ortiz  * and not try to connect to any AP any more.
2840b23aa676SSamuel Ortiz  */
2841b23aa676SSamuel Ortiz void cfg80211_disconnected(struct net_device *dev, u16 reason,
2842b23aa676SSamuel Ortiz 			   u8 *ie, size_t ie_len, gfp_t gfp);
2843b23aa676SSamuel Ortiz 
28449588bbd5SJouni Malinen /**
28459588bbd5SJouni Malinen  * cfg80211_ready_on_channel - notification of remain_on_channel start
28469588bbd5SJouni Malinen  * @dev: network device
28479588bbd5SJouni Malinen  * @cookie: the request cookie
28489588bbd5SJouni Malinen  * @chan: The current channel (from remain_on_channel request)
28499588bbd5SJouni Malinen  * @channel_type: Channel type
28509588bbd5SJouni Malinen  * @duration: Duration in milliseconds that the driver intents to remain on the
28519588bbd5SJouni Malinen  *	channel
28529588bbd5SJouni Malinen  * @gfp: allocation flags
28539588bbd5SJouni Malinen  */
28549588bbd5SJouni Malinen void cfg80211_ready_on_channel(struct net_device *dev, u64 cookie,
28559588bbd5SJouni Malinen 			       struct ieee80211_channel *chan,
28569588bbd5SJouni Malinen 			       enum nl80211_channel_type channel_type,
28579588bbd5SJouni Malinen 			       unsigned int duration, gfp_t gfp);
28589588bbd5SJouni Malinen 
28599588bbd5SJouni Malinen /**
28609588bbd5SJouni Malinen  * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
28619588bbd5SJouni Malinen  * @dev: network device
28629588bbd5SJouni Malinen  * @cookie: the request cookie
28639588bbd5SJouni Malinen  * @chan: The current channel (from remain_on_channel request)
28649588bbd5SJouni Malinen  * @channel_type: Channel type
28659588bbd5SJouni Malinen  * @gfp: allocation flags
28669588bbd5SJouni Malinen  */
28679588bbd5SJouni Malinen void cfg80211_remain_on_channel_expired(struct net_device *dev,
28689588bbd5SJouni Malinen 					u64 cookie,
28699588bbd5SJouni Malinen 					struct ieee80211_channel *chan,
28709588bbd5SJouni Malinen 					enum nl80211_channel_type channel_type,
28719588bbd5SJouni Malinen 					gfp_t gfp);
2872b23aa676SSamuel Ortiz 
287398b62183SJohannes Berg 
287498b62183SJohannes Berg /**
287598b62183SJohannes Berg  * cfg80211_new_sta - notify userspace about station
287698b62183SJohannes Berg  *
287798b62183SJohannes Berg  * @dev: the netdev
287898b62183SJohannes Berg  * @mac_addr: the station's address
287998b62183SJohannes Berg  * @sinfo: the station information
288098b62183SJohannes Berg  * @gfp: allocation flags
288198b62183SJohannes Berg  */
288298b62183SJohannes Berg void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
288398b62183SJohannes Berg 		      struct station_info *sinfo, gfp_t gfp);
288498b62183SJohannes Berg 
2885026331c4SJouni Malinen /**
2886ec15e68bSJouni Malinen  * cfg80211_del_sta - notify userspace about deletion of a station
2887ec15e68bSJouni Malinen  *
2888ec15e68bSJouni Malinen  * @dev: the netdev
2889ec15e68bSJouni Malinen  * @mac_addr: the station's address
2890ec15e68bSJouni Malinen  * @gfp: allocation flags
2891ec15e68bSJouni Malinen  */
2892ec15e68bSJouni Malinen void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp);
2893ec15e68bSJouni Malinen 
2894ec15e68bSJouni Malinen /**
28952e161f78SJohannes Berg  * cfg80211_rx_mgmt - notification of received, unprocessed management frame
2896026331c4SJouni Malinen  * @dev: network device
2897026331c4SJouni Malinen  * @freq: Frequency on which the frame was received in MHz
28982e161f78SJohannes Berg  * @buf: Management frame (header + body)
2899026331c4SJouni Malinen  * @len: length of the frame data
2900026331c4SJouni Malinen  * @gfp: context flags
29012e161f78SJohannes Berg  *
29022e161f78SJohannes Berg  * Returns %true if a user space application has registered for this frame.
29032e161f78SJohannes Berg  * For action frames, that makes it responsible for rejecting unrecognized
29042e161f78SJohannes Berg  * action frames; %false otherwise, in which case for action frames the
29052e161f78SJohannes Berg  * driver is responsible for rejecting the frame.
2906026331c4SJouni Malinen  *
2907026331c4SJouni Malinen  * This function is called whenever an Action frame is received for a station
2908026331c4SJouni Malinen  * mode interface, but is not processed in kernel.
2909026331c4SJouni Malinen  */
29102e161f78SJohannes Berg bool cfg80211_rx_mgmt(struct net_device *dev, int freq, const u8 *buf,
2911026331c4SJouni Malinen 		      size_t len, gfp_t gfp);
2912026331c4SJouni Malinen 
2913026331c4SJouni Malinen /**
29142e161f78SJohannes Berg  * cfg80211_mgmt_tx_status - notification of TX status for management frame
2915026331c4SJouni Malinen  * @dev: network device
29162e161f78SJohannes Berg  * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
29172e161f78SJohannes Berg  * @buf: Management frame (header + body)
2918026331c4SJouni Malinen  * @len: length of the frame data
2919026331c4SJouni Malinen  * @ack: Whether frame was acknowledged
2920026331c4SJouni Malinen  * @gfp: context flags
2921026331c4SJouni Malinen  *
29222e161f78SJohannes Berg  * This function is called whenever a management frame was requested to be
29232e161f78SJohannes Berg  * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
2924026331c4SJouni Malinen  * transmission attempt.
2925026331c4SJouni Malinen  */
29262e161f78SJohannes Berg void cfg80211_mgmt_tx_status(struct net_device *dev, u64 cookie,
2927026331c4SJouni Malinen 			     const u8 *buf, size_t len, bool ack, gfp_t gfp);
2928026331c4SJouni Malinen 
2929d6dc1a38SJuuso Oikarinen 
2930d6dc1a38SJuuso Oikarinen /**
2931d6dc1a38SJuuso Oikarinen  * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
2932d6dc1a38SJuuso Oikarinen  * @dev: network device
2933d6dc1a38SJuuso Oikarinen  * @rssi_event: the triggered RSSI event
2934d6dc1a38SJuuso Oikarinen  * @gfp: context flags
2935d6dc1a38SJuuso Oikarinen  *
2936d6dc1a38SJuuso Oikarinen  * This function is called when a configured connection quality monitoring
2937d6dc1a38SJuuso Oikarinen  * rssi threshold reached event occurs.
2938d6dc1a38SJuuso Oikarinen  */
2939d6dc1a38SJuuso Oikarinen void cfg80211_cqm_rssi_notify(struct net_device *dev,
2940d6dc1a38SJuuso Oikarinen 			      enum nl80211_cqm_rssi_threshold_event rssi_event,
2941d6dc1a38SJuuso Oikarinen 			      gfp_t gfp);
2942d6dc1a38SJuuso Oikarinen 
2943c063dbf5SJohannes Berg /**
2944c063dbf5SJohannes Berg  * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
2945c063dbf5SJohannes Berg  * @dev: network device
2946c063dbf5SJohannes Berg  * @peer: peer's MAC address
2947c063dbf5SJohannes Berg  * @num_packets: how many packets were lost -- should be a fixed threshold
2948c063dbf5SJohannes Berg  *	but probably no less than maybe 50, or maybe a throughput dependent
2949c063dbf5SJohannes Berg  *	threshold (to account for temporary interference)
2950c063dbf5SJohannes Berg  * @gfp: context flags
2951c063dbf5SJohannes Berg  */
2952c063dbf5SJohannes Berg void cfg80211_cqm_pktloss_notify(struct net_device *dev,
2953c063dbf5SJohannes Berg 				 const u8 *peer, u32 num_packets, gfp_t gfp);
2954c063dbf5SJohannes Berg 
2955e1db74fcSJoe Perches /* Logging, debugging and troubleshooting/diagnostic helpers. */
2956e1db74fcSJoe Perches 
2957e1db74fcSJoe Perches /* wiphy_printk helpers, similar to dev_printk */
2958e1db74fcSJoe Perches 
2959e1db74fcSJoe Perches #define wiphy_printk(level, wiphy, format, args...)		\
29609c376639SJoe Perches 	dev_printk(level, &(wiphy)->dev, format, ##args)
2961e1db74fcSJoe Perches #define wiphy_emerg(wiphy, format, args...)			\
29629c376639SJoe Perches 	dev_emerg(&(wiphy)->dev, format, ##args)
2963e1db74fcSJoe Perches #define wiphy_alert(wiphy, format, args...)			\
29649c376639SJoe Perches 	dev_alert(&(wiphy)->dev, format, ##args)
2965e1db74fcSJoe Perches #define wiphy_crit(wiphy, format, args...)			\
29669c376639SJoe Perches 	dev_crit(&(wiphy)->dev, format, ##args)
2967e1db74fcSJoe Perches #define wiphy_err(wiphy, format, args...)			\
29689c376639SJoe Perches 	dev_err(&(wiphy)->dev, format, ##args)
2969e1db74fcSJoe Perches #define wiphy_warn(wiphy, format, args...)			\
29709c376639SJoe Perches 	dev_warn(&(wiphy)->dev, format, ##args)
2971e1db74fcSJoe Perches #define wiphy_notice(wiphy, format, args...)			\
29729c376639SJoe Perches 	dev_notice(&(wiphy)->dev, format, ##args)
2973e1db74fcSJoe Perches #define wiphy_info(wiphy, format, args...)			\
29749c376639SJoe Perches 	dev_info(&(wiphy)->dev, format, ##args)
2975073730d7SJoe Perches 
29769c376639SJoe Perches #define wiphy_debug(wiphy, format, args...)			\
2977e1db74fcSJoe Perches 	wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
29789c376639SJoe Perches 
2979e1db74fcSJoe Perches #define wiphy_dbg(wiphy, format, args...)			\
29809c376639SJoe Perches 	dev_dbg(&(wiphy)->dev, format, ##args)
2981e1db74fcSJoe Perches 
2982e1db74fcSJoe Perches #if defined(VERBOSE_DEBUG)
2983e1db74fcSJoe Perches #define wiphy_vdbg	wiphy_dbg
2984e1db74fcSJoe Perches #else
2985e1db74fcSJoe Perches #define wiphy_vdbg(wiphy, format, args...)				\
2986e1db74fcSJoe Perches ({									\
2987e1db74fcSJoe Perches 	if (0)								\
2988e1db74fcSJoe Perches 		wiphy_printk(KERN_DEBUG, wiphy, format, ##args);	\
2989e1db74fcSJoe Perches 	0;								\
2990e1db74fcSJoe Perches })
2991e1db74fcSJoe Perches #endif
2992e1db74fcSJoe Perches 
2993e1db74fcSJoe Perches /*
2994e1db74fcSJoe Perches  * wiphy_WARN() acts like wiphy_printk(), but with the key difference
2995e1db74fcSJoe Perches  * of using a WARN/WARN_ON to get the message out, including the
2996e1db74fcSJoe Perches  * file/line information and a backtrace.
2997e1db74fcSJoe Perches  */
2998e1db74fcSJoe Perches #define wiphy_WARN(wiphy, format, args...)			\
2999e1db74fcSJoe Perches 	WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
3000e1db74fcSJoe Perches 
3001704232c2SJohannes Berg #endif /* __NET_CFG80211_H */
3002