cfg80211: allow survey data to return global data
[deliverable/linux.git] / include / net / cfg80211.h
CommitLineData
704232c2
JB
1#ifndef __NET_CFG80211_H
2#define __NET_CFG80211_H
d3236553
JB
3/*
4 * 802.11 device and configuration interface
5 *
026331c4 6 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
2740f0cf 7 * Copyright 2013-2014 Intel Mobile Communications GmbH
d3236553
JB
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
704232c2 13
d3236553
JB
14#include <linux/netdevice.h>
15#include <linux/debugfs.h>
16#include <linux/list.h>
187f1882 17#include <linux/bug.h>
704232c2
JB
18#include <linux/netlink.h>
19#include <linux/skbuff.h>
55682965 20#include <linux/nl80211.h>
2a519311
JB
21#include <linux/if_ether.h>
22#include <linux/ieee80211.h>
2a0e047e 23#include <linux/net.h>
d3236553
JB
24#include <net/regulatory.h>
25
d70e9693
JB
26/**
27 * DOC: Introduction
28 *
29 * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
30 * userspace and drivers, and offers some utility functionality associated
31 * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
32 * by all modern wireless drivers in Linux, so that they offer a consistent
33 * API through nl80211. For backward compatibility, cfg80211 also offers
34 * wireless extensions to userspace, but hides them from drivers completely.
35 *
36 * Additionally, cfg80211 contains code to help enforce regulatory spectrum
37 * use restrictions.
38 */
39
40
41/**
42 * DOC: Device registration
43 *
44 * In order for a driver to use cfg80211, it must register the hardware device
45 * with cfg80211. This happens through a number of hardware capability structs
46 * described below.
47 *
48 * The fundamental structure for each device is the 'wiphy', of which each
49 * instance describes a physical wireless device connected to the system. Each
50 * such wiphy can have zero, one, or many virtual interfaces associated with
51 * it, which need to be identified as such by pointing the network interface's
52 * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
53 * the wireless part of the interface, normally this struct is embedded in the
54 * network interface's private data area. Drivers can optionally allow creating
55 * or destroying virtual interfaces on the fly, but without at least one or the
56 * ability to create some the wireless device isn't useful.
57 *
58 * Each wiphy structure contains device capability information, and also has
59 * a pointer to the various operations the driver offers. The definitions and
60 * structures here describe these capabilities in detail.
61 */
62
9f5e8f6e
JB
63struct wiphy;
64
704232c2 65/*
d3236553
JB
66 * wireless hardware capability structures
67 */
68
69/**
70 * enum ieee80211_band - supported frequency bands
71 *
72 * The bands are assigned this way because the supported
73 * bitrates differ in these bands.
704232c2 74 *
d3236553
JB
75 * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band
76 * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7)
3a0c52a6 77 * @IEEE80211_BAND_60GHZ: around 60 GHz band (58.32 - 64.80 GHz)
abe37c4b 78 * @IEEE80211_NUM_BANDS: number of defined bands
704232c2 79 */
d3236553 80enum ieee80211_band {
13ae75b1
JM
81 IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ,
82 IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ,
3a0c52a6 83 IEEE80211_BAND_60GHZ = NL80211_BAND_60GHZ,
d3236553
JB
84
85 /* keep last */
86 IEEE80211_NUM_BANDS
87};
704232c2 88
2ec600d6 89/**
d3236553
JB
90 * enum ieee80211_channel_flags - channel flags
91 *
92 * Channel flags set by the regulatory control code.
93 *
94 * @IEEE80211_CHAN_DISABLED: This channel is disabled.
8fe02e16
LR
95 * @IEEE80211_CHAN_NO_IR: do not initiate radiation, this includes
96 * sending probe requests or beaconing.
d3236553 97 * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel.
689da1b3 98 * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel
d3236553 99 * is not permitted.
689da1b3 100 * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel
d3236553 101 * is not permitted.
03f6b084 102 * @IEEE80211_CHAN_NO_OFDM: OFDM is not allowed on this channel.
c7a6ee27
JB
103 * @IEEE80211_CHAN_NO_80MHZ: If the driver supports 80 MHz on the band,
104 * this flag indicates that an 80 MHz channel cannot use this
105 * channel as the control or any of the secondary channels.
106 * This may be due to the driver or due to regulatory bandwidth
107 * restrictions.
108 * @IEEE80211_CHAN_NO_160MHZ: If the driver supports 160 MHz on the band,
109 * this flag indicates that an 160 MHz channel cannot use this
110 * channel as the control or any of the secondary channels.
111 * This may be due to the driver or due to regulatory bandwidth
112 * restrictions.
570dbde1
DS
113 * @IEEE80211_CHAN_INDOOR_ONLY: see %NL80211_FREQUENCY_ATTR_INDOOR_ONLY
114 * @IEEE80211_CHAN_GO_CONCURRENT: see %NL80211_FREQUENCY_ATTR_GO_CONCURRENT
ea077c1c
RL
115 * @IEEE80211_CHAN_NO_20MHZ: 20 MHz bandwidth is not permitted
116 * on this channel.
117 * @IEEE80211_CHAN_NO_10MHZ: 10 MHz bandwidth is not permitted
118 * on this channel.
570dbde1 119 *
2ec600d6 120 */
d3236553
JB
121enum ieee80211_channel_flags {
122 IEEE80211_CHAN_DISABLED = 1<<0,
8fe02e16
LR
123 IEEE80211_CHAN_NO_IR = 1<<1,
124 /* hole at 1<<2 */
d3236553 125 IEEE80211_CHAN_RADAR = 1<<3,
689da1b3
LR
126 IEEE80211_CHAN_NO_HT40PLUS = 1<<4,
127 IEEE80211_CHAN_NO_HT40MINUS = 1<<5,
03f6b084 128 IEEE80211_CHAN_NO_OFDM = 1<<6,
c7a6ee27
JB
129 IEEE80211_CHAN_NO_80MHZ = 1<<7,
130 IEEE80211_CHAN_NO_160MHZ = 1<<8,
570dbde1
DS
131 IEEE80211_CHAN_INDOOR_ONLY = 1<<9,
132 IEEE80211_CHAN_GO_CONCURRENT = 1<<10,
ea077c1c
RL
133 IEEE80211_CHAN_NO_20MHZ = 1<<11,
134 IEEE80211_CHAN_NO_10MHZ = 1<<12,
2ec600d6
LCC
135};
136
038659e7 137#define IEEE80211_CHAN_NO_HT40 \
689da1b3 138 (IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
038659e7 139
04f39047
SW
140#define IEEE80211_DFS_MIN_CAC_TIME_MS 60000
141#define IEEE80211_DFS_MIN_NOP_TIME_MS (30 * 60 * 1000)
142
d3236553
JB
143/**
144 * struct ieee80211_channel - channel definition
145 *
146 * This structure describes a single channel for use
147 * with cfg80211.
148 *
149 * @center_freq: center frequency in MHz
d3236553
JB
150 * @hw_value: hardware-specific value for the channel
151 * @flags: channel flags from &enum ieee80211_channel_flags.
152 * @orig_flags: channel flags at registration time, used by regulatory
153 * code to support devices with additional restrictions
154 * @band: band this channel belongs to.
155 * @max_antenna_gain: maximum antenna gain in dBi
156 * @max_power: maximum transmission power (in dBm)
eccc068e 157 * @max_reg_power: maximum regulatory transmission power (in dBm)
d3236553
JB
158 * @beacon_found: helper to regulatory code to indicate when a beacon
159 * has been found on this channel. Use regulatory_hint_found_beacon()
77c2061d 160 * to enable this, this is useful only on 5 GHz band.
d3236553
JB
161 * @orig_mag: internal use
162 * @orig_mpwr: internal use
04f39047
SW
163 * @dfs_state: current state of this channel. Only relevant if radar is required
164 * on this channel.
165 * @dfs_state_entered: timestamp (jiffies) when the dfs state was entered.
089027e5 166 * @dfs_cac_ms: DFS CAC time in milliseconds, this is valid for DFS channels.
179f831b 167 */
d3236553
JB
168struct ieee80211_channel {
169 enum ieee80211_band band;
170 u16 center_freq;
d3236553
JB
171 u16 hw_value;
172 u32 flags;
173 int max_antenna_gain;
174 int max_power;
eccc068e 175 int max_reg_power;
d3236553
JB
176 bool beacon_found;
177 u32 orig_flags;
178 int orig_mag, orig_mpwr;
04f39047
SW
179 enum nl80211_dfs_state dfs_state;
180 unsigned long dfs_state_entered;
089027e5 181 unsigned int dfs_cac_ms;
d3236553
JB
182};
183
179f831b 184/**
d3236553
JB
185 * enum ieee80211_rate_flags - rate flags
186 *
187 * Hardware/specification flags for rates. These are structured
188 * in a way that allows using the same bitrate structure for
189 * different bands/PHY modes.
190 *
191 * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
192 * preamble on this bitrate; only relevant in 2.4GHz band and
193 * with CCK rates.
194 * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
195 * when used with 802.11a (on the 5 GHz band); filled by the
196 * core code when registering the wiphy.
197 * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
198 * when used with 802.11b (on the 2.4 GHz band); filled by the
199 * core code when registering the wiphy.
200 * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
201 * when used with 802.11g (on the 2.4 GHz band); filled by the
202 * core code when registering the wiphy.
203 * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
30e74732
SW
204 * @IEEE80211_RATE_SUPPORTS_5MHZ: Rate can be used in 5 MHz mode
205 * @IEEE80211_RATE_SUPPORTS_10MHZ: Rate can be used in 10 MHz mode
179f831b 206 */
d3236553
JB
207enum ieee80211_rate_flags {
208 IEEE80211_RATE_SHORT_PREAMBLE = 1<<0,
209 IEEE80211_RATE_MANDATORY_A = 1<<1,
210 IEEE80211_RATE_MANDATORY_B = 1<<2,
211 IEEE80211_RATE_MANDATORY_G = 1<<3,
212 IEEE80211_RATE_ERP_G = 1<<4,
30e74732
SW
213 IEEE80211_RATE_SUPPORTS_5MHZ = 1<<5,
214 IEEE80211_RATE_SUPPORTS_10MHZ = 1<<6,
d3236553 215};
179f831b 216
d3236553
JB
217/**
218 * struct ieee80211_rate - bitrate definition
219 *
220 * This structure describes a bitrate that an 802.11 PHY can
221 * operate with. The two values @hw_value and @hw_value_short
222 * are only for driver use when pointers to this structure are
223 * passed around.
224 *
225 * @flags: rate-specific flags
226 * @bitrate: bitrate in units of 100 Kbps
227 * @hw_value: driver/hardware value for this rate
228 * @hw_value_short: driver/hardware value for this rate when
229 * short preamble is used
230 */
231struct ieee80211_rate {
232 u32 flags;
233 u16 bitrate;
234 u16 hw_value, hw_value_short;
235};
179f831b 236
d3236553
JB
237/**
238 * struct ieee80211_sta_ht_cap - STA's HT capabilities
239 *
240 * This structure describes most essential parameters needed
241 * to describe 802.11n HT capabilities for an STA.
242 *
243 * @ht_supported: is HT supported by the STA
244 * @cap: HT capabilities map as described in 802.11n spec
245 * @ampdu_factor: Maximum A-MPDU length factor
246 * @ampdu_density: Minimum A-MPDU spacing
247 * @mcs: Supported MCS rates
248 */
249struct ieee80211_sta_ht_cap {
250 u16 cap; /* use IEEE80211_HT_CAP_ */
251 bool ht_supported;
252 u8 ampdu_factor;
253 u8 ampdu_density;
254 struct ieee80211_mcs_info mcs;
179f831b
AG
255};
256
bf0c111e
MP
257/**
258 * struct ieee80211_sta_vht_cap - STA's VHT capabilities
259 *
260 * This structure describes most essential parameters needed
261 * to describe 802.11ac VHT capabilities for an STA.
262 *
263 * @vht_supported: is VHT supported by the STA
264 * @cap: VHT capabilities map as described in 802.11ac spec
265 * @vht_mcs: Supported VHT MCS rates
266 */
267struct ieee80211_sta_vht_cap {
268 bool vht_supported;
269 u32 cap; /* use IEEE80211_VHT_CAP_ */
270 struct ieee80211_vht_mcs_info vht_mcs;
271};
272
d3236553
JB
273/**
274 * struct ieee80211_supported_band - frequency band definition
275 *
276 * This structure describes a frequency band a wiphy
277 * is able to operate in.
278 *
279 * @channels: Array of channels the hardware can operate in
280 * in this band.
281 * @band: the band this structure represents
282 * @n_channels: Number of channels in @channels
283 * @bitrates: Array of bitrates the hardware can operate with
284 * in this band. Must be sorted to give a valid "supported
285 * rates" IE, i.e. CCK rates first, then OFDM.
286 * @n_bitrates: Number of bitrates in @bitrates
abe37c4b 287 * @ht_cap: HT capabilities in this band
c9a0a302 288 * @vht_cap: VHT capabilities in this band
d3236553
JB
289 */
290struct ieee80211_supported_band {
291 struct ieee80211_channel *channels;
292 struct ieee80211_rate *bitrates;
293 enum ieee80211_band band;
294 int n_channels;
295 int n_bitrates;
296 struct ieee80211_sta_ht_cap ht_cap;
bf0c111e 297 struct ieee80211_sta_vht_cap vht_cap;
d3236553 298};
179f831b 299
d3236553
JB
300/*
301 * Wireless hardware/device configuration structures and methods
302 */
179f831b 303
d70e9693
JB
304/**
305 * DOC: Actions and configuration
306 *
307 * Each wireless device and each virtual interface offer a set of configuration
308 * operations and other actions that are invoked by userspace. Each of these
309 * actions is described in the operations structure, and the parameters these
310 * operations use are described separately.
311 *
312 * Additionally, some operations are asynchronous and expect to get status
313 * information via some functions that drivers need to call.
314 *
315 * Scanning and BSS list handling with its associated functionality is described
316 * in a separate chapter.
317 */
318
d3236553
JB
319/**
320 * struct vif_params - describes virtual interface parameters
8b787643 321 * @use_4addr: use 4-address frames
e8f479b1
BG
322 * @macaddr: address to use for this virtual interface.
323 * If this parameter is set to zero address the driver may
324 * determine the address as needed.
325 * This feature is only fully supported by drivers that enable the
326 * %NL80211_FEATURE_MAC_ON_CREATE flag. Others may support creating
327 ** only p2p devices with specified MAC.
d3236553
JB
328 */
329struct vif_params {
8b787643 330 int use_4addr;
1c18f145 331 u8 macaddr[ETH_ALEN];
d3236553 332};
179f831b 333
d3236553 334/**
41ade00f
JB
335 * struct key_params - key information
336 *
337 * Information about a key
338 *
339 * @key: key material
340 * @key_len: length of key material
341 * @cipher: cipher suite selector
342 * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
343 * with the get_key() callback, must be in little endian,
344 * length given by @seq_len.
abe37c4b 345 * @seq_len: length of @seq.
41ade00f
JB
346 */
347struct key_params {
c1e5f471
JB
348 const u8 *key;
349 const u8 *seq;
41ade00f
JB
350 int key_len;
351 int seq_len;
352 u32 cipher;
353};
354
683b6d3b
JB
355/**
356 * struct cfg80211_chan_def - channel definition
357 * @chan: the (control) channel
3d9d1d66
JB
358 * @width: channel width
359 * @center_freq1: center frequency of first segment
360 * @center_freq2: center frequency of second segment
361 * (only with 80+80 MHz)
683b6d3b
JB
362 */
363struct cfg80211_chan_def {
364 struct ieee80211_channel *chan;
3d9d1d66
JB
365 enum nl80211_chan_width width;
366 u32 center_freq1;
367 u32 center_freq2;
683b6d3b
JB
368};
369
3d9d1d66
JB
370/**
371 * cfg80211_get_chandef_type - return old channel type from chandef
372 * @chandef: the channel definition
373 *
0ae997dc 374 * Return: The old channel type (NOHT, HT20, HT40+/-) from a given
3d9d1d66
JB
375 * chandef, which must have a bandwidth allowing this conversion.
376 */
683b6d3b
JB
377static inline enum nl80211_channel_type
378cfg80211_get_chandef_type(const struct cfg80211_chan_def *chandef)
379{
3d9d1d66
JB
380 switch (chandef->width) {
381 case NL80211_CHAN_WIDTH_20_NOHT:
382 return NL80211_CHAN_NO_HT;
383 case NL80211_CHAN_WIDTH_20:
384 return NL80211_CHAN_HT20;
385 case NL80211_CHAN_WIDTH_40:
386 if (chandef->center_freq1 > chandef->chan->center_freq)
387 return NL80211_CHAN_HT40PLUS;
388 return NL80211_CHAN_HT40MINUS;
389 default:
390 WARN_ON(1);
391 return NL80211_CHAN_NO_HT;
392 }
683b6d3b
JB
393}
394
3d9d1d66
JB
395/**
396 * cfg80211_chandef_create - create channel definition using channel type
397 * @chandef: the channel definition struct to fill
398 * @channel: the control channel
399 * @chantype: the channel type
400 *
401 * Given a channel type, create a channel definition.
402 */
403void cfg80211_chandef_create(struct cfg80211_chan_def *chandef,
404 struct ieee80211_channel *channel,
405 enum nl80211_channel_type chantype);
406
407/**
408 * cfg80211_chandef_identical - check if two channel definitions are identical
409 * @chandef1: first channel definition
410 * @chandef2: second channel definition
411 *
0ae997dc 412 * Return: %true if the channels defined by the channel definitions are
3d9d1d66
JB
413 * identical, %false otherwise.
414 */
415static inline bool
416cfg80211_chandef_identical(const struct cfg80211_chan_def *chandef1,
417 const struct cfg80211_chan_def *chandef2)
418{
419 return (chandef1->chan == chandef2->chan &&
420 chandef1->width == chandef2->width &&
421 chandef1->center_freq1 == chandef2->center_freq1 &&
422 chandef1->center_freq2 == chandef2->center_freq2);
423}
424
425/**
426 * cfg80211_chandef_compatible - check if two channel definitions are compatible
427 * @chandef1: first channel definition
428 * @chandef2: second channel definition
429 *
0ae997dc 430 * Return: %NULL if the given channel definitions are incompatible,
3d9d1d66
JB
431 * chandef1 or chandef2 otherwise.
432 */
433const struct cfg80211_chan_def *
434cfg80211_chandef_compatible(const struct cfg80211_chan_def *chandef1,
435 const struct cfg80211_chan_def *chandef2);
436
9f5e8f6e
JB
437/**
438 * cfg80211_chandef_valid - check if a channel definition is valid
439 * @chandef: the channel definition to check
0ae997dc 440 * Return: %true if the channel definition is valid. %false otherwise.
9f5e8f6e
JB
441 */
442bool cfg80211_chandef_valid(const struct cfg80211_chan_def *chandef);
443
444/**
445 * cfg80211_chandef_usable - check if secondary channels can be used
446 * @wiphy: the wiphy to validate against
447 * @chandef: the channel definition to check
0ae997dc
YB
448 * @prohibited_flags: the regulatory channel flags that must not be set
449 * Return: %true if secondary channels are usable. %false otherwise.
9f5e8f6e
JB
450 */
451bool cfg80211_chandef_usable(struct wiphy *wiphy,
452 const struct cfg80211_chan_def *chandef,
453 u32 prohibited_flags);
454
774f0734
SW
455/**
456 * cfg80211_chandef_dfs_required - checks if radar detection is required
457 * @wiphy: the wiphy to validate against
458 * @chandef: the channel definition to check
2beb6dab
LC
459 * @iftype: the interface type as specified in &enum nl80211_iftype
460 * Returns:
461 * 1 if radar detection is required, 0 if it is not, < 0 on error
774f0734
SW
462 */
463int cfg80211_chandef_dfs_required(struct wiphy *wiphy,
2beb6dab 464 const struct cfg80211_chan_def *chandef,
c3d62036 465 enum nl80211_iftype iftype);
774f0734 466
30e74732
SW
467/**
468 * ieee80211_chandef_rate_flags - returns rate flags for a channel
469 *
470 * In some channel types, not all rates may be used - for example CCK
471 * rates may not be used in 5/10 MHz channels.
472 *
473 * @chandef: channel definition for the channel
474 *
475 * Returns: rate flags which apply for this channel
476 */
477static inline enum ieee80211_rate_flags
478ieee80211_chandef_rate_flags(struct cfg80211_chan_def *chandef)
479{
480 switch (chandef->width) {
481 case NL80211_CHAN_WIDTH_5:
482 return IEEE80211_RATE_SUPPORTS_5MHZ;
483 case NL80211_CHAN_WIDTH_10:
484 return IEEE80211_RATE_SUPPORTS_10MHZ;
485 default:
486 break;
487 }
488 return 0;
489}
490
0430c883
SW
491/**
492 * ieee80211_chandef_max_power - maximum transmission power for the chandef
493 *
494 * In some regulations, the transmit power may depend on the configured channel
495 * bandwidth which may be defined as dBm/MHz. This function returns the actual
496 * max_power for non-standard (20 MHz) channels.
497 *
498 * @chandef: channel definition for the channel
499 *
500 * Returns: maximum allowed transmission power in dBm for the chandef
501 */
502static inline int
503ieee80211_chandef_max_power(struct cfg80211_chan_def *chandef)
504{
505 switch (chandef->width) {
506 case NL80211_CHAN_WIDTH_5:
507 return min(chandef->chan->max_reg_power - 6,
508 chandef->chan->max_power);
509 case NL80211_CHAN_WIDTH_10:
510 return min(chandef->chan->max_reg_power - 3,
511 chandef->chan->max_power);
512 default:
513 break;
514 }
515 return chandef->chan->max_power;
516}
517
61fa713c
HS
518/**
519 * enum survey_info_flags - survey information flags
520 *
abe37c4b 521 * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
17e5a808 522 * @SURVEY_INFO_IN_USE: channel is currently being used
4ed20beb
JB
523 * @SURVEY_INFO_TIME: active time (in ms) was filled in
524 * @SURVEY_INFO_TIME_BUSY: busy time was filled in
525 * @SURVEY_INFO_TIME_EXT_BUSY: extension channel busy time was filled in
526 * @SURVEY_INFO_TIME_RX: receive time was filled in
527 * @SURVEY_INFO_TIME_TX: transmit time was filled in
abe37c4b 528 *
61fa713c
HS
529 * Used by the driver to indicate which info in &struct survey_info
530 * it has filled in during the get_survey().
531 */
532enum survey_info_flags {
4ed20beb
JB
533 SURVEY_INFO_NOISE_DBM = BIT(0),
534 SURVEY_INFO_IN_USE = BIT(1),
535 SURVEY_INFO_TIME = BIT(2),
536 SURVEY_INFO_TIME_BUSY = BIT(3),
537 SURVEY_INFO_TIME_EXT_BUSY = BIT(4),
538 SURVEY_INFO_TIME_RX = BIT(5),
539 SURVEY_INFO_TIME_TX = BIT(6),
61fa713c
HS
540};
541
542/**
543 * struct survey_info - channel survey response
544 *
11f78ac3
JB
545 * @channel: the channel this survey record reports, may be %NULL for a single
546 * record to report global statistics
61fa713c
HS
547 * @filled: bitflag of flags from &enum survey_info_flags
548 * @noise: channel noise in dBm. This and all following fields are
ad24b0da 549 * optional
4ed20beb
JB
550 * @time: amount of time in ms the radio was turn on (on the channel)
551 * @time_busy: amount of time the primary channel was sensed busy
552 * @time_ext_busy: amount of time the extension channel was sensed busy
553 * @time_rx: amount of time the radio spent receiving data
554 * @time_tx: amount of time the radio spent transmitting data
61fa713c 555 *
abe37c4b
JB
556 * Used by dump_survey() to report back per-channel survey information.
557 *
61fa713c
HS
558 * This structure can later be expanded with things like
559 * channel duty cycle etc.
560 */
561struct survey_info {
562 struct ieee80211_channel *channel;
4ed20beb
JB
563 u64 time;
564 u64 time_busy;
565 u64 time_ext_busy;
566 u64 time_rx;
567 u64 time_tx;
61fa713c
HS
568 u32 filled;
569 s8 noise;
570};
571
5fb628e9
JM
572/**
573 * struct cfg80211_crypto_settings - Crypto settings
574 * @wpa_versions: indicates which, if any, WPA versions are enabled
575 * (from enum nl80211_wpa_versions)
576 * @cipher_group: group key cipher suite (or 0 if unset)
577 * @n_ciphers_pairwise: number of AP supported unicast ciphers
578 * @ciphers_pairwise: unicast key cipher suites
579 * @n_akm_suites: number of AKM suites
580 * @akm_suites: AKM suites
581 * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
582 * sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
583 * required to assume that the port is unauthorized until authorized by
584 * user space. Otherwise, port is marked authorized by default.
585 * @control_port_ethertype: the control port protocol that should be
586 * allowed through even on unauthorized ports
587 * @control_port_no_encrypt: TRUE to prevent encryption of control port
588 * protocol frames.
589 */
590struct cfg80211_crypto_settings {
591 u32 wpa_versions;
592 u32 cipher_group;
593 int n_ciphers_pairwise;
594 u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
595 int n_akm_suites;
596 u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
597 bool control_port;
598 __be16 control_port_ethertype;
599 bool control_port_no_encrypt;
600};
601
ed1b6cc7 602/**
8860020e 603 * struct cfg80211_beacon_data - beacon data
ed1b6cc7 604 * @head: head portion of beacon (before TIM IE)
ad24b0da 605 * or %NULL if not changed
ed1b6cc7 606 * @tail: tail portion of beacon (after TIM IE)
ad24b0da 607 * or %NULL if not changed
ed1b6cc7
JB
608 * @head_len: length of @head
609 * @tail_len: length of @tail
9946ecfb
JM
610 * @beacon_ies: extra information element(s) to add into Beacon frames or %NULL
611 * @beacon_ies_len: length of beacon_ies in octets
612 * @proberesp_ies: extra information element(s) to add into Probe Response
613 * frames or %NULL
614 * @proberesp_ies_len: length of proberesp_ies in octets
615 * @assocresp_ies: extra information element(s) to add into (Re)Association
616 * Response frames or %NULL
617 * @assocresp_ies_len: length of assocresp_ies in octets
00f740e1
AN
618 * @probe_resp_len: length of probe response template (@probe_resp)
619 * @probe_resp: probe response template (AP mode only)
ed1b6cc7 620 */
8860020e
JB
621struct cfg80211_beacon_data {
622 const u8 *head, *tail;
623 const u8 *beacon_ies;
624 const u8 *proberesp_ies;
625 const u8 *assocresp_ies;
626 const u8 *probe_resp;
627
628 size_t head_len, tail_len;
629 size_t beacon_ies_len;
630 size_t proberesp_ies_len;
631 size_t assocresp_ies_len;
632 size_t probe_resp_len;
633};
634
6d45a74b
VT
635struct mac_address {
636 u8 addr[ETH_ALEN];
637};
638
77765eaf
VT
639/**
640 * struct cfg80211_acl_data - Access control list data
641 *
642 * @acl_policy: ACL policy to be applied on the station's
077f897a 643 * entry specified by mac_addr
77765eaf
VT
644 * @n_acl_entries: Number of MAC address entries passed
645 * @mac_addrs: List of MAC addresses of stations to be used for ACL
646 */
647struct cfg80211_acl_data {
648 enum nl80211_acl_policy acl_policy;
649 int n_acl_entries;
650
651 /* Keep it last */
652 struct mac_address mac_addrs[];
653};
654
8860020e
JB
655/**
656 * struct cfg80211_ap_settings - AP configuration
657 *
658 * Used to configure an AP interface.
659 *
683b6d3b 660 * @chandef: defines the channel to use
8860020e
JB
661 * @beacon: beacon data
662 * @beacon_interval: beacon interval
663 * @dtim_period: DTIM period
664 * @ssid: SSID to be used in the BSS (note: may be %NULL if not provided from
665 * user space)
666 * @ssid_len: length of @ssid
667 * @hidden_ssid: whether to hide the SSID in Beacon/Probe Response frames
668 * @crypto: crypto settings
669 * @privacy: the BSS uses privacy
670 * @auth_type: Authentication type (algorithm)
18998c38 671 * @smps_mode: SMPS mode
1b658f11 672 * @inactivity_timeout: time in seconds to determine station's inactivity.
53cabad7
JB
673 * @p2p_ctwindow: P2P CT Window
674 * @p2p_opp_ps: P2P opportunistic PS
77765eaf
VT
675 * @acl: ACL configuration used by the drivers which has support for
676 * MAC address based access control
8860020e
JB
677 */
678struct cfg80211_ap_settings {
683b6d3b 679 struct cfg80211_chan_def chandef;
aa430da4 680
8860020e
JB
681 struct cfg80211_beacon_data beacon;
682
683 int beacon_interval, dtim_period;
32e9de84
JM
684 const u8 *ssid;
685 size_t ssid_len;
686 enum nl80211_hidden_ssid hidden_ssid;
5fb628e9
JM
687 struct cfg80211_crypto_settings crypto;
688 bool privacy;
689 enum nl80211_auth_type auth_type;
18998c38 690 enum nl80211_smps_mode smps_mode;
1b658f11 691 int inactivity_timeout;
53cabad7
JB
692 u8 p2p_ctwindow;
693 bool p2p_opp_ps;
77765eaf 694 const struct cfg80211_acl_data *acl;
ed1b6cc7
JB
695};
696
16ef1fe2
SW
697/**
698 * struct cfg80211_csa_settings - channel switch settings
699 *
700 * Used for channel switch
701 *
702 * @chandef: defines the channel to use after the switch
703 * @beacon_csa: beacon data while performing the switch
9a774c78
AO
704 * @counter_offsets_beacon: offsets of the counters within the beacon (tail)
705 * @counter_offsets_presp: offsets of the counters within the probe response
706 * @n_counter_offsets_beacon: number of csa counters the beacon (tail)
707 * @n_counter_offsets_presp: number of csa counters in the probe response
16ef1fe2
SW
708 * @beacon_after: beacon data to be used on the new channel
709 * @radar_required: whether radar detection is required on the new channel
710 * @block_tx: whether transmissions should be blocked while changing
711 * @count: number of beacons until switch
712 */
713struct cfg80211_csa_settings {
714 struct cfg80211_chan_def chandef;
715 struct cfg80211_beacon_data beacon_csa;
9a774c78
AO
716 const u16 *counter_offsets_beacon;
717 const u16 *counter_offsets_presp;
718 unsigned int n_counter_offsets_beacon;
719 unsigned int n_counter_offsets_presp;
16ef1fe2
SW
720 struct cfg80211_beacon_data beacon_after;
721 bool radar_required;
722 bool block_tx;
723 u8 count;
724};
725
3b9ce80c
JB
726/**
727 * enum station_parameters_apply_mask - station parameter values to apply
728 * @STATION_PARAM_APPLY_UAPSD: apply new uAPSD parameters (uapsd_queues, max_sp)
9d62a986 729 * @STATION_PARAM_APPLY_CAPABILITY: apply new capability
f8bacc21 730 * @STATION_PARAM_APPLY_PLINK_STATE: apply new plink state
3b9ce80c
JB
731 *
732 * Not all station parameters have in-band "no change" signalling,
733 * for those that don't these flags will are used.
734 */
735enum station_parameters_apply_mask {
736 STATION_PARAM_APPLY_UAPSD = BIT(0),
9d62a986 737 STATION_PARAM_APPLY_CAPABILITY = BIT(1),
f8bacc21 738 STATION_PARAM_APPLY_PLINK_STATE = BIT(2),
3b9ce80c
JB
739};
740
5727ef1b
JB
741/**
742 * struct station_parameters - station parameters
743 *
744 * Used to change and create a new station.
745 *
746 * @vlan: vlan interface station should belong to
747 * @supported_rates: supported rates in IEEE 802.11 format
748 * (or NULL for no change)
749 * @supported_rates_len: number of supported rates
eccb8e8f
JB
750 * @sta_flags_mask: station flags that changed
751 * (bitmask of BIT(NL80211_STA_FLAG_...))
752 * @sta_flags_set: station flags values
753 * (bitmask of BIT(NL80211_STA_FLAG_...))
5727ef1b
JB
754 * @listen_interval: listen interval or -1 for no change
755 * @aid: AID or zero for no change
abe37c4b 756 * @plink_action: plink action to take
9c3990aa 757 * @plink_state: set the peer link state for a station
abe37c4b 758 * @ht_capa: HT capabilities of station
f461be3e 759 * @vht_capa: VHT capabilities of station
910868db
EP
760 * @uapsd_queues: bitmap of queues configured for uapsd. same format
761 * as the AC bitmap in the QoS info field
762 * @max_sp: max Service Period. same format as the MAX_SP in the
763 * QoS info field (but already shifted down)
c26887d2
JB
764 * @sta_modify_mask: bitmap indicating which parameters changed
765 * (for those that don't have a natural "no change" value),
766 * see &enum station_parameters_apply_mask
3b1c5a53
MP
767 * @local_pm: local link-specific mesh power save mode (no change when set
768 * to unknown)
9d62a986
JM
769 * @capability: station capability
770 * @ext_capab: extended capabilities of the station
771 * @ext_capab_len: number of extended capabilities
c01fc9ad
SD
772 * @supported_channels: supported channels in IEEE 802.11 format
773 * @supported_channels_len: number of supported channels
774 * @supported_oper_classes: supported oper classes in IEEE 802.11 format
775 * @supported_oper_classes_len: number of supported operating classes
60f4a7b1
MK
776 * @opmode_notif: operating mode field from Operating Mode Notification
777 * @opmode_notif_used: information if operating mode field is used
5727ef1b
JB
778 */
779struct station_parameters {
2c1aabf3 780 const u8 *supported_rates;
5727ef1b 781 struct net_device *vlan;
eccb8e8f 782 u32 sta_flags_mask, sta_flags_set;
3b9ce80c 783 u32 sta_modify_mask;
5727ef1b
JB
784 int listen_interval;
785 u16 aid;
786 u8 supported_rates_len;
2ec600d6 787 u8 plink_action;
9c3990aa 788 u8 plink_state;
2c1aabf3
JB
789 const struct ieee80211_ht_cap *ht_capa;
790 const struct ieee80211_vht_cap *vht_capa;
c75786c9
EP
791 u8 uapsd_queues;
792 u8 max_sp;
3b1c5a53 793 enum nl80211_mesh_power_mode local_pm;
9d62a986 794 u16 capability;
2c1aabf3 795 const u8 *ext_capab;
9d62a986 796 u8 ext_capab_len;
c01fc9ad
SD
797 const u8 *supported_channels;
798 u8 supported_channels_len;
799 const u8 *supported_oper_classes;
800 u8 supported_oper_classes_len;
60f4a7b1
MK
801 u8 opmode_notif;
802 bool opmode_notif_used;
5727ef1b
JB
803};
804
89c771e5
JM
805/**
806 * struct station_del_parameters - station deletion parameters
807 *
808 * Used to delete a station entry (or all stations).
809 *
810 * @mac: MAC address of the station to remove or NULL to remove all stations
98856866
JM
811 * @subtype: Management frame subtype to use for indicating removal
812 * (10 = Disassociation, 12 = Deauthentication)
813 * @reason_code: Reason code for the Disassociation/Deauthentication frame
89c771e5
JM
814 */
815struct station_del_parameters {
816 const u8 *mac;
98856866
JM
817 u8 subtype;
818 u16 reason_code;
89c771e5
JM
819};
820
77ee7c89
JB
821/**
822 * enum cfg80211_station_type - the type of station being modified
823 * @CFG80211_STA_AP_CLIENT: client of an AP interface
824 * @CFG80211_STA_AP_MLME_CLIENT: client of an AP interface that has
825 * the AP MLME in the device
826 * @CFG80211_STA_AP_STA: AP station on managed interface
827 * @CFG80211_STA_IBSS: IBSS station
828 * @CFG80211_STA_TDLS_PEER_SETUP: TDLS peer on managed interface (dummy entry
829 * while TDLS setup is in progress, it moves out of this state when
830 * being marked authorized; use this only if TDLS with external setup is
831 * supported/used)
832 * @CFG80211_STA_TDLS_PEER_ACTIVE: TDLS peer on managed interface (active
833 * entry that is operating, has been marked authorized by userspace)
eef941e6
TP
834 * @CFG80211_STA_MESH_PEER_KERNEL: peer on mesh interface (kernel managed)
835 * @CFG80211_STA_MESH_PEER_USER: peer on mesh interface (user managed)
77ee7c89
JB
836 */
837enum cfg80211_station_type {
838 CFG80211_STA_AP_CLIENT,
839 CFG80211_STA_AP_MLME_CLIENT,
840 CFG80211_STA_AP_STA,
841 CFG80211_STA_IBSS,
842 CFG80211_STA_TDLS_PEER_SETUP,
843 CFG80211_STA_TDLS_PEER_ACTIVE,
eef941e6
TP
844 CFG80211_STA_MESH_PEER_KERNEL,
845 CFG80211_STA_MESH_PEER_USER,
77ee7c89
JB
846};
847
848/**
849 * cfg80211_check_station_change - validate parameter changes
850 * @wiphy: the wiphy this operates on
851 * @params: the new parameters for a station
852 * @statype: the type of station being modified
853 *
854 * Utility function for the @change_station driver method. Call this function
855 * with the appropriate station type looking up the station (and checking that
856 * it exists). It will verify whether the station change is acceptable, and if
857 * not will return an error code. Note that it may modify the parameters for
858 * backward compatibility reasons, so don't use them before calling this.
859 */
860int cfg80211_check_station_change(struct wiphy *wiphy,
861 struct station_parameters *params,
862 enum cfg80211_station_type statype);
863
fd5b74dc 864/**
2ec600d6 865 * enum station_info_flags - station information flags
fd5b74dc 866 *
2ec600d6
LCC
867 * Used by the driver to indicate which info in &struct station_info
868 * it has filled in during get_station() or dump_station().
fd5b74dc 869 *
2ec600d6
LCC
870 * @STATION_INFO_INACTIVE_TIME: @inactive_time filled
871 * @STATION_INFO_RX_BYTES: @rx_bytes filled
872 * @STATION_INFO_TX_BYTES: @tx_bytes filled
077f897a
JB
873 * @STATION_INFO_RX_BYTES64: @rx_bytes filled with 64-bit value
874 * @STATION_INFO_TX_BYTES64: @tx_bytes filled with 64-bit value
2ec600d6
LCC
875 * @STATION_INFO_LLID: @llid filled
876 * @STATION_INFO_PLID: @plid filled
877 * @STATION_INFO_PLINK_STATE: @plink_state filled
420e7fab 878 * @STATION_INFO_SIGNAL: @signal filled
c8dcfd8a 879 * @STATION_INFO_TX_BITRATE: @txrate fields are filled
ad24b0da 880 * (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs)
42745e03
VK
881 * @STATION_INFO_RX_PACKETS: @rx_packets filled with 32-bit value
882 * @STATION_INFO_TX_PACKETS: @tx_packets filled with 32-bit value
b206b4ef
BR
883 * @STATION_INFO_TX_RETRIES: @tx_retries filled
884 * @STATION_INFO_TX_FAILED: @tx_failed filled
5a5c731a 885 * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled
541a45a1 886 * @STATION_INFO_SIGNAL_AVG: @signal_avg filled
c8dcfd8a 887 * @STATION_INFO_RX_BITRATE: @rxrate fields are filled
f4263c98 888 * @STATION_INFO_BSS_PARAM: @bss_param filled
ebe27c91 889 * @STATION_INFO_CONNECTED_TIME: @connected_time filled
040bdf71 890 * @STATION_INFO_ASSOC_REQ_IES: @assoc_req_ies filled
bb6e753e 891 * @STATION_INFO_STA_FLAGS: @sta_flags filled
a85e1d55 892 * @STATION_INFO_BEACON_LOSS_COUNT: @beacon_loss_count filled
d299a1f2 893 * @STATION_INFO_T_OFFSET: @t_offset filled
3b1c5a53
MP
894 * @STATION_INFO_LOCAL_PM: @local_pm filled
895 * @STATION_INFO_PEER_PM: @peer_pm filled
896 * @STATION_INFO_NONPEER_PM: @nonpeer_pm filled
119363c7
FF
897 * @STATION_INFO_CHAIN_SIGNAL: @chain_signal filled
898 * @STATION_INFO_CHAIN_SIGNAL_AVG: @chain_signal_avg filled
867d849f 899 * @STATION_INFO_EXPECTED_THROUGHPUT: @expected_throughput filled
fd5b74dc 900 */
2ec600d6 901enum station_info_flags {
867d849f
AQ
902 STATION_INFO_INACTIVE_TIME = BIT(0),
903 STATION_INFO_RX_BYTES = BIT(1),
904 STATION_INFO_TX_BYTES = BIT(2),
905 STATION_INFO_LLID = BIT(3),
906 STATION_INFO_PLID = BIT(4),
907 STATION_INFO_PLINK_STATE = BIT(5),
908 STATION_INFO_SIGNAL = BIT(6),
909 STATION_INFO_TX_BITRATE = BIT(7),
910 STATION_INFO_RX_PACKETS = BIT(8),
911 STATION_INFO_TX_PACKETS = BIT(9),
912 STATION_INFO_TX_RETRIES = BIT(10),
913 STATION_INFO_TX_FAILED = BIT(11),
914 STATION_INFO_RX_DROP_MISC = BIT(12),
915 STATION_INFO_SIGNAL_AVG = BIT(13),
916 STATION_INFO_RX_BITRATE = BIT(14),
917 STATION_INFO_BSS_PARAM = BIT(15),
918 STATION_INFO_CONNECTED_TIME = BIT(16),
919 STATION_INFO_ASSOC_REQ_IES = BIT(17),
920 STATION_INFO_STA_FLAGS = BIT(18),
921 STATION_INFO_BEACON_LOSS_COUNT = BIT(19),
922 STATION_INFO_T_OFFSET = BIT(20),
923 STATION_INFO_LOCAL_PM = BIT(21),
924 STATION_INFO_PEER_PM = BIT(22),
925 STATION_INFO_NONPEER_PM = BIT(23),
926 STATION_INFO_RX_BYTES64 = BIT(24),
927 STATION_INFO_TX_BYTES64 = BIT(25),
928 STATION_INFO_CHAIN_SIGNAL = BIT(26),
929 STATION_INFO_CHAIN_SIGNAL_AVG = BIT(27),
930 STATION_INFO_EXPECTED_THROUGHPUT = BIT(28),
420e7fab
HR
931};
932
933/**
934 * enum station_info_rate_flags - bitrate info flags
935 *
936 * Used by the driver to indicate the specific rate transmission
937 * type for 802.11n transmissions.
938 *
db9c64cf
JB
939 * @RATE_INFO_FLAGS_MCS: mcs field filled with HT MCS
940 * @RATE_INFO_FLAGS_VHT_MCS: mcs field filled with VHT MCS
941 * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 MHz width transmission
942 * @RATE_INFO_FLAGS_80_MHZ_WIDTH: 80 MHz width transmission
943 * @RATE_INFO_FLAGS_80P80_MHZ_WIDTH: 80+80 MHz width transmission
944 * @RATE_INFO_FLAGS_160_MHZ_WIDTH: 160 MHz width transmission
420e7fab 945 * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
db9c64cf 946 * @RATE_INFO_FLAGS_60G: 60GHz MCS
420e7fab
HR
947 */
948enum rate_info_flags {
db9c64cf
JB
949 RATE_INFO_FLAGS_MCS = BIT(0),
950 RATE_INFO_FLAGS_VHT_MCS = BIT(1),
951 RATE_INFO_FLAGS_40_MHZ_WIDTH = BIT(2),
952 RATE_INFO_FLAGS_80_MHZ_WIDTH = BIT(3),
953 RATE_INFO_FLAGS_80P80_MHZ_WIDTH = BIT(4),
954 RATE_INFO_FLAGS_160_MHZ_WIDTH = BIT(5),
955 RATE_INFO_FLAGS_SHORT_GI = BIT(6),
956 RATE_INFO_FLAGS_60G = BIT(7),
420e7fab
HR
957};
958
959/**
960 * struct rate_info - bitrate information
961 *
962 * Information about a receiving or transmitting bitrate
963 *
964 * @flags: bitflag of flags from &enum rate_info_flags
965 * @mcs: mcs index if struct describes a 802.11n bitrate
966 * @legacy: bitrate in 100kbit/s for 802.11abg
db9c64cf 967 * @nss: number of streams (VHT only)
420e7fab
HR
968 */
969struct rate_info {
970 u8 flags;
971 u8 mcs;
972 u16 legacy;
db9c64cf 973 u8 nss;
fd5b74dc
JB
974};
975
f4263c98
PS
976/**
977 * enum station_info_rate_flags - bitrate info flags
978 *
979 * Used by the driver to indicate the specific rate transmission
980 * type for 802.11n transmissions.
981 *
982 * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
983 * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
984 * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
985 */
986enum bss_param_flags {
987 BSS_PARAM_FLAGS_CTS_PROT = 1<<0,
988 BSS_PARAM_FLAGS_SHORT_PREAMBLE = 1<<1,
989 BSS_PARAM_FLAGS_SHORT_SLOT_TIME = 1<<2,
990};
991
992/**
993 * struct sta_bss_parameters - BSS parameters for the attached station
994 *
995 * Information about the currently associated BSS
996 *
997 * @flags: bitflag of flags from &enum bss_param_flags
998 * @dtim_period: DTIM period for the BSS
999 * @beacon_interval: beacon interval
1000 */
1001struct sta_bss_parameters {
1002 u8 flags;
1003 u8 dtim_period;
1004 u16 beacon_interval;
1005};
1006
119363c7
FF
1007#define IEEE80211_MAX_CHAINS 4
1008
fd5b74dc 1009/**
2ec600d6 1010 * struct station_info - station information
fd5b74dc 1011 *
2ec600d6 1012 * Station information filled by driver for get_station() and dump_station.
fd5b74dc 1013 *
2ec600d6 1014 * @filled: bitflag of flags from &enum station_info_flags
ebe27c91 1015 * @connected_time: time(in secs) since a station is last connected
fd5b74dc
JB
1016 * @inactive_time: time since last station activity (tx/rx) in milliseconds
1017 * @rx_bytes: bytes received from this station
1018 * @tx_bytes: bytes transmitted to this station
2ec600d6
LCC
1019 * @llid: mesh local link id
1020 * @plid: mesh peer link id
1021 * @plink_state: mesh peer link state
73c3df3b
JB
1022 * @signal: The signal strength, type depends on the wiphy's signal_type.
1023 * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
1024 * @signal_avg: Average signal strength, type depends on the wiphy's signal_type.
1025 * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
119363c7
FF
1026 * @chains: bitmask for filled values in @chain_signal, @chain_signal_avg
1027 * @chain_signal: per-chain signal strength of last received packet in dBm
1028 * @chain_signal_avg: per-chain signal strength average in dBm
858022aa
RD
1029 * @txrate: current unicast bitrate from this station
1030 * @rxrate: current unicast bitrate to this station
98c8a60a
JM
1031 * @rx_packets: packets received from this station
1032 * @tx_packets: packets transmitted to this station
b206b4ef
BR
1033 * @tx_retries: cumulative retry counts
1034 * @tx_failed: number of failed transmissions (retries exceeded, no ACK)
5a5c731a 1035 * @rx_dropped_misc: Dropped for un-specified reason.
1ba01458 1036 * @bss_param: current BSS parameters
f5ea9120
JB
1037 * @generation: generation number for nl80211 dumps.
1038 * This number should increase every time the list of stations
1039 * changes, i.e. when a station is added or removed, so that
1040 * userspace can tell whether it got a consistent snapshot.
50d3dfb7
JM
1041 * @assoc_req_ies: IEs from (Re)Association Request.
1042 * This is used only when in AP mode with drivers that do not use
1043 * user space MLME/SME implementation. The information is provided for
1044 * the cfg80211_new_sta() calls to notify user space of the IEs.
1045 * @assoc_req_ies_len: Length of assoc_req_ies buffer in octets.
c26887d2 1046 * @sta_flags: station flags mask & values
a85e1d55 1047 * @beacon_loss_count: Number of times beacon loss event has triggered.
d299a1f2 1048 * @t_offset: Time offset of the station relative to this host.
3b1c5a53
MP
1049 * @local_pm: local mesh STA power save mode
1050 * @peer_pm: peer mesh STA power save mode
1051 * @nonpeer_pm: non-peer mesh STA power save mode
867d849f
AQ
1052 * @expected_throughput: expected throughput in kbps (including 802.11 headers)
1053 * towards this station.
fd5b74dc 1054 */
2ec600d6 1055struct station_info {
fd5b74dc 1056 u32 filled;
ebe27c91 1057 u32 connected_time;
fd5b74dc 1058 u32 inactive_time;
42745e03
VK
1059 u64 rx_bytes;
1060 u64 tx_bytes;
2ec600d6
LCC
1061 u16 llid;
1062 u16 plid;
1063 u8 plink_state;
420e7fab 1064 s8 signal;
541a45a1 1065 s8 signal_avg;
119363c7
FF
1066
1067 u8 chains;
1068 s8 chain_signal[IEEE80211_MAX_CHAINS];
1069 s8 chain_signal_avg[IEEE80211_MAX_CHAINS];
1070
420e7fab 1071 struct rate_info txrate;
c8dcfd8a 1072 struct rate_info rxrate;
98c8a60a
JM
1073 u32 rx_packets;
1074 u32 tx_packets;
b206b4ef
BR
1075 u32 tx_retries;
1076 u32 tx_failed;
5a5c731a 1077 u32 rx_dropped_misc;
f4263c98 1078 struct sta_bss_parameters bss_param;
bb6e753e 1079 struct nl80211_sta_flag_update sta_flags;
f5ea9120
JB
1080
1081 int generation;
50d3dfb7
JM
1082
1083 const u8 *assoc_req_ies;
1084 size_t assoc_req_ies_len;
f612cedf 1085
a85e1d55 1086 u32 beacon_loss_count;
d299a1f2 1087 s64 t_offset;
3b1c5a53
MP
1088 enum nl80211_mesh_power_mode local_pm;
1089 enum nl80211_mesh_power_mode peer_pm;
1090 enum nl80211_mesh_power_mode nonpeer_pm;
a85e1d55 1091
867d849f
AQ
1092 u32 expected_throughput;
1093
f612cedf
JM
1094 /*
1095 * Note: Add a new enum station_info_flags value for each new field and
1096 * use it to check which fields are initialized.
1097 */
fd5b74dc
JB
1098};
1099
7406353d
AQ
1100/**
1101 * cfg80211_get_station - retrieve information about a given station
1102 * @dev: the device where the station is supposed to be connected to
1103 * @mac_addr: the mac address of the station of interest
1104 * @sinfo: pointer to the structure to fill with the information
1105 *
1106 * Returns 0 on success and sinfo is filled with the available information
1107 * otherwise returns a negative error code and the content of sinfo has to be
1108 * considered undefined.
1109 */
1110int cfg80211_get_station(struct net_device *dev, const u8 *mac_addr,
1111 struct station_info *sinfo);
1112
66f7ac50
MW
1113/**
1114 * enum monitor_flags - monitor flags
1115 *
1116 * Monitor interface configuration flags. Note that these must be the bits
1117 * according to the nl80211 flags.
1118 *
1119 * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
1120 * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
1121 * @MONITOR_FLAG_CONTROL: pass control frames
1122 * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
1123 * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
e057d3c3 1124 * @MONITOR_FLAG_ACTIVE: active monitor, ACKs frames on its MAC address
66f7ac50
MW
1125 */
1126enum monitor_flags {
1127 MONITOR_FLAG_FCSFAIL = 1<<NL80211_MNTR_FLAG_FCSFAIL,
1128 MONITOR_FLAG_PLCPFAIL = 1<<NL80211_MNTR_FLAG_PLCPFAIL,
1129 MONITOR_FLAG_CONTROL = 1<<NL80211_MNTR_FLAG_CONTROL,
1130 MONITOR_FLAG_OTHER_BSS = 1<<NL80211_MNTR_FLAG_OTHER_BSS,
1131 MONITOR_FLAG_COOK_FRAMES = 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
e057d3c3 1132 MONITOR_FLAG_ACTIVE = 1<<NL80211_MNTR_FLAG_ACTIVE,
66f7ac50
MW
1133};
1134
2ec600d6
LCC
1135/**
1136 * enum mpath_info_flags - mesh path information flags
1137 *
1138 * Used by the driver to indicate which info in &struct mpath_info it has filled
1139 * in during get_station() or dump_station().
1140 *
abe37c4b
JB
1141 * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
1142 * @MPATH_INFO_SN: @sn filled
1143 * @MPATH_INFO_METRIC: @metric filled
1144 * @MPATH_INFO_EXPTIME: @exptime filled
1145 * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
1146 * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
1147 * @MPATH_INFO_FLAGS: @flags filled
2ec600d6
LCC
1148 */
1149enum mpath_info_flags {
1150 MPATH_INFO_FRAME_QLEN = BIT(0),
d19b3bf6 1151 MPATH_INFO_SN = BIT(1),
2ec600d6
LCC
1152 MPATH_INFO_METRIC = BIT(2),
1153 MPATH_INFO_EXPTIME = BIT(3),
1154 MPATH_INFO_DISCOVERY_TIMEOUT = BIT(4),
1155 MPATH_INFO_DISCOVERY_RETRIES = BIT(5),
1156 MPATH_INFO_FLAGS = BIT(6),
1157};
1158
1159/**
1160 * struct mpath_info - mesh path information
1161 *
1162 * Mesh path information filled by driver for get_mpath() and dump_mpath().
1163 *
1164 * @filled: bitfield of flags from &enum mpath_info_flags
1165 * @frame_qlen: number of queued frames for this destination
d19b3bf6 1166 * @sn: target sequence number
2ec600d6
LCC
1167 * @metric: metric (cost) of this mesh path
1168 * @exptime: expiration time for the mesh path from now, in msecs
1169 * @flags: mesh path flags
1170 * @discovery_timeout: total mesh path discovery timeout, in msecs
1171 * @discovery_retries: mesh path discovery retries
f5ea9120
JB
1172 * @generation: generation number for nl80211 dumps.
1173 * This number should increase every time the list of mesh paths
1174 * changes, i.e. when a station is added or removed, so that
1175 * userspace can tell whether it got a consistent snapshot.
2ec600d6
LCC
1176 */
1177struct mpath_info {
1178 u32 filled;
1179 u32 frame_qlen;
d19b3bf6 1180 u32 sn;
2ec600d6
LCC
1181 u32 metric;
1182 u32 exptime;
1183 u32 discovery_timeout;
1184 u8 discovery_retries;
1185 u8 flags;
f5ea9120
JB
1186
1187 int generation;
2ec600d6
LCC
1188};
1189
9f1ba906
JM
1190/**
1191 * struct bss_parameters - BSS parameters
1192 *
1193 * Used to change BSS parameters (mainly for AP mode).
1194 *
1195 * @use_cts_prot: Whether to use CTS protection
1196 * (0 = no, 1 = yes, -1 = do not change)
1197 * @use_short_preamble: Whether the use of short preambles is allowed
1198 * (0 = no, 1 = yes, -1 = do not change)
1199 * @use_short_slot_time: Whether the use of short slot time is allowed
1200 * (0 = no, 1 = yes, -1 = do not change)
90c97a04
JM
1201 * @basic_rates: basic rates in IEEE 802.11 format
1202 * (or NULL for no change)
1203 * @basic_rates_len: number of basic rates
fd8aaaf3 1204 * @ap_isolate: do not forward packets between connected stations
50b12f59
HS
1205 * @ht_opmode: HT Operation mode
1206 * (u16 = opmode, -1 = do not change)
53cabad7
JB
1207 * @p2p_ctwindow: P2P CT Window (-1 = no change)
1208 * @p2p_opp_ps: P2P opportunistic PS (-1 = no change)
9f1ba906
JM
1209 */
1210struct bss_parameters {
1211 int use_cts_prot;
1212 int use_short_preamble;
1213 int use_short_slot_time;
c1e5f471 1214 const u8 *basic_rates;
90c97a04 1215 u8 basic_rates_len;
fd8aaaf3 1216 int ap_isolate;
50b12f59 1217 int ht_opmode;
53cabad7 1218 s8 p2p_ctwindow, p2p_opp_ps;
9f1ba906 1219};
2ec600d6 1220
3ddd53f3 1221/**
29cbe68c
JB
1222 * struct mesh_config - 802.11s mesh configuration
1223 *
1224 * These parameters can be changed while the mesh is active.
3ddd53f3
CYY
1225 *
1226 * @dot11MeshRetryTimeout: the initial retry timeout in millisecond units used
1227 * by the Mesh Peering Open message
1228 * @dot11MeshConfirmTimeout: the initial retry timeout in millisecond units
1229 * used by the Mesh Peering Open message
1230 * @dot11MeshHoldingTimeout: the confirm timeout in millisecond units used by
1231 * the mesh peering management to close a mesh peering
1232 * @dot11MeshMaxPeerLinks: the maximum number of peer links allowed on this
1233 * mesh interface
1234 * @dot11MeshMaxRetries: the maximum number of peer link open retries that can
1235 * be sent to establish a new peer link instance in a mesh
1236 * @dot11MeshTTL: the value of TTL field set at a source mesh STA
1237 * @element_ttl: the value of TTL field set at a mesh STA for path selection
1238 * elements
1239 * @auto_open_plinks: whether we should automatically open peer links when we
1240 * detect compatible mesh peers
1241 * @dot11MeshNbrOffsetMaxNeighbor: the maximum number of neighbors to
1242 * synchronize to for 11s default synchronization method
1243 * @dot11MeshHWMPmaxPREQretries: the number of action frames containing a PREQ
1244 * that an originator mesh STA can send to a particular path target
1245 * @path_refresh_time: how frequently to refresh mesh paths in milliseconds
1246 * @min_discovery_timeout: the minimum length of time to wait until giving up on
1247 * a path discovery in milliseconds
1248 * @dot11MeshHWMPactivePathTimeout: the time (in TUs) for which mesh STAs
1249 * receiving a PREQ shall consider the forwarding information from the
1250 * root to be valid. (TU = time unit)
1251 * @dot11MeshHWMPpreqMinInterval: the minimum interval of time (in TUs) during
1252 * which a mesh STA can send only one action frame containing a PREQ
1253 * element
1254 * @dot11MeshHWMPperrMinInterval: the minimum interval of time (in TUs) during
1255 * which a mesh STA can send only one Action frame containing a PERR
1256 * element
1257 * @dot11MeshHWMPnetDiameterTraversalTime: the interval of time (in TUs) that
1258 * it takes for an HWMP information element to propagate across the mesh
1259 * @dot11MeshHWMPRootMode: the configuration of a mesh STA as root mesh STA
1260 * @dot11MeshHWMPRannInterval: the interval of time (in TUs) between root
1261 * announcements are transmitted
1262 * @dot11MeshGateAnnouncementProtocol: whether to advertise that this mesh
1263 * station has access to a broader network beyond the MBSS. (This is
1264 * missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol set to true
1265 * only means that the station will announce others it's a mesh gate, but
1266 * not necessarily using the gate announcement protocol. Still keeping the
1267 * same nomenclature to be in sync with the spec)
1268 * @dot11MeshForwarding: whether the Mesh STA is forwarding or non-forwarding
1269 * entity (default is TRUE - forwarding entity)
1270 * @rssi_threshold: the threshold for average signal strength of candidate
1271 * station to establish a peer link
1272 * @ht_opmode: mesh HT protection mode
ac1073a6
CYY
1273 *
1274 * @dot11MeshHWMPactivePathToRootTimeout: The time (in TUs) for which mesh STAs
1275 * receiving a proactive PREQ shall consider the forwarding information to
1276 * the root mesh STA to be valid.
1277 *
1278 * @dot11MeshHWMProotInterval: The interval of time (in TUs) between proactive
1279 * PREQs are transmitted.
728b19e5
CYY
1280 * @dot11MeshHWMPconfirmationInterval: The minimum interval of time (in TUs)
1281 * during which a mesh STA can send only one Action frame containing
1282 * a PREQ element for root path confirmation.
3b1c5a53
MP
1283 * @power_mode: The default mesh power save mode which will be the initial
1284 * setting for new peer links.
1285 * @dot11MeshAwakeWindowDuration: The duration in TUs the STA will remain awake
1286 * after transmitting its beacon.
8e7c0538
CT
1287 * @plink_timeout: If no tx activity is seen from a STA we've established
1288 * peering with for longer than this time (in seconds), then remove it
1289 * from the STA's list of peers. Default is 30 minutes.
29cbe68c 1290 */
93da9cc1 1291struct mesh_config {
93da9cc1 1292 u16 dot11MeshRetryTimeout;
1293 u16 dot11MeshConfirmTimeout;
1294 u16 dot11MeshHoldingTimeout;
1295 u16 dot11MeshMaxPeerLinks;
a4f606ea
CYY
1296 u8 dot11MeshMaxRetries;
1297 u8 dot11MeshTTL;
1298 u8 element_ttl;
93da9cc1 1299 bool auto_open_plinks;
d299a1f2 1300 u32 dot11MeshNbrOffsetMaxNeighbor;
a4f606ea 1301 u8 dot11MeshHWMPmaxPREQretries;
93da9cc1 1302 u32 path_refresh_time;
1303 u16 min_discovery_timeout;
1304 u32 dot11MeshHWMPactivePathTimeout;
1305 u16 dot11MeshHWMPpreqMinInterval;
dca7e943 1306 u16 dot11MeshHWMPperrMinInterval;
93da9cc1 1307 u16 dot11MeshHWMPnetDiameterTraversalTime;
a4f606ea 1308 u8 dot11MeshHWMPRootMode;
0507e159 1309 u16 dot11MeshHWMPRannInterval;
a4f606ea 1310 bool dot11MeshGateAnnouncementProtocol;
94f90656 1311 bool dot11MeshForwarding;
55335137 1312 s32 rssi_threshold;
70c33eaa 1313 u16 ht_opmode;
ac1073a6
CYY
1314 u32 dot11MeshHWMPactivePathToRootTimeout;
1315 u16 dot11MeshHWMProotInterval;
728b19e5 1316 u16 dot11MeshHWMPconfirmationInterval;
3b1c5a53
MP
1317 enum nl80211_mesh_power_mode power_mode;
1318 u16 dot11MeshAwakeWindowDuration;
8e7c0538 1319 u32 plink_timeout;
93da9cc1 1320};
1321
29cbe68c
JB
1322/**
1323 * struct mesh_setup - 802.11s mesh setup configuration
683b6d3b 1324 * @chandef: defines the channel to use
29cbe68c
JB
1325 * @mesh_id: the mesh ID
1326 * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
d299a1f2 1327 * @sync_method: which synchronization method to use
c80d545d
JC
1328 * @path_sel_proto: which path selection protocol to use
1329 * @path_metric: which metric to use
6e16d90b 1330 * @auth_id: which authentication method this mesh is using
581a8b0f
JC
1331 * @ie: vendor information elements (optional)
1332 * @ie_len: length of vendor information elements
b130e5ce
JC
1333 * @is_authenticated: this mesh requires authentication
1334 * @is_secure: this mesh uses security
bb2798d4 1335 * @user_mpm: userspace handles all MPM functions
9bdbf04d
MP
1336 * @dtim_period: DTIM period to use
1337 * @beacon_interval: beacon interval to use
4bb62344 1338 * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a]
ffb3cf30 1339 * @basic_rates: basic rates to use when creating the mesh
29cbe68c
JB
1340 *
1341 * These parameters are fixed when the mesh is created.
1342 */
1343struct mesh_setup {
683b6d3b 1344 struct cfg80211_chan_def chandef;
29cbe68c
JB
1345 const u8 *mesh_id;
1346 u8 mesh_id_len;
d299a1f2
JC
1347 u8 sync_method;
1348 u8 path_sel_proto;
1349 u8 path_metric;
6e16d90b 1350 u8 auth_id;
581a8b0f
JC
1351 const u8 *ie;
1352 u8 ie_len;
b130e5ce 1353 bool is_authenticated;
15d5dda6 1354 bool is_secure;
bb2798d4 1355 bool user_mpm;
9bdbf04d
MP
1356 u8 dtim_period;
1357 u16 beacon_interval;
4bb62344 1358 int mcast_rate[IEEE80211_NUM_BANDS];
ffb3cf30 1359 u32 basic_rates;
29cbe68c
JB
1360};
1361
6e0bd6c3
RL
1362/**
1363 * struct ocb_setup - 802.11p OCB mode setup configuration
1364 * @chandef: defines the channel to use
1365 *
1366 * These parameters are fixed when connecting to the network
1367 */
1368struct ocb_setup {
1369 struct cfg80211_chan_def chandef;
1370};
1371
31888487
JM
1372/**
1373 * struct ieee80211_txq_params - TX queue parameters
a3304b0a 1374 * @ac: AC identifier
31888487
JM
1375 * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
1376 * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
1377 * 1..32767]
1378 * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
1379 * 1..32767]
1380 * @aifs: Arbitration interframe space [0..255]
1381 */
1382struct ieee80211_txq_params {
a3304b0a 1383 enum nl80211_ac ac;
31888487
JM
1384 u16 txop;
1385 u16 cwmin;
1386 u16 cwmax;
1387 u8 aifs;
1388};
1389
d70e9693
JB
1390/**
1391 * DOC: Scanning and BSS list handling
1392 *
1393 * The scanning process itself is fairly simple, but cfg80211 offers quite
1394 * a bit of helper functionality. To start a scan, the scan operation will
1395 * be invoked with a scan definition. This scan definition contains the
1396 * channels to scan, and the SSIDs to send probe requests for (including the
1397 * wildcard, if desired). A passive scan is indicated by having no SSIDs to
1398 * probe. Additionally, a scan request may contain extra information elements
1399 * that should be added to the probe request. The IEs are guaranteed to be
1400 * well-formed, and will not exceed the maximum length the driver advertised
1401 * in the wiphy structure.
1402 *
1403 * When scanning finds a BSS, cfg80211 needs to be notified of that, because
1404 * it is responsible for maintaining the BSS list; the driver should not
1405 * maintain a list itself. For this notification, various functions exist.
1406 *
1407 * Since drivers do not maintain a BSS list, there are also a number of
1408 * functions to search for a BSS and obtain information about it from the
1409 * BSS structure cfg80211 maintains. The BSS list is also made available
1410 * to userspace.
1411 */
72bdcf34 1412
2a519311
JB
1413/**
1414 * struct cfg80211_ssid - SSID description
1415 * @ssid: the SSID
1416 * @ssid_len: length of the ssid
1417 */
1418struct cfg80211_ssid {
1419 u8 ssid[IEEE80211_MAX_SSID_LEN];
1420 u8 ssid_len;
1421};
1422
1423/**
1424 * struct cfg80211_scan_request - scan request description
1425 *
1426 * @ssids: SSIDs to scan for (active scan only)
1427 * @n_ssids: number of SSIDs
1428 * @channels: channels to scan on.
ca3dbc20 1429 * @n_channels: total number of channels to scan
dcd6eac1 1430 * @scan_width: channel width for scanning
70692ad2
JM
1431 * @ie: optional information element(s) to add into Probe Request or %NULL
1432 * @ie_len: length of ie in octets
ed473771 1433 * @flags: bit field of flags controlling operation
34850ab2 1434 * @rates: bitmap of rates to advertise for each band
2a519311 1435 * @wiphy: the wiphy this was for
15d6030b 1436 * @scan_start: time (in jiffies) when the scan started
fd014284 1437 * @wdev: the wireless device to scan for
abe37c4b 1438 * @aborted: (internal) scan request was notified as aborted
5fe231e8 1439 * @notified: (internal) scan request was notified as done or aborted
e9f935e3 1440 * @no_cck: used to send probe requests at non CCK rate in 2GHz band
ad2b26ab
JB
1441 * @mac_addr: MAC address used with randomisation
1442 * @mac_addr_mask: MAC address mask used with randomisation, bits that
1443 * are 0 in the mask should be randomised, bits that are 1 should
1444 * be taken from the @mac_addr
2a519311
JB
1445 */
1446struct cfg80211_scan_request {
1447 struct cfg80211_ssid *ssids;
1448 int n_ssids;
2a519311 1449 u32 n_channels;
dcd6eac1 1450 enum nl80211_bss_scan_width scan_width;
de95a54b 1451 const u8 *ie;
70692ad2 1452 size_t ie_len;
ed473771 1453 u32 flags;
2a519311 1454
34850ab2
JB
1455 u32 rates[IEEE80211_NUM_BANDS];
1456
fd014284
JB
1457 struct wireless_dev *wdev;
1458
ad2b26ab
JB
1459 u8 mac_addr[ETH_ALEN] __aligned(2);
1460 u8 mac_addr_mask[ETH_ALEN] __aligned(2);
1461
2a519311
JB
1462 /* internal */
1463 struct wiphy *wiphy;
15d6030b 1464 unsigned long scan_start;
5fe231e8 1465 bool aborted, notified;
e9f935e3 1466 bool no_cck;
5ba63533
JB
1467
1468 /* keep last */
1469 struct ieee80211_channel *channels[0];
2a519311
JB
1470};
1471
ad2b26ab
JB
1472static inline void get_random_mask_addr(u8 *buf, const u8 *addr, const u8 *mask)
1473{
1474 int i;
1475
1476 get_random_bytes(buf, ETH_ALEN);
1477 for (i = 0; i < ETH_ALEN; i++) {
1478 buf[i] &= ~mask[i];
1479 buf[i] |= addr[i] & mask[i];
1480 }
1481}
1482
a1f1c21c
LC
1483/**
1484 * struct cfg80211_match_set - sets of attributes to match
1485 *
ea73cbce
JB
1486 * @ssid: SSID to be matched; may be zero-length for no match (RSSI only)
1487 * @rssi_thold: don't report scan results below this threshold (in s32 dBm)
a1f1c21c
LC
1488 */
1489struct cfg80211_match_set {
1490 struct cfg80211_ssid ssid;
ea73cbce 1491 s32 rssi_thold;
a1f1c21c
LC
1492};
1493
807f8a8c
LC
1494/**
1495 * struct cfg80211_sched_scan_request - scheduled scan request description
1496 *
1497 * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
1498 * @n_ssids: number of SSIDs
1499 * @n_channels: total number of channels to scan
dcd6eac1 1500 * @scan_width: channel width for scanning
bbe6ad6d 1501 * @interval: interval between each scheduled scan cycle
807f8a8c
LC
1502 * @ie: optional information element(s) to add into Probe Request or %NULL
1503 * @ie_len: length of ie in octets
ed473771 1504 * @flags: bit field of flags controlling operation
a1f1c21c
LC
1505 * @match_sets: sets of parameters to be matched for a scan result
1506 * entry to be considered valid and to be passed to the host
1507 * (others are filtered out).
1508 * If ommited, all results are passed.
1509 * @n_match_sets: number of match sets
807f8a8c
LC
1510 * @wiphy: the wiphy this was for
1511 * @dev: the interface
077f897a 1512 * @scan_start: start time of the scheduled scan
807f8a8c 1513 * @channels: channels to scan
ea73cbce
JB
1514 * @min_rssi_thold: for drivers only supporting a single threshold, this
1515 * contains the minimum over all matchsets
ad2b26ab
JB
1516 * @mac_addr: MAC address used with randomisation
1517 * @mac_addr_mask: MAC address mask used with randomisation, bits that
1518 * are 0 in the mask should be randomised, bits that are 1 should
1519 * be taken from the @mac_addr
31a60ed1 1520 * @rcu_head: RCU callback used to free the struct
93a1e86c
JR
1521 * @owner_nlportid: netlink portid of owner (if this should is a request
1522 * owned by a particular socket)
807f8a8c
LC
1523 */
1524struct cfg80211_sched_scan_request {
1525 struct cfg80211_ssid *ssids;
1526 int n_ssids;
1527 u32 n_channels;
dcd6eac1 1528 enum nl80211_bss_scan_width scan_width;
bbe6ad6d 1529 u32 interval;
807f8a8c
LC
1530 const u8 *ie;
1531 size_t ie_len;
ed473771 1532 u32 flags;
a1f1c21c
LC
1533 struct cfg80211_match_set *match_sets;
1534 int n_match_sets;
ea73cbce 1535 s32 min_rssi_thold;
807f8a8c 1536
ad2b26ab
JB
1537 u8 mac_addr[ETH_ALEN] __aligned(2);
1538 u8 mac_addr_mask[ETH_ALEN] __aligned(2);
1539
807f8a8c
LC
1540 /* internal */
1541 struct wiphy *wiphy;
1542 struct net_device *dev;
15d6030b 1543 unsigned long scan_start;
31a60ed1 1544 struct rcu_head rcu_head;
93a1e86c 1545 u32 owner_nlportid;
807f8a8c
LC
1546
1547 /* keep last */
1548 struct ieee80211_channel *channels[0];
1549};
1550
2a519311
JB
1551/**
1552 * enum cfg80211_signal_type - signal type
1553 *
1554 * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
1555 * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
1556 * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
1557 */
1558enum cfg80211_signal_type {
1559 CFG80211_SIGNAL_TYPE_NONE,
1560 CFG80211_SIGNAL_TYPE_MBM,
1561 CFG80211_SIGNAL_TYPE_UNSPEC,
1562};
1563
9caf0364
JB
1564/**
1565 * struct cfg80211_bss_ie_data - BSS entry IE data
8cef2c9d 1566 * @tsf: TSF contained in the frame that carried these IEs
9caf0364
JB
1567 * @rcu_head: internal use, for freeing
1568 * @len: length of the IEs
0e227084 1569 * @from_beacon: these IEs are known to come from a beacon
9caf0364
JB
1570 * @data: IE data
1571 */
1572struct cfg80211_bss_ies {
8cef2c9d 1573 u64 tsf;
9caf0364
JB
1574 struct rcu_head rcu_head;
1575 int len;
0e227084 1576 bool from_beacon;
9caf0364
JB
1577 u8 data[];
1578};
1579
2a519311
JB
1580/**
1581 * struct cfg80211_bss - BSS description
1582 *
1583 * This structure describes a BSS (which may also be a mesh network)
1584 * for use in scan results and similar.
1585 *
abe37c4b 1586 * @channel: channel this BSS is on
dcd6eac1 1587 * @scan_width: width of the control channel
2a519311 1588 * @bssid: BSSID of the BSS
2a519311
JB
1589 * @beacon_interval: the beacon interval as from the frame
1590 * @capability: the capability field in host byte order
83c7aa1a
JB
1591 * @ies: the information elements (Note that there is no guarantee that these
1592 * are well-formed!); this is a pointer to either the beacon_ies or
1593 * proberesp_ies depending on whether Probe Response frame has been
1594 * received. It is always non-%NULL.
34a6eddb 1595 * @beacon_ies: the information elements from the last Beacon frame
776b3580
JB
1596 * (implementation note: if @hidden_beacon_bss is set this struct doesn't
1597 * own the beacon_ies, but they're just pointers to the ones from the
1598 * @hidden_beacon_bss struct)
34a6eddb 1599 * @proberesp_ies: the information elements from the last Probe Response frame
776b3580
JB
1600 * @hidden_beacon_bss: in case this BSS struct represents a probe response from
1601 * a BSS that hides the SSID in its beacon, this points to the BSS struct
1602 * that holds the beacon data. @beacon_ies is still valid, of course, and
1603 * points to the same data as hidden_beacon_bss->beacon_ies in that case.
77965c97 1604 * @signal: signal strength value (type depends on the wiphy's signal_type)
2a519311
JB
1605 * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
1606 */
1607struct cfg80211_bss {
1608 struct ieee80211_channel *channel;
dcd6eac1 1609 enum nl80211_bss_scan_width scan_width;
2a519311 1610
9caf0364
JB
1611 const struct cfg80211_bss_ies __rcu *ies;
1612 const struct cfg80211_bss_ies __rcu *beacon_ies;
1613 const struct cfg80211_bss_ies __rcu *proberesp_ies;
1614
776b3580 1615 struct cfg80211_bss *hidden_beacon_bss;
9caf0364
JB
1616
1617 s32 signal;
1618
2a519311
JB
1619 u16 beacon_interval;
1620 u16 capability;
2a519311 1621
9caf0364 1622 u8 bssid[ETH_ALEN];
2a519311 1623
1c06ef98 1624 u8 priv[0] __aligned(sizeof(void *));
2a519311
JB
1625};
1626
517357c6
JB
1627/**
1628 * ieee80211_bss_get_ie - find IE with given ID
1629 * @bss: the bss to search
1630 * @ie: the IE ID
9caf0364
JB
1631 *
1632 * Note that the return value is an RCU-protected pointer, so
1633 * rcu_read_lock() must be held when calling this function.
0ae997dc 1634 * Return: %NULL if not found.
517357c6
JB
1635 */
1636const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
1637
1638
636a5d36
JM
1639/**
1640 * struct cfg80211_auth_request - Authentication request data
1641 *
1642 * This structure provides information needed to complete IEEE 802.11
1643 * authentication.
19957bb3 1644 *
959867fa
JB
1645 * @bss: The BSS to authenticate with, the callee must obtain a reference
1646 * to it if it needs to keep it.
636a5d36
JM
1647 * @auth_type: Authentication type (algorithm)
1648 * @ie: Extra IEs to add to Authentication frame or %NULL
1649 * @ie_len: Length of ie buffer in octets
fffd0934
JB
1650 * @key_len: length of WEP key for shared key authentication
1651 * @key_idx: index of WEP key for shared key authentication
1652 * @key: WEP key for shared key authentication
e39e5b5e
JM
1653 * @sae_data: Non-IE data to use with SAE or %NULL. This starts with
1654 * Authentication transaction sequence number field.
1655 * @sae_data_len: Length of sae_data buffer in octets
636a5d36
JM
1656 */
1657struct cfg80211_auth_request {
19957bb3 1658 struct cfg80211_bss *bss;
636a5d36
JM
1659 const u8 *ie;
1660 size_t ie_len;
19957bb3 1661 enum nl80211_auth_type auth_type;
fffd0934
JB
1662 const u8 *key;
1663 u8 key_len, key_idx;
e39e5b5e
JM
1664 const u8 *sae_data;
1665 size_t sae_data_len;
636a5d36
JM
1666};
1667
7e7c8926
BG
1668/**
1669 * enum cfg80211_assoc_req_flags - Over-ride default behaviour in association.
1670 *
1671 * @ASSOC_REQ_DISABLE_HT: Disable HT (802.11n)
ee2aca34 1672 * @ASSOC_REQ_DISABLE_VHT: Disable VHT
bab5ab7d 1673 * @ASSOC_REQ_USE_RRM: Declare RRM capability in this association
7e7c8926
BG
1674 */
1675enum cfg80211_assoc_req_flags {
1676 ASSOC_REQ_DISABLE_HT = BIT(0),
ee2aca34 1677 ASSOC_REQ_DISABLE_VHT = BIT(1),
bab5ab7d 1678 ASSOC_REQ_USE_RRM = BIT(2),
7e7c8926
BG
1679};
1680
636a5d36
JM
1681/**
1682 * struct cfg80211_assoc_request - (Re)Association request data
1683 *
1684 * This structure provides information needed to complete IEEE 802.11
1685 * (re)association.
959867fa
JB
1686 * @bss: The BSS to associate with. If the call is successful the driver is
1687 * given a reference that it must give back to cfg80211_send_rx_assoc()
1688 * or to cfg80211_assoc_timeout(). To ensure proper refcounting, new
1689 * association requests while already associating must be rejected.
636a5d36
JM
1690 * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
1691 * @ie_len: Length of ie buffer in octets
dc6382ce 1692 * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
b23aa676 1693 * @crypto: crypto settings
3e5d7649 1694 * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
7e7c8926
BG
1695 * @flags: See &enum cfg80211_assoc_req_flags
1696 * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
ad24b0da 1697 * will be used in ht_capa. Un-supported values will be ignored.
7e7c8926 1698 * @ht_capa_mask: The bits of ht_capa which are to be used.
ee2aca34
JB
1699 * @vht_capa: VHT capability override
1700 * @vht_capa_mask: VHT capability mask indicating which fields to use
636a5d36
JM
1701 */
1702struct cfg80211_assoc_request {
19957bb3 1703 struct cfg80211_bss *bss;
3e5d7649 1704 const u8 *ie, *prev_bssid;
636a5d36 1705 size_t ie_len;
b23aa676 1706 struct cfg80211_crypto_settings crypto;
19957bb3 1707 bool use_mfp;
7e7c8926
BG
1708 u32 flags;
1709 struct ieee80211_ht_cap ht_capa;
1710 struct ieee80211_ht_cap ht_capa_mask;
ee2aca34 1711 struct ieee80211_vht_cap vht_capa, vht_capa_mask;
636a5d36
JM
1712};
1713
1714/**
1715 * struct cfg80211_deauth_request - Deauthentication request data
1716 *
1717 * This structure provides information needed to complete IEEE 802.11
1718 * deauthentication.
1719 *
95de817b 1720 * @bssid: the BSSID of the BSS to deauthenticate from
636a5d36
JM
1721 * @ie: Extra IEs to add to Deauthentication frame or %NULL
1722 * @ie_len: Length of ie buffer in octets
19957bb3 1723 * @reason_code: The reason code for the deauthentication
077f897a
JB
1724 * @local_state_change: if set, change local state only and
1725 * do not set a deauth frame
636a5d36
JM
1726 */
1727struct cfg80211_deauth_request {
95de817b 1728 const u8 *bssid;
636a5d36
JM
1729 const u8 *ie;
1730 size_t ie_len;
19957bb3 1731 u16 reason_code;
6863255b 1732 bool local_state_change;
636a5d36
JM
1733};
1734
1735/**
1736 * struct cfg80211_disassoc_request - Disassociation request data
1737 *
1738 * This structure provides information needed to complete IEEE 802.11
1739 * disassocation.
1740 *
19957bb3 1741 * @bss: the BSS to disassociate from
636a5d36
JM
1742 * @ie: Extra IEs to add to Disassociation frame or %NULL
1743 * @ie_len: Length of ie buffer in octets
19957bb3 1744 * @reason_code: The reason code for the disassociation
d5cdfacb
JM
1745 * @local_state_change: This is a request for a local state only, i.e., no
1746 * Disassociation frame is to be transmitted.
636a5d36
JM
1747 */
1748struct cfg80211_disassoc_request {
19957bb3 1749 struct cfg80211_bss *bss;
636a5d36
JM
1750 const u8 *ie;
1751 size_t ie_len;
19957bb3 1752 u16 reason_code;
d5cdfacb 1753 bool local_state_change;
636a5d36
JM
1754};
1755
04a773ad
JB
1756/**
1757 * struct cfg80211_ibss_params - IBSS parameters
1758 *
1759 * This structure defines the IBSS parameters for the join_ibss()
1760 * method.
1761 *
1762 * @ssid: The SSID, will always be non-null.
1763 * @ssid_len: The length of the SSID, will always be non-zero.
1764 * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
1765 * search for IBSSs with a different BSSID.
683b6d3b 1766 * @chandef: defines the channel to use if no other IBSS to join can be found
04a773ad
JB
1767 * @channel_fixed: The channel should be fixed -- do not search for
1768 * IBSSs to join on other channels.
1769 * @ie: information element(s) to include in the beacon
1770 * @ie_len: length of that
8e30bc55 1771 * @beacon_interval: beacon interval to use
fffd0934
JB
1772 * @privacy: this is a protected network, keys will be configured
1773 * after joining
267335d6
AQ
1774 * @control_port: whether user space controls IEEE 802.1X port, i.e.,
1775 * sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
1776 * required to assume that the port is unauthorized until authorized by
1777 * user space. Otherwise, port is marked authorized by default.
5336fa88
SW
1778 * @userspace_handles_dfs: whether user space controls DFS operation, i.e.
1779 * changes the channel when a radar is detected. This is required
1780 * to operate on DFS channels.
fbd2c8dc 1781 * @basic_rates: bitmap of basic rates to use when creating the IBSS
dd5b4cc7 1782 * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
803768f5 1783 * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
ad24b0da 1784 * will be used in ht_capa. Un-supported values will be ignored.
803768f5 1785 * @ht_capa_mask: The bits of ht_capa which are to be used.
04a773ad
JB
1786 */
1787struct cfg80211_ibss_params {
c1e5f471
JB
1788 const u8 *ssid;
1789 const u8 *bssid;
683b6d3b 1790 struct cfg80211_chan_def chandef;
c1e5f471 1791 const u8 *ie;
04a773ad 1792 u8 ssid_len, ie_len;
8e30bc55 1793 u16 beacon_interval;
fbd2c8dc 1794 u32 basic_rates;
04a773ad 1795 bool channel_fixed;
fffd0934 1796 bool privacy;
267335d6 1797 bool control_port;
5336fa88 1798 bool userspace_handles_dfs;
dd5b4cc7 1799 int mcast_rate[IEEE80211_NUM_BANDS];
803768f5
SW
1800 struct ieee80211_ht_cap ht_capa;
1801 struct ieee80211_ht_cap ht_capa_mask;
04a773ad
JB
1802};
1803
b23aa676
SO
1804/**
1805 * struct cfg80211_connect_params - Connection parameters
1806 *
1807 * This structure provides information needed to complete IEEE 802.11
1808 * authentication and association.
1809 *
1810 * @channel: The channel to use or %NULL if not specified (auto-select based
1811 * on scan results)
1df4a510
JM
1812 * @channel_hint: The channel of the recommended BSS for initial connection or
1813 * %NULL if not specified
b23aa676
SO
1814 * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
1815 * results)
1df4a510
JM
1816 * @bssid_hint: The recommended AP BSSID for initial connection to the BSS or
1817 * %NULL if not specified. Unlike the @bssid parameter, the driver is
1818 * allowed to ignore this @bssid_hint if it has knowledge of a better BSS
1819 * to use.
b23aa676
SO
1820 * @ssid: SSID
1821 * @ssid_len: Length of ssid in octets
1822 * @auth_type: Authentication type (algorithm)
abe37c4b
JB
1823 * @ie: IEs for association request
1824 * @ie_len: Length of assoc_ie in octets
b23aa676 1825 * @privacy: indicates whether privacy-enabled APs should be used
cee00a95 1826 * @mfp: indicate whether management frame protection is used
b23aa676 1827 * @crypto: crypto settings
fffd0934
JB
1828 * @key_len: length of WEP key for shared key authentication
1829 * @key_idx: index of WEP key for shared key authentication
1830 * @key: WEP key for shared key authentication
7e7c8926 1831 * @flags: See &enum cfg80211_assoc_req_flags
4486ea98 1832 * @bg_scan_period: Background scan period in seconds
ad24b0da 1833 * or -1 to indicate that default value is to be used.
7e7c8926 1834 * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
ad24b0da 1835 * will be used in ht_capa. Un-supported values will be ignored.
7e7c8926 1836 * @ht_capa_mask: The bits of ht_capa which are to be used.
ee2aca34
JB
1837 * @vht_capa: VHT Capability overrides
1838 * @vht_capa_mask: The bits of vht_capa which are to be used.
b23aa676
SO
1839 */
1840struct cfg80211_connect_params {
1841 struct ieee80211_channel *channel;
1df4a510 1842 struct ieee80211_channel *channel_hint;
664834de 1843 const u8 *bssid;
1df4a510 1844 const u8 *bssid_hint;
664834de 1845 const u8 *ssid;
b23aa676
SO
1846 size_t ssid_len;
1847 enum nl80211_auth_type auth_type;
4b5800fe 1848 const u8 *ie;
b23aa676
SO
1849 size_t ie_len;
1850 bool privacy;
cee00a95 1851 enum nl80211_mfp mfp;
b23aa676 1852 struct cfg80211_crypto_settings crypto;
fffd0934
JB
1853 const u8 *key;
1854 u8 key_len, key_idx;
7e7c8926 1855 u32 flags;
4486ea98 1856 int bg_scan_period;
7e7c8926
BG
1857 struct ieee80211_ht_cap ht_capa;
1858 struct ieee80211_ht_cap ht_capa_mask;
ee2aca34
JB
1859 struct ieee80211_vht_cap vht_capa;
1860 struct ieee80211_vht_cap vht_capa_mask;
b23aa676
SO
1861};
1862
b9a5f8ca
JM
1863/**
1864 * enum wiphy_params_flags - set_wiphy_params bitfield values
abe37c4b
JB
1865 * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
1866 * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
1867 * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
1868 * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
1869 * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
3057dbfd 1870 * @WIPHY_PARAM_DYN_ACK: dynack has been enabled
b9a5f8ca
JM
1871 */
1872enum wiphy_params_flags {
1873 WIPHY_PARAM_RETRY_SHORT = 1 << 0,
1874 WIPHY_PARAM_RETRY_LONG = 1 << 1,
1875 WIPHY_PARAM_FRAG_THRESHOLD = 1 << 2,
1876 WIPHY_PARAM_RTS_THRESHOLD = 1 << 3,
81077e82 1877 WIPHY_PARAM_COVERAGE_CLASS = 1 << 4,
3057dbfd 1878 WIPHY_PARAM_DYN_ACK = 1 << 5,
b9a5f8ca
JM
1879};
1880
9930380f
JB
1881/*
1882 * cfg80211_bitrate_mask - masks for bitrate control
1883 */
1884struct cfg80211_bitrate_mask {
9930380f
JB
1885 struct {
1886 u32 legacy;
d1e33e65 1887 u8 ht_mcs[IEEE80211_HT_MCS_MASK_LEN];
204e35a9 1888 u16 vht_mcs[NL80211_VHT_NSS_MAX];
0b9323f6 1889 enum nl80211_txrate_gi gi;
9930380f 1890 } control[IEEE80211_NUM_BANDS];
9930380f 1891};
67fbb16b
SO
1892/**
1893 * struct cfg80211_pmksa - PMK Security Association
1894 *
1895 * This structure is passed to the set/del_pmksa() method for PMKSA
1896 * caching.
1897 *
1898 * @bssid: The AP's BSSID.
1899 * @pmkid: The PMK material itself.
1900 */
1901struct cfg80211_pmksa {
c1e5f471
JB
1902 const u8 *bssid;
1903 const u8 *pmkid;
67fbb16b 1904};
9930380f 1905
ff1b6e69 1906/**
50ac6607 1907 * struct cfg80211_pkt_pattern - packet pattern
ff1b6e69
JB
1908 * @mask: bitmask where to match pattern and where to ignore bytes,
1909 * one bit per byte, in same format as nl80211
1910 * @pattern: bytes to match where bitmask is 1
1911 * @pattern_len: length of pattern (in bytes)
bb92d199 1912 * @pkt_offset: packet offset (in bytes)
ff1b6e69
JB
1913 *
1914 * Internal note: @mask and @pattern are allocated in one chunk of
1915 * memory, free @mask only!
1916 */
50ac6607 1917struct cfg80211_pkt_pattern {
922bd80f 1918 const u8 *mask, *pattern;
ff1b6e69 1919 int pattern_len;
bb92d199 1920 int pkt_offset;
ff1b6e69
JB
1921};
1922
2a0e047e
JB
1923/**
1924 * struct cfg80211_wowlan_tcp - TCP connection parameters
1925 *
1926 * @sock: (internal) socket for source port allocation
1927 * @src: source IP address
1928 * @dst: destination IP address
1929 * @dst_mac: destination MAC address
1930 * @src_port: source port
1931 * @dst_port: destination port
1932 * @payload_len: data payload length
1933 * @payload: data payload buffer
1934 * @payload_seq: payload sequence stamping configuration
1935 * @data_interval: interval at which to send data packets
1936 * @wake_len: wakeup payload match length
1937 * @wake_data: wakeup payload match data
1938 * @wake_mask: wakeup payload match mask
1939 * @tokens_size: length of the tokens buffer
1940 * @payload_tok: payload token usage configuration
1941 */
1942struct cfg80211_wowlan_tcp {
1943 struct socket *sock;
1944 __be32 src, dst;
1945 u16 src_port, dst_port;
1946 u8 dst_mac[ETH_ALEN];
1947 int payload_len;
1948 const u8 *payload;
1949 struct nl80211_wowlan_tcp_data_seq payload_seq;
1950 u32 data_interval;
1951 u32 wake_len;
1952 const u8 *wake_data, *wake_mask;
1953 u32 tokens_size;
1954 /* must be last, variable member */
1955 struct nl80211_wowlan_tcp_data_token payload_tok;
ff1b6e69
JB
1956};
1957
1958/**
1959 * struct cfg80211_wowlan - Wake on Wireless-LAN support info
1960 *
1961 * This structure defines the enabled WoWLAN triggers for the device.
1962 * @any: wake up on any activity -- special trigger if device continues
1963 * operating as normal during suspend
1964 * @disconnect: wake up if getting disconnected
1965 * @magic_pkt: wake up on receiving magic packet
1966 * @patterns: wake up on receiving packet matching a pattern
1967 * @n_patterns: number of patterns
77dbbb13
JB
1968 * @gtk_rekey_failure: wake up on GTK rekey failure
1969 * @eap_identity_req: wake up on EAP identity request packet
1970 * @four_way_handshake: wake up on 4-way handshake
1971 * @rfkill_release: wake up when rfkill is released
2a0e047e
JB
1972 * @tcp: TCP connection establishment/wakeup parameters, see nl80211.h.
1973 * NULL if not configured.
8cd4d456 1974 * @nd_config: configuration for the scan to be used for net detect wake.
ff1b6e69
JB
1975 */
1976struct cfg80211_wowlan {
77dbbb13
JB
1977 bool any, disconnect, magic_pkt, gtk_rekey_failure,
1978 eap_identity_req, four_way_handshake,
1979 rfkill_release;
50ac6607 1980 struct cfg80211_pkt_pattern *patterns;
2a0e047e 1981 struct cfg80211_wowlan_tcp *tcp;
ff1b6e69 1982 int n_patterns;
8cd4d456 1983 struct cfg80211_sched_scan_request *nd_config;
ff1b6e69
JB
1984};
1985
be29b99a
AK
1986/**
1987 * struct cfg80211_coalesce_rules - Coalesce rule parameters
1988 *
1989 * This structure defines coalesce rule for the device.
1990 * @delay: maximum coalescing delay in msecs.
1991 * @condition: condition for packet coalescence.
1992 * see &enum nl80211_coalesce_condition.
1993 * @patterns: array of packet patterns
1994 * @n_patterns: number of patterns
1995 */
1996struct cfg80211_coalesce_rules {
1997 int delay;
1998 enum nl80211_coalesce_condition condition;
1999 struct cfg80211_pkt_pattern *patterns;
2000 int n_patterns;
2001};
2002
2003/**
2004 * struct cfg80211_coalesce - Packet coalescing settings
2005 *
2006 * This structure defines coalescing settings.
2007 * @rules: array of coalesce rules
2008 * @n_rules: number of rules
2009 */
2010struct cfg80211_coalesce {
2011 struct cfg80211_coalesce_rules *rules;
2012 int n_rules;
2013};
2014
8cd4d456
LC
2015/**
2016 * struct cfg80211_wowlan_nd_match - information about the match
2017 *
2018 * @ssid: SSID of the match that triggered the wake up
2019 * @n_channels: Number of channels where the match occurred. This
2020 * value may be zero if the driver can't report the channels.
2021 * @channels: center frequencies of the channels where a match
2022 * occurred (in MHz)
2023 */
2024struct cfg80211_wowlan_nd_match {
2025 struct cfg80211_ssid ssid;
2026 int n_channels;
2027 u32 channels[];
2028};
2029
2030/**
2031 * struct cfg80211_wowlan_nd_info - net detect wake up information
2032 *
2033 * @n_matches: Number of match information instances provided in
2034 * @matches. This value may be zero if the driver can't provide
2035 * match information.
2036 * @matches: Array of pointers to matches containing information about
2037 * the matches that triggered the wake up.
2038 */
2039struct cfg80211_wowlan_nd_info {
2040 int n_matches;
2041 struct cfg80211_wowlan_nd_match *matches[];
2042};
2043
cd8f7cb4
JB
2044/**
2045 * struct cfg80211_wowlan_wakeup - wakeup report
2046 * @disconnect: woke up by getting disconnected
2047 * @magic_pkt: woke up by receiving magic packet
2048 * @gtk_rekey_failure: woke up by GTK rekey failure
2049 * @eap_identity_req: woke up by EAP identity request packet
2050 * @four_way_handshake: woke up by 4-way handshake
2051 * @rfkill_release: woke up by rfkill being released
2052 * @pattern_idx: pattern that caused wakeup, -1 if not due to pattern
2053 * @packet_present_len: copied wakeup packet data
2054 * @packet_len: original wakeup packet length
2055 * @packet: The packet causing the wakeup, if any.
2056 * @packet_80211: For pattern match, magic packet and other data
2057 * frame triggers an 802.3 frame should be reported, for
2058 * disconnect due to deauth 802.11 frame. This indicates which
2059 * it is.
2a0e047e
JB
2060 * @tcp_match: TCP wakeup packet received
2061 * @tcp_connlost: TCP connection lost or failed to establish
2062 * @tcp_nomoretokens: TCP data ran out of tokens
8cd4d456 2063 * @net_detect: if not %NULL, woke up because of net detect
cd8f7cb4
JB
2064 */
2065struct cfg80211_wowlan_wakeup {
2066 bool disconnect, magic_pkt, gtk_rekey_failure,
2067 eap_identity_req, four_way_handshake,
2a0e047e
JB
2068 rfkill_release, packet_80211,
2069 tcp_match, tcp_connlost, tcp_nomoretokens;
cd8f7cb4
JB
2070 s32 pattern_idx;
2071 u32 packet_present_len, packet_len;
2072 const void *packet;
8cd4d456 2073 struct cfg80211_wowlan_nd_info *net_detect;
cd8f7cb4
JB
2074};
2075
e5497d76
JB
2076/**
2077 * struct cfg80211_gtk_rekey_data - rekey data
78f686ca
JB
2078 * @kek: key encryption key (NL80211_KEK_LEN bytes)
2079 * @kck: key confirmation key (NL80211_KCK_LEN bytes)
2080 * @replay_ctr: replay counter (NL80211_REPLAY_CTR_LEN bytes)
e5497d76
JB
2081 */
2082struct cfg80211_gtk_rekey_data {
78f686ca 2083 const u8 *kek, *kck, *replay_ctr;
e5497d76
JB
2084};
2085
355199e0
JM
2086/**
2087 * struct cfg80211_update_ft_ies_params - FT IE Information
2088 *
2089 * This structure provides information needed to update the fast transition IE
2090 *
2091 * @md: The Mobility Domain ID, 2 Octet value
2092 * @ie: Fast Transition IEs
2093 * @ie_len: Length of ft_ie in octets
2094 */
2095struct cfg80211_update_ft_ies_params {
2096 u16 md;
2097 const u8 *ie;
2098 size_t ie_len;
2099};
2100
b176e629
AO
2101/**
2102 * struct cfg80211_mgmt_tx_params - mgmt tx parameters
2103 *
2104 * This structure provides information needed to transmit a mgmt frame
2105 *
2106 * @chan: channel to use
2107 * @offchan: indicates wether off channel operation is required
2108 * @wait: duration for ROC
2109 * @buf: buffer to transmit
2110 * @len: buffer length
2111 * @no_cck: don't use cck rates for this frame
2112 * @dont_wait_for_ack: tells the low level not to wait for an ack
34d22ce2
AO
2113 * @n_csa_offsets: length of csa_offsets array
2114 * @csa_offsets: array of all the csa offsets in the frame
b176e629
AO
2115 */
2116struct cfg80211_mgmt_tx_params {
2117 struct ieee80211_channel *chan;
2118 bool offchan;
2119 unsigned int wait;
2120 const u8 *buf;
2121 size_t len;
2122 bool no_cck;
2123 bool dont_wait_for_ack;
34d22ce2
AO
2124 int n_csa_offsets;
2125 const u16 *csa_offsets;
b176e629
AO
2126};
2127
fa9ffc74
KP
2128/**
2129 * struct cfg80211_dscp_exception - DSCP exception
2130 *
2131 * @dscp: DSCP value that does not adhere to the user priority range definition
2132 * @up: user priority value to which the corresponding DSCP value belongs
2133 */
2134struct cfg80211_dscp_exception {
2135 u8 dscp;
2136 u8 up;
2137};
2138
2139/**
2140 * struct cfg80211_dscp_range - DSCP range definition for user priority
2141 *
2142 * @low: lowest DSCP value of this user priority range, inclusive
2143 * @high: highest DSCP value of this user priority range, inclusive
2144 */
2145struct cfg80211_dscp_range {
2146 u8 low;
2147 u8 high;
2148};
2149
2150/* QoS Map Set element length defined in IEEE Std 802.11-2012, 8.4.2.97 */
2151#define IEEE80211_QOS_MAP_MAX_EX 21
2152#define IEEE80211_QOS_MAP_LEN_MIN 16
2153#define IEEE80211_QOS_MAP_LEN_MAX \
2154 (IEEE80211_QOS_MAP_LEN_MIN + 2 * IEEE80211_QOS_MAP_MAX_EX)
2155
2156/**
2157 * struct cfg80211_qos_map - QoS Map Information
2158 *
2159 * This struct defines the Interworking QoS map setting for DSCP values
2160 *
2161 * @num_des: number of DSCP exceptions (0..21)
2162 * @dscp_exception: optionally up to maximum of 21 DSCP exceptions from
2163 * the user priority DSCP range definition
2164 * @up: DSCP range definition for a particular user priority
2165 */
2166struct cfg80211_qos_map {
2167 u8 num_des;
2168 struct cfg80211_dscp_exception dscp_exception[IEEE80211_QOS_MAP_MAX_EX];
2169 struct cfg80211_dscp_range up[8];
2170};
2171
704232c2
JB
2172/**
2173 * struct cfg80211_ops - backend description for wireless configuration
2174 *
2175 * This struct is registered by fullmac card drivers and/or wireless stacks
2176 * in order to handle configuration requests on their interfaces.
2177 *
2178 * All callbacks except where otherwise noted should return 0
2179 * on success or a negative error code.
2180 *
43fb45cb
JB
2181 * All operations are currently invoked under rtnl for consistency with the
2182 * wireless extensions but this is subject to reevaluation as soon as this
2183 * code is used more widely and we have a first user without wext.
2184 *
ff1b6e69
JB
2185 * @suspend: wiphy device needs to be suspended. The variable @wow will
2186 * be %NULL or contain the enabled Wake-on-Wireless triggers that are
2187 * configured for the device.
0378b3f1 2188 * @resume: wiphy device needs to be resumed
6d52563f
JB
2189 * @set_wakeup: Called when WoWLAN is enabled/disabled, use this callback
2190 * to call device_set_wakeup_enable() to enable/disable wakeup from
2191 * the device.
0378b3f1 2192 *
60719ffd 2193 * @add_virtual_intf: create a new virtual interface with the given name,
463d0183 2194 * must set the struct wireless_dev's iftype. Beware: You must create
84efbb84 2195 * the new netdev in the wiphy's network namespace! Returns the struct
98104fde
JB
2196 * wireless_dev, or an ERR_PTR. For P2P device wdevs, the driver must
2197 * also set the address member in the wdev.
704232c2 2198 *
84efbb84 2199 * @del_virtual_intf: remove the virtual interface
55682965 2200 *
60719ffd
JB
2201 * @change_virtual_intf: change type/configuration of virtual interface,
2202 * keep the struct wireless_dev's iftype updated.
55682965 2203 *
41ade00f
JB
2204 * @add_key: add a key with the given parameters. @mac_addr will be %NULL
2205 * when adding a group key.
2206 *
2207 * @get_key: get information about the key with the given parameters.
2208 * @mac_addr will be %NULL when requesting information for a group
2209 * key. All pointers given to the @callback function need not be valid
e3da574a
JB
2210 * after it returns. This function should return an error if it is
2211 * not possible to retrieve the key, -ENOENT if it doesn't exist.
41ade00f
JB
2212 *
2213 * @del_key: remove a key given the @mac_addr (%NULL for a group key)
e3da574a 2214 * and @key_index, return -ENOENT if the key doesn't exist.
41ade00f
JB
2215 *
2216 * @set_default_key: set the default key on an interface
ed1b6cc7 2217 *
3cfcf6ac
JM
2218 * @set_default_mgmt_key: set the default management frame key on an interface
2219 *
e5497d76
JB
2220 * @set_rekey_data: give the data necessary for GTK rekeying to the driver
2221 *
c04a4ff7
JB
2222 * @start_ap: Start acting in AP mode defined by the parameters.
2223 * @change_beacon: Change the beacon parameters for an access point mode
2224 * interface. This should reject the call when AP mode wasn't started.
2225 * @stop_ap: Stop being an AP, including stopping beaconing.
5727ef1b
JB
2226 *
2227 * @add_station: Add a new station.
89c771e5 2228 * @del_station: Remove a station
bdd90d5e
JB
2229 * @change_station: Modify a given station. Note that flags changes are not much
2230 * validated in cfg80211, in particular the auth/assoc/authorized flags
2231 * might come to the driver in invalid combinations -- make sure to check
77ee7c89
JB
2232 * them, also against the existing state! Drivers must call
2233 * cfg80211_check_station_change() to validate the information.
abe37c4b
JB
2234 * @get_station: get station information for the station identified by @mac
2235 * @dump_station: dump station callback -- resume dump at index @idx
2236 *
2237 * @add_mpath: add a fixed mesh path
2238 * @del_mpath: delete a given mesh path
2239 * @change_mpath: change a given mesh path
2240 * @get_mpath: get a mesh path for the given parameters
2241 * @dump_mpath: dump mesh path callback -- resume dump at index @idx
66be7d2b
HR
2242 * @get_mpp: get a mesh proxy path for the given parameters
2243 * @dump_mpp: dump mesh proxy path callback -- resume dump at index @idx
f52555a4 2244 * @join_mesh: join the mesh network with the specified parameters
8d61ffa5 2245 * (invoked with the wireless_dev mutex held)
f52555a4 2246 * @leave_mesh: leave the current mesh network
8d61ffa5 2247 * (invoked with the wireless_dev mutex held)
2ec600d6 2248 *
24bdd9f4 2249 * @get_mesh_config: Get the current mesh configuration
93da9cc1 2250 *
24bdd9f4 2251 * @update_mesh_config: Update mesh parameters on a running mesh.
93da9cc1 2252 * The mask is a bitfield which tells us which parameters to
2253 * set, and which to leave alone.
2254 *
9f1ba906 2255 * @change_bss: Modify parameters for a given BSS.
31888487
JM
2256 *
2257 * @set_txq_params: Set TX queue parameters
72bdcf34 2258 *
e8c9bd5b
JB
2259 * @libertas_set_mesh_channel: Only for backward compatibility for libertas,
2260 * as it doesn't implement join_mesh and needs to set the channel to
2261 * join the mesh instead.
2262 *
2263 * @set_monitor_channel: Set the monitor mode channel for the device. If other
2264 * interfaces are active this callback should reject the configuration.
2265 * If no interfaces are active or the device is down, the channel should
2266 * be stored for when a monitor interface becomes active.
9aed3cc1 2267 *
2a519311
JB
2268 * @scan: Request to do a scan. If returning zero, the scan request is given
2269 * the driver, and will be valid until passed to cfg80211_scan_done().
2270 * For scan results, call cfg80211_inform_bss(); you can call this outside
2271 * the scan/scan_done bracket too.
636a5d36
JM
2272 *
2273 * @auth: Request to authenticate with the specified peer
8d61ffa5 2274 * (invoked with the wireless_dev mutex held)
636a5d36 2275 * @assoc: Request to (re)associate with the specified peer
8d61ffa5 2276 * (invoked with the wireless_dev mutex held)
636a5d36 2277 * @deauth: Request to deauthenticate from the specified peer
8d61ffa5 2278 * (invoked with the wireless_dev mutex held)
636a5d36 2279 * @disassoc: Request to disassociate from the specified peer
8d61ffa5 2280 * (invoked with the wireless_dev mutex held)
04a773ad 2281 *
b23aa676
SO
2282 * @connect: Connect to the ESS with the specified parameters. When connected,
2283 * call cfg80211_connect_result() with status code %WLAN_STATUS_SUCCESS.
2284 * If the connection fails for some reason, call cfg80211_connect_result()
2285 * with the status from the AP.
8d61ffa5 2286 * (invoked with the wireless_dev mutex held)
b23aa676 2287 * @disconnect: Disconnect from the BSS/ESS.
8d61ffa5 2288 * (invoked with the wireless_dev mutex held)
b23aa676 2289 *
04a773ad
JB
2290 * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
2291 * cfg80211_ibss_joined(), also call that function when changing BSSID due
2292 * to a merge.
8d61ffa5 2293 * (invoked with the wireless_dev mutex held)
04a773ad 2294 * @leave_ibss: Leave the IBSS.
8d61ffa5 2295 * (invoked with the wireless_dev mutex held)
b9a5f8ca 2296 *
f4e583c8
AQ
2297 * @set_mcast_rate: Set the specified multicast rate (only if vif is in ADHOC or
2298 * MESH mode)
2299 *
b9a5f8ca
JM
2300 * @set_wiphy_params: Notify that wiphy parameters have changed;
2301 * @changed bitfield (see &enum wiphy_params_flags) describes which values
2302 * have changed. The actual parameter values are available in
2303 * struct wiphy. If returning an error, no value should be changed.
7643a2c3 2304 *
1432de07 2305 * @set_tx_power: set the transmit power according to the parameters,
c8442118
JB
2306 * the power passed is in mBm, to get dBm use MBM_TO_DBM(). The
2307 * wdev may be %NULL if power was set for the wiphy, and will
2308 * always be %NULL unless the driver supports per-vif TX power
2309 * (as advertised by the nl80211 feature flag.)
7643a2c3 2310 * @get_tx_power: store the current TX power into the dbm variable;
1f87f7d3
JB
2311 * return 0 if successful
2312 *
abe37c4b
JB
2313 * @set_wds_peer: set the WDS peer for a WDS interface
2314 *
1f87f7d3
JB
2315 * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
2316 * functions to adjust rfkill hw state
aff89a9b 2317 *
61fa713c
HS
2318 * @dump_survey: get site survey information.
2319 *
9588bbd5
JM
2320 * @remain_on_channel: Request the driver to remain awake on the specified
2321 * channel for the specified duration to complete an off-channel
2322 * operation (e.g., public action frame exchange). When the driver is
2323 * ready on the requested channel, it must indicate this with an event
2324 * notification by calling cfg80211_ready_on_channel().
2325 * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
2326 * This allows the operation to be terminated prior to timeout based on
2327 * the duration value.
f7ca38df
JB
2328 * @mgmt_tx: Transmit a management frame.
2329 * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
2330 * frame on another channel
9588bbd5 2331 *
fc73f11f 2332 * @testmode_cmd: run a test mode command; @wdev may be %NULL
71063f0e
WYG
2333 * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
2334 * used by the function, but 0 and 1 must not be touched. Additionally,
2335 * return error codes other than -ENOBUFS and -ENOENT will terminate the
2336 * dump and return to userspace with an error, so be careful. If any data
2337 * was passed in from userspace then the data/len arguments will be present
2338 * and point to the data contained in %NL80211_ATTR_TESTDATA.
67fbb16b 2339 *
abe37c4b
JB
2340 * @set_bitrate_mask: set the bitrate mask configuration
2341 *
67fbb16b
SO
2342 * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
2343 * devices running firmwares capable of generating the (re) association
2344 * RSN IE. It allows for faster roaming between WPA2 BSSIDs.
2345 * @del_pmksa: Delete a cached PMKID.
2346 * @flush_pmksa: Flush all cached PMKIDs.
9043f3b8
JO
2347 * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
2348 * allows the driver to adjust the dynamic ps timeout value.
d6dc1a38 2349 * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
84f10708
TP
2350 * @set_cqm_txe_config: Configure connection quality monitor TX error
2351 * thresholds.
807f8a8c 2352 * @sched_scan_start: Tell the driver to start a scheduled scan.
d9b8396a
JB
2353 * @sched_scan_stop: Tell the driver to stop an ongoing scheduled scan. This
2354 * call must stop the scheduled scan and be ready for starting a new one
2355 * before it returns, i.e. @sched_scan_start may be called immediately
2356 * after that again and should not fail in that case. The driver should
2357 * not call cfg80211_sched_scan_stopped() for a requested stop (when this
2358 * method returns 0.)
67fbb16b 2359 *
271733cf
JB
2360 * @mgmt_frame_register: Notify driver that a management frame type was
2361 * registered. Note that this callback may not sleep, and cannot run
2362 * concurrently with itself.
547025d5
BR
2363 *
2364 * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
2365 * Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
2366 * reject TX/RX mask combinations they cannot support by returning -EINVAL
2367 * (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
2368 *
2369 * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
3677713b 2370 *
109086ce
AN
2371 * @tdls_mgmt: Transmit a TDLS management frame.
2372 * @tdls_oper: Perform a high-level TDLS operation (e.g. TDLS link setup).
7f6cf311
JB
2373 *
2374 * @probe_client: probe an associated client, must return a cookie that it
2375 * later passes to cfg80211_probe_status().
1d9d9213
SW
2376 *
2377 * @set_noack_map: Set the NoAck Map for the TIDs.
d6199218 2378 *
5b7ccaf3
JB
2379 * @get_channel: Get the current operating channel for the virtual interface.
2380 * For monitor interfaces, it should return %NULL unless there's a single
2381 * current monitoring channel.
98104fde
JB
2382 *
2383 * @start_p2p_device: Start the given P2P device.
2384 * @stop_p2p_device: Stop the given P2P device.
77765eaf
VT
2385 *
2386 * @set_mac_acl: Sets MAC address control list in AP and P2P GO mode.
2387 * Parameters include ACL policy, an array of MAC address of stations
2388 * and the number of MAC addresses. If there is already a list in driver
2389 * this new list replaces the existing one. Driver has to clear its ACL
2390 * when number of MAC addresses entries is passed as 0. Drivers which
2391 * advertise the support for MAC based ACL have to implement this callback.
04f39047
SW
2392 *
2393 * @start_radar_detection: Start radar detection in the driver.
8bf24293
JM
2394 *
2395 * @update_ft_ies: Provide updated Fast BSS Transition information to the
2396 * driver. If the SME is in the driver/firmware, this information can be
2397 * used in building Authentication and Reassociation Request frames.
5de17984
AS
2398 *
2399 * @crit_proto_start: Indicates a critical protocol needs more link reliability
2400 * for a given duration (milliseconds). The protocol is provided so the
2401 * driver can take the most appropriate actions.
2402 * @crit_proto_stop: Indicates critical protocol no longer needs increased link
2403 * reliability. This operation can not fail.
be29b99a 2404 * @set_coalesce: Set coalesce parameters.
16ef1fe2 2405 *
97dc94f1
MK
2406 * @channel_switch: initiate channel-switch procedure (with CSA). Driver is
2407 * responsible for veryfing if the switch is possible. Since this is
2408 * inherently tricky driver may decide to disconnect an interface later
2409 * with cfg80211_stop_iface(). This doesn't mean driver can accept
2410 * everything. It should do it's best to verify requests and reject them
2411 * as soon as possible.
fa9ffc74
KP
2412 *
2413 * @set_qos_map: Set QoS mapping information to the driver
e16821bc
JM
2414 *
2415 * @set_ap_chanwidth: Set the AP (including P2P GO) mode channel width for the
2416 * given interface This is used e.g. for dynamic HT 20/40 MHz channel width
2417 * changes during the lifetime of the BSS.
960d01ac
JB
2418 *
2419 * @add_tx_ts: validate (if admitted_time is 0) or add a TX TS to the device
2420 * with the given parameters; action frame exchange has been handled by
2421 * userspace so this just has to modify the TX path to take the TS into
2422 * account.
2423 * If the admitted time is 0 just validate the parameters to make sure
2424 * the session can be created at all; it is valid to just always return
2425 * success for that but that may result in inefficient behaviour (handshake
2426 * with the peer followed by immediate teardown when the addition is later
2427 * rejected)
2428 * @del_tx_ts: remove an existing TX TS
6e0bd6c3
RL
2429 *
2430 * @join_ocb: join the OCB network with the specified parameters
2431 * (invoked with the wireless_dev mutex held)
2432 * @leave_ocb: leave the current OCB network
2433 * (invoked with the wireless_dev mutex held)
1057d35e
AN
2434 *
2435 * @tdls_channel_switch: Start channel-switching with a TDLS peer. The driver
2436 * is responsible for continually initiating channel-switching operations
2437 * and returning to the base channel for communication with the AP.
2438 * @tdls_cancel_channel_switch: Stop channel-switching with a TDLS peer. Both
2439 * peers must be on the base channel when the call completes.
704232c2
JB
2440 */
2441struct cfg80211_ops {
ff1b6e69 2442 int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
0378b3f1 2443 int (*resume)(struct wiphy *wiphy);
6d52563f 2444 void (*set_wakeup)(struct wiphy *wiphy, bool enabled);
0378b3f1 2445
84efbb84 2446 struct wireless_dev * (*add_virtual_intf)(struct wiphy *wiphy,
552bff0c 2447 const char *name,
84efbb84
JB
2448 enum nl80211_iftype type,
2449 u32 *flags,
2450 struct vif_params *params);
2451 int (*del_virtual_intf)(struct wiphy *wiphy,
2452 struct wireless_dev *wdev);
e36d56b6
JB
2453 int (*change_virtual_intf)(struct wiphy *wiphy,
2454 struct net_device *dev,
2ec600d6
LCC
2455 enum nl80211_iftype type, u32 *flags,
2456 struct vif_params *params);
41ade00f
JB
2457
2458 int (*add_key)(struct wiphy *wiphy, struct net_device *netdev,
e31b8213 2459 u8 key_index, bool pairwise, const u8 *mac_addr,
41ade00f
JB
2460 struct key_params *params);
2461 int (*get_key)(struct wiphy *wiphy, struct net_device *netdev,
e31b8213
JB
2462 u8 key_index, bool pairwise, const u8 *mac_addr,
2463 void *cookie,
41ade00f
JB
2464 void (*callback)(void *cookie, struct key_params*));
2465 int (*del_key)(struct wiphy *wiphy, struct net_device *netdev,
e31b8213 2466 u8 key_index, bool pairwise, const u8 *mac_addr);
41ade00f
JB
2467 int (*set_default_key)(struct wiphy *wiphy,
2468 struct net_device *netdev,
dbd2fd65 2469 u8 key_index, bool unicast, bool multicast);
3cfcf6ac
JM
2470 int (*set_default_mgmt_key)(struct wiphy *wiphy,
2471 struct net_device *netdev,
2472 u8 key_index);
ed1b6cc7 2473
8860020e
JB
2474 int (*start_ap)(struct wiphy *wiphy, struct net_device *dev,
2475 struct cfg80211_ap_settings *settings);
2476 int (*change_beacon)(struct wiphy *wiphy, struct net_device *dev,
2477 struct cfg80211_beacon_data *info);
2478 int (*stop_ap)(struct wiphy *wiphy, struct net_device *dev);
5727ef1b
JB
2479
2480
2481 int (*add_station)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162
JB
2482 const u8 *mac,
2483 struct station_parameters *params);
5727ef1b 2484 int (*del_station)(struct wiphy *wiphy, struct net_device *dev,
89c771e5 2485 struct station_del_parameters *params);
5727ef1b 2486 int (*change_station)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162
JB
2487 const u8 *mac,
2488 struct station_parameters *params);
fd5b74dc 2489 int (*get_station)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2490 const u8 *mac, struct station_info *sinfo);
2ec600d6 2491 int (*dump_station)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2492 int idx, u8 *mac, struct station_info *sinfo);
2ec600d6
LCC
2493
2494 int (*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2495 const u8 *dst, const u8 *next_hop);
2ec600d6 2496 int (*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2497 const u8 *dst);
2ec600d6 2498 int (*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2499 const u8 *dst, const u8 *next_hop);
2ec600d6 2500 int (*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2501 u8 *dst, u8 *next_hop, struct mpath_info *pinfo);
2ec600d6 2502 int (*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162
JB
2503 int idx, u8 *dst, u8 *next_hop,
2504 struct mpath_info *pinfo);
66be7d2b
HR
2505 int (*get_mpp)(struct wiphy *wiphy, struct net_device *dev,
2506 u8 *dst, u8 *mpp, struct mpath_info *pinfo);
2507 int (*dump_mpp)(struct wiphy *wiphy, struct net_device *dev,
2508 int idx, u8 *dst, u8 *mpp,
2509 struct mpath_info *pinfo);
24bdd9f4 2510 int (*get_mesh_config)(struct wiphy *wiphy,
93da9cc1 2511 struct net_device *dev,
2512 struct mesh_config *conf);
24bdd9f4 2513 int (*update_mesh_config)(struct wiphy *wiphy,
29cbe68c
JB
2514 struct net_device *dev, u32 mask,
2515 const struct mesh_config *nconf);
2516 int (*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
2517 const struct mesh_config *conf,
2518 const struct mesh_setup *setup);
2519 int (*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
2520
6e0bd6c3
RL
2521 int (*join_ocb)(struct wiphy *wiphy, struct net_device *dev,
2522 struct ocb_setup *setup);
2523 int (*leave_ocb)(struct wiphy *wiphy, struct net_device *dev);
2524
9f1ba906
JM
2525 int (*change_bss)(struct wiphy *wiphy, struct net_device *dev,
2526 struct bss_parameters *params);
31888487 2527
f70f01c2 2528 int (*set_txq_params)(struct wiphy *wiphy, struct net_device *dev,
31888487 2529 struct ieee80211_txq_params *params);
72bdcf34 2530
e8c9bd5b
JB
2531 int (*libertas_set_mesh_channel)(struct wiphy *wiphy,
2532 struct net_device *dev,
2533 struct ieee80211_channel *chan);
2534
2535 int (*set_monitor_channel)(struct wiphy *wiphy,
683b6d3b 2536 struct cfg80211_chan_def *chandef);
9aed3cc1 2537
fd014284 2538 int (*scan)(struct wiphy *wiphy,
2a519311 2539 struct cfg80211_scan_request *request);
636a5d36
JM
2540
2541 int (*auth)(struct wiphy *wiphy, struct net_device *dev,
2542 struct cfg80211_auth_request *req);
2543 int (*assoc)(struct wiphy *wiphy, struct net_device *dev,
2544 struct cfg80211_assoc_request *req);
2545 int (*deauth)(struct wiphy *wiphy, struct net_device *dev,
63c9c5e7 2546 struct cfg80211_deauth_request *req);
636a5d36 2547 int (*disassoc)(struct wiphy *wiphy, struct net_device *dev,
63c9c5e7 2548 struct cfg80211_disassoc_request *req);
04a773ad 2549
b23aa676
SO
2550 int (*connect)(struct wiphy *wiphy, struct net_device *dev,
2551 struct cfg80211_connect_params *sme);
2552 int (*disconnect)(struct wiphy *wiphy, struct net_device *dev,
2553 u16 reason_code);
2554
04a773ad
JB
2555 int (*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
2556 struct cfg80211_ibss_params *params);
2557 int (*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
b9a5f8ca 2558
f4e583c8
AQ
2559 int (*set_mcast_rate)(struct wiphy *wiphy, struct net_device *dev,
2560 int rate[IEEE80211_NUM_BANDS]);
2561
b9a5f8ca 2562 int (*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
7643a2c3 2563
c8442118 2564 int (*set_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
fa61cf70 2565 enum nl80211_tx_power_setting type, int mbm);
c8442118
JB
2566 int (*get_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
2567 int *dbm);
1f87f7d3 2568
ab737a4f 2569 int (*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
388ac775 2570 const u8 *addr);
ab737a4f 2571
1f87f7d3 2572 void (*rfkill_poll)(struct wiphy *wiphy);
aff89a9b
JB
2573
2574#ifdef CONFIG_NL80211_TESTMODE
fc73f11f
DS
2575 int (*testmode_cmd)(struct wiphy *wiphy, struct wireless_dev *wdev,
2576 void *data, int len);
71063f0e
WYG
2577 int (*testmode_dump)(struct wiphy *wiphy, struct sk_buff *skb,
2578 struct netlink_callback *cb,
2579 void *data, int len);
aff89a9b 2580#endif
bc92afd9 2581
9930380f
JB
2582 int (*set_bitrate_mask)(struct wiphy *wiphy,
2583 struct net_device *dev,
2584 const u8 *peer,
2585 const struct cfg80211_bitrate_mask *mask);
2586
61fa713c
HS
2587 int (*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
2588 int idx, struct survey_info *info);
2589
67fbb16b
SO
2590 int (*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
2591 struct cfg80211_pmksa *pmksa);
2592 int (*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
2593 struct cfg80211_pmksa *pmksa);
2594 int (*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
2595
9588bbd5 2596 int (*remain_on_channel)(struct wiphy *wiphy,
71bbc994 2597 struct wireless_dev *wdev,
9588bbd5 2598 struct ieee80211_channel *chan,
9588bbd5
JM
2599 unsigned int duration,
2600 u64 *cookie);
2601 int (*cancel_remain_on_channel)(struct wiphy *wiphy,
71bbc994 2602 struct wireless_dev *wdev,
9588bbd5
JM
2603 u64 cookie);
2604
71bbc994 2605 int (*mgmt_tx)(struct wiphy *wiphy, struct wireless_dev *wdev,
b176e629
AO
2606 struct cfg80211_mgmt_tx_params *params,
2607 u64 *cookie);
f7ca38df 2608 int (*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
71bbc994 2609 struct wireless_dev *wdev,
f7ca38df 2610 u64 cookie);
026331c4 2611
bc92afd9
JB
2612 int (*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
2613 bool enabled, int timeout);
d6dc1a38
JO
2614
2615 int (*set_cqm_rssi_config)(struct wiphy *wiphy,
2616 struct net_device *dev,
2617 s32 rssi_thold, u32 rssi_hyst);
271733cf 2618
84f10708
TP
2619 int (*set_cqm_txe_config)(struct wiphy *wiphy,
2620 struct net_device *dev,
2621 u32 rate, u32 pkts, u32 intvl);
2622
271733cf 2623 void (*mgmt_frame_register)(struct wiphy *wiphy,
71bbc994 2624 struct wireless_dev *wdev,
271733cf 2625 u16 frame_type, bool reg);
afe0cbf8
BR
2626
2627 int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
2628 int (*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
3677713b 2629
807f8a8c
LC
2630 int (*sched_scan_start)(struct wiphy *wiphy,
2631 struct net_device *dev,
2632 struct cfg80211_sched_scan_request *request);
85a9994a 2633 int (*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev);
e5497d76
JB
2634
2635 int (*set_rekey_data)(struct wiphy *wiphy, struct net_device *dev,
2636 struct cfg80211_gtk_rekey_data *data);
109086ce
AN
2637
2638 int (*tdls_mgmt)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2639 const u8 *peer, u8 action_code, u8 dialog_token,
df942e7b 2640 u16 status_code, u32 peer_capability,
31fa97c5 2641 bool initiator, const u8 *buf, size_t len);
109086ce 2642 int (*tdls_oper)(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 2643 const u8 *peer, enum nl80211_tdls_operation oper);
7f6cf311
JB
2644
2645 int (*probe_client)(struct wiphy *wiphy, struct net_device *dev,
2646 const u8 *peer, u64 *cookie);
e999882a 2647
1d9d9213
SW
2648 int (*set_noack_map)(struct wiphy *wiphy,
2649 struct net_device *dev,
2650 u16 noack_map);
2651
683b6d3b 2652 int (*get_channel)(struct wiphy *wiphy,
5b7ccaf3 2653 struct wireless_dev *wdev,
683b6d3b 2654 struct cfg80211_chan_def *chandef);
98104fde
JB
2655
2656 int (*start_p2p_device)(struct wiphy *wiphy,
2657 struct wireless_dev *wdev);
2658 void (*stop_p2p_device)(struct wiphy *wiphy,
2659 struct wireless_dev *wdev);
77765eaf
VT
2660
2661 int (*set_mac_acl)(struct wiphy *wiphy, struct net_device *dev,
2662 const struct cfg80211_acl_data *params);
04f39047
SW
2663
2664 int (*start_radar_detection)(struct wiphy *wiphy,
2665 struct net_device *dev,
31559f35
JD
2666 struct cfg80211_chan_def *chandef,
2667 u32 cac_time_ms);
355199e0
JM
2668 int (*update_ft_ies)(struct wiphy *wiphy, struct net_device *dev,
2669 struct cfg80211_update_ft_ies_params *ftie);
5de17984
AS
2670 int (*crit_proto_start)(struct wiphy *wiphy,
2671 struct wireless_dev *wdev,
2672 enum nl80211_crit_proto_id protocol,
2673 u16 duration);
2674 void (*crit_proto_stop)(struct wiphy *wiphy,
2675 struct wireless_dev *wdev);
be29b99a
AK
2676 int (*set_coalesce)(struct wiphy *wiphy,
2677 struct cfg80211_coalesce *coalesce);
16ef1fe2
SW
2678
2679 int (*channel_switch)(struct wiphy *wiphy,
2680 struct net_device *dev,
2681 struct cfg80211_csa_settings *params);
e16821bc 2682
fa9ffc74
KP
2683 int (*set_qos_map)(struct wiphy *wiphy,
2684 struct net_device *dev,
2685 struct cfg80211_qos_map *qos_map);
e16821bc
JM
2686
2687 int (*set_ap_chanwidth)(struct wiphy *wiphy, struct net_device *dev,
2688 struct cfg80211_chan_def *chandef);
960d01ac
JB
2689
2690 int (*add_tx_ts)(struct wiphy *wiphy, struct net_device *dev,
2691 u8 tsid, const u8 *peer, u8 user_prio,
2692 u16 admitted_time);
2693 int (*del_tx_ts)(struct wiphy *wiphy, struct net_device *dev,
2694 u8 tsid, const u8 *peer);
1057d35e
AN
2695
2696 int (*tdls_channel_switch)(struct wiphy *wiphy,
2697 struct net_device *dev,
2698 const u8 *addr, u8 oper_class,
2699 struct cfg80211_chan_def *chandef);
2700 void (*tdls_cancel_channel_switch)(struct wiphy *wiphy,
2701 struct net_device *dev,
2702 const u8 *addr);
704232c2
JB
2703};
2704
d3236553
JB
2705/*
2706 * wireless hardware and networking interfaces structures
2707 * and registration/helper functions
2708 */
2709
2710/**
5be83de5
JB
2711 * enum wiphy_flags - wiphy capability flags
2712 *
5be83de5
JB
2713 * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
2714 * wiphy at all
2715 * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
2716 * by default -- this flag will be set depending on the kernel's default
2717 * on wiphy_new(), but can be changed by the driver if it has a good
2718 * reason to override the default
9bc383de
JB
2719 * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
2720 * on a VLAN interface)
2721 * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
c0692b8f
JB
2722 * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
2723 * control port protocol ethertype. The device also honours the
2724 * control_port_no_encrypt flag.
e31b8213 2725 * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
15d5dda6
JC
2726 * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
2727 * auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
1ba01458 2728 * @WIPHY_FLAG_SUPPORTS_SCHED_SCAN: The device supports scheduled scans.
f4b34b55
VN
2729 * @WIPHY_FLAG_SUPPORTS_FW_ROAM: The device supports roaming feature in the
2730 * firmware.
cedb5412 2731 * @WIPHY_FLAG_AP_UAPSD: The device supports uapsd on AP.
109086ce
AN
2732 * @WIPHY_FLAG_SUPPORTS_TDLS: The device supports TDLS (802.11z) operation.
2733 * @WIPHY_FLAG_TDLS_EXTERNAL_SETUP: The device does not handle TDLS (802.11z)
2734 * link setup/discovery operations internally. Setup, discovery and
2735 * teardown packets should be sent through the @NL80211_CMD_TDLS_MGMT
2736 * command. When this flag is not set, @NL80211_CMD_TDLS_OPER should be
2737 * used for asking the driver/firmware to perform a TDLS operation.
562a7480 2738 * @WIPHY_FLAG_HAVE_AP_SME: device integrates AP SME
5e760230
JB
2739 * @WIPHY_FLAG_REPORTS_OBSS: the device will report beacons from other BSSes
2740 * when there are virtual interfaces in AP mode by calling
2741 * cfg80211_report_obss_beacon().
87bbbe22
AN
2742 * @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD: When operating as an AP, the device
2743 * responds to probe-requests in hardware.
7c4ef712
JB
2744 * @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
2745 * @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
2f301ab2 2746 * @WIPHY_FLAG_SUPPORTS_5_10_MHZ: Device supports 5 MHz and 10 MHz channels.
16ef1fe2
SW
2747 * @WIPHY_FLAG_HAS_CHANNEL_SWITCH: Device supports channel switch in
2748 * beaconing mode (AP, IBSS, Mesh, ...).
5be83de5
JB
2749 */
2750enum wiphy_flags {
723e73ac 2751 /* use hole at 0 */
a2f73b6c
LR
2752 /* use hole at 1 */
2753 /* use hole at 2 */
c0692b8f
JB
2754 WIPHY_FLAG_NETNS_OK = BIT(3),
2755 WIPHY_FLAG_PS_ON_BY_DEFAULT = BIT(4),
2756 WIPHY_FLAG_4ADDR_AP = BIT(5),
2757 WIPHY_FLAG_4ADDR_STATION = BIT(6),
2758 WIPHY_FLAG_CONTROL_PORT_PROTOCOL = BIT(7),
309075cf 2759 WIPHY_FLAG_IBSS_RSN = BIT(8),
15d5dda6 2760 WIPHY_FLAG_MESH_AUTH = BIT(10),
807f8a8c 2761 WIPHY_FLAG_SUPPORTS_SCHED_SCAN = BIT(11),
8e8b41f9 2762 /* use hole at 12 */
f4b34b55 2763 WIPHY_FLAG_SUPPORTS_FW_ROAM = BIT(13),
cedb5412 2764 WIPHY_FLAG_AP_UAPSD = BIT(14),
109086ce
AN
2765 WIPHY_FLAG_SUPPORTS_TDLS = BIT(15),
2766 WIPHY_FLAG_TDLS_EXTERNAL_SETUP = BIT(16),
562a7480 2767 WIPHY_FLAG_HAVE_AP_SME = BIT(17),
5e760230 2768 WIPHY_FLAG_REPORTS_OBSS = BIT(18),
87bbbe22 2769 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD = BIT(19),
7c4ef712
JB
2770 WIPHY_FLAG_OFFCHAN_TX = BIT(20),
2771 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = BIT(21),
2f301ab2 2772 WIPHY_FLAG_SUPPORTS_5_10_MHZ = BIT(22),
16ef1fe2 2773 WIPHY_FLAG_HAS_CHANNEL_SWITCH = BIT(23),
7527a782
JB
2774};
2775
2776/**
2777 * struct ieee80211_iface_limit - limit on certain interface types
2778 * @max: maximum number of interfaces of these types
2779 * @types: interface types (bits)
2780 */
2781struct ieee80211_iface_limit {
2782 u16 max;
2783 u16 types;
2784};
2785
2786/**
2787 * struct ieee80211_iface_combination - possible interface combination
2788 * @limits: limits for the given interface types
2789 * @n_limits: number of limitations
2790 * @num_different_channels: can use up to this many different channels
2791 * @max_interfaces: maximum number of interfaces in total allowed in this
2792 * group
2793 * @beacon_int_infra_match: In this combination, the beacon intervals
2794 * between infrastructure and AP types must match. This is required
2795 * only in special cases.
11c4a075 2796 * @radar_detect_widths: bitmap of channel widths supported for radar detection
8c48b50a 2797 * @radar_detect_regions: bitmap of regions supported for radar detection
7527a782 2798 *
b80edbc1
LC
2799 * With this structure the driver can describe which interface
2800 * combinations it supports concurrently.
7527a782 2801 *
b80edbc1
LC
2802 * Examples:
2803 *
2804 * 1. Allow #STA <= 1, #AP <= 1, matching BI, channels = 1, 2 total:
7527a782
JB
2805 *
2806 * struct ieee80211_iface_limit limits1[] = {
2807 * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
2808 * { .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
2809 * };
2810 * struct ieee80211_iface_combination combination1 = {
2811 * .limits = limits1,
2812 * .n_limits = ARRAY_SIZE(limits1),
2813 * .max_interfaces = 2,
2814 * .beacon_int_infra_match = true,
2815 * };
2816 *
2817 *
b80edbc1 2818 * 2. Allow #{AP, P2P-GO} <= 8, channels = 1, 8 total:
7527a782
JB
2819 *
2820 * struct ieee80211_iface_limit limits2[] = {
2821 * { .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
2822 * BIT(NL80211_IFTYPE_P2P_GO), },
2823 * };
2824 * struct ieee80211_iface_combination combination2 = {
2825 * .limits = limits2,
2826 * .n_limits = ARRAY_SIZE(limits2),
2827 * .max_interfaces = 8,
2828 * .num_different_channels = 1,
2829 * };
2830 *
2831 *
b80edbc1
LC
2832 * 3. Allow #STA <= 1, #{P2P-client,P2P-GO} <= 3 on two channels, 4 total.
2833 *
7527a782
JB
2834 * This allows for an infrastructure connection and three P2P connections.
2835 *
2836 * struct ieee80211_iface_limit limits3[] = {
2837 * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
2838 * { .max = 3, .types = BIT(NL80211_IFTYPE_P2P_GO) |
2839 * BIT(NL80211_IFTYPE_P2P_CLIENT), },
2840 * };
2841 * struct ieee80211_iface_combination combination3 = {
2842 * .limits = limits3,
2843 * .n_limits = ARRAY_SIZE(limits3),
2844 * .max_interfaces = 4,
2845 * .num_different_channels = 2,
2846 * };
2847 */
2848struct ieee80211_iface_combination {
2849 const struct ieee80211_iface_limit *limits;
2850 u32 num_different_channels;
2851 u16 max_interfaces;
2852 u8 n_limits;
2853 bool beacon_int_infra_match;
11c4a075 2854 u8 radar_detect_widths;
8c48b50a 2855 u8 radar_detect_regions;
5be83de5
JB
2856};
2857
2e161f78
JB
2858struct ieee80211_txrx_stypes {
2859 u16 tx, rx;
2860};
2861
ff1b6e69
JB
2862/**
2863 * enum wiphy_wowlan_support_flags - WoWLAN support flags
2864 * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
2865 * trigger that keeps the device operating as-is and
2866 * wakes up the host on any activity, for example a
2867 * received packet that passed filtering; note that the
2868 * packet should be preserved in that case
2869 * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
2870 * (see nl80211.h)
2871 * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
77dbbb13
JB
2872 * @WIPHY_WOWLAN_SUPPORTS_GTK_REKEY: supports GTK rekeying while asleep
2873 * @WIPHY_WOWLAN_GTK_REKEY_FAILURE: supports wakeup on GTK rekey failure
2874 * @WIPHY_WOWLAN_EAP_IDENTITY_REQ: supports wakeup on EAP identity request
2875 * @WIPHY_WOWLAN_4WAY_HANDSHAKE: supports wakeup on 4-way handshake failure
2876 * @WIPHY_WOWLAN_RFKILL_RELEASE: supports wakeup on RF-kill release
8cd4d456 2877 * @WIPHY_WOWLAN_NET_DETECT: supports wakeup on network detection
ff1b6e69
JB
2878 */
2879enum wiphy_wowlan_support_flags {
77dbbb13
JB
2880 WIPHY_WOWLAN_ANY = BIT(0),
2881 WIPHY_WOWLAN_MAGIC_PKT = BIT(1),
2882 WIPHY_WOWLAN_DISCONNECT = BIT(2),
2883 WIPHY_WOWLAN_SUPPORTS_GTK_REKEY = BIT(3),
2884 WIPHY_WOWLAN_GTK_REKEY_FAILURE = BIT(4),
2885 WIPHY_WOWLAN_EAP_IDENTITY_REQ = BIT(5),
2886 WIPHY_WOWLAN_4WAY_HANDSHAKE = BIT(6),
2887 WIPHY_WOWLAN_RFKILL_RELEASE = BIT(7),
8cd4d456 2888 WIPHY_WOWLAN_NET_DETECT = BIT(8),
ff1b6e69
JB
2889};
2890
2a0e047e
JB
2891struct wiphy_wowlan_tcp_support {
2892 const struct nl80211_wowlan_tcp_data_token_feature *tok;
2893 u32 data_payload_max;
2894 u32 data_interval_max;
2895 u32 wake_payload_max;
2896 bool seq;
2897};
2898
ff1b6e69
JB
2899/**
2900 * struct wiphy_wowlan_support - WoWLAN support data
2901 * @flags: see &enum wiphy_wowlan_support_flags
2902 * @n_patterns: number of supported wakeup patterns
2903 * (see nl80211.h for the pattern definition)
2904 * @pattern_max_len: maximum length of each pattern
2905 * @pattern_min_len: minimum length of each pattern
bb92d199 2906 * @max_pkt_offset: maximum Rx packet offset
8cd4d456
LC
2907 * @max_nd_match_sets: maximum number of matchsets for net-detect,
2908 * similar, but not necessarily identical, to max_match_sets for
2909 * scheduled scans.
2910 * See &struct cfg80211_sched_scan_request.@match_sets for more
2911 * details.
2a0e047e 2912 * @tcp: TCP wakeup support information
ff1b6e69
JB
2913 */
2914struct wiphy_wowlan_support {
2915 u32 flags;
2916 int n_patterns;
2917 int pattern_max_len;
2918 int pattern_min_len;
bb92d199 2919 int max_pkt_offset;
8cd4d456 2920 int max_nd_match_sets;
2a0e047e 2921 const struct wiphy_wowlan_tcp_support *tcp;
ff1b6e69
JB
2922};
2923
be29b99a
AK
2924/**
2925 * struct wiphy_coalesce_support - coalesce support data
2926 * @n_rules: maximum number of coalesce rules
2927 * @max_delay: maximum supported coalescing delay in msecs
2928 * @n_patterns: number of supported patterns in a rule
2929 * (see nl80211.h for the pattern definition)
2930 * @pattern_max_len: maximum length of each pattern
2931 * @pattern_min_len: minimum length of each pattern
2932 * @max_pkt_offset: maximum Rx packet offset
2933 */
2934struct wiphy_coalesce_support {
2935 int n_rules;
2936 int max_delay;
2937 int n_patterns;
2938 int pattern_max_len;
2939 int pattern_min_len;
2940 int max_pkt_offset;
2941};
2942
ad7e718c
JB
2943/**
2944 * enum wiphy_vendor_command_flags - validation flags for vendor commands
2945 * @WIPHY_VENDOR_CMD_NEED_WDEV: vendor command requires wdev
2946 * @WIPHY_VENDOR_CMD_NEED_NETDEV: vendor command requires netdev
2947 * @WIPHY_VENDOR_CMD_NEED_RUNNING: interface/wdev must be up & running
2948 * (must be combined with %_WDEV or %_NETDEV)
2949 */
2950enum wiphy_vendor_command_flags {
2951 WIPHY_VENDOR_CMD_NEED_WDEV = BIT(0),
2952 WIPHY_VENDOR_CMD_NEED_NETDEV = BIT(1),
2953 WIPHY_VENDOR_CMD_NEED_RUNNING = BIT(2),
2954};
2955
2956/**
2957 * struct wiphy_vendor_command - vendor command definition
2958 * @info: vendor command identifying information, as used in nl80211
2959 * @flags: flags, see &enum wiphy_vendor_command_flags
2960 * @doit: callback for the operation, note that wdev is %NULL if the
2961 * flags didn't ask for a wdev and non-%NULL otherwise; the data
2962 * pointer may be %NULL if userspace provided no data at all
2963 */
2964struct wiphy_vendor_command {
2965 struct nl80211_vendor_cmd_info info;
2966 u32 flags;
2967 int (*doit)(struct wiphy *wiphy, struct wireless_dev *wdev,
2968 const void *data, int data_len);
2969};
2970
5be83de5
JB
2971/**
2972 * struct wiphy - wireless hardware description
2784fe91
LR
2973 * @reg_notifier: the driver's regulatory notification callback,
2974 * note that if your driver uses wiphy_apply_custom_regulatory()
2975 * the reg_notifier's request can be passed as NULL
d3236553
JB
2976 * @regd: the driver's regulatory domain, if one was requested via
2977 * the regulatory_hint() API. This can be used by the driver
2978 * on the reg_notifier() if it chooses to ignore future
2979 * regulatory domain changes caused by other drivers.
2980 * @signal_type: signal type reported in &struct cfg80211_bss.
2981 * @cipher_suites: supported cipher suites
2982 * @n_cipher_suites: number of supported cipher suites
b9a5f8ca
JM
2983 * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
2984 * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
2985 * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
2986 * -1 = fragmentation disabled, only odd values >= 256 used
2987 * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
abe37c4b 2988 * @_net: the network namespace this wiphy currently lives in
ef15aac6
JB
2989 * @perm_addr: permanent MAC address of this device
2990 * @addr_mask: If the device supports multiple MAC addresses by masking,
2991 * set this to a mask with variable bits set to 1, e.g. if the last
0fcf8ac5 2992 * four bits are variable then set it to 00-00-00-00-00-0f. The actual
ef15aac6
JB
2993 * variable bits shall be determined by the interfaces added, with
2994 * interfaces not matching the mask being rejected to be brought up.
2995 * @n_addresses: number of addresses in @addresses.
2996 * @addresses: If the device has more than one address, set this pointer
2997 * to a list of addresses (6 bytes each). The first one will be used
2998 * by default for perm_addr. In this case, the mask should be set to
2999 * all-zeroes. In this case it is assumed that the device can handle
3000 * the same number of arbitrary MAC addresses.
fd235913
RD
3001 * @registered: protects ->resume and ->suspend sysfs callbacks against
3002 * unregister hardware
abe37c4b
JB
3003 * @debugfsdir: debugfs directory used for this wiphy, will be renamed
3004 * automatically on wiphy renames
3005 * @dev: (virtual) struct device for this wiphy
4a711a85 3006 * @registered: helps synchronize suspend/resume with wiphy unregister
abe37c4b
JB
3007 * @wext: wireless extension handlers
3008 * @priv: driver private data (sized according to wiphy_new() parameter)
3009 * @interface_modes: bitmask of interfaces types valid for this wiphy,
3010 * must be set by driver
7527a782
JB
3011 * @iface_combinations: Valid interface combinations array, should not
3012 * list single interface types.
3013 * @n_iface_combinations: number of entries in @iface_combinations array.
3014 * @software_iftypes: bitmask of software interface types, these are not
3015 * subject to any restrictions since they are purely managed in SW.
abe37c4b 3016 * @flags: wiphy flags, see &enum wiphy_flags
a2f73b6c
LR
3017 * @regulatory_flags: wiphy regulatory flags, see
3018 * &enum ieee80211_regulatory_flags
1f074bd8 3019 * @features: features advertised to nl80211, see &enum nl80211_feature_flags.
d75bb06b
GKS
3020 * @ext_features: extended features advertised to nl80211, see
3021 * &enum nl80211_ext_feature_index.
abe37c4b
JB
3022 * @bss_priv_size: each BSS struct has private data allocated with it,
3023 * this variable determines its size
3024 * @max_scan_ssids: maximum number of SSIDs the device can scan for in
3025 * any given scan
93b6aa69
LC
3026 * @max_sched_scan_ssids: maximum number of SSIDs the device can scan
3027 * for in any given scheduled scan
a1f1c21c
LC
3028 * @max_match_sets: maximum number of match sets the device can handle
3029 * when performing a scheduled scan, 0 if filtering is not
3030 * supported.
abe37c4b
JB
3031 * @max_scan_ie_len: maximum length of user-controlled IEs device can
3032 * add to probe request frames transmitted during a scan, must not
3033 * include fixed IEs like supported rates
5a865bad
LC
3034 * @max_sched_scan_ie_len: same as max_scan_ie_len, but for scheduled
3035 * scans
abe37c4b
JB
3036 * @coverage_class: current coverage class
3037 * @fw_version: firmware version for ethtool reporting
3038 * @hw_version: hardware version for ethtool reporting
3039 * @max_num_pmkids: maximum number of PMKIDs supported by device
3040 * @privid: a pointer that drivers can use to identify if an arbitrary
3041 * wiphy is theirs, e.g. in global notifiers
3042 * @bands: information about bands/channels supported by this device
2e161f78
JB
3043 *
3044 * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
3045 * transmitted through nl80211, points to an array indexed by interface
3046 * type
a7ffac95 3047 *
7f531e03
BR
3048 * @available_antennas_tx: bitmap of antennas which are available to be
3049 * configured as TX antennas. Antenna configuration commands will be
3050 * rejected unless this or @available_antennas_rx is set.
3051 *
3052 * @available_antennas_rx: bitmap of antennas which are available to be
3053 * configured as RX antennas. Antenna configuration commands will be
3054 * rejected unless this or @available_antennas_tx is set.
a293911d 3055 *
15f0ebc2
RD
3056 * @probe_resp_offload:
3057 * Bitmap of supported protocols for probe response offloading.
3058 * See &enum nl80211_probe_resp_offload_support_attr. Only valid
3059 * when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
3060 *
a293911d
JB
3061 * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
3062 * may request, if implemented.
ff1b6e69
JB
3063 *
3064 * @wowlan: WoWLAN support information
6abb9cb9
JB
3065 * @wowlan_config: current WoWLAN configuration; this should usually not be
3066 * used since access to it is necessarily racy, use the parameter passed
3067 * to the suspend() operation instead.
562a7480
JB
3068 *
3069 * @ap_sme_capa: AP SME capabilities, flags from &enum nl80211_ap_sme_features.
7e7c8926
BG
3070 * @ht_capa_mod_mask: Specify what ht_cap values can be over-ridden.
3071 * If null, then none can be over-ridden.
ee2aca34
JB
3072 * @vht_capa_mod_mask: Specify what VHT capabilities can be over-ridden.
3073 * If null, then none can be over-ridden.
77765eaf
VT
3074 *
3075 * @max_acl_mac_addrs: Maximum number of MAC addresses that the device
3076 * supports for ACL.
a50df0c4
JB
3077 *
3078 * @extended_capabilities: extended capabilities supported by the driver,
3079 * additional capabilities might be supported by userspace; these are
3080 * the 802.11 extended capabilities ("Extended Capabilities element")
3081 * and are in the same format as in the information element. See
3082 * 802.11-2012 8.4.2.29 for the defined fields.
3083 * @extended_capabilities_mask: mask of the valid values
3084 * @extended_capabilities_len: length of the extended capabilities
be29b99a 3085 * @coalesce: packet coalescing support information
ad7e718c
JB
3086 *
3087 * @vendor_commands: array of vendor commands supported by the hardware
3088 * @n_vendor_commands: number of vendor commands
567ffc35
JB
3089 * @vendor_events: array of vendor events supported by the hardware
3090 * @n_vendor_events: number of vendor events
b43504cf
JM
3091 *
3092 * @max_ap_assoc_sta: maximum number of associated stations supported in AP mode
3093 * (including P2P GO) or 0 to indicate no such limit is advertised. The
3094 * driver is allowed to advertise a theoretical limit that it can reach in
3095 * some cases, but may not always reach.
c2e4323b
LC
3096 *
3097 * @max_num_csa_counters: Number of supported csa_counters in beacons
3098 * and probe responses. This value should be set if the driver
3099 * wishes to limit the number of csa counters. Default (0) means
3100 * infinite.
67af9811
EG
3101 * @max_adj_channel_rssi_comp: max offset of between the channel on which the
3102 * frame was sent and the channel on which the frame was heard for which
3103 * the reported rssi is still valid. If a driver is able to compensate the
3104 * low rssi when a frame is heard on different channel, then it should set
3105 * this variable to the maximal offset for which it can compensate.
3106 * This value should be set in MHz.
d3236553
JB
3107 */
3108struct wiphy {
3109 /* assign these fields before you register the wiphy */
3110
ef15aac6 3111 /* permanent MAC address(es) */
d3236553 3112 u8 perm_addr[ETH_ALEN];
ef15aac6
JB
3113 u8 addr_mask[ETH_ALEN];
3114
ef15aac6 3115 struct mac_address *addresses;
d3236553 3116
2e161f78
JB
3117 const struct ieee80211_txrx_stypes *mgmt_stypes;
3118
7527a782
JB
3119 const struct ieee80211_iface_combination *iface_combinations;
3120 int n_iface_combinations;
3121 u16 software_iftypes;
3122
2e161f78
JB
3123 u16 n_addresses;
3124
d3236553
JB
3125 /* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
3126 u16 interface_modes;
3127
77765eaf
VT
3128 u16 max_acl_mac_addrs;
3129
a2f73b6c 3130 u32 flags, regulatory_flags, features;
d75bb06b 3131 u8 ext_features[DIV_ROUND_UP(NUM_NL80211_EXT_FEATURES, 8)];
463d0183 3132
562a7480
JB
3133 u32 ap_sme_capa;
3134
d3236553
JB
3135 enum cfg80211_signal_type signal_type;
3136
3137 int bss_priv_size;
3138 u8 max_scan_ssids;
93b6aa69 3139 u8 max_sched_scan_ssids;
a1f1c21c 3140 u8 max_match_sets;
d3236553 3141 u16 max_scan_ie_len;
5a865bad 3142 u16 max_sched_scan_ie_len;
d3236553
JB
3143
3144 int n_cipher_suites;
3145 const u32 *cipher_suites;
3146
b9a5f8ca
JM
3147 u8 retry_short;
3148 u8 retry_long;
3149 u32 frag_threshold;
3150 u32 rts_threshold;
81077e82 3151 u8 coverage_class;
b9a5f8ca 3152
81135548 3153 char fw_version[ETHTOOL_FWVERS_LEN];
dfce95f5
KV
3154 u32 hw_version;
3155
dfb89c56 3156#ifdef CONFIG_PM
964dc9e2 3157 const struct wiphy_wowlan_support *wowlan;
6abb9cb9 3158 struct cfg80211_wowlan *wowlan_config;
dfb89c56 3159#endif
ff1b6e69 3160
a293911d
JB
3161 u16 max_remain_on_channel_duration;
3162
67fbb16b
SO
3163 u8 max_num_pmkids;
3164
7f531e03
BR
3165 u32 available_antennas_tx;
3166 u32 available_antennas_rx;
a7ffac95 3167
87bbbe22
AN
3168 /*
3169 * Bitmap of supported protocols for probe response offloading
3170 * see &enum nl80211_probe_resp_offload_support_attr. Only valid
3171 * when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
3172 */
3173 u32 probe_resp_offload;
3174
a50df0c4
JB
3175 const u8 *extended_capabilities, *extended_capabilities_mask;
3176 u8 extended_capabilities_len;
3177
d3236553
JB
3178 /* If multiple wiphys are registered and you're handed e.g.
3179 * a regular netdev with assigned ieee80211_ptr, you won't
3180 * know whether it points to a wiphy your driver has registered
3181 * or not. Assign this to something global to your driver to
3182 * help determine whether you own this wiphy or not. */
cf5aa2f1 3183 const void *privid;
d3236553
JB
3184
3185 struct ieee80211_supported_band *bands[IEEE80211_NUM_BANDS];
3186
3187 /* Lets us get back the wiphy on the callback */
0c0280bd
LR
3188 void (*reg_notifier)(struct wiphy *wiphy,
3189 struct regulatory_request *request);
d3236553
JB
3190
3191 /* fields below are read-only, assigned by cfg80211 */
3192
458f4f9e 3193 const struct ieee80211_regdomain __rcu *regd;
d3236553
JB
3194
3195 /* the item in /sys/class/ieee80211/ points to this,
3196 * you need use set_wiphy_dev() (see below) */
3197 struct device dev;
3198
ecb44335
SG
3199 /* protects ->resume, ->suspend sysfs callbacks against unregister hw */
3200 bool registered;
3201
d3236553
JB
3202 /* dir in debugfs: ieee80211/<wiphyname> */
3203 struct dentry *debugfsdir;
3204
7e7c8926 3205 const struct ieee80211_ht_cap *ht_capa_mod_mask;
ee2aca34 3206 const struct ieee80211_vht_cap *vht_capa_mod_mask;
7e7c8926 3207
463d0183
JB
3208#ifdef CONFIG_NET_NS
3209 /* the network namespace this phy lives in currently */
3210 struct net *_net;
3211#endif
3212
3d23e349
JB
3213#ifdef CONFIG_CFG80211_WEXT
3214 const struct iw_handler_def *wext;
3215#endif
3216
be29b99a
AK
3217 const struct wiphy_coalesce_support *coalesce;
3218
ad7e718c 3219 const struct wiphy_vendor_command *vendor_commands;
567ffc35
JB
3220 const struct nl80211_vendor_cmd_info *vendor_events;
3221 int n_vendor_commands, n_vendor_events;
ad7e718c 3222
b43504cf
JM
3223 u16 max_ap_assoc_sta;
3224
9a774c78 3225 u8 max_num_csa_counters;
67af9811 3226 u8 max_adj_channel_rssi_comp;
9a774c78 3227
1c06ef98 3228 char priv[0] __aligned(NETDEV_ALIGN);
d3236553
JB
3229};
3230
463d0183
JB
3231static inline struct net *wiphy_net(struct wiphy *wiphy)
3232{
c2d9ba9b 3233 return read_pnet(&wiphy->_net);
463d0183
JB
3234}
3235
3236static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
3237{
c2d9ba9b 3238 write_pnet(&wiphy->_net, net);
463d0183 3239}
463d0183 3240
d3236553
JB
3241/**
3242 * wiphy_priv - return priv from wiphy
3243 *
3244 * @wiphy: the wiphy whose priv pointer to return
0ae997dc 3245 * Return: The priv of @wiphy.
d3236553
JB
3246 */
3247static inline void *wiphy_priv(struct wiphy *wiphy)
3248{
3249 BUG_ON(!wiphy);
3250 return &wiphy->priv;
3251}
3252
f1f74825
DK
3253/**
3254 * priv_to_wiphy - return the wiphy containing the priv
3255 *
3256 * @priv: a pointer previously returned by wiphy_priv
0ae997dc 3257 * Return: The wiphy of @priv.
f1f74825
DK
3258 */
3259static inline struct wiphy *priv_to_wiphy(void *priv)
3260{
3261 BUG_ON(!priv);
3262 return container_of(priv, struct wiphy, priv);
3263}
3264
d3236553
JB
3265/**
3266 * set_wiphy_dev - set device pointer for wiphy
3267 *
3268 * @wiphy: The wiphy whose device to bind
3269 * @dev: The device to parent it to
3270 */
3271static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
3272{
3273 wiphy->dev.parent = dev;
3274}
3275
3276/**
3277 * wiphy_dev - get wiphy dev pointer
3278 *
3279 * @wiphy: The wiphy whose device struct to look up
0ae997dc 3280 * Return: The dev of @wiphy.
d3236553
JB
3281 */
3282static inline struct device *wiphy_dev(struct wiphy *wiphy)
3283{
3284 return wiphy->dev.parent;
3285}
3286
3287/**
3288 * wiphy_name - get wiphy name
3289 *
3290 * @wiphy: The wiphy whose name to return
0ae997dc 3291 * Return: The name of @wiphy.
d3236553 3292 */
e1db74fc 3293static inline const char *wiphy_name(const struct wiphy *wiphy)
d3236553
JB
3294{
3295 return dev_name(&wiphy->dev);
3296}
3297
1998d90a
BG
3298/**
3299 * wiphy_new_nm - create a new wiphy for use with cfg80211
3300 *
3301 * @ops: The configuration operations for this device
3302 * @sizeof_priv: The size of the private area to allocate
3303 * @requested_name: Request a particular name.
3304 * NULL is valid value, and means use the default phy%d naming.
3305 *
3306 * Create a new wiphy and associate the given operations with it.
3307 * @sizeof_priv bytes are allocated for private use.
3308 *
3309 * Return: A pointer to the new wiphy. This pointer must be
3310 * assigned to each netdev's ieee80211_ptr for proper operation.
3311 */
3312struct wiphy *wiphy_new_nm(const struct cfg80211_ops *ops, int sizeof_priv,
3313 const char *requested_name);
3314
d3236553
JB
3315/**
3316 * wiphy_new - create a new wiphy for use with cfg80211
3317 *
3318 * @ops: The configuration operations for this device
3319 * @sizeof_priv: The size of the private area to allocate
3320 *
3321 * Create a new wiphy and associate the given operations with it.
3322 * @sizeof_priv bytes are allocated for private use.
3323 *
0ae997dc
YB
3324 * Return: A pointer to the new wiphy. This pointer must be
3325 * assigned to each netdev's ieee80211_ptr for proper operation.
d3236553 3326 */
1998d90a
BG
3327static inline struct wiphy *wiphy_new(const struct cfg80211_ops *ops,
3328 int sizeof_priv)
3329{
3330 return wiphy_new_nm(ops, sizeof_priv, NULL);
3331}
d3236553
JB
3332
3333/**
3334 * wiphy_register - register a wiphy with cfg80211
3335 *
3336 * @wiphy: The wiphy to register.
3337 *
0ae997dc 3338 * Return: A non-negative wiphy index or a negative error code.
d3236553 3339 */
10dd9b7c 3340int wiphy_register(struct wiphy *wiphy);
d3236553
JB
3341
3342/**
3343 * wiphy_unregister - deregister a wiphy from cfg80211
3344 *
3345 * @wiphy: The wiphy to unregister.
3346 *
3347 * After this call, no more requests can be made with this priv
3348 * pointer, but the call may sleep to wait for an outstanding
3349 * request that is being handled.
3350 */
10dd9b7c 3351void wiphy_unregister(struct wiphy *wiphy);
d3236553
JB
3352
3353/**
3354 * wiphy_free - free wiphy
3355 *
3356 * @wiphy: The wiphy to free
3357 */
10dd9b7c 3358void wiphy_free(struct wiphy *wiphy);
d3236553 3359
fffd0934 3360/* internal structs */
6829c878 3361struct cfg80211_conn;
19957bb3 3362struct cfg80211_internal_bss;
fffd0934 3363struct cfg80211_cached_keys;
19957bb3 3364
d3236553 3365/**
89a54e48 3366 * struct wireless_dev - wireless device state
d3236553 3367 *
89a54e48
JB
3368 * For netdevs, this structure must be allocated by the driver
3369 * that uses the ieee80211_ptr field in struct net_device (this
3370 * is intentional so it can be allocated along with the netdev.)
3371 * It need not be registered then as netdev registration will
3372 * be intercepted by cfg80211 to see the new wireless device.
3373 *
3374 * For non-netdev uses, it must also be allocated by the driver
3375 * in response to the cfg80211 callbacks that require it, as
3376 * there's no netdev registration in that case it may not be
3377 * allocated outside of callback operations that return it.
d3236553
JB
3378 *
3379 * @wiphy: pointer to hardware description
3380 * @iftype: interface type
3381 * @list: (private) Used to collect the interfaces
89a54e48
JB
3382 * @netdev: (private) Used to reference back to the netdev, may be %NULL
3383 * @identifier: (private) Identifier used in nl80211 to identify this
3384 * wireless device if it has no netdev
d3236553 3385 * @current_bss: (private) Used by the internal configuration code
9e0e2961
MK
3386 * @chandef: (private) Used by the internal configuration code to track
3387 * the user-set channel definition.
780b40df 3388 * @preset_chandef: (private) Used by the internal configuration code to
aa430da4 3389 * track the channel to be used for AP later
d3236553
JB
3390 * @bssid: (private) Used by the internal configuration code
3391 * @ssid: (private) Used by the internal configuration code
3392 * @ssid_len: (private) Used by the internal configuration code
29cbe68c
JB
3393 * @mesh_id_len: (private) Used by the internal configuration code
3394 * @mesh_id_up_len: (private) Used by the internal configuration code
d3236553 3395 * @wext: (private) Used by the internal wireless extensions compat code
9bc383de
JB
3396 * @use_4addr: indicates 4addr mode is used on this interface, must be
3397 * set by driver (if supported) on add_interface BEFORE registering the
3398 * netdev and may otherwise be used by driver read-only, will be update
3399 * by cfg80211 on change_interface
2e161f78
JB
3400 * @mgmt_registrations: list of registrations for management frames
3401 * @mgmt_registrations_lock: lock for the list
8d61ffa5
JB
3402 * @mtx: mutex used to lock data in this struct, may be used by drivers
3403 * and some API functions require it held
56d1893d
JB
3404 * @beacon_interval: beacon interval used on this device for transmitting
3405 * beacons, 0 when not valid
98104fde
JB
3406 * @address: The address for this device, valid only if @netdev is %NULL
3407 * @p2p_started: true if this is a P2P Device that has been started
04f39047
SW
3408 * @cac_started: true if DFS channel availability check has been started
3409 * @cac_start_time: timestamp (jiffies) when the dfs state was entered.
31559f35 3410 * @cac_time_ms: CAC time in ms
780b40df
JB
3411 * @ps: powersave mode is enabled
3412 * @ps_timeout: dynamic powersave timeout
3413 * @ap_unexpected_nlportid: (private) netlink port ID of application
3414 * registered for unexpected class 3 frames (AP mode)
3415 * @conn: (private) cfg80211 software SME connection state machine data
3416 * @connect_keys: (private) keys to set after connection is established
3417 * @ibss_fixed: (private) IBSS is using fixed BSSID
5336fa88 3418 * @ibss_dfs_possible: (private) IBSS may change to a DFS channel
780b40df
JB
3419 * @event_list: (private) list for internal event processing
3420 * @event_lock: (private) lock for event list
78f22b6a 3421 * @owner_nlportid: (private) owner socket port ID
d3236553
JB
3422 */
3423struct wireless_dev {
3424 struct wiphy *wiphy;
3425 enum nl80211_iftype iftype;
3426
667503dd 3427 /* the remainder of this struct should be private to cfg80211 */
d3236553
JB
3428 struct list_head list;
3429 struct net_device *netdev;
3430
89a54e48
JB
3431 u32 identifier;
3432
2e161f78
JB
3433 struct list_head mgmt_registrations;
3434 spinlock_t mgmt_registrations_lock;
026331c4 3435
667503dd
JB
3436 struct mutex mtx;
3437
98104fde
JB
3438 bool use_4addr, p2p_started;
3439
3440 u8 address[ETH_ALEN] __aligned(sizeof(u16));
9bc383de 3441
b23aa676 3442 /* currently used for IBSS and SME - might be rearranged later */
d3236553 3443 u8 ssid[IEEE80211_MAX_SSID_LEN];
29cbe68c 3444 u8 ssid_len, mesh_id_len, mesh_id_up_len;
6829c878 3445 struct cfg80211_conn *conn;
fffd0934 3446 struct cfg80211_cached_keys *connect_keys;
d3236553 3447
667503dd
JB
3448 struct list_head event_list;
3449 spinlock_t event_lock;
3450
19957bb3 3451 struct cfg80211_internal_bss *current_bss; /* associated / joined */
683b6d3b 3452 struct cfg80211_chan_def preset_chandef;
9e0e2961 3453 struct cfg80211_chan_def chandef;
f4489ebe 3454
c30a3d38 3455 bool ibss_fixed;
5336fa88 3456 bool ibss_dfs_possible;
c30a3d38 3457
ffb9eb3d
KV
3458 bool ps;
3459 int ps_timeout;
3460
56d1893d
JB
3461 int beacon_interval;
3462
15e47304 3463 u32 ap_unexpected_nlportid;
28946da7 3464
04f39047
SW
3465 bool cac_started;
3466 unsigned long cac_start_time;
31559f35 3467 unsigned int cac_time_ms;
04f39047 3468
78f22b6a
JB
3469 u32 owner_nlportid;
3470
3d23e349 3471#ifdef CONFIG_CFG80211_WEXT
d3236553 3472 /* wext data */
cbe8fa9c 3473 struct {
c238c8ac
JB
3474 struct cfg80211_ibss_params ibss;
3475 struct cfg80211_connect_params connect;
fffd0934 3476 struct cfg80211_cached_keys *keys;
c1e5f471 3477 const u8 *ie;
f2129354 3478 size_t ie_len;
f401a6f7 3479 u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
f2129354 3480 u8 ssid[IEEE80211_MAX_SSID_LEN];
08645126 3481 s8 default_key, default_mgmt_key;
ffb9eb3d 3482 bool prev_bssid_valid;
cbe8fa9c 3483 } wext;
d3236553
JB
3484#endif
3485};
3486
98104fde
JB
3487static inline u8 *wdev_address(struct wireless_dev *wdev)
3488{
3489 if (wdev->netdev)
3490 return wdev->netdev->dev_addr;
3491 return wdev->address;
3492}
3493
d3236553
JB
3494/**
3495 * wdev_priv - return wiphy priv from wireless_dev
3496 *
3497 * @wdev: The wireless device whose wiphy's priv pointer to return
0ae997dc 3498 * Return: The wiphy priv of @wdev.
d3236553
JB
3499 */
3500static inline void *wdev_priv(struct wireless_dev *wdev)
3501{
3502 BUG_ON(!wdev);
3503 return wiphy_priv(wdev->wiphy);
3504}
3505
d70e9693
JB
3506/**
3507 * DOC: Utility functions
3508 *
3509 * cfg80211 offers a number of utility functions that can be useful.
d3236553
JB
3510 */
3511
3512/**
3513 * ieee80211_channel_to_frequency - convert channel number to frequency
abe37c4b 3514 * @chan: channel number
59eb21a6 3515 * @band: band, necessary due to channel number overlap
0ae997dc 3516 * Return: The corresponding frequency (in MHz), or 0 if the conversion failed.
d3236553 3517 */
10dd9b7c 3518int ieee80211_channel_to_frequency(int chan, enum ieee80211_band band);
d3236553
JB
3519
3520/**
3521 * ieee80211_frequency_to_channel - convert frequency to channel number
abe37c4b 3522 * @freq: center frequency
0ae997dc 3523 * Return: The corresponding channel, or 0 if the conversion failed.
d3236553 3524 */
10dd9b7c 3525int ieee80211_frequency_to_channel(int freq);
d3236553
JB
3526
3527/*
3528 * Name indirection necessary because the ieee80211 code also has
3529 * a function named "ieee80211_get_channel", so if you include
3530 * cfg80211's header file you get cfg80211's version, if you try
3531 * to include both header files you'll (rightfully!) get a symbol
3532 * clash.
3533 */
10dd9b7c
JP
3534struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
3535 int freq);
d3236553
JB
3536/**
3537 * ieee80211_get_channel - get channel struct from wiphy for specified frequency
abe37c4b
JB
3538 * @wiphy: the struct wiphy to get the channel for
3539 * @freq: the center frequency of the channel
0ae997dc 3540 * Return: The channel struct from @wiphy at @freq.
d3236553
JB
3541 */
3542static inline struct ieee80211_channel *
3543ieee80211_get_channel(struct wiphy *wiphy, int freq)
3544{
3545 return __ieee80211_get_channel(wiphy, freq);
3546}
3547
3548/**
3549 * ieee80211_get_response_rate - get basic rate for a given rate
3550 *
3551 * @sband: the band to look for rates in
3552 * @basic_rates: bitmap of basic rates
3553 * @bitrate: the bitrate for which to find the basic rate
3554 *
0ae997dc
YB
3555 * Return: The basic rate corresponding to a given bitrate, that
3556 * is the next lower bitrate contained in the basic rate map,
3557 * which is, for this function, given as a bitmap of indices of
3558 * rates in the band's bitrate table.
d3236553
JB
3559 */
3560struct ieee80211_rate *
3561ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
3562 u32 basic_rates, int bitrate);
3563
b422c6cd
AN
3564/**
3565 * ieee80211_mandatory_rates - get mandatory rates for a given band
3566 * @sband: the band to look for rates in
74608aca 3567 * @scan_width: width of the control channel
b422c6cd
AN
3568 *
3569 * This function returns a bitmap of the mandatory rates for the given
3570 * band, bits are set according to the rate position in the bitrates array.
3571 */
74608aca
SW
3572u32 ieee80211_mandatory_rates(struct ieee80211_supported_band *sband,
3573 enum nl80211_bss_scan_width scan_width);
b422c6cd 3574
d3236553
JB
3575/*
3576 * Radiotap parsing functions -- for controlled injection support
3577 *
3578 * Implemented in net/wireless/radiotap.c
3579 * Documentation in Documentation/networking/radiotap-headers.txt
3580 */
3581
33e5a2f7
JB
3582struct radiotap_align_size {
3583 uint8_t align:4, size:4;
3584};
3585
3586struct ieee80211_radiotap_namespace {
3587 const struct radiotap_align_size *align_size;
3588 int n_bits;
3589 uint32_t oui;
3590 uint8_t subns;
3591};
3592
3593struct ieee80211_radiotap_vendor_namespaces {
3594 const struct ieee80211_radiotap_namespace *ns;
3595 int n_ns;
3596};
3597
d3236553
JB
3598/**
3599 * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
33e5a2f7
JB
3600 * @this_arg_index: index of current arg, valid after each successful call
3601 * to ieee80211_radiotap_iterator_next()
3602 * @this_arg: pointer to current radiotap arg; it is valid after each
3603 * call to ieee80211_radiotap_iterator_next() but also after
3604 * ieee80211_radiotap_iterator_init() where it will point to
3605 * the beginning of the actual data portion
3606 * @this_arg_size: length of the current arg, for convenience
3607 * @current_namespace: pointer to the current namespace definition
3608 * (or internally %NULL if the current namespace is unknown)
3609 * @is_radiotap_ns: indicates whether the current namespace is the default
3610 * radiotap namespace or not
3611 *
33e5a2f7
JB
3612 * @_rtheader: pointer to the radiotap header we are walking through
3613 * @_max_length: length of radiotap header in cpu byte ordering
3614 * @_arg_index: next argument index
3615 * @_arg: next argument pointer
3616 * @_next_bitmap: internal pointer to next present u32
3617 * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
3618 * @_vns: vendor namespace definitions
3619 * @_next_ns_data: beginning of the next namespace's data
3620 * @_reset_on_ext: internal; reset the arg index to 0 when going to the
3621 * next bitmap word
3622 *
3623 * Describes the radiotap parser state. Fields prefixed with an underscore
3624 * must not be used by users of the parser, only by the parser internally.
d3236553
JB
3625 */
3626
3627struct ieee80211_radiotap_iterator {
33e5a2f7
JB
3628 struct ieee80211_radiotap_header *_rtheader;
3629 const struct ieee80211_radiotap_vendor_namespaces *_vns;
3630 const struct ieee80211_radiotap_namespace *current_namespace;
3631
3632 unsigned char *_arg, *_next_ns_data;
67272440 3633 __le32 *_next_bitmap;
33e5a2f7
JB
3634
3635 unsigned char *this_arg;
d3236553 3636 int this_arg_index;
33e5a2f7 3637 int this_arg_size;
d3236553 3638
33e5a2f7
JB
3639 int is_radiotap_ns;
3640
3641 int _max_length;
3642 int _arg_index;
3643 uint32_t _bitmap_shifter;
3644 int _reset_on_ext;
d3236553
JB
3645};
3646
10dd9b7c
JP
3647int
3648ieee80211_radiotap_iterator_init(struct ieee80211_radiotap_iterator *iterator,
3649 struct ieee80211_radiotap_header *radiotap_header,
3650 int max_length,
3651 const struct ieee80211_radiotap_vendor_namespaces *vns);
d3236553 3652
10dd9b7c
JP
3653int
3654ieee80211_radiotap_iterator_next(struct ieee80211_radiotap_iterator *iterator);
33e5a2f7 3655
d3236553 3656
e31a16d6
ZY
3657extern const unsigned char rfc1042_header[6];
3658extern const unsigned char bridge_tunnel_header[6];
3659
3660/**
3661 * ieee80211_get_hdrlen_from_skb - get header length from data
3662 *
0ae997dc
YB
3663 * @skb: the frame
3664 *
e31a16d6 3665 * Given an skb with a raw 802.11 header at the data pointer this function
0ae997dc 3666 * returns the 802.11 header length.
e31a16d6 3667 *
0ae997dc
YB
3668 * Return: The 802.11 header length in bytes (not including encryption
3669 * headers). Or 0 if the data in the sk_buff is too short to contain a valid
3670 * 802.11 header.
e31a16d6
ZY
3671 */
3672unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
3673
3674/**
3675 * ieee80211_hdrlen - get header length in bytes from frame control
3676 * @fc: frame control field in little-endian format
0ae997dc 3677 * Return: The header length in bytes.
e31a16d6 3678 */
633adf1a 3679unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
e31a16d6 3680
9b395bc3
JB
3681/**
3682 * ieee80211_get_mesh_hdrlen - get mesh extension header length
3683 * @meshhdr: the mesh extension header, only the flags field
3684 * (first byte) will be accessed
0ae997dc 3685 * Return: The length of the extension header, which is always at
9b395bc3
JB
3686 * least 6 bytes and at most 18 if address 5 and 6 are present.
3687 */
3688unsigned int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr);
3689
d70e9693
JB
3690/**
3691 * DOC: Data path helpers
3692 *
3693 * In addition to generic utilities, cfg80211 also offers
3694 * functions that help implement the data path for devices
3695 * that do not do the 802.11/802.3 conversion on the device.
3696 */
3697
e31a16d6
ZY
3698/**
3699 * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
3700 * @skb: the 802.11 data frame
3701 * @addr: the device MAC address
3702 * @iftype: the virtual interface type
0ae997dc 3703 * Return: 0 on success. Non-zero on error.
e31a16d6 3704 */
eaf85ca7 3705int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
e31a16d6
ZY
3706 enum nl80211_iftype iftype);
3707
3708/**
3709 * ieee80211_data_from_8023 - convert an 802.3 frame to 802.11
3710 * @skb: the 802.3 frame
3711 * @addr: the device MAC address
3712 * @iftype: the virtual interface type
3713 * @bssid: the network bssid (used only for iftype STATION and ADHOC)
3714 * @qos: build 802.11 QoS data frame
0ae997dc 3715 * Return: 0 on success, or a negative error code.
e31a16d6 3716 */
eaf85ca7 3717int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
c1e5f471
JB
3718 enum nl80211_iftype iftype, const u8 *bssid,
3719 bool qos);
e31a16d6 3720
eaf85ca7
ZY
3721/**
3722 * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
3723 *
3724 * Decode an IEEE 802.11n A-MSDU frame and convert it to a list of
3725 * 802.3 frames. The @list will be empty if the decode fails. The
3726 * @skb is consumed after the function returns.
3727 *
3728 * @skb: The input IEEE 802.11n A-MSDU frame.
3729 * @list: The output list of 802.3 frames. It must be allocated and
3730 * initialized by by the caller.
3731 * @addr: The device MAC address.
3732 * @iftype: The device interface type.
3733 * @extra_headroom: The hardware extra headroom for SKBs in the @list.
8b3becad 3734 * @has_80211_header: Set it true if SKB is with IEEE 802.11 header.
eaf85ca7
ZY
3735 */
3736void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
3737 const u8 *addr, enum nl80211_iftype iftype,
8b3becad
YAP
3738 const unsigned int extra_headroom,
3739 bool has_80211_header);
eaf85ca7 3740
e31a16d6
ZY
3741/**
3742 * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
3743 * @skb: the data frame
fa9ffc74 3744 * @qos_map: Interworking QoS mapping or %NULL if not in use
0ae997dc 3745 * Return: The 802.1p/1d tag.
e31a16d6 3746 */
fa9ffc74
KP
3747unsigned int cfg80211_classify8021d(struct sk_buff *skb,
3748 struct cfg80211_qos_map *qos_map);
e31a16d6 3749
c21dbf92
JB
3750/**
3751 * cfg80211_find_ie - find information element in data
3752 *
3753 * @eid: element ID
3754 * @ies: data consisting of IEs
3755 * @len: length of data
3756 *
0ae997dc
YB
3757 * Return: %NULL if the element ID could not be found or if
3758 * the element is invalid (claims to be longer than the given
3759 * data), or a pointer to the first byte of the requested
3760 * element, that is the byte containing the element ID.
3761 *
3762 * Note: There are no checks on the element length other than
3763 * having to fit into the given data.
c21dbf92
JB
3764 */
3765const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len);
3766
0c28ec58
EP
3767/**
3768 * cfg80211_find_vendor_ie - find vendor specific information element in data
3769 *
3770 * @oui: vendor OUI
3771 * @oui_type: vendor-specific OUI type
3772 * @ies: data consisting of IEs
3773 * @len: length of data
3774 *
0ae997dc
YB
3775 * Return: %NULL if the vendor specific element ID could not be found or if the
3776 * element is invalid (claims to be longer than the given data), or a pointer to
3777 * the first byte of the requested element, that is the byte containing the
3778 * element ID.
3779 *
3780 * Note: There are no checks on the element length other than having to fit into
3781 * the given data.
0c28ec58
EP
3782 */
3783const u8 *cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type,
3784 const u8 *ies, int len);
3785
d70e9693
JB
3786/**
3787 * DOC: Regulatory enforcement infrastructure
3788 *
3789 * TODO
d3236553
JB
3790 */
3791
3792/**
3793 * regulatory_hint - driver hint to the wireless core a regulatory domain
3794 * @wiphy: the wireless device giving the hint (used only for reporting
3795 * conflicts)
3796 * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
3797 * should be in. If @rd is set this should be NULL. Note that if you
3798 * set this to NULL you should still set rd->alpha2 to some accepted
3799 * alpha2.
3800 *
3801 * Wireless drivers can use this function to hint to the wireless core
3802 * what it believes should be the current regulatory domain by
3803 * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
3804 * domain should be in or by providing a completely build regulatory domain.
3805 * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
3806 * for a regulatory domain structure for the respective country.
3807 *
3808 * The wiphy must have been registered to cfg80211 prior to this call.
3809 * For cfg80211 drivers this means you must first use wiphy_register(),
3810 * for mac80211 drivers you must first use ieee80211_register_hw().
3811 *
3812 * Drivers should check the return value, its possible you can get
3813 * an -ENOMEM.
0ae997dc
YB
3814 *
3815 * Return: 0 on success. -ENOMEM.
d3236553 3816 */
10dd9b7c 3817int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
d3236553 3818
b0d7aa59
JD
3819/**
3820 * regulatory_set_wiphy_regd - set regdom info for self managed drivers
3821 * @wiphy: the wireless device we want to process the regulatory domain on
3822 * @rd: the regulatory domain informatoin to use for this wiphy
3823 *
3824 * Set the regulatory domain information for self-managed wiphys, only they
3825 * may use this function. See %REGULATORY_WIPHY_SELF_MANAGED for more
3826 * information.
3827 *
3828 * Return: 0 on success. -EINVAL, -EPERM
3829 */
3830int regulatory_set_wiphy_regd(struct wiphy *wiphy,
3831 struct ieee80211_regdomain *rd);
3832
d3236553
JB
3833/**
3834 * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
3835 * @wiphy: the wireless device we want to process the regulatory domain on
3836 * @regd: the custom regulatory domain to use for this wiphy
3837 *
3838 * Drivers can sometimes have custom regulatory domains which do not apply
3839 * to a specific country. Drivers can use this to apply such custom regulatory
3840 * domains. This routine must be called prior to wiphy registration. The
3841 * custom regulatory domain will be trusted completely and as such previous
3842 * default channel settings will be disregarded. If no rule is found for a
3843 * channel on the regulatory domain the channel will be disabled.
222ea581 3844 * Drivers using this for a wiphy should also set the wiphy flag
ce26151b 3845 * REGULATORY_CUSTOM_REG or cfg80211 will set it for the wiphy
222ea581 3846 * that called this helper.
d3236553 3847 */
10dd9b7c
JP
3848void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
3849 const struct ieee80211_regdomain *regd);
d3236553
JB
3850
3851/**
3852 * freq_reg_info - get regulatory information for the given frequency
3853 * @wiphy: the wiphy for which we want to process this rule for
3854 * @center_freq: Frequency in KHz for which we want regulatory information for
d3236553
JB
3855 *
3856 * Use this function to get the regulatory rule for a specific frequency on
3857 * a given wireless device. If the device has a specific regulatory domain
3858 * it wants to follow we respect that unless a country IE has been received
3859 * and processed already.
3860 *
0ae997dc
YB
3861 * Return: A valid pointer, or, when an error occurs, for example if no rule
3862 * can be found, the return value is encoded using ERR_PTR(). Use IS_ERR() to
3863 * check and PTR_ERR() to obtain the numeric return value. The numeric return
3864 * value will be -ERANGE if we determine the given center_freq does not even
3865 * have a regulatory rule for a frequency range in the center_freq's band.
3866 * See freq_in_rule_band() for our current definition of a band -- this is
3867 * purely subjective and right now it's 802.11 specific.
d3236553 3868 */
361c9c8b
JB
3869const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
3870 u32 center_freq);
d3236553 3871
034c6d6e
LR
3872/**
3873 * reg_initiator_name - map regulatory request initiator enum to name
3874 * @initiator: the regulatory request initiator
3875 *
3876 * You can use this to map the regulatory request initiator enum to a
3877 * proper string representation.
3878 */
3879const char *reg_initiator_name(enum nl80211_reg_initiator initiator);
3880
d3236553
JB
3881/*
3882 * callbacks for asynchronous cfg80211 methods, notification
3883 * functions and BSS handling helpers
3884 */
3885
2a519311
JB
3886/**
3887 * cfg80211_scan_done - notify that scan finished
3888 *
3889 * @request: the corresponding scan request
3890 * @aborted: set to true if the scan was aborted for any reason,
3891 * userspace will be notified of that
3892 */
3893void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted);
3894
807f8a8c
LC
3895/**
3896 * cfg80211_sched_scan_results - notify that new scan results are available
3897 *
3898 * @wiphy: the wiphy which got scheduled scan results
3899 */
3900void cfg80211_sched_scan_results(struct wiphy *wiphy);
3901
3902/**
3903 * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
3904 *
3905 * @wiphy: the wiphy on which the scheduled scan stopped
3906 *
3907 * The driver can call this function to inform cfg80211 that the
3908 * scheduled scan had to be stopped, for whatever reason. The driver
3909 * is then called back via the sched_scan_stop operation when done.
3910 */
3911void cfg80211_sched_scan_stopped(struct wiphy *wiphy);
3912
792e6aa7
EP
3913/**
3914 * cfg80211_sched_scan_stopped_rtnl - notify that the scheduled scan has stopped
3915 *
3916 * @wiphy: the wiphy on which the scheduled scan stopped
3917 *
3918 * The driver can call this function to inform cfg80211 that the
3919 * scheduled scan had to be stopped, for whatever reason. The driver
3920 * is then called back via the sched_scan_stop operation when done.
3921 * This function should be called with rtnl locked.
3922 */
3923void cfg80211_sched_scan_stopped_rtnl(struct wiphy *wiphy);
807f8a8c 3924
2a519311 3925/**
dcd6eac1 3926 * cfg80211_inform_bss_width_frame - inform cfg80211 of a received BSS frame
2a519311
JB
3927 *
3928 * @wiphy: the wiphy reporting the BSS
3afc2167 3929 * @rx_channel: The channel the frame was received on
dcd6eac1 3930 * @scan_width: width of the control channel
abe37c4b
JB
3931 * @mgmt: the management frame (probe response or beacon)
3932 * @len: length of the management frame
77965c97 3933 * @signal: the signal strength, type depends on the wiphy's signal_type
2a519311
JB
3934 * @gfp: context flags
3935 *
3936 * This informs cfg80211 that BSS information was found and
3937 * the BSS should be updated/added.
ef100682 3938 *
0ae997dc
YB
3939 * Return: A referenced struct, must be released with cfg80211_put_bss()!
3940 * Or %NULL on error.
2a519311 3941 */
ef100682 3942struct cfg80211_bss * __must_check
dcd6eac1 3943cfg80211_inform_bss_width_frame(struct wiphy *wiphy,
3afc2167 3944 struct ieee80211_channel *rx_channel,
dcd6eac1
SW
3945 enum nl80211_bss_scan_width scan_width,
3946 struct ieee80211_mgmt *mgmt, size_t len,
3947 s32 signal, gfp_t gfp);
3948
3949static inline struct cfg80211_bss * __must_check
2a519311 3950cfg80211_inform_bss_frame(struct wiphy *wiphy,
3afc2167 3951 struct ieee80211_channel *rx_channel,
2a519311 3952 struct ieee80211_mgmt *mgmt, size_t len,
dcd6eac1
SW
3953 s32 signal, gfp_t gfp)
3954{
3afc2167 3955 return cfg80211_inform_bss_width_frame(wiphy, rx_channel,
dcd6eac1
SW
3956 NL80211_BSS_CHAN_WIDTH_20,
3957 mgmt, len, signal, gfp);
3958}
2a519311 3959
abe37c4b 3960/**
5bc8c1f2
JB
3961 * enum cfg80211_bss_frame_type - frame type that the BSS data came from
3962 * @CFG80211_BSS_FTYPE_UNKNOWN: driver doesn't know whether the data is
3963 * from a beacon or probe response
3964 * @CFG80211_BSS_FTYPE_BEACON: data comes from a beacon
3965 * @CFG80211_BSS_FTYPE_PRESP: data comes from a probe response
3966 */
3967enum cfg80211_bss_frame_type {
3968 CFG80211_BSS_FTYPE_UNKNOWN,
3969 CFG80211_BSS_FTYPE_BEACON,
3970 CFG80211_BSS_FTYPE_PRESP,
3971};
3972
3973/**
3974 * cfg80211_inform_bss_width - inform cfg80211 of a new BSS
abe37c4b
JB
3975 *
3976 * @wiphy: the wiphy reporting the BSS
3afc2167 3977 * @rx_channel: The channel the frame was received on
dcd6eac1 3978 * @scan_width: width of the control channel
5bc8c1f2 3979 * @ftype: frame type (if known)
abe37c4b 3980 * @bssid: the BSSID of the BSS
7b8bcff2 3981 * @tsf: the TSF sent by the peer in the beacon/probe response (or 0)
abe37c4b
JB
3982 * @capability: the capability field sent by the peer
3983 * @beacon_interval: the beacon interval announced by the peer
3984 * @ie: additional IEs sent by the peer
3985 * @ielen: length of the additional IEs
3986 * @signal: the signal strength, type depends on the wiphy's signal_type
3987 * @gfp: context flags
3988 *
3989 * This informs cfg80211 that BSS information was found and
3990 * the BSS should be updated/added.
ef100682 3991 *
0ae997dc
YB
3992 * Return: A referenced struct, must be released with cfg80211_put_bss()!
3993 * Or %NULL on error.
abe37c4b 3994 */
ef100682 3995struct cfg80211_bss * __must_check
dcd6eac1 3996cfg80211_inform_bss_width(struct wiphy *wiphy,
3afc2167 3997 struct ieee80211_channel *rx_channel,
dcd6eac1 3998 enum nl80211_bss_scan_width scan_width,
5bc8c1f2 3999 enum cfg80211_bss_frame_type ftype,
dcd6eac1
SW
4000 const u8 *bssid, u64 tsf, u16 capability,
4001 u16 beacon_interval, const u8 *ie, size_t ielen,
4002 s32 signal, gfp_t gfp);
4003
4004static inline struct cfg80211_bss * __must_check
06aa7afa 4005cfg80211_inform_bss(struct wiphy *wiphy,
3afc2167 4006 struct ieee80211_channel *rx_channel,
5bc8c1f2 4007 enum cfg80211_bss_frame_type ftype,
7b8bcff2
JB
4008 const u8 *bssid, u64 tsf, u16 capability,
4009 u16 beacon_interval, const u8 *ie, size_t ielen,
dcd6eac1
SW
4010 s32 signal, gfp_t gfp)
4011{
3afc2167 4012 return cfg80211_inform_bss_width(wiphy, rx_channel,
5bc8c1f2 4013 NL80211_BSS_CHAN_WIDTH_20, ftype,
dcd6eac1
SW
4014 bssid, tsf, capability,
4015 beacon_interval, ie, ielen, signal,
4016 gfp);
4017}
06aa7afa 4018
2a519311
JB
4019struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
4020 struct ieee80211_channel *channel,
4021 const u8 *bssid,
79420f09
JB
4022 const u8 *ssid, size_t ssid_len,
4023 u16 capa_mask, u16 capa_val);
4024static inline struct cfg80211_bss *
4025cfg80211_get_ibss(struct wiphy *wiphy,
4026 struct ieee80211_channel *channel,
4027 const u8 *ssid, size_t ssid_len)
4028{
4029 return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
4030 WLAN_CAPABILITY_IBSS, WLAN_CAPABILITY_IBSS);
4031}
4032
4c0c0b75
JB
4033/**
4034 * cfg80211_ref_bss - reference BSS struct
5b112d3d 4035 * @wiphy: the wiphy this BSS struct belongs to
4c0c0b75
JB
4036 * @bss: the BSS struct to reference
4037 *
4038 * Increments the refcount of the given BSS struct.
4039 */
5b112d3d 4040void cfg80211_ref_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
4c0c0b75
JB
4041
4042/**
4043 * cfg80211_put_bss - unref BSS struct
5b112d3d 4044 * @wiphy: the wiphy this BSS struct belongs to
4c0c0b75
JB
4045 * @bss: the BSS struct
4046 *
4047 * Decrements the refcount of the given BSS struct.
4048 */
5b112d3d 4049void cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
d3236553 4050
d491af19
JB
4051/**
4052 * cfg80211_unlink_bss - unlink BSS from internal data structures
4053 * @wiphy: the wiphy
4054 * @bss: the bss to remove
4055 *
4056 * This function removes the given BSS from the internal data structures
4057 * thereby making it no longer show up in scan results etc. Use this
4058 * function when you detect a BSS is gone. Normally BSSes will also time
4059 * out, so it is not necessary to use this function at all.
4060 */
4061void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
fee52678 4062
dcd6eac1
SW
4063static inline enum nl80211_bss_scan_width
4064cfg80211_chandef_to_scan_width(const struct cfg80211_chan_def *chandef)
4065{
4066 switch (chandef->width) {
4067 case NL80211_CHAN_WIDTH_5:
4068 return NL80211_BSS_CHAN_WIDTH_5;
4069 case NL80211_CHAN_WIDTH_10:
4070 return NL80211_BSS_CHAN_WIDTH_10;
4071 default:
4072 return NL80211_BSS_CHAN_WIDTH_20;
4073 }
4074}
4075
6039f6d2 4076/**
6ff57cf8 4077 * cfg80211_rx_mlme_mgmt - notification of processed MLME management frame
6039f6d2
JM
4078 * @dev: network device
4079 * @buf: authentication frame (header + body)
4080 * @len: length of the frame data
4081 *
6ff57cf8
JB
4082 * This function is called whenever an authentication, disassociation or
4083 * deauthentication frame has been received and processed in station mode.
4084 * After being asked to authenticate via cfg80211_ops::auth() the driver must
4085 * call either this function or cfg80211_auth_timeout().
4086 * After being asked to associate via cfg80211_ops::assoc() the driver must
4087 * call either this function or cfg80211_auth_timeout().
4088 * While connected, the driver must calls this for received and processed
4089 * disassociation and deauthentication frames. If the frame couldn't be used
4090 * because it was unprotected, the driver must call the function
4091 * cfg80211_rx_unprot_mlme_mgmt() instead.
4092 *
4093 * This function may sleep. The caller must hold the corresponding wdev's mutex.
6039f6d2 4094 */
6ff57cf8 4095void cfg80211_rx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len);
6039f6d2 4096
1965c853 4097/**
6ff57cf8 4098 * cfg80211_auth_timeout - notification of timed out authentication
1965c853
JM
4099 * @dev: network device
4100 * @addr: The MAC address of the device with which the authentication timed out
cb0b4beb 4101 *
8d61ffa5
JB
4102 * This function may sleep. The caller must hold the corresponding wdev's
4103 * mutex.
1965c853 4104 */
6ff57cf8 4105void cfg80211_auth_timeout(struct net_device *dev, const u8 *addr);
1965c853 4106
6039f6d2 4107/**
6ff57cf8 4108 * cfg80211_rx_assoc_resp - notification of processed association response
6039f6d2 4109 * @dev: network device
6ff57cf8
JB
4110 * @bss: the BSS that association was requested with, ownership of the pointer
4111 * moves to cfg80211 in this call
4112 * @buf: authentication frame (header + body)
6039f6d2 4113 * @len: length of the frame data
b0b6aa2c 4114 * @uapsd_queues: bitmap of ACs configured to uapsd. -1 if n/a.
6039f6d2 4115 *
6ff57cf8
JB
4116 * After being asked to associate via cfg80211_ops::assoc() the driver must
4117 * call either this function or cfg80211_auth_timeout().
4118 *
4119 * This function may sleep. The caller must hold the corresponding wdev's mutex.
6039f6d2 4120 */
6ff57cf8
JB
4121void cfg80211_rx_assoc_resp(struct net_device *dev,
4122 struct cfg80211_bss *bss,
b0b6aa2c
EP
4123 const u8 *buf, size_t len,
4124 int uapsd_queues);
6039f6d2 4125
1965c853 4126/**
6ff57cf8 4127 * cfg80211_assoc_timeout - notification of timed out association
1965c853 4128 * @dev: network device
959867fa 4129 * @bss: The BSS entry with which association timed out.
cb0b4beb 4130 *
8d61ffa5 4131 * This function may sleep. The caller must hold the corresponding wdev's mutex.
1965c853 4132 */
959867fa 4133void cfg80211_assoc_timeout(struct net_device *dev, struct cfg80211_bss *bss);
1965c853 4134
6039f6d2 4135/**
6ff57cf8 4136 * cfg80211_tx_mlme_mgmt - notification of transmitted deauth/disassoc frame
6039f6d2 4137 * @dev: network device
6ff57cf8 4138 * @buf: 802.11 frame (header + body)
6039f6d2
JM
4139 * @len: length of the frame data
4140 *
4141 * This function is called whenever deauthentication has been processed in
53b46b84 4142 * station mode. This includes both received deauthentication frames and
8d61ffa5
JB
4143 * locally generated ones. This function may sleep. The caller must hold the
4144 * corresponding wdev's mutex.
6039f6d2 4145 */
6ff57cf8 4146void cfg80211_tx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len);
ce470613 4147
6039f6d2 4148/**
6ff57cf8 4149 * cfg80211_rx_unprot_mlme_mgmt - notification of unprotected mlme mgmt frame
cf4e594e
JM
4150 * @dev: network device
4151 * @buf: deauthentication frame (header + body)
4152 * @len: length of the frame data
4153 *
6ff57cf8
JB
4154 * This function is called whenever a received deauthentication or dissassoc
4155 * frame has been dropped in station mode because of MFP being used but the
cf4e594e
JM
4156 * frame was not protected. This function may sleep.
4157 */
6ff57cf8
JB
4158void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev,
4159 const u8 *buf, size_t len);
cf4e594e 4160
a3b8b056
JM
4161/**
4162 * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
4163 * @dev: network device
4164 * @addr: The source MAC address of the frame
4165 * @key_type: The key type that the received frame used
a66b98db 4166 * @key_id: Key identifier (0..3). Can be -1 if missing.
a3b8b056 4167 * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
e6d6e342 4168 * @gfp: allocation flags
a3b8b056
JM
4169 *
4170 * This function is called whenever the local MAC detects a MIC failure in a
4171 * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
4172 * primitive.
4173 */
4174void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
4175 enum nl80211_key_type key_type, int key_id,
e6d6e342 4176 const u8 *tsc, gfp_t gfp);
a3b8b056 4177
04a773ad
JB
4178/**
4179 * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
4180 *
4181 * @dev: network device
4182 * @bssid: the BSSID of the IBSS joined
fe94f3a4 4183 * @channel: the channel of the IBSS joined
04a773ad
JB
4184 * @gfp: allocation flags
4185 *
4186 * This function notifies cfg80211 that the device joined an IBSS or
4187 * switched to a different BSSID. Before this function can be called,
4188 * either a beacon has to have been received from the IBSS, or one of
4189 * the cfg80211_inform_bss{,_frame} functions must have been called
4190 * with the locally generated beacon -- this guarantees that there is
4191 * always a scan result for this IBSS. cfg80211 will handle the rest.
4192 */
fe94f3a4
AQ
4193void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid,
4194 struct ieee80211_channel *channel, gfp_t gfp);
04a773ad 4195
c93b5e71
JC
4196/**
4197 * cfg80211_notify_new_candidate - notify cfg80211 of a new mesh peer candidate
4198 *
4199 * @dev: network device
4200 * @macaddr: the MAC address of the new candidate
4201 * @ie: information elements advertised by the peer candidate
4202 * @ie_len: lenght of the information elements buffer
4203 * @gfp: allocation flags
4204 *
4205 * This function notifies cfg80211 that the mesh peer candidate has been
4206 * detected, most likely via a beacon or, less likely, via a probe response.
4207 * cfg80211 then sends a notification to userspace.
4208 */
4209void cfg80211_notify_new_peer_candidate(struct net_device *dev,
4210 const u8 *macaddr, const u8 *ie, u8 ie_len, gfp_t gfp);
4211
d70e9693
JB
4212/**
4213 * DOC: RFkill integration
4214 *
4215 * RFkill integration in cfg80211 is almost invisible to drivers,
4216 * as cfg80211 automatically registers an rfkill instance for each
4217 * wireless device it knows about. Soft kill is also translated
4218 * into disconnecting and turning all interfaces off, drivers are
4219 * expected to turn off the device when all interfaces are down.
4220 *
4221 * However, devices may have a hard RFkill line, in which case they
4222 * also need to interact with the rfkill subsystem, via cfg80211.
4223 * They can do this with a few helper functions documented here.
4224 */
4225
1f87f7d3
JB
4226/**
4227 * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
4228 * @wiphy: the wiphy
4229 * @blocked: block status
4230 */
4231void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked);
4232
4233/**
4234 * wiphy_rfkill_start_polling - start polling rfkill
4235 * @wiphy: the wiphy
4236 */
4237void wiphy_rfkill_start_polling(struct wiphy *wiphy);
4238
4239/**
4240 * wiphy_rfkill_stop_polling - stop polling rfkill
4241 * @wiphy: the wiphy
4242 */
4243void wiphy_rfkill_stop_polling(struct wiphy *wiphy);
4244
ad7e718c
JB
4245/**
4246 * DOC: Vendor commands
4247 *
4248 * Occasionally, there are special protocol or firmware features that
4249 * can't be implemented very openly. For this and similar cases, the
4250 * vendor command functionality allows implementing the features with
4251 * (typically closed-source) userspace and firmware, using nl80211 as
4252 * the configuration mechanism.
4253 *
4254 * A driver supporting vendor commands must register them as an array
4255 * in struct wiphy, with handlers for each one, each command has an
4256 * OUI and sub command ID to identify it.
4257 *
4258 * Note that this feature should not be (ab)used to implement protocol
4259 * features that could openly be shared across drivers. In particular,
4260 * it must never be required to use vendor commands to implement any
4261 * "normal" functionality that higher-level userspace like connection
4262 * managers etc. need.
4263 */
4264
4265struct sk_buff *__cfg80211_alloc_reply_skb(struct wiphy *wiphy,
4266 enum nl80211_commands cmd,
4267 enum nl80211_attrs attr,
4268 int approxlen);
4269
567ffc35
JB
4270struct sk_buff *__cfg80211_alloc_event_skb(struct wiphy *wiphy,
4271 enum nl80211_commands cmd,
4272 enum nl80211_attrs attr,
4273 int vendor_event_idx,
4274 int approxlen, gfp_t gfp);
4275
4276void __cfg80211_send_event_skb(struct sk_buff *skb, gfp_t gfp);
4277
ad7e718c
JB
4278/**
4279 * cfg80211_vendor_cmd_alloc_reply_skb - allocate vendor command reply
4280 * @wiphy: the wiphy
4281 * @approxlen: an upper bound of the length of the data that will
4282 * be put into the skb
4283 *
4284 * This function allocates and pre-fills an skb for a reply to
4285 * a vendor command. Since it is intended for a reply, calling
4286 * it outside of a vendor command's doit() operation is invalid.
4287 *
4288 * The returned skb is pre-filled with some identifying data in
4289 * a way that any data that is put into the skb (with skb_put(),
4290 * nla_put() or similar) will end up being within the
4291 * %NL80211_ATTR_VENDOR_DATA attribute, so all that needs to be done
4292 * with the skb is adding data for the corresponding userspace tool
4293 * which can then read that data out of the vendor data attribute.
4294 * You must not modify the skb in any other way.
4295 *
4296 * When done, call cfg80211_vendor_cmd_reply() with the skb and return
4297 * its error code as the result of the doit() operation.
4298 *
4299 * Return: An allocated and pre-filled skb. %NULL if any errors happen.
4300 */
4301static inline struct sk_buff *
4302cfg80211_vendor_cmd_alloc_reply_skb(struct wiphy *wiphy, int approxlen)
4303{
4304 return __cfg80211_alloc_reply_skb(wiphy, NL80211_CMD_VENDOR,
4305 NL80211_ATTR_VENDOR_DATA, approxlen);
4306}
4307
4308/**
4309 * cfg80211_vendor_cmd_reply - send the reply skb
4310 * @skb: The skb, must have been allocated with
4311 * cfg80211_vendor_cmd_alloc_reply_skb()
4312 *
4313 * Since calling this function will usually be the last thing
4314 * before returning from the vendor command doit() you should
4315 * return the error code. Note that this function consumes the
4316 * skb regardless of the return value.
4317 *
4318 * Return: An error code or 0 on success.
4319 */
4320int cfg80211_vendor_cmd_reply(struct sk_buff *skb);
4321
567ffc35
JB
4322/**
4323 * cfg80211_vendor_event_alloc - allocate vendor-specific event skb
4324 * @wiphy: the wiphy
4325 * @event_idx: index of the vendor event in the wiphy's vendor_events
4326 * @approxlen: an upper bound of the length of the data that will
4327 * be put into the skb
4328 * @gfp: allocation flags
4329 *
4330 * This function allocates and pre-fills an skb for an event on the
4331 * vendor-specific multicast group.
4332 *
4333 * When done filling the skb, call cfg80211_vendor_event() with the
4334 * skb to send the event.
4335 *
4336 * Return: An allocated and pre-filled skb. %NULL if any errors happen.
4337 */
4338static inline struct sk_buff *
4339cfg80211_vendor_event_alloc(struct wiphy *wiphy, int approxlen,
4340 int event_idx, gfp_t gfp)
4341{
4342 return __cfg80211_alloc_event_skb(wiphy, NL80211_CMD_VENDOR,
4343 NL80211_ATTR_VENDOR_DATA,
4344 event_idx, approxlen, gfp);
4345}
4346
4347/**
4348 * cfg80211_vendor_event - send the event
4349 * @skb: The skb, must have been allocated with cfg80211_vendor_event_alloc()
4350 * @gfp: allocation flags
4351 *
4352 * This function sends the given @skb, which must have been allocated
4353 * by cfg80211_vendor_event_alloc(), as an event. It always consumes it.
4354 */
4355static inline void cfg80211_vendor_event(struct sk_buff *skb, gfp_t gfp)
4356{
4357 __cfg80211_send_event_skb(skb, gfp);
4358}
4359
aff89a9b 4360#ifdef CONFIG_NL80211_TESTMODE
d70e9693
JB
4361/**
4362 * DOC: Test mode
4363 *
4364 * Test mode is a set of utility functions to allow drivers to
4365 * interact with driver-specific tools to aid, for instance,
4366 * factory programming.
4367 *
4368 * This chapter describes how drivers interact with it, for more
4369 * information see the nl80211 book's chapter on it.
4370 */
4371
aff89a9b
JB
4372/**
4373 * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
4374 * @wiphy: the wiphy
4375 * @approxlen: an upper bound of the length of the data that will
4376 * be put into the skb
4377 *
4378 * This function allocates and pre-fills an skb for a reply to
4379 * the testmode command. Since it is intended for a reply, calling
4380 * it outside of the @testmode_cmd operation is invalid.
4381 *
0ae997dc
YB
4382 * The returned skb is pre-filled with the wiphy index and set up in
4383 * a way that any data that is put into the skb (with skb_put(),
4384 * nla_put() or similar) will end up being within the
4385 * %NL80211_ATTR_TESTDATA attribute, so all that needs to be done
4386 * with the skb is adding data for the corresponding userspace tool
4387 * which can then read that data out of the testdata attribute. You
4388 * must not modify the skb in any other way.
aff89a9b
JB
4389 *
4390 * When done, call cfg80211_testmode_reply() with the skb and return
4391 * its error code as the result of the @testmode_cmd operation.
0ae997dc
YB
4392 *
4393 * Return: An allocated and pre-filled skb. %NULL if any errors happen.
aff89a9b 4394 */
ad7e718c
JB
4395static inline struct sk_buff *
4396cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy, int approxlen)
4397{
4398 return __cfg80211_alloc_reply_skb(wiphy, NL80211_CMD_TESTMODE,
4399 NL80211_ATTR_TESTDATA, approxlen);
4400}
aff89a9b
JB
4401
4402/**
4403 * cfg80211_testmode_reply - send the reply skb
4404 * @skb: The skb, must have been allocated with
4405 * cfg80211_testmode_alloc_reply_skb()
4406 *
0ae997dc
YB
4407 * Since calling this function will usually be the last thing
4408 * before returning from the @testmode_cmd you should return
4409 * the error code. Note that this function consumes the skb
4410 * regardless of the return value.
4411 *
4412 * Return: An error code or 0 on success.
aff89a9b 4413 */
ad7e718c
JB
4414static inline int cfg80211_testmode_reply(struct sk_buff *skb)
4415{
4416 return cfg80211_vendor_cmd_reply(skb);
4417}
aff89a9b
JB
4418
4419/**
4420 * cfg80211_testmode_alloc_event_skb - allocate testmode event
4421 * @wiphy: the wiphy
4422 * @approxlen: an upper bound of the length of the data that will
4423 * be put into the skb
4424 * @gfp: allocation flags
4425 *
4426 * This function allocates and pre-fills an skb for an event on the
4427 * testmode multicast group.
4428 *
0ae997dc
YB
4429 * The returned skb is set up in the same way as with
4430 * cfg80211_testmode_alloc_reply_skb() but prepared for an event. As
4431 * there, you should simply add data to it that will then end up in the
4432 * %NL80211_ATTR_TESTDATA attribute. Again, you must not modify the skb
4433 * in any other way.
aff89a9b
JB
4434 *
4435 * When done filling the skb, call cfg80211_testmode_event() with the
4436 * skb to send the event.
0ae997dc
YB
4437 *
4438 * Return: An allocated and pre-filled skb. %NULL if any errors happen.
aff89a9b 4439 */
567ffc35
JB
4440static inline struct sk_buff *
4441cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy, int approxlen, gfp_t gfp)
4442{
4443 return __cfg80211_alloc_event_skb(wiphy, NL80211_CMD_TESTMODE,
4444 NL80211_ATTR_TESTDATA, -1,
4445 approxlen, gfp);
4446}
aff89a9b
JB
4447
4448/**
4449 * cfg80211_testmode_event - send the event
4450 * @skb: The skb, must have been allocated with
4451 * cfg80211_testmode_alloc_event_skb()
4452 * @gfp: allocation flags
4453 *
4454 * This function sends the given @skb, which must have been allocated
4455 * by cfg80211_testmode_alloc_event_skb(), as an event. It always
4456 * consumes it.
4457 */
567ffc35
JB
4458static inline void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
4459{
4460 __cfg80211_send_event_skb(skb, gfp);
4461}
aff89a9b
JB
4462
4463#define CFG80211_TESTMODE_CMD(cmd) .testmode_cmd = (cmd),
71063f0e 4464#define CFG80211_TESTMODE_DUMP(cmd) .testmode_dump = (cmd),
aff89a9b
JB
4465#else
4466#define CFG80211_TESTMODE_CMD(cmd)
71063f0e 4467#define CFG80211_TESTMODE_DUMP(cmd)
aff89a9b
JB
4468#endif
4469
b23aa676
SO
4470/**
4471 * cfg80211_connect_result - notify cfg80211 of connection result
4472 *
4473 * @dev: network device
4474 * @bssid: the BSSID of the AP
4475 * @req_ie: association request IEs (maybe be %NULL)
4476 * @req_ie_len: association request IEs length
4477 * @resp_ie: association response IEs (may be %NULL)
4478 * @resp_ie_len: assoc response IEs length
4479 * @status: status code, 0 for successful connection, use
4480 * %WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
4481 * the real status code for failures.
4482 * @gfp: allocation flags
4483 *
4484 * It should be called by the underlying driver whenever connect() has
4485 * succeeded.
4486 */
4487void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
4488 const u8 *req_ie, size_t req_ie_len,
4489 const u8 *resp_ie, size_t resp_ie_len,
4490 u16 status, gfp_t gfp);
4491
4492/**
4493 * cfg80211_roamed - notify cfg80211 of roaming
4494 *
4495 * @dev: network device
ed9d0102 4496 * @channel: the channel of the new AP
b23aa676
SO
4497 * @bssid: the BSSID of the new AP
4498 * @req_ie: association request IEs (maybe be %NULL)
4499 * @req_ie_len: association request IEs length
4500 * @resp_ie: association response IEs (may be %NULL)
4501 * @resp_ie_len: assoc response IEs length
4502 * @gfp: allocation flags
4503 *
4504 * It should be called by the underlying driver whenever it roamed
4505 * from one AP to another while connected.
4506 */
ed9d0102
JM
4507void cfg80211_roamed(struct net_device *dev,
4508 struct ieee80211_channel *channel,
4509 const u8 *bssid,
b23aa676
SO
4510 const u8 *req_ie, size_t req_ie_len,
4511 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
4512
adbde344
VT
4513/**
4514 * cfg80211_roamed_bss - notify cfg80211 of roaming
4515 *
4516 * @dev: network device
4517 * @bss: entry of bss to which STA got roamed
4518 * @req_ie: association request IEs (maybe be %NULL)
4519 * @req_ie_len: association request IEs length
4520 * @resp_ie: association response IEs (may be %NULL)
4521 * @resp_ie_len: assoc response IEs length
4522 * @gfp: allocation flags
4523 *
4524 * This is just a wrapper to notify cfg80211 of roaming event with driver
4525 * passing bss to avoid a race in timeout of the bss entry. It should be
4526 * called by the underlying driver whenever it roamed from one AP to another
4527 * while connected. Drivers which have roaming implemented in firmware
4528 * may use this function to avoid a race in bss entry timeout where the bss
4529 * entry of the new AP is seen in the driver, but gets timed out by the time
4530 * it is accessed in __cfg80211_roamed() due to delay in scheduling
4531 * rdev->event_work. In case of any failures, the reference is released
4532 * either in cfg80211_roamed_bss() or in __cfg80211_romed(), Otherwise,
4533 * it will be released while diconneting from the current bss.
4534 */
4535void cfg80211_roamed_bss(struct net_device *dev, struct cfg80211_bss *bss,
4536 const u8 *req_ie, size_t req_ie_len,
4537 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
4538
b23aa676
SO
4539/**
4540 * cfg80211_disconnected - notify cfg80211 that connection was dropped
4541 *
4542 * @dev: network device
4543 * @ie: information elements of the deauth/disassoc frame (may be %NULL)
4544 * @ie_len: length of IEs
4545 * @reason: reason code for the disconnection, set it to 0 if unknown
4546 * @gfp: allocation flags
4547 *
4548 * After it calls this function, the driver should enter an idle state
4549 * and not try to connect to any AP any more.
4550 */
4551void cfg80211_disconnected(struct net_device *dev, u16 reason,
c1e5f471 4552 const u8 *ie, size_t ie_len, gfp_t gfp);
b23aa676 4553
9588bbd5
JM
4554/**
4555 * cfg80211_ready_on_channel - notification of remain_on_channel start
71bbc994 4556 * @wdev: wireless device
9588bbd5
JM
4557 * @cookie: the request cookie
4558 * @chan: The current channel (from remain_on_channel request)
9588bbd5
JM
4559 * @duration: Duration in milliseconds that the driver intents to remain on the
4560 * channel
4561 * @gfp: allocation flags
4562 */
71bbc994 4563void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
9588bbd5 4564 struct ieee80211_channel *chan,
9588bbd5
JM
4565 unsigned int duration, gfp_t gfp);
4566
4567/**
4568 * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
71bbc994 4569 * @wdev: wireless device
9588bbd5
JM
4570 * @cookie: the request cookie
4571 * @chan: The current channel (from remain_on_channel request)
9588bbd5
JM
4572 * @gfp: allocation flags
4573 */
71bbc994 4574void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
9588bbd5 4575 struct ieee80211_channel *chan,
9588bbd5 4576 gfp_t gfp);
b23aa676 4577
98b62183
JB
4578
4579/**
4580 * cfg80211_new_sta - notify userspace about station
4581 *
4582 * @dev: the netdev
4583 * @mac_addr: the station's address
4584 * @sinfo: the station information
4585 * @gfp: allocation flags
4586 */
4587void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
4588 struct station_info *sinfo, gfp_t gfp);
4589
ec15e68b
JM
4590/**
4591 * cfg80211_del_sta - notify userspace about deletion of a station
4592 *
4593 * @dev: the netdev
4594 * @mac_addr: the station's address
4595 * @gfp: allocation flags
4596 */
4597void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp);
4598
ed44a951
PP
4599/**
4600 * cfg80211_conn_failed - connection request failed notification
4601 *
4602 * @dev: the netdev
4603 * @mac_addr: the station's address
4604 * @reason: the reason for connection failure
4605 * @gfp: allocation flags
4606 *
4607 * Whenever a station tries to connect to an AP and if the station
4608 * could not connect to the AP as the AP has rejected the connection
4609 * for some reasons, this function is called.
4610 *
4611 * The reason for connection failure can be any of the value from
4612 * nl80211_connect_failed_reason enum
4613 */
4614void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
4615 enum nl80211_connect_failed_reason reason,
4616 gfp_t gfp);
4617
026331c4 4618/**
2e161f78 4619 * cfg80211_rx_mgmt - notification of received, unprocessed management frame
71bbc994 4620 * @wdev: wireless device receiving the frame
026331c4 4621 * @freq: Frequency on which the frame was received in MHz
804483e9 4622 * @sig_dbm: signal strength in mBm, or 0 if unknown
2e161f78 4623 * @buf: Management frame (header + body)
026331c4 4624 * @len: length of the frame data
19504cf5 4625 * @flags: flags, as defined in enum nl80211_rxmgmt_flags
2e161f78 4626 *
0ae997dc
YB
4627 * This function is called whenever an Action frame is received for a station
4628 * mode interface, but is not processed in kernel.
4629 *
4630 * Return: %true if a user space application has registered for this frame.
2e161f78
JB
4631 * For action frames, that makes it responsible for rejecting unrecognized
4632 * action frames; %false otherwise, in which case for action frames the
4633 * driver is responsible for rejecting the frame.
026331c4 4634 */
71bbc994 4635bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_dbm,
970fdfa8 4636 const u8 *buf, size_t len, u32 flags);
026331c4
JM
4637
4638/**
2e161f78 4639 * cfg80211_mgmt_tx_status - notification of TX status for management frame
71bbc994 4640 * @wdev: wireless device receiving the frame
2e161f78
JB
4641 * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
4642 * @buf: Management frame (header + body)
026331c4
JM
4643 * @len: length of the frame data
4644 * @ack: Whether frame was acknowledged
4645 * @gfp: context flags
4646 *
2e161f78
JB
4647 * This function is called whenever a management frame was requested to be
4648 * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
026331c4
JM
4649 * transmission attempt.
4650 */
71bbc994 4651void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
2e161f78 4652 const u8 *buf, size_t len, bool ack, gfp_t gfp);
026331c4 4653
d6dc1a38
JO
4654
4655/**
4656 * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
4657 * @dev: network device
4658 * @rssi_event: the triggered RSSI event
4659 * @gfp: context flags
4660 *
4661 * This function is called when a configured connection quality monitoring
4662 * rssi threshold reached event occurs.
4663 */
4664void cfg80211_cqm_rssi_notify(struct net_device *dev,
4665 enum nl80211_cqm_rssi_threshold_event rssi_event,
4666 gfp_t gfp);
4667
c063dbf5
JB
4668/**
4669 * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
4670 * @dev: network device
4671 * @peer: peer's MAC address
4672 * @num_packets: how many packets were lost -- should be a fixed threshold
4673 * but probably no less than maybe 50, or maybe a throughput dependent
4674 * threshold (to account for temporary interference)
4675 * @gfp: context flags
4676 */
4677void cfg80211_cqm_pktloss_notify(struct net_device *dev,
4678 const u8 *peer, u32 num_packets, gfp_t gfp);
4679
84f10708
TP
4680/**
4681 * cfg80211_cqm_txe_notify - TX error rate event
4682 * @dev: network device
4683 * @peer: peer's MAC address
4684 * @num_packets: how many packets were lost
4685 * @rate: % of packets which failed transmission
4686 * @intvl: interval (in s) over which the TX failure threshold was breached.
4687 * @gfp: context flags
4688 *
4689 * Notify userspace when configured % TX failures over number of packets in a
4690 * given interval is exceeded.
4691 */
4692void cfg80211_cqm_txe_notify(struct net_device *dev, const u8 *peer,
4693 u32 num_packets, u32 rate, u32 intvl, gfp_t gfp);
4694
98f03342
JB
4695/**
4696 * cfg80211_cqm_beacon_loss_notify - beacon loss event
4697 * @dev: network device
4698 * @gfp: context flags
4699 *
4700 * Notify userspace about beacon loss from the connected AP.
4701 */
4702void cfg80211_cqm_beacon_loss_notify(struct net_device *dev, gfp_t gfp);
4703
5b97f49d
JB
4704/**
4705 * cfg80211_radar_event - radar detection event
4706 * @wiphy: the wiphy
4707 * @chandef: chandef for the current channel
4708 * @gfp: context flags
4709 *
4710 * This function is called when a radar is detected on the current chanenl.
4711 */
4712void cfg80211_radar_event(struct wiphy *wiphy,
4713 struct cfg80211_chan_def *chandef, gfp_t gfp);
4714
4715/**
4716 * cfg80211_cac_event - Channel availability check (CAC) event
4717 * @netdev: network device
4718 * @chandef: chandef for the current channel
4719 * @event: type of event
4720 * @gfp: context flags
4721 *
4722 * This function is called when a Channel availability check (CAC) is finished
4723 * or aborted. This must be called to notify the completion of a CAC process,
4724 * also by full-MAC drivers.
4725 */
4726void cfg80211_cac_event(struct net_device *netdev,
4727 const struct cfg80211_chan_def *chandef,
4728 enum nl80211_radar_event event, gfp_t gfp);
4729
4730
e5497d76
JB
4731/**
4732 * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying
4733 * @dev: network device
4734 * @bssid: BSSID of AP (to avoid races)
4735 * @replay_ctr: new replay counter
af71ff85 4736 * @gfp: allocation flags
e5497d76
JB
4737 */
4738void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
4739 const u8 *replay_ctr, gfp_t gfp);
4740
c9df56b4
JM
4741/**
4742 * cfg80211_pmksa_candidate_notify - notify about PMKSA caching candidate
4743 * @dev: network device
4744 * @index: candidate index (the smaller the index, the higher the priority)
4745 * @bssid: BSSID of AP
4746 * @preauth: Whether AP advertises support for RSN pre-authentication
4747 * @gfp: allocation flags
4748 */
4749void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
4750 const u8 *bssid, bool preauth, gfp_t gfp);
4751
28946da7
JB
4752/**
4753 * cfg80211_rx_spurious_frame - inform userspace about a spurious frame
4754 * @dev: The device the frame matched to
4755 * @addr: the transmitter address
4756 * @gfp: context flags
4757 *
4758 * This function is used in AP mode (only!) to inform userspace that
4759 * a spurious class 3 frame was received, to be able to deauth the
4760 * sender.
0ae997dc 4761 * Return: %true if the frame was passed to userspace (or this failed
28946da7
JB
4762 * for a reason other than not having a subscription.)
4763 */
4764bool cfg80211_rx_spurious_frame(struct net_device *dev,
4765 const u8 *addr, gfp_t gfp);
4766
b92ab5d8
JB
4767/**
4768 * cfg80211_rx_unexpected_4addr_frame - inform about unexpected WDS frame
4769 * @dev: The device the frame matched to
4770 * @addr: the transmitter address
4771 * @gfp: context flags
4772 *
4773 * This function is used in AP mode (only!) to inform userspace that
4774 * an associated station sent a 4addr frame but that wasn't expected.
4775 * It is allowed and desirable to send this event only once for each
4776 * station to avoid event flooding.
0ae997dc 4777 * Return: %true if the frame was passed to userspace (or this failed
b92ab5d8
JB
4778 * for a reason other than not having a subscription.)
4779 */
4780bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
4781 const u8 *addr, gfp_t gfp);
4782
7f6cf311
JB
4783/**
4784 * cfg80211_probe_status - notify userspace about probe status
4785 * @dev: the device the probe was sent on
4786 * @addr: the address of the peer
4787 * @cookie: the cookie filled in @probe_client previously
4788 * @acked: indicates whether probe was acked or not
4789 * @gfp: allocation flags
4790 */
4791void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
4792 u64 cookie, bool acked, gfp_t gfp);
4793
5e760230
JB
4794/**
4795 * cfg80211_report_obss_beacon - report beacon from other APs
4796 * @wiphy: The wiphy that received the beacon
4797 * @frame: the frame
4798 * @len: length of the frame
4799 * @freq: frequency the frame was received on
804483e9 4800 * @sig_dbm: signal strength in mBm, or 0 if unknown
5e760230
JB
4801 *
4802 * Use this function to report to userspace when a beacon was
4803 * received. It is not useful to call this when there is no
4804 * netdev that is in AP/GO mode.
4805 */
4806void cfg80211_report_obss_beacon(struct wiphy *wiphy,
4807 const u8 *frame, size_t len,
37c73b5f 4808 int freq, int sig_dbm);
5e760230 4809
d58e7e37 4810/**
683b6d3b 4811 * cfg80211_reg_can_beacon - check if beaconing is allowed
54858ee5 4812 * @wiphy: the wiphy
683b6d3b 4813 * @chandef: the channel definition
174e0cd2 4814 * @iftype: interface type
d58e7e37 4815 *
0ae997dc
YB
4816 * Return: %true if there is no secondary channel or the secondary channel(s)
4817 * can be used for beaconing (i.e. is not a radar channel etc.)
54858ee5 4818 */
683b6d3b 4819bool cfg80211_reg_can_beacon(struct wiphy *wiphy,
174e0cd2
IP
4820 struct cfg80211_chan_def *chandef,
4821 enum nl80211_iftype iftype);
54858ee5 4822
5314526b
TP
4823/*
4824 * cfg80211_ch_switch_notify - update wdev channel and notify userspace
4825 * @dev: the device which switched channels
683b6d3b 4826 * @chandef: the new channel definition
5314526b 4827 *
e487eaeb
SW
4828 * Caller must acquire wdev_lock, therefore must only be called from sleepable
4829 * driver context!
5314526b 4830 */
683b6d3b
JB
4831void cfg80211_ch_switch_notify(struct net_device *dev,
4832 struct cfg80211_chan_def *chandef);
5314526b 4833
f8d7552e
LC
4834/*
4835 * cfg80211_ch_switch_started_notify - notify channel switch start
4836 * @dev: the device on which the channel switch started
4837 * @chandef: the future channel definition
4838 * @count: the number of TBTTs until the channel switch happens
4839 *
4840 * Inform the userspace about the channel switch that has just
4841 * started, so that it can take appropriate actions (eg. starting
4842 * channel switch on other vifs), if necessary.
4843 */
4844void cfg80211_ch_switch_started_notify(struct net_device *dev,
4845 struct cfg80211_chan_def *chandef,
4846 u8 count);
4847
1ce3e82b
JB
4848/**
4849 * ieee80211_operating_class_to_band - convert operating class to band
4850 *
4851 * @operating_class: the operating class to convert
4852 * @band: band pointer to fill
4853 *
4854 * Returns %true if the conversion was successful, %false otherwise.
4855 */
4856bool ieee80211_operating_class_to_band(u8 operating_class,
4857 enum ieee80211_band *band);
4858
3475b094
JM
4859/*
4860 * cfg80211_tdls_oper_request - request userspace to perform TDLS operation
4861 * @dev: the device on which the operation is requested
4862 * @peer: the MAC address of the peer device
4863 * @oper: the requested TDLS operation (NL80211_TDLS_SETUP or
4864 * NL80211_TDLS_TEARDOWN)
4865 * @reason_code: the reason code for teardown request
4866 * @gfp: allocation flags
4867 *
4868 * This function is used to request userspace to perform TDLS operation that
4869 * requires knowledge of keys, i.e., link setup or teardown when the AP
4870 * connection uses encryption. This is optional mechanism for the driver to use
4871 * if it can automatically determine when a TDLS link could be useful (e.g.,
4872 * based on traffic and signal strength for a peer).
4873 */
4874void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
4875 enum nl80211_tdls_operation oper,
4876 u16 reason_code, gfp_t gfp);
4877
8097e149
TP
4878/*
4879 * cfg80211_calculate_bitrate - calculate actual bitrate (in 100Kbps units)
4880 * @rate: given rate_info to calculate bitrate from
4881 *
4882 * return 0 if MCS index >= 32
4883 */
8eb41c8d 4884u32 cfg80211_calculate_bitrate(struct rate_info *rate);
8097e149 4885
98104fde
JB
4886/**
4887 * cfg80211_unregister_wdev - remove the given wdev
4888 * @wdev: struct wireless_dev to remove
4889 *
4890 * Call this function only for wdevs that have no netdev assigned,
4891 * e.g. P2P Devices. It removes the device from the list so that
4892 * it can no longer be used. It is necessary to call this function
4893 * even when cfg80211 requests the removal of the interface by
4894 * calling the del_virtual_intf() callback. The function must also
4895 * be called when the driver wishes to unregister the wdev, e.g.
4896 * when the device is unbound from the driver.
4897 *
4898 * Requires the RTNL to be held.
4899 */
4900void cfg80211_unregister_wdev(struct wireless_dev *wdev);
4901
355199e0
JM
4902/**
4903 * struct cfg80211_ft_event - FT Information Elements
4904 * @ies: FT IEs
4905 * @ies_len: length of the FT IE in bytes
4906 * @target_ap: target AP's MAC address
4907 * @ric_ies: RIC IE
4908 * @ric_ies_len: length of the RIC IE in bytes
4909 */
4910struct cfg80211_ft_event_params {
4911 const u8 *ies;
4912 size_t ies_len;
4913 const u8 *target_ap;
4914 const u8 *ric_ies;
4915 size_t ric_ies_len;
4916};
4917
4918/**
4919 * cfg80211_ft_event - notify userspace about FT IE and RIC IE
4920 * @netdev: network device
4921 * @ft_event: IE information
4922 */
4923void cfg80211_ft_event(struct net_device *netdev,
4924 struct cfg80211_ft_event_params *ft_event);
4925
0ee45355
JB
4926/**
4927 * cfg80211_get_p2p_attr - find and copy a P2P attribute from IE buffer
4928 * @ies: the input IE buffer
4929 * @len: the input length
4930 * @attr: the attribute ID to find
4931 * @buf: output buffer, can be %NULL if the data isn't needed, e.g.
4932 * if the function is only called to get the needed buffer size
4933 * @bufsize: size of the output buffer
4934 *
4935 * The function finds a given P2P attribute in the (vendor) IEs and
4936 * copies its contents to the given buffer.
4937 *
0ae997dc
YB
4938 * Return: A negative error code (-%EILSEQ or -%ENOENT) if the data is
4939 * malformed or the attribute can't be found (respectively), or the
4940 * length of the found attribute (which can be zero).
0ee45355 4941 */
c216e641
AS
4942int cfg80211_get_p2p_attr(const u8 *ies, unsigned int len,
4943 enum ieee80211_p2p_attr_id attr,
4944 u8 *buf, unsigned int bufsize);
0ee45355 4945
cd8f7cb4
JB
4946/**
4947 * cfg80211_report_wowlan_wakeup - report wakeup from WoWLAN
4948 * @wdev: the wireless device reporting the wakeup
4949 * @wakeup: the wakeup report
4950 * @gfp: allocation flags
4951 *
4952 * This function reports that the given device woke up. If it
4953 * caused the wakeup, report the reason(s), otherwise you may
4954 * pass %NULL as the @wakeup parameter to advertise that something
4955 * else caused the wakeup.
4956 */
4957void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
4958 struct cfg80211_wowlan_wakeup *wakeup,
4959 gfp_t gfp);
4960
5de17984
AS
4961/**
4962 * cfg80211_crit_proto_stopped() - indicate critical protocol stopped by driver.
4963 *
4964 * @wdev: the wireless device for which critical protocol is stopped.
03f831a6 4965 * @gfp: allocation flags
5de17984
AS
4966 *
4967 * This function can be called by the driver to indicate it has reverted
4968 * operation back to normal. One reason could be that the duration given
4969 * by .crit_proto_start() has expired.
4970 */
4971void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp);
4972
bdfbec2d
IP
4973/**
4974 * ieee80211_get_num_supported_channels - get number of channels device has
4975 * @wiphy: the wiphy
4976 *
4977 * Return: the number of channels supported by the device.
4978 */
4979unsigned int ieee80211_get_num_supported_channels(struct wiphy *wiphy);
4980
cb2d956d
LC
4981/**
4982 * cfg80211_check_combinations - check interface combinations
4983 *
4984 * @wiphy: the wiphy
4985 * @num_different_channels: the number of different channels we want
4986 * to use for verification
4987 * @radar_detect: a bitmap where each bit corresponds to a channel
4988 * width where radar detection is needed, as in the definition of
4989 * &struct ieee80211_iface_combination.@radar_detect_widths
4990 * @iftype_num: array with the numbers of interfaces of each interface
4991 * type. The index is the interface type as specified in &enum
4992 * nl80211_iftype.
4993 *
4994 * This function can be called by the driver to check whether a
4995 * combination of interfaces and their types are allowed according to
4996 * the interface combinations.
4997 */
4998int cfg80211_check_combinations(struct wiphy *wiphy,
4999 const int num_different_channels,
5000 const u8 radar_detect,
5001 const int iftype_num[NUM_NL80211_IFTYPES]);
5002
65a124dd
MK
5003/**
5004 * cfg80211_iter_combinations - iterate over matching combinations
5005 *
5006 * @wiphy: the wiphy
5007 * @num_different_channels: the number of different channels we want
5008 * to use for verification
5009 * @radar_detect: a bitmap where each bit corresponds to a channel
5010 * width where radar detection is needed, as in the definition of
5011 * &struct ieee80211_iface_combination.@radar_detect_widths
5012 * @iftype_num: array with the numbers of interfaces of each interface
5013 * type. The index is the interface type as specified in &enum
5014 * nl80211_iftype.
5015 * @iter: function to call for each matching combination
5016 * @data: pointer to pass to iter function
5017 *
5018 * This function can be called by the driver to check what possible
5019 * combinations it fits in at a given moment, e.g. for channel switching
5020 * purposes.
5021 */
5022int cfg80211_iter_combinations(struct wiphy *wiphy,
5023 const int num_different_channels,
5024 const u8 radar_detect,
5025 const int iftype_num[NUM_NL80211_IFTYPES],
5026 void (*iter)(const struct ieee80211_iface_combination *c,
5027 void *data),
5028 void *data);
5029
f04c2203
MK
5030/*
5031 * cfg80211_stop_iface - trigger interface disconnection
5032 *
5033 * @wiphy: the wiphy
5034 * @wdev: wireless device
5035 * @gfp: context flags
5036 *
5037 * Trigger interface to be stopped as if AP was stopped, IBSS/mesh left, STA
5038 * disconnected.
5039 *
5040 * Note: This doesn't need any locks and is asynchronous.
5041 */
5042void cfg80211_stop_iface(struct wiphy *wiphy, struct wireless_dev *wdev,
5043 gfp_t gfp);
5044
f6837ba8
JB
5045/**
5046 * cfg80211_shutdown_all_interfaces - shut down all interfaces for a wiphy
5047 * @wiphy: the wiphy to shut down
5048 *
5049 * This function shuts down all interfaces belonging to this wiphy by
5050 * calling dev_close() (and treating non-netdev interfaces as needed).
5051 * It shouldn't really be used unless there are some fatal device errors
5052 * that really can't be recovered in any other way.
5053 *
5054 * Callers must hold the RTNL and be able to deal with callbacks into
5055 * the driver while the function is running.
5056 */
5057void cfg80211_shutdown_all_interfaces(struct wiphy *wiphy);
5058
d75bb06b
GKS
5059/**
5060 * wiphy_ext_feature_set - set the extended feature flag
5061 *
5062 * @wiphy: the wiphy to modify.
5063 * @ftidx: extended feature bit index.
5064 *
5065 * The extended features are flagged in multiple bytes (see
5066 * &struct wiphy.@ext_features)
5067 */
5068static inline void wiphy_ext_feature_set(struct wiphy *wiphy,
5069 enum nl80211_ext_feature_index ftidx)
5070{
5071 u8 *ft_byte;
5072
5073 ft_byte = &wiphy->ext_features[ftidx / 8];
5074 *ft_byte |= BIT(ftidx % 8);
5075}
5076
5077/**
5078 * wiphy_ext_feature_isset - check the extended feature flag
5079 *
5080 * @wiphy: the wiphy to modify.
5081 * @ftidx: extended feature bit index.
5082 *
5083 * The extended features are flagged in multiple bytes (see
5084 * &struct wiphy.@ext_features)
5085 */
5086static inline bool
5087wiphy_ext_feature_isset(struct wiphy *wiphy,
5088 enum nl80211_ext_feature_index ftidx)
5089{
5090 u8 ft_byte;
5091
5092 ft_byte = wiphy->ext_features[ftidx / 8];
5093 return (ft_byte & BIT(ftidx % 8)) != 0;
5094}
b7ffbd7e
JB
5095
5096/* ethtool helper */
5097void cfg80211_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info);
5098
e1db74fc
JP
5099/* Logging, debugging and troubleshooting/diagnostic helpers. */
5100
5101/* wiphy_printk helpers, similar to dev_printk */
5102
5103#define wiphy_printk(level, wiphy, format, args...) \
9c376639 5104 dev_printk(level, &(wiphy)->dev, format, ##args)
e1db74fc 5105#define wiphy_emerg(wiphy, format, args...) \
9c376639 5106 dev_emerg(&(wiphy)->dev, format, ##args)
e1db74fc 5107#define wiphy_alert(wiphy, format, args...) \
9c376639 5108 dev_alert(&(wiphy)->dev, format, ##args)
e1db74fc 5109#define wiphy_crit(wiphy, format, args...) \
9c376639 5110 dev_crit(&(wiphy)->dev, format, ##args)
e1db74fc 5111#define wiphy_err(wiphy, format, args...) \
9c376639 5112 dev_err(&(wiphy)->dev, format, ##args)
e1db74fc 5113#define wiphy_warn(wiphy, format, args...) \
9c376639 5114 dev_warn(&(wiphy)->dev, format, ##args)
e1db74fc 5115#define wiphy_notice(wiphy, format, args...) \
9c376639 5116 dev_notice(&(wiphy)->dev, format, ##args)
e1db74fc 5117#define wiphy_info(wiphy, format, args...) \
9c376639 5118 dev_info(&(wiphy)->dev, format, ##args)
073730d7 5119
9c376639 5120#define wiphy_debug(wiphy, format, args...) \
e1db74fc 5121 wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
9c376639 5122
e1db74fc 5123#define wiphy_dbg(wiphy, format, args...) \
9c376639 5124 dev_dbg(&(wiphy)->dev, format, ##args)
e1db74fc
JP
5125
5126#if defined(VERBOSE_DEBUG)
5127#define wiphy_vdbg wiphy_dbg
5128#else
e1db74fc
JP
5129#define wiphy_vdbg(wiphy, format, args...) \
5130({ \
5131 if (0) \
5132 wiphy_printk(KERN_DEBUG, wiphy, format, ##args); \
9c376639 5133 0; \
e1db74fc
JP
5134})
5135#endif
5136
5137/*
5138 * wiphy_WARN() acts like wiphy_printk(), but with the key difference
5139 * of using a WARN/WARN_ON to get the message out, including the
5140 * file/line information and a backtrace.
5141 */
5142#define wiphy_WARN(wiphy, format, args...) \
5143 WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
5144
704232c2 5145#endif /* __NET_CFG80211_H */
This page took 2.034828 seconds and 5 git commands to generate.