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