blob: 8be88bb5ec60bfad71d8562f5650107b084ac73f [file] [log] [blame]
Johannes Berg704232c2007-04-23 12:20:05 -07001#ifndef __NET_CFG80211_H
2#define __NET_CFG80211_H
Johannes Bergd3236552009-04-20 14:31:42 +02003/*
4 * 802.11 device and configuration interface
5 *
Jouni Malinen026331c2010-02-15 12:53:10 +02006 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd3236552009-04-20 14:31:42 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
Johannes Berg704232c2007-04-23 12:20:05 -070012
Johannes Bergd3236552009-04-20 14:31:42 +020013#include <linux/netdevice.h>
14#include <linux/debugfs.h>
15#include <linux/list.h>
Johannes Berg704232c2007-04-23 12:20:05 -070016#include <linux/netlink.h>
17#include <linux/skbuff.h>
Johannes Berg55682962007-09-20 13:09:35 -040018#include <linux/nl80211.h>
Johannes Berg2a519312009-02-10 21:25:55 +010019#include <linux/if_ether.h>
20#include <linux/ieee80211.h>
Johannes Bergd3236552009-04-20 14:31:42 +020021#include <net/regulatory.h>
22
Johannes Bergfee52672008-11-26 22:36:31 +010023/* remove once we remove the wext stuff */
Johannes Bergd3236552009-04-20 14:31:42 +020024#include <net/iw_handler.h>
25#include <linux/wireless.h>
26
Johannes Berg704232c2007-04-23 12:20:05 -070027
Johannes Bergd70e9692010-08-19 16:11:27 +020028/**
29 * DOC: Introduction
30 *
31 * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
32 * userspace and drivers, and offers some utility functionality associated
33 * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
34 * by all modern wireless drivers in Linux, so that they offer a consistent
35 * API through nl80211. For backward compatibility, cfg80211 also offers
36 * wireless extensions to userspace, but hides them from drivers completely.
37 *
38 * Additionally, cfg80211 contains code to help enforce regulatory spectrum
39 * use restrictions.
40 */
41
42
43/**
44 * DOC: Device registration
45 *
46 * In order for a driver to use cfg80211, it must register the hardware device
47 * with cfg80211. This happens through a number of hardware capability structs
48 * described below.
49 *
50 * The fundamental structure for each device is the 'wiphy', of which each
51 * instance describes a physical wireless device connected to the system. Each
52 * such wiphy can have zero, one, or many virtual interfaces associated with
53 * it, which need to be identified as such by pointing the network interface's
54 * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
55 * the wireless part of the interface, normally this struct is embedded in the
56 * network interface's private data area. Drivers can optionally allow creating
57 * or destroying virtual interfaces on the fly, but without at least one or the
58 * ability to create some the wireless device isn't useful.
59 *
60 * Each wiphy structure contains device capability information, and also has
61 * a pointer to the various operations the driver offers. The definitions and
62 * structures here describe these capabilities in detail.
63 */
64
Johannes Berg704232c2007-04-23 12:20:05 -070065/*
Johannes Bergd3236552009-04-20 14:31:42 +020066 * wireless hardware capability structures
67 */
68
69/**
70 * enum ieee80211_band - supported frequency bands
Johannes Berg704232c2007-04-23 12:20:05 -070071 *
Johannes Bergd3236552009-04-20 14:31:42 +020072 * The bands are assigned this way because the supported
73 * bitrates differ in these bands.
74 *
75 * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band
76 * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7)
Johannes Bergabe37c42010-06-07 11:12:27 +020077 * @IEEE80211_NUM_BANDS: number of defined bands
Johannes Bergd3236552009-04-20 14:31:42 +020078 */
79enum ieee80211_band {
Jouni Malinen13ae75b2009-12-29 12:59:45 +020080 IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ,
81 IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ,
Johannes Bergd3236552009-04-20 14:31:42 +020082
83 /* keep last */
84 IEEE80211_NUM_BANDS
85};
86
87/**
88 * enum ieee80211_channel_flags - channel flags
89 *
90 * Channel flags set by the regulatory control code.
91 *
92 * @IEEE80211_CHAN_DISABLED: This channel is disabled.
93 * @IEEE80211_CHAN_PASSIVE_SCAN: Only passive scanning is permitted
94 * on this channel.
95 * @IEEE80211_CHAN_NO_IBSS: IBSS is not allowed on this channel.
96 * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel.
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -040097 * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel
Johannes Bergd3236552009-04-20 14:31:42 +020098 * is not permitted.
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -040099 * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel
Johannes Bergd3236552009-04-20 14:31:42 +0200100 * is not permitted.
101 */
102enum ieee80211_channel_flags {
103 IEEE80211_CHAN_DISABLED = 1<<0,
104 IEEE80211_CHAN_PASSIVE_SCAN = 1<<1,
105 IEEE80211_CHAN_NO_IBSS = 1<<2,
106 IEEE80211_CHAN_RADAR = 1<<3,
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400107 IEEE80211_CHAN_NO_HT40PLUS = 1<<4,
108 IEEE80211_CHAN_NO_HT40MINUS = 1<<5,
Johannes Bergd3236552009-04-20 14:31:42 +0200109};
110
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400111#define IEEE80211_CHAN_NO_HT40 \
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400112 (IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
Luis R. Rodriguez038659e2009-05-02 00:37:17 -0400113
Johannes Bergd3236552009-04-20 14:31:42 +0200114/**
115 * struct ieee80211_channel - channel definition
116 *
117 * This structure describes a single channel for use
118 * with cfg80211.
119 *
120 * @center_freq: center frequency in MHz
Johannes Bergd3236552009-04-20 14:31:42 +0200121 * @hw_value: hardware-specific value for the channel
122 * @flags: channel flags from &enum ieee80211_channel_flags.
123 * @orig_flags: channel flags at registration time, used by regulatory
124 * code to support devices with additional restrictions
125 * @band: band this channel belongs to.
126 * @max_antenna_gain: maximum antenna gain in dBi
127 * @max_power: maximum transmission power (in dBm)
128 * @beacon_found: helper to regulatory code to indicate when a beacon
129 * has been found on this channel. Use regulatory_hint_found_beacon()
Walter Goldens77c20612010-05-18 04:44:54 -0700130 * to enable this, this is useful only on 5 GHz band.
Johannes Bergd3236552009-04-20 14:31:42 +0200131 * @orig_mag: internal use
132 * @orig_mpwr: internal use
133 */
134struct ieee80211_channel {
135 enum ieee80211_band band;
136 u16 center_freq;
Johannes Bergd3236552009-04-20 14:31:42 +0200137 u16 hw_value;
138 u32 flags;
139 int max_antenna_gain;
140 int max_power;
141 bool beacon_found;
142 u32 orig_flags;
143 int orig_mag, orig_mpwr;
144};
145
146/**
147 * enum ieee80211_rate_flags - rate flags
148 *
149 * Hardware/specification flags for rates. These are structured
150 * in a way that allows using the same bitrate structure for
151 * different bands/PHY modes.
152 *
153 * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
154 * preamble on this bitrate; only relevant in 2.4GHz band and
155 * with CCK rates.
156 * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
157 * when used with 802.11a (on the 5 GHz band); filled by the
158 * core code when registering the wiphy.
159 * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
160 * when used with 802.11b (on the 2.4 GHz band); filled by the
161 * core code when registering the wiphy.
162 * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
163 * when used with 802.11g (on the 2.4 GHz band); filled by the
164 * core code when registering the wiphy.
165 * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
166 */
167enum ieee80211_rate_flags {
168 IEEE80211_RATE_SHORT_PREAMBLE = 1<<0,
169 IEEE80211_RATE_MANDATORY_A = 1<<1,
170 IEEE80211_RATE_MANDATORY_B = 1<<2,
171 IEEE80211_RATE_MANDATORY_G = 1<<3,
172 IEEE80211_RATE_ERP_G = 1<<4,
173};
174
175/**
176 * struct ieee80211_rate - bitrate definition
177 *
178 * This structure describes a bitrate that an 802.11 PHY can
179 * operate with. The two values @hw_value and @hw_value_short
180 * are only for driver use when pointers to this structure are
181 * passed around.
182 *
183 * @flags: rate-specific flags
184 * @bitrate: bitrate in units of 100 Kbps
185 * @hw_value: driver/hardware value for this rate
186 * @hw_value_short: driver/hardware value for this rate when
187 * short preamble is used
188 */
189struct ieee80211_rate {
190 u32 flags;
191 u16 bitrate;
192 u16 hw_value, hw_value_short;
193};
194
195/**
196 * struct ieee80211_sta_ht_cap - STA's HT capabilities
197 *
198 * This structure describes most essential parameters needed
199 * to describe 802.11n HT capabilities for an STA.
200 *
201 * @ht_supported: is HT supported by the STA
202 * @cap: HT capabilities map as described in 802.11n spec
203 * @ampdu_factor: Maximum A-MPDU length factor
204 * @ampdu_density: Minimum A-MPDU spacing
205 * @mcs: Supported MCS rates
206 */
207struct ieee80211_sta_ht_cap {
208 u16 cap; /* use IEEE80211_HT_CAP_ */
209 bool ht_supported;
210 u8 ampdu_factor;
211 u8 ampdu_density;
212 struct ieee80211_mcs_info mcs;
213};
214
215/**
216 * struct ieee80211_supported_band - frequency band definition
217 *
218 * This structure describes a frequency band a wiphy
219 * is able to operate in.
220 *
221 * @channels: Array of channels the hardware can operate in
222 * in this band.
223 * @band: the band this structure represents
224 * @n_channels: Number of channels in @channels
225 * @bitrates: Array of bitrates the hardware can operate with
226 * in this band. Must be sorted to give a valid "supported
227 * rates" IE, i.e. CCK rates first, then OFDM.
228 * @n_bitrates: Number of bitrates in @bitrates
Johannes Bergabe37c42010-06-07 11:12:27 +0200229 * @ht_cap: HT capabilities in this band
Johannes Bergd3236552009-04-20 14:31:42 +0200230 */
231struct ieee80211_supported_band {
232 struct ieee80211_channel *channels;
233 struct ieee80211_rate *bitrates;
234 enum ieee80211_band band;
235 int n_channels;
236 int n_bitrates;
237 struct ieee80211_sta_ht_cap ht_cap;
238};
239
240/*
241 * Wireless hardware/device configuration structures and methods
Johannes Berg704232c2007-04-23 12:20:05 -0700242 */
243
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100244/**
Johannes Bergd70e9692010-08-19 16:11:27 +0200245 * DOC: Actions and configuration
246 *
247 * Each wireless device and each virtual interface offer a set of configuration
248 * operations and other actions that are invoked by userspace. Each of these
249 * actions is described in the operations structure, and the parameters these
250 * operations use are described separately.
251 *
252 * Additionally, some operations are asynchronous and expect to get status
253 * information via some functions that drivers need to call.
254 *
255 * Scanning and BSS list handling with its associated functionality is described
256 * in a separate chapter.
257 */
258
259/**
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100260 * struct vif_params - describes virtual interface parameters
Felix Fietkau8b787642009-11-10 18:53:10 +0100261 * @use_4addr: use 4-address frames
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100262 */
263struct vif_params {
Felix Fietkau8b787642009-11-10 18:53:10 +0100264 int use_4addr;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100265};
266
Andy Green179f8312007-07-10 19:29:38 +0200267/**
Johannes Berg41ade002007-12-19 02:03:29 +0100268 * struct key_params - key information
269 *
270 * Information about a key
271 *
272 * @key: key material
273 * @key_len: length of key material
274 * @cipher: cipher suite selector
275 * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
276 * with the get_key() callback, must be in little endian,
277 * length given by @seq_len.
Johannes Bergabe37c42010-06-07 11:12:27 +0200278 * @seq_len: length of @seq.
Johannes Berg41ade002007-12-19 02:03:29 +0100279 */
280struct key_params {
281 u8 *key;
282 u8 *seq;
283 int key_len;
284 int seq_len;
285 u32 cipher;
286};
287
Johannes Berged1b6cc2007-12-19 02:03:32 +0100288/**
Holger Schurig61fa7132009-11-11 12:25:40 +0100289 * enum survey_info_flags - survey information flags
290 *
Johannes Bergabe37c42010-06-07 11:12:27 +0200291 * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
Felix Fietkau17e5a802010-09-29 17:15:30 +0200292 * @SURVEY_INFO_IN_USE: channel is currently being used
Felix Fietkau8610c292010-10-09 02:39:29 +0200293 * @SURVEY_INFO_CHANNEL_TIME: channel active time (in ms) was filled in
294 * @SURVEY_INFO_CHANNEL_TIME_BUSY: channel busy time was filled in
295 * @SURVEY_INFO_CHANNEL_TIME_EXT_BUSY: extension channel busy time was filled in
296 * @SURVEY_INFO_CHANNEL_TIME_RX: channel receive time was filled in
297 * @SURVEY_INFO_CHANNEL_TIME_TX: channel transmit time was filled in
Johannes Bergabe37c42010-06-07 11:12:27 +0200298 *
Holger Schurig61fa7132009-11-11 12:25:40 +0100299 * Used by the driver to indicate which info in &struct survey_info
300 * it has filled in during the get_survey().
301 */
302enum survey_info_flags {
303 SURVEY_INFO_NOISE_DBM = 1<<0,
Felix Fietkau17e5a802010-09-29 17:15:30 +0200304 SURVEY_INFO_IN_USE = 1<<1,
Felix Fietkau8610c292010-10-09 02:39:29 +0200305 SURVEY_INFO_CHANNEL_TIME = 1<<2,
306 SURVEY_INFO_CHANNEL_TIME_BUSY = 1<<3,
307 SURVEY_INFO_CHANNEL_TIME_EXT_BUSY = 1<<4,
308 SURVEY_INFO_CHANNEL_TIME_RX = 1<<5,
309 SURVEY_INFO_CHANNEL_TIME_TX = 1<<6,
Holger Schurig61fa7132009-11-11 12:25:40 +0100310};
311
312/**
313 * struct survey_info - channel survey response
314 *
Holger Schurig61fa7132009-11-11 12:25:40 +0100315 * @channel: the channel this survey record reports, mandatory
316 * @filled: bitflag of flags from &enum survey_info_flags
317 * @noise: channel noise in dBm. This and all following fields are
318 * optional
Felix Fietkau8610c292010-10-09 02:39:29 +0200319 * @channel_time: amount of time in ms the radio spent on the channel
320 * @channel_time_busy: amount of time the primary channel was sensed busy
321 * @channel_time_ext_busy: amount of time the extension channel was sensed busy
322 * @channel_time_rx: amount of time the radio spent receiving data
323 * @channel_time_tx: amount of time the radio spent transmitting data
Holger Schurig61fa7132009-11-11 12:25:40 +0100324 *
Johannes Bergabe37c42010-06-07 11:12:27 +0200325 * Used by dump_survey() to report back per-channel survey information.
326 *
Holger Schurig61fa7132009-11-11 12:25:40 +0100327 * This structure can later be expanded with things like
328 * channel duty cycle etc.
329 */
330struct survey_info {
331 struct ieee80211_channel *channel;
Felix Fietkau8610c292010-10-09 02:39:29 +0200332 u64 channel_time;
333 u64 channel_time_busy;
334 u64 channel_time_ext_busy;
335 u64 channel_time_rx;
336 u64 channel_time_tx;
Holger Schurig61fa7132009-11-11 12:25:40 +0100337 u32 filled;
338 s8 noise;
339};
340
341/**
Deepthi Gowri6f79e162011-12-23 20:27:04 +0530342 * struct cfg80211_crypto_settings - Crypto settings
343 * @wpa_versions: indicates which, if any, WPA versions are enabled
344 * (from enum nl80211_wpa_versions)
345 * @cipher_group: group key cipher suite (or 0 if unset)
346 * @n_ciphers_pairwise: number of AP supported unicast ciphers
347 * @ciphers_pairwise: unicast key cipher suites
348 * @n_akm_suites: number of AKM suites
349 * @akm_suites: AKM suites
350 * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
351 * sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
352 * required to assume that the port is unauthorized until authorized by
353 * user space. Otherwise, port is marked authorized by default.
354 * @control_port_ethertype: the control port protocol that should be
355 * allowed through even on unauthorized ports
356 * @control_port_no_encrypt: TRUE to prevent encryption of control port
357 * protocol frames.
358 */
359struct cfg80211_crypto_settings {
360 u32 wpa_versions;
361 u32 cipher_group;
362 int n_ciphers_pairwise;
363 u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
364 int n_akm_suites;
365 u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
366 bool control_port;
367 __be16 control_port_ethertype;
368 bool control_port_no_encrypt;
369};
370
371/**
Johannes Berged1b6cc2007-12-19 02:03:32 +0100372 * struct beacon_parameters - beacon parameters
373 *
374 * Used to configure the beacon for an interface.
375 *
376 * @head: head portion of beacon (before TIM IE)
377 * or %NULL if not changed
378 * @tail: tail portion of beacon (after TIM IE)
379 * or %NULL if not changed
380 * @interval: beacon interval or zero if not changed
381 * @dtim_period: DTIM period or zero if not changed
382 * @head_len: length of @head
383 * @tail_len: length of @tail
Deepthi Gowri6f79e162011-12-23 20:27:04 +0530384 * @ssid: SSID to be used in the BSS (note: may be %NULL if not provided from
385 * user space)
386 * @ssid_len: length of @ssid
387 * @hidden_ssid: whether to hide the SSID in Beacon/Probe Response frames
388 * @crypto: crypto settings
389 * @privacy: the BSS uses privacy
390 * @auth_type: Authentication type (algorithm)
391 * @beacon_ies: extra information element(s) to add into Beacon frames or %NULL
392 * @beacon_ies_len: length of beacon_ies in octets
393 * @proberesp_ies: extra information element(s) to add into Probe Response
394 * frames or %NULL
395 * @proberesp_ies_len: length of proberesp_ies in octets
396 * @assocresp_ies: extra information element(s) to add into (Re)Association
397 * Response frames or %NULL
398 * @assocresp_ies_len: length of assocresp_ies in octets
Johannes Berged1b6cc2007-12-19 02:03:32 +0100399 */
400struct beacon_parameters {
401 u8 *head, *tail;
402 int interval, dtim_period;
403 int head_len, tail_len;
Deepthi Gowri6f79e162011-12-23 20:27:04 +0530404 const u8 *ssid;
405 size_t ssid_len;
406 enum nl80211_hidden_ssid hidden_ssid;
407 struct cfg80211_crypto_settings crypto;
408 bool privacy;
409 enum nl80211_auth_type auth_type;
410 const u8 *beacon_ies;
411 size_t beacon_ies_len;
412 const u8 *proberesp_ies;
413 size_t proberesp_ies_len;
414 const u8 *assocresp_ies;
415 size_t assocresp_ies_len;
Johannes Berged1b6cc2007-12-19 02:03:32 +0100416};
417
Johannes Berg5727ef12007-12-19 02:03:34 +0100418/**
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100419 * enum plink_action - actions to perform in mesh peers
420 *
421 * @PLINK_ACTION_INVALID: action 0 is reserved
422 * @PLINK_ACTION_OPEN: start mesh peer link establishment
Johannes Bergabe37c42010-06-07 11:12:27 +0200423 * @PLINK_ACTION_BLOCK: block traffic from this mesh peer
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100424 */
425enum plink_actions {
426 PLINK_ACTION_INVALID,
427 PLINK_ACTION_OPEN,
428 PLINK_ACTION_BLOCK,
429};
430
431/**
Johannes Berg5727ef12007-12-19 02:03:34 +0100432 * struct station_parameters - station parameters
433 *
434 * Used to change and create a new station.
435 *
436 * @vlan: vlan interface station should belong to
437 * @supported_rates: supported rates in IEEE 802.11 format
438 * (or NULL for no change)
439 * @supported_rates_len: number of supported rates
Johannes Bergeccb8e82009-05-11 21:57:56 +0300440 * @sta_flags_mask: station flags that changed
441 * (bitmask of BIT(NL80211_STA_FLAG_...))
442 * @sta_flags_set: station flags values
443 * (bitmask of BIT(NL80211_STA_FLAG_...))
Johannes Berg5727ef12007-12-19 02:03:34 +0100444 * @listen_interval: listen interval or -1 for no change
445 * @aid: AID or zero for no change
Johannes Bergabe37c42010-06-07 11:12:27 +0200446 * @plink_action: plink action to take
Javier Cardona9c3990a2011-05-03 16:57:11 -0700447 * @plink_state: set the peer link state for a station
Johannes Bergabe37c42010-06-07 11:12:27 +0200448 * @ht_capa: HT capabilities of station
Johannes Berg5727ef12007-12-19 02:03:34 +0100449 */
450struct station_parameters {
451 u8 *supported_rates;
452 struct net_device *vlan;
Johannes Bergeccb8e82009-05-11 21:57:56 +0300453 u32 sta_flags_mask, sta_flags_set;
Johannes Berg5727ef12007-12-19 02:03:34 +0100454 int listen_interval;
455 u16 aid;
456 u8 supported_rates_len;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100457 u8 plink_action;
Javier Cardona9c3990a2011-05-03 16:57:11 -0700458 u8 plink_state;
Jouni Malinen36aedc92008-08-25 11:58:58 +0300459 struct ieee80211_ht_cap *ht_capa;
Johannes Berg5727ef12007-12-19 02:03:34 +0100460};
461
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100462/**
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100463 * enum station_info_flags - station information flags
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100464 *
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100465 * Used by the driver to indicate which info in &struct station_info
466 * it has filled in during get_station() or dump_station().
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100467 *
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100468 * @STATION_INFO_INACTIVE_TIME: @inactive_time filled
469 * @STATION_INFO_RX_BYTES: @rx_bytes filled
470 * @STATION_INFO_TX_BYTES: @tx_bytes filled
471 * @STATION_INFO_LLID: @llid filled
472 * @STATION_INFO_PLID: @plid filled
473 * @STATION_INFO_PLINK_STATE: @plink_state filled
Henning Rogge420e7fa2008-12-11 22:04:19 +0100474 * @STATION_INFO_SIGNAL: @signal filled
Felix Fietkauc8dcfd82011-02-27 22:08:00 +0100475 * @STATION_INFO_TX_BITRATE: @txrate fields are filled
Henning Rogge420e7fa2008-12-11 22:04:19 +0100476 * (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs)
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200477 * @STATION_INFO_RX_PACKETS: @rx_packets filled
478 * @STATION_INFO_TX_PACKETS: @tx_packets filled
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900479 * @STATION_INFO_TX_RETRIES: @tx_retries filled
480 * @STATION_INFO_TX_FAILED: @tx_failed filled
Ben Greear5a5c7312010-10-07 16:39:20 -0700481 * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled
Bruno Randolf541a45a2010-12-02 19:12:43 +0900482 * @STATION_INFO_SIGNAL_AVG: @signal_avg filled
Felix Fietkauc8dcfd82011-02-27 22:08:00 +0100483 * @STATION_INFO_RX_BITRATE: @rxrate fields are filled
Paul Stewartf4263c92011-03-31 09:25:41 -0700484 * @STATION_INFO_BSS_PARAM: @bss_param filled
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530485 * @STATION_INFO_CONNECTED_TIME: @connected_time filled
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100486 */
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100487enum station_info_flags {
488 STATION_INFO_INACTIVE_TIME = 1<<0,
489 STATION_INFO_RX_BYTES = 1<<1,
490 STATION_INFO_TX_BYTES = 1<<2,
491 STATION_INFO_LLID = 1<<3,
492 STATION_INFO_PLID = 1<<4,
493 STATION_INFO_PLINK_STATE = 1<<5,
Henning Rogge420e7fa2008-12-11 22:04:19 +0100494 STATION_INFO_SIGNAL = 1<<6,
495 STATION_INFO_TX_BITRATE = 1<<7,
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200496 STATION_INFO_RX_PACKETS = 1<<8,
497 STATION_INFO_TX_PACKETS = 1<<9,
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900498 STATION_INFO_TX_RETRIES = 1<<10,
499 STATION_INFO_TX_FAILED = 1<<11,
Ben Greear5a5c7312010-10-07 16:39:20 -0700500 STATION_INFO_RX_DROP_MISC = 1<<12,
Bruno Randolf541a45a2010-12-02 19:12:43 +0900501 STATION_INFO_SIGNAL_AVG = 1<<13,
Felix Fietkauc8dcfd82011-02-27 22:08:00 +0100502 STATION_INFO_RX_BITRATE = 1<<14,
Paul Stewartf4263c92011-03-31 09:25:41 -0700503 STATION_INFO_BSS_PARAM = 1<<15,
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530504 STATION_INFO_CONNECTED_TIME = 1<<16
Henning Rogge420e7fa2008-12-11 22:04:19 +0100505};
506
507/**
508 * enum station_info_rate_flags - bitrate info flags
509 *
510 * Used by the driver to indicate the specific rate transmission
511 * type for 802.11n transmissions.
512 *
513 * @RATE_INFO_FLAGS_MCS: @tx_bitrate_mcs filled
514 * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 Mhz width transmission
515 * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
516 */
517enum rate_info_flags {
518 RATE_INFO_FLAGS_MCS = 1<<0,
519 RATE_INFO_FLAGS_40_MHZ_WIDTH = 1<<1,
520 RATE_INFO_FLAGS_SHORT_GI = 1<<2,
521};
522
523/**
524 * struct rate_info - bitrate information
525 *
526 * Information about a receiving or transmitting bitrate
527 *
528 * @flags: bitflag of flags from &enum rate_info_flags
529 * @mcs: mcs index if struct describes a 802.11n bitrate
530 * @legacy: bitrate in 100kbit/s for 802.11abg
531 */
532struct rate_info {
533 u8 flags;
534 u8 mcs;
535 u16 legacy;
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100536};
537
538/**
Paul Stewartf4263c92011-03-31 09:25:41 -0700539 * enum station_info_rate_flags - bitrate info flags
540 *
541 * Used by the driver to indicate the specific rate transmission
542 * type for 802.11n transmissions.
543 *
544 * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
545 * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
546 * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
547 */
548enum bss_param_flags {
549 BSS_PARAM_FLAGS_CTS_PROT = 1<<0,
550 BSS_PARAM_FLAGS_SHORT_PREAMBLE = 1<<1,
551 BSS_PARAM_FLAGS_SHORT_SLOT_TIME = 1<<2,
552};
553
554/**
555 * struct sta_bss_parameters - BSS parameters for the attached station
556 *
557 * Information about the currently associated BSS
558 *
559 * @flags: bitflag of flags from &enum bss_param_flags
560 * @dtim_period: DTIM period for the BSS
561 * @beacon_interval: beacon interval
562 */
563struct sta_bss_parameters {
564 u8 flags;
565 u8 dtim_period;
566 u16 beacon_interval;
567};
568
569/**
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100570 * struct station_info - station information
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100571 *
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100572 * Station information filled by driver for get_station() and dump_station.
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100573 *
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100574 * @filled: bitflag of flags from &enum station_info_flags
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530575 * @connected_time: time(in secs) since a station is last connected
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100576 * @inactive_time: time since last station activity (tx/rx) in milliseconds
577 * @rx_bytes: bytes received from this station
578 * @tx_bytes: bytes transmitted to this station
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100579 * @llid: mesh local link id
580 * @plid: mesh peer link id
581 * @plink_state: mesh peer link state
Henning Rogge420e7fa2008-12-11 22:04:19 +0100582 * @signal: signal strength of last received packet in dBm
Bruno Randolf541a45a2010-12-02 19:12:43 +0900583 * @signal_avg: signal strength average in dBm
Randy Dunlap858022a2011-03-18 09:33:02 -0700584 * @txrate: current unicast bitrate from this station
585 * @rxrate: current unicast bitrate to this station
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200586 * @rx_packets: packets received from this station
587 * @tx_packets: packets transmitted to this station
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900588 * @tx_retries: cumulative retry counts
589 * @tx_failed: number of failed transmissions (retries exceeded, no ACK)
Ben Greear5a5c7312010-10-07 16:39:20 -0700590 * @rx_dropped_misc: Dropped for un-specified reason.
Randy Dunlap1ba01452011-05-22 17:16:20 -0700591 * @bss_param: current BSS parameters
Johannes Bergf5ea9122009-08-07 16:17:38 +0200592 * @generation: generation number for nl80211 dumps.
593 * This number should increase every time the list of stations
594 * changes, i.e. when a station is added or removed, so that
595 * userspace can tell whether it got a consistent snapshot.
Deepthi Gowri7ad229d2011-12-06 11:20:48 +0530596 * @assoc_req_ies: IEs from (Re)Association Request.
597 * This is used only when in AP mode with drivers that do not use
598 * user space MLME/SME implementation. The information is provided for
599 * the cfg80211_new_sta() calls to notify user space of the IEs.
600 * @assoc_req_ies_len: Length of assoc_req_ies buffer in octets.
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100601 */
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100602struct station_info {
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100603 u32 filled;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530604 u32 connected_time;
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100605 u32 inactive_time;
606 u32 rx_bytes;
607 u32 tx_bytes;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100608 u16 llid;
609 u16 plid;
610 u8 plink_state;
Henning Rogge420e7fa2008-12-11 22:04:19 +0100611 s8 signal;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900612 s8 signal_avg;
Henning Rogge420e7fa2008-12-11 22:04:19 +0100613 struct rate_info txrate;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +0100614 struct rate_info rxrate;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200615 u32 rx_packets;
616 u32 tx_packets;
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900617 u32 tx_retries;
618 u32 tx_failed;
Ben Greear5a5c7312010-10-07 16:39:20 -0700619 u32 rx_dropped_misc;
Paul Stewartf4263c92011-03-31 09:25:41 -0700620 struct sta_bss_parameters bss_param;
Johannes Bergf5ea9122009-08-07 16:17:38 +0200621
622 int generation;
Deepthi Gowri7ad229d2011-12-06 11:20:48 +0530623
624 const u8 *assoc_req_ies;
625 size_t assoc_req_ies_len;
626
627 /*
628 * Note: Add a new enum station_info_flags value for each new field and
629 * use it to check which fields are initialized.
630 */
Johannes Bergfd5b74d2007-12-19 02:03:36 +0100631};
632
Michael Wu66f7ac52008-01-31 19:48:22 +0100633/**
634 * enum monitor_flags - monitor flags
635 *
636 * Monitor interface configuration flags. Note that these must be the bits
637 * according to the nl80211 flags.
638 *
639 * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
640 * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
641 * @MONITOR_FLAG_CONTROL: pass control frames
642 * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
643 * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
644 */
645enum monitor_flags {
646 MONITOR_FLAG_FCSFAIL = 1<<NL80211_MNTR_FLAG_FCSFAIL,
647 MONITOR_FLAG_PLCPFAIL = 1<<NL80211_MNTR_FLAG_PLCPFAIL,
648 MONITOR_FLAG_CONTROL = 1<<NL80211_MNTR_FLAG_CONTROL,
649 MONITOR_FLAG_OTHER_BSS = 1<<NL80211_MNTR_FLAG_OTHER_BSS,
650 MONITOR_FLAG_COOK_FRAMES = 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
651};
652
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100653/**
654 * enum mpath_info_flags - mesh path information flags
655 *
656 * Used by the driver to indicate which info in &struct mpath_info it has filled
657 * in during get_station() or dump_station().
658 *
Johannes Bergabe37c42010-06-07 11:12:27 +0200659 * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
660 * @MPATH_INFO_SN: @sn filled
661 * @MPATH_INFO_METRIC: @metric filled
662 * @MPATH_INFO_EXPTIME: @exptime filled
663 * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
664 * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
665 * @MPATH_INFO_FLAGS: @flags filled
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100666 */
667enum mpath_info_flags {
668 MPATH_INFO_FRAME_QLEN = BIT(0),
Rui Paulod19b3bf2009-11-09 23:46:55 +0000669 MPATH_INFO_SN = BIT(1),
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100670 MPATH_INFO_METRIC = BIT(2),
671 MPATH_INFO_EXPTIME = BIT(3),
672 MPATH_INFO_DISCOVERY_TIMEOUT = BIT(4),
673 MPATH_INFO_DISCOVERY_RETRIES = BIT(5),
674 MPATH_INFO_FLAGS = BIT(6),
675};
676
677/**
678 * struct mpath_info - mesh path information
679 *
680 * Mesh path information filled by driver for get_mpath() and dump_mpath().
681 *
682 * @filled: bitfield of flags from &enum mpath_info_flags
683 * @frame_qlen: number of queued frames for this destination
Rui Paulod19b3bf2009-11-09 23:46:55 +0000684 * @sn: target sequence number
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100685 * @metric: metric (cost) of this mesh path
686 * @exptime: expiration time for the mesh path from now, in msecs
687 * @flags: mesh path flags
688 * @discovery_timeout: total mesh path discovery timeout, in msecs
689 * @discovery_retries: mesh path discovery retries
Johannes Bergf5ea9122009-08-07 16:17:38 +0200690 * @generation: generation number for nl80211 dumps.
691 * This number should increase every time the list of mesh paths
692 * changes, i.e. when a station is added or removed, so that
693 * userspace can tell whether it got a consistent snapshot.
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100694 */
695struct mpath_info {
696 u32 filled;
697 u32 frame_qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000698 u32 sn;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100699 u32 metric;
700 u32 exptime;
701 u32 discovery_timeout;
702 u8 discovery_retries;
703 u8 flags;
Johannes Bergf5ea9122009-08-07 16:17:38 +0200704
705 int generation;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100706};
707
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300708/**
709 * struct bss_parameters - BSS parameters
710 *
711 * Used to change BSS parameters (mainly for AP mode).
712 *
713 * @use_cts_prot: Whether to use CTS protection
714 * (0 = no, 1 = yes, -1 = do not change)
715 * @use_short_preamble: Whether the use of short preambles is allowed
716 * (0 = no, 1 = yes, -1 = do not change)
717 * @use_short_slot_time: Whether the use of short slot time is allowed
718 * (0 = no, 1 = yes, -1 = do not change)
Jouni Malinen90c97a02008-10-30 16:59:22 +0200719 * @basic_rates: basic rates in IEEE 802.11 format
720 * (or NULL for no change)
721 * @basic_rates_len: number of basic rates
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +0200722 * @ap_isolate: do not forward packets between connected stations
Helmut Schaa50b12f52010-11-19 12:40:25 +0100723 * @ht_opmode: HT Operation mode
724 * (u16 = opmode, -1 = do not change)
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300725 */
726struct bss_parameters {
727 int use_cts_prot;
728 int use_short_preamble;
729 int use_short_slot_time;
Jouni Malinen90c97a02008-10-30 16:59:22 +0200730 u8 *basic_rates;
731 u8 basic_rates_len;
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +0200732 int ap_isolate;
Helmut Schaa50b12f52010-11-19 12:40:25 +0100733 int ht_opmode;
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300734};
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100735
Johannes Berg29cbe682010-12-03 09:20:44 +0100736/*
737 * struct mesh_config - 802.11s mesh configuration
738 *
739 * These parameters can be changed while the mesh is active.
740 */
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700741struct mesh_config {
742 /* Timeouts in ms */
743 /* Mesh plink management parameters */
744 u16 dot11MeshRetryTimeout;
745 u16 dot11MeshConfirmTimeout;
746 u16 dot11MeshHoldingTimeout;
747 u16 dot11MeshMaxPeerLinks;
748 u8 dot11MeshMaxRetries;
749 u8 dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +0100750 /* ttl used in path selection information elements */
751 u8 element_ttl;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700752 bool auto_open_plinks;
753 /* HWMP parameters */
754 u8 dot11MeshHWMPmaxPREQretries;
755 u32 path_refresh_time;
756 u16 min_discovery_timeout;
757 u32 dot11MeshHWMPactivePathTimeout;
758 u16 dot11MeshHWMPpreqMinInterval;
759 u16 dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +0000760 u8 dot11MeshHWMPRootMode;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700761};
762
Jouni Malinen31888482008-10-30 16:59:24 +0200763/**
Johannes Berg29cbe682010-12-03 09:20:44 +0100764 * struct mesh_setup - 802.11s mesh setup configuration
765 * @mesh_id: the mesh ID
766 * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
Javier Cardonac80d5452010-12-16 17:37:49 -0800767 * @path_sel_proto: which path selection protocol to use
768 * @path_metric: which metric to use
Javier Cardona581a8b02011-04-07 15:08:27 -0700769 * @ie: vendor information elements (optional)
770 * @ie_len: length of vendor information elements
Javier Cardonab130e5c2011-05-03 16:57:07 -0700771 * @is_authenticated: this mesh requires authentication
772 * @is_secure: this mesh uses security
Johannes Berg29cbe682010-12-03 09:20:44 +0100773 *
774 * These parameters are fixed when the mesh is created.
775 */
776struct mesh_setup {
777 const u8 *mesh_id;
778 u8 mesh_id_len;
Javier Cardonac80d5452010-12-16 17:37:49 -0800779 u8 path_sel_proto;
780 u8 path_metric;
Javier Cardona581a8b02011-04-07 15:08:27 -0700781 const u8 *ie;
782 u8 ie_len;
Javier Cardonab130e5c2011-05-03 16:57:07 -0700783 bool is_authenticated;
Javier Cardona15d5dda2011-04-07 15:08:28 -0700784 bool is_secure;
Johannes Berg29cbe682010-12-03 09:20:44 +0100785};
786
787/**
Jouni Malinen31888482008-10-30 16:59:24 +0200788 * struct ieee80211_txq_params - TX queue parameters
789 * @queue: TX queue identifier (NL80211_TXQ_Q_*)
790 * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
791 * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
792 * 1..32767]
793 * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
794 * 1..32767]
795 * @aifs: Arbitration interframe space [0..255]
796 */
797struct ieee80211_txq_params {
798 enum nl80211_txq_q queue;
799 u16 txop;
800 u16 cwmin;
801 u16 cwmax;
802 u8 aifs;
803};
804
Johannes Berg704232c2007-04-23 12:20:05 -0700805/* from net/wireless.h */
806struct wiphy;
807
Johannes Bergd70e9692010-08-19 16:11:27 +0200808/**
809 * DOC: Scanning and BSS list handling
810 *
811 * The scanning process itself is fairly simple, but cfg80211 offers quite
812 * a bit of helper functionality. To start a scan, the scan operation will
813 * be invoked with a scan definition. This scan definition contains the
814 * channels to scan, and the SSIDs to send probe requests for (including the
815 * wildcard, if desired). A passive scan is indicated by having no SSIDs to
816 * probe. Additionally, a scan request may contain extra information elements
817 * that should be added to the probe request. The IEs are guaranteed to be
818 * well-formed, and will not exceed the maximum length the driver advertised
819 * in the wiphy structure.
820 *
821 * When scanning finds a BSS, cfg80211 needs to be notified of that, because
822 * it is responsible for maintaining the BSS list; the driver should not
823 * maintain a list itself. For this notification, various functions exist.
824 *
825 * Since drivers do not maintain a BSS list, there are also a number of
826 * functions to search for a BSS and obtain information about it from the
827 * BSS structure cfg80211 maintains. The BSS list is also made available
828 * to userspace.
829 */
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200830
Johannes Berg704232c2007-04-23 12:20:05 -0700831/**
Johannes Berg2a519312009-02-10 21:25:55 +0100832 * struct cfg80211_ssid - SSID description
833 * @ssid: the SSID
834 * @ssid_len: length of the ssid
835 */
836struct cfg80211_ssid {
837 u8 ssid[IEEE80211_MAX_SSID_LEN];
838 u8 ssid_len;
839};
840
841/**
842 * struct cfg80211_scan_request - scan request description
843 *
844 * @ssids: SSIDs to scan for (active scan only)
845 * @n_ssids: number of SSIDs
846 * @channels: channels to scan on.
Helmut Schaaca3dbc22009-07-10 14:54:58 +0200847 * @n_channels: total number of channels to scan
Jouni Malinen70692ad2009-02-16 19:39:13 +0200848 * @ie: optional information element(s) to add into Probe Request or %NULL
849 * @ie_len: length of ie in octets
Johannes Berg2a519312009-02-10 21:25:55 +0100850 * @wiphy: the wiphy this was for
Johannes Berg463d0182009-07-14 00:33:35 +0200851 * @dev: the interface
Johannes Bergabe37c42010-06-07 11:12:27 +0200852 * @aborted: (internal) scan request was notified as aborted
Johannes Berg2a519312009-02-10 21:25:55 +0100853 */
854struct cfg80211_scan_request {
855 struct cfg80211_ssid *ssids;
856 int n_ssids;
Johannes Berg2a519312009-02-10 21:25:55 +0100857 u32 n_channels;
Johannes Bergde95a542009-04-01 11:58:36 +0200858 const u8 *ie;
Jouni Malinen70692ad2009-02-16 19:39:13 +0200859 size_t ie_len;
Johannes Berg2a519312009-02-10 21:25:55 +0100860
861 /* internal */
862 struct wiphy *wiphy;
Johannes Berg463d0182009-07-14 00:33:35 +0200863 struct net_device *dev;
Johannes Berg667503d2009-07-07 03:56:11 +0200864 bool aborted;
Johannes Berg5ba63532009-08-07 17:54:07 +0200865
866 /* keep last */
867 struct ieee80211_channel *channels[0];
Johannes Berg2a519312009-02-10 21:25:55 +0100868};
869
870/**
Luciano Coelho807f8a82011-05-11 17:09:35 +0300871 * struct cfg80211_sched_scan_request - scheduled scan request description
872 *
873 * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
874 * @n_ssids: number of SSIDs
875 * @n_channels: total number of channels to scan
Luciano Coelhobbe6ad62011-05-11 17:09:37 +0300876 * @interval: interval between each scheduled scan cycle
Luciano Coelho807f8a82011-05-11 17:09:35 +0300877 * @ie: optional information element(s) to add into Probe Request or %NULL
878 * @ie_len: length of ie in octets
879 * @wiphy: the wiphy this was for
880 * @dev: the interface
881 * @channels: channels to scan
882 */
883struct cfg80211_sched_scan_request {
884 struct cfg80211_ssid *ssids;
885 int n_ssids;
886 u32 n_channels;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +0300887 u32 interval;
Luciano Coelho807f8a82011-05-11 17:09:35 +0300888 const u8 *ie;
889 size_t ie_len;
890
891 /* internal */
892 struct wiphy *wiphy;
893 struct net_device *dev;
894
895 /* keep last */
896 struct ieee80211_channel *channels[0];
897};
898
899/**
Johannes Berg2a519312009-02-10 21:25:55 +0100900 * enum cfg80211_signal_type - signal type
901 *
902 * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
903 * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
904 * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
905 */
906enum cfg80211_signal_type {
907 CFG80211_SIGNAL_TYPE_NONE,
908 CFG80211_SIGNAL_TYPE_MBM,
909 CFG80211_SIGNAL_TYPE_UNSPEC,
910};
911
912/**
913 * struct cfg80211_bss - BSS description
914 *
915 * This structure describes a BSS (which may also be a mesh network)
916 * for use in scan results and similar.
917 *
Johannes Bergabe37c42010-06-07 11:12:27 +0200918 * @channel: channel this BSS is on
Johannes Berg2a519312009-02-10 21:25:55 +0100919 * @bssid: BSSID of the BSS
920 * @tsf: timestamp of last received update
921 * @beacon_interval: the beacon interval as from the frame
922 * @capability: the capability field in host byte order
923 * @information_elements: the information elements (Note that there
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200924 * is no guarantee that these are well-formed!); this is a pointer to
925 * either the beacon_ies or proberesp_ies depending on whether Probe
926 * Response frame has been received
Johannes Berg2a519312009-02-10 21:25:55 +0100927 * @len_information_elements: total length of the information elements
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200928 * @beacon_ies: the information elements from the last Beacon frame
929 * @len_beacon_ies: total length of the beacon_ies
930 * @proberesp_ies: the information elements from the last Probe Response frame
931 * @len_proberesp_ies: total length of the proberesp_ies
Johannes Berg77965c92009-02-18 18:45:06 +0100932 * @signal: signal strength value (type depends on the wiphy's signal_type)
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100933 * @free_priv: function pointer to free private data
Johannes Berg2a519312009-02-10 21:25:55 +0100934 * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
935 */
936struct cfg80211_bss {
937 struct ieee80211_channel *channel;
938
939 u8 bssid[ETH_ALEN];
940 u64 tsf;
941 u16 beacon_interval;
942 u16 capability;
943 u8 *information_elements;
944 size_t len_information_elements;
Jouni Malinen34a6edd2010-01-06 16:19:24 +0200945 u8 *beacon_ies;
946 size_t len_beacon_ies;
947 u8 *proberesp_ies;
948 size_t len_proberesp_ies;
Johannes Berg2a519312009-02-10 21:25:55 +0100949
950 s32 signal;
Johannes Berg2a519312009-02-10 21:25:55 +0100951
Johannes Berg78c1c7e2009-02-10 21:25:57 +0100952 void (*free_priv)(struct cfg80211_bss *bss);
Johannes Berg2a519312009-02-10 21:25:55 +0100953 u8 priv[0] __attribute__((__aligned__(sizeof(void *))));
954};
955
956/**
Johannes Berg517357c2009-07-02 17:18:40 +0200957 * ieee80211_bss_get_ie - find IE with given ID
958 * @bss: the bss to search
959 * @ie: the IE ID
960 * Returns %NULL if not found.
961 */
962const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
963
964
965/**
Jouni Malinen636a5d32009-03-19 13:39:22 +0200966 * struct cfg80211_auth_request - Authentication request data
967 *
968 * This structure provides information needed to complete IEEE 802.11
969 * authentication.
Jouni Malinen636a5d32009-03-19 13:39:22 +0200970 *
Johannes Berg19957bb2009-07-02 17:20:43 +0200971 * @bss: The BSS to authenticate with.
Jouni Malinen636a5d32009-03-19 13:39:22 +0200972 * @auth_type: Authentication type (algorithm)
973 * @ie: Extra IEs to add to Authentication frame or %NULL
974 * @ie_len: Length of ie buffer in octets
Johannes Bergfffd0932009-07-08 14:22:54 +0200975 * @key_len: length of WEP key for shared key authentication
976 * @key_idx: index of WEP key for shared key authentication
977 * @key: WEP key for shared key authentication
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300978 * @local_state_change: This is a request for a local state only, i.e., no
979 * Authentication frame is to be transmitted and authentication state is
980 * to be changed without having to wait for a response from the peer STA
981 * (AP).
Jouni Malinen636a5d32009-03-19 13:39:22 +0200982 */
983struct cfg80211_auth_request {
Johannes Berg19957bb2009-07-02 17:20:43 +0200984 struct cfg80211_bss *bss;
Jouni Malinen636a5d32009-03-19 13:39:22 +0200985 const u8 *ie;
986 size_t ie_len;
Johannes Berg19957bb2009-07-02 17:20:43 +0200987 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +0200988 const u8 *key;
989 u8 key_len, key_idx;
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300990 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +0200991};
992
993/**
994 * struct cfg80211_assoc_request - (Re)Association request data
995 *
996 * This structure provides information needed to complete IEEE 802.11
997 * (re)association.
Johannes Berg19957bb2009-07-02 17:20:43 +0200998 * @bss: The BSS to associate with.
Jouni Malinen636a5d32009-03-19 13:39:22 +0200999 * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
1000 * @ie_len: Length of ie buffer in octets
Jouni Malinendc6382c2009-05-06 22:09:37 +03001001 * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
Samuel Ortizb23aa672009-07-01 21:26:54 +02001002 * @crypto: crypto settings
Johannes Berg3e5d7642009-07-07 14:37:26 +02001003 * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
Jouni Malinen636a5d32009-03-19 13:39:22 +02001004 */
1005struct cfg80211_assoc_request {
Johannes Berg19957bb2009-07-02 17:20:43 +02001006 struct cfg80211_bss *bss;
Johannes Berg3e5d7642009-07-07 14:37:26 +02001007 const u8 *ie, *prev_bssid;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001008 size_t ie_len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02001009 struct cfg80211_crypto_settings crypto;
Johannes Berg19957bb2009-07-02 17:20:43 +02001010 bool use_mfp;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001011};
1012
1013/**
1014 * struct cfg80211_deauth_request - Deauthentication request data
1015 *
1016 * This structure provides information needed to complete IEEE 802.11
1017 * deauthentication.
1018 *
Johannes Berg19957bb2009-07-02 17:20:43 +02001019 * @bss: the BSS to deauthenticate from
Jouni Malinen636a5d32009-03-19 13:39:22 +02001020 * @ie: Extra IEs to add to Deauthentication frame or %NULL
1021 * @ie_len: Length of ie buffer in octets
Johannes Berg19957bb2009-07-02 17:20:43 +02001022 * @reason_code: The reason code for the deauthentication
Jouni Malinend5cdfac2010-04-04 09:37:19 +03001023 * @local_state_change: This is a request for a local state only, i.e., no
1024 * Deauthentication frame is to be transmitted.
Jouni Malinen636a5d32009-03-19 13:39:22 +02001025 */
1026struct cfg80211_deauth_request {
Johannes Berg19957bb2009-07-02 17:20:43 +02001027 struct cfg80211_bss *bss;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001028 const u8 *ie;
1029 size_t ie_len;
Johannes Berg19957bb2009-07-02 17:20:43 +02001030 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03001031 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001032};
1033
1034/**
1035 * struct cfg80211_disassoc_request - Disassociation request data
1036 *
1037 * This structure provides information needed to complete IEEE 802.11
1038 * disassocation.
1039 *
Johannes Berg19957bb2009-07-02 17:20:43 +02001040 * @bss: the BSS to disassociate from
Jouni Malinen636a5d32009-03-19 13:39:22 +02001041 * @ie: Extra IEs to add to Disassociation frame or %NULL
1042 * @ie_len: Length of ie buffer in octets
Johannes Berg19957bb2009-07-02 17:20:43 +02001043 * @reason_code: The reason code for the disassociation
Jouni Malinend5cdfac2010-04-04 09:37:19 +03001044 * @local_state_change: This is a request for a local state only, i.e., no
1045 * Disassociation frame is to be transmitted.
Jouni Malinen636a5d32009-03-19 13:39:22 +02001046 */
1047struct cfg80211_disassoc_request {
Johannes Berg19957bb2009-07-02 17:20:43 +02001048 struct cfg80211_bss *bss;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001049 const u8 *ie;
1050 size_t ie_len;
Johannes Berg19957bb2009-07-02 17:20:43 +02001051 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03001052 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001053};
1054
1055/**
Johannes Berg04a773a2009-04-19 21:24:32 +02001056 * struct cfg80211_ibss_params - IBSS parameters
1057 *
1058 * This structure defines the IBSS parameters for the join_ibss()
1059 * method.
1060 *
1061 * @ssid: The SSID, will always be non-null.
1062 * @ssid_len: The length of the SSID, will always be non-zero.
1063 * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
1064 * search for IBSSs with a different BSSID.
1065 * @channel: The channel to use if no IBSS can be found to join.
1066 * @channel_fixed: The channel should be fixed -- do not search for
1067 * IBSSs to join on other channels.
1068 * @ie: information element(s) to include in the beacon
1069 * @ie_len: length of that
Johannes Berg8e30bc52009-04-22 17:45:38 +02001070 * @beacon_interval: beacon interval to use
Johannes Bergfffd0932009-07-08 14:22:54 +02001071 * @privacy: this is a protected network, keys will be configured
1072 * after joining
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03001073 * @basic_rates: bitmap of basic rates to use when creating the IBSS
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01001074 * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
Johannes Berg04a773a2009-04-19 21:24:32 +02001075 */
1076struct cfg80211_ibss_params {
1077 u8 *ssid;
1078 u8 *bssid;
1079 struct ieee80211_channel *channel;
1080 u8 *ie;
1081 u8 ssid_len, ie_len;
Johannes Berg8e30bc52009-04-22 17:45:38 +02001082 u16 beacon_interval;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03001083 u32 basic_rates;
Johannes Berg04a773a2009-04-19 21:24:32 +02001084 bool channel_fixed;
Johannes Bergfffd0932009-07-08 14:22:54 +02001085 bool privacy;
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01001086 int mcast_rate[IEEE80211_NUM_BANDS];
Johannes Berg04a773a2009-04-19 21:24:32 +02001087};
1088
1089/**
Samuel Ortizb23aa672009-07-01 21:26:54 +02001090 * struct cfg80211_connect_params - Connection parameters
1091 *
1092 * This structure provides information needed to complete IEEE 802.11
1093 * authentication and association.
1094 *
1095 * @channel: The channel to use or %NULL if not specified (auto-select based
1096 * on scan results)
1097 * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
1098 * results)
1099 * @ssid: SSID
1100 * @ssid_len: Length of ssid in octets
1101 * @auth_type: Authentication type (algorithm)
Johannes Bergabe37c42010-06-07 11:12:27 +02001102 * @ie: IEs for association request
1103 * @ie_len: Length of assoc_ie in octets
Samuel Ortizb23aa672009-07-01 21:26:54 +02001104 * @privacy: indicates whether privacy-enabled APs should be used
1105 * @crypto: crypto settings
Johannes Bergfffd0932009-07-08 14:22:54 +02001106 * @key_len: length of WEP key for shared key authentication
1107 * @key_idx: index of WEP key for shared key authentication
1108 * @key: WEP key for shared key authentication
Samuel Ortizb23aa672009-07-01 21:26:54 +02001109 */
1110struct cfg80211_connect_params {
1111 struct ieee80211_channel *channel;
1112 u8 *bssid;
1113 u8 *ssid;
1114 size_t ssid_len;
1115 enum nl80211_auth_type auth_type;
1116 u8 *ie;
1117 size_t ie_len;
1118 bool privacy;
1119 struct cfg80211_crypto_settings crypto;
Johannes Bergfffd0932009-07-08 14:22:54 +02001120 const u8 *key;
1121 u8 key_len, key_idx;
Samuel Ortizb23aa672009-07-01 21:26:54 +02001122};
1123
1124/**
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001125 * enum wiphy_params_flags - set_wiphy_params bitfield values
Johannes Bergabe37c42010-06-07 11:12:27 +02001126 * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
1127 * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
1128 * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
1129 * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
1130 * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001131 */
1132enum wiphy_params_flags {
1133 WIPHY_PARAM_RETRY_SHORT = 1 << 0,
1134 WIPHY_PARAM_RETRY_LONG = 1 << 1,
1135 WIPHY_PARAM_FRAG_THRESHOLD = 1 << 2,
1136 WIPHY_PARAM_RTS_THRESHOLD = 1 << 3,
Lukáš Turek81077e82009-12-21 22:50:47 +01001137 WIPHY_PARAM_COVERAGE_CLASS = 1 << 4,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001138};
1139
Johannes Berg99303802009-07-01 21:26:59 +02001140/*
1141 * cfg80211_bitrate_mask - masks for bitrate control
1142 */
1143struct cfg80211_bitrate_mask {
Johannes Berg99303802009-07-01 21:26:59 +02001144 struct {
1145 u32 legacy;
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001146 /* TODO: add support for masking MCS rates; e.g.: */
1147 /* u8 mcs[IEEE80211_HT_MCS_MASK_LEN]; */
Johannes Berg99303802009-07-01 21:26:59 +02001148 } control[IEEE80211_NUM_BANDS];
Johannes Berg99303802009-07-01 21:26:59 +02001149};
Samuel Ortiz67fbb162009-11-24 23:59:15 +01001150/**
1151 * struct cfg80211_pmksa - PMK Security Association
1152 *
1153 * This structure is passed to the set/del_pmksa() method for PMKSA
1154 * caching.
1155 *
1156 * @bssid: The AP's BSSID.
1157 * @pmkid: The PMK material itself.
1158 */
1159struct cfg80211_pmksa {
1160 u8 *bssid;
1161 u8 *pmkid;
1162};
Johannes Berg99303802009-07-01 21:26:59 +02001163
Johannes Berg7643a2c2009-06-02 13:01:39 +02001164/**
Johannes Bergff1b6e62011-05-04 15:37:28 +02001165 * struct cfg80211_wowlan_trig_pkt_pattern - packet pattern
1166 * @mask: bitmask where to match pattern and where to ignore bytes,
1167 * one bit per byte, in same format as nl80211
1168 * @pattern: bytes to match where bitmask is 1
1169 * @pattern_len: length of pattern (in bytes)
1170 *
1171 * Internal note: @mask and @pattern are allocated in one chunk of
1172 * memory, free @mask only!
1173 */
1174struct cfg80211_wowlan_trig_pkt_pattern {
1175 u8 *mask, *pattern;
1176 int pattern_len;
1177};
1178
1179/**
1180 * struct cfg80211_wowlan - Wake on Wireless-LAN support info
1181 *
1182 * This structure defines the enabled WoWLAN triggers for the device.
1183 * @any: wake up on any activity -- special trigger if device continues
1184 * operating as normal during suspend
1185 * @disconnect: wake up if getting disconnected
1186 * @magic_pkt: wake up on receiving magic packet
1187 * @patterns: wake up on receiving packet matching a pattern
1188 * @n_patterns: number of patterns
1189 */
1190struct cfg80211_wowlan {
1191 bool any, disconnect, magic_pkt;
1192 struct cfg80211_wowlan_trig_pkt_pattern *patterns;
1193 int n_patterns;
1194};
1195
1196/**
Johannes Berg704232c2007-04-23 12:20:05 -07001197 * struct cfg80211_ops - backend description for wireless configuration
1198 *
1199 * This struct is registered by fullmac card drivers and/or wireless stacks
1200 * in order to handle configuration requests on their interfaces.
1201 *
1202 * All callbacks except where otherwise noted should return 0
1203 * on success or a negative error code.
1204 *
Johannes Berg43fb45cb2007-04-24 14:07:27 -07001205 * All operations are currently invoked under rtnl for consistency with the
1206 * wireless extensions but this is subject to reevaluation as soon as this
1207 * code is used more widely and we have a first user without wext.
1208 *
Johannes Bergff1b6e62011-05-04 15:37:28 +02001209 * @suspend: wiphy device needs to be suspended. The variable @wow will
1210 * be %NULL or contain the enabled Wake-on-Wireless triggers that are
1211 * configured for the device.
Johannes Berg0378b3f2009-01-19 11:20:52 -05001212 * @resume: wiphy device needs to be resumed
1213 *
Johannes Berg60719ff2008-09-16 14:55:09 +02001214 * @add_virtual_intf: create a new virtual interface with the given name,
Johannes Berg463d0182009-07-14 00:33:35 +02001215 * must set the struct wireless_dev's iftype. Beware: You must create
Johannes Bergf9e10ce2010-12-03 09:20:42 +01001216 * the new netdev in the wiphy's network namespace! Returns the netdev,
1217 * or an ERR_PTR.
Johannes Berg704232c2007-04-23 12:20:05 -07001218 *
1219 * @del_virtual_intf: remove the virtual interface determined by ifindex.
Johannes Berg55682962007-09-20 13:09:35 -04001220 *
Johannes Berg60719ff2008-09-16 14:55:09 +02001221 * @change_virtual_intf: change type/configuration of virtual interface,
1222 * keep the struct wireless_dev's iftype updated.
Johannes Berg55682962007-09-20 13:09:35 -04001223 *
Johannes Berg41ade002007-12-19 02:03:29 +01001224 * @add_key: add a key with the given parameters. @mac_addr will be %NULL
1225 * when adding a group key.
1226 *
1227 * @get_key: get information about the key with the given parameters.
1228 * @mac_addr will be %NULL when requesting information for a group
1229 * key. All pointers given to the @callback function need not be valid
Johannes Berge3da5742009-05-18 19:56:36 +02001230 * after it returns. This function should return an error if it is
1231 * not possible to retrieve the key, -ENOENT if it doesn't exist.
Johannes Berg41ade002007-12-19 02:03:29 +01001232 *
1233 * @del_key: remove a key given the @mac_addr (%NULL for a group key)
Johannes Berge3da5742009-05-18 19:56:36 +02001234 * and @key_index, return -ENOENT if the key doesn't exist.
Johannes Berg41ade002007-12-19 02:03:29 +01001235 *
1236 * @set_default_key: set the default key on an interface
Johannes Berged1b6cc2007-12-19 02:03:32 +01001237 *
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +02001238 * @set_default_mgmt_key: set the default management frame key on an interface
1239 *
Johannes Berged1b6cc2007-12-19 02:03:32 +01001240 * @add_beacon: Add a beacon with given parameters, @head, @interval
1241 * and @dtim_period will be valid, @tail is optional.
1242 * @set_beacon: Change the beacon parameters for an access point mode
1243 * interface. This should reject the call when no beacon has been
1244 * configured.
1245 * @del_beacon: Remove beacon configuration and stop sending the beacon.
Johannes Berg5727ef12007-12-19 02:03:34 +01001246 *
1247 * @add_station: Add a new station.
Johannes Berg5727ef12007-12-19 02:03:34 +01001248 * @del_station: Remove a station; @mac may be NULL to remove all stations.
Johannes Berg5727ef12007-12-19 02:03:34 +01001249 * @change_station: Modify a given station.
Johannes Bergabe37c42010-06-07 11:12:27 +02001250 * @get_station: get station information for the station identified by @mac
1251 * @dump_station: dump station callback -- resume dump at index @idx
1252 *
1253 * @add_mpath: add a fixed mesh path
1254 * @del_mpath: delete a given mesh path
1255 * @change_mpath: change a given mesh path
1256 * @get_mpath: get a mesh path for the given parameters
1257 * @dump_mpath: dump mesh path callback -- resume dump at index @idx
Johannes Bergf52555a2011-01-06 22:36:45 +01001258 * @join_mesh: join the mesh network with the specified parameters
1259 * @leave_mesh: leave the current mesh network
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01001260 *
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001261 * @get_mesh_config: Get the current mesh configuration
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001262 *
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001263 * @update_mesh_config: Update mesh parameters on a running mesh.
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001264 * The mask is a bitfield which tells us which parameters to
1265 * set, and which to leave alone.
1266 *
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001267 * @change_bss: Modify parameters for a given BSS.
Jouni Malinen31888482008-10-30 16:59:24 +02001268 *
1269 * @set_txq_params: Set TX queue parameters
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001270 *
Johannes Bergf444de02010-05-05 15:25:02 +02001271 * @set_channel: Set channel for a given wireless interface. Some devices
1272 * may support multi-channel operation (by channel hopping) so cfg80211
1273 * doesn't verify much. Note, however, that the passed netdev may be
1274 * %NULL as well if the user requested changing the channel for the
1275 * device itself, or for a monitor interface.
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02001276 *
Johannes Berg2a519312009-02-10 21:25:55 +01001277 * @scan: Request to do a scan. If returning zero, the scan request is given
1278 * the driver, and will be valid until passed to cfg80211_scan_done().
1279 * For scan results, call cfg80211_inform_bss(); you can call this outside
1280 * the scan/scan_done bracket too.
Jouni Malinen636a5d32009-03-19 13:39:22 +02001281 *
1282 * @auth: Request to authenticate with the specified peer
1283 * @assoc: Request to (re)associate with the specified peer
1284 * @deauth: Request to deauthenticate from the specified peer
1285 * @disassoc: Request to disassociate from the specified peer
Johannes Berg04a773a2009-04-19 21:24:32 +02001286 *
Samuel Ortizb23aa672009-07-01 21:26:54 +02001287 * @connect: Connect to the ESS with the specified parameters. When connected,
1288 * call cfg80211_connect_result() with status code %WLAN_STATUS_SUCCESS.
1289 * If the connection fails for some reason, call cfg80211_connect_result()
1290 * with the status from the AP.
1291 * @disconnect: Disconnect from the BSS/ESS.
1292 *
Johannes Berg04a773a2009-04-19 21:24:32 +02001293 * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
1294 * cfg80211_ibss_joined(), also call that function when changing BSSID due
1295 * to a merge.
1296 * @leave_ibss: Leave the IBSS.
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001297 *
1298 * @set_wiphy_params: Notify that wiphy parameters have changed;
1299 * @changed bitfield (see &enum wiphy_params_flags) describes which values
1300 * have changed. The actual parameter values are available in
1301 * struct wiphy. If returning an error, no value should be changed.
Johannes Berg7643a2c2009-06-02 13:01:39 +02001302 *
1303 * @set_tx_power: set the transmit power according to the parameters
1304 * @get_tx_power: store the current TX power into the dbm variable;
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001305 * return 0 if successful
1306 *
Johannes Bergabe37c42010-06-07 11:12:27 +02001307 * @set_wds_peer: set the WDS peer for a WDS interface
1308 *
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001309 * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
1310 * functions to adjust rfkill hw state
Johannes Bergaff89a92009-07-01 21:26:51 +02001311 *
Holger Schurig61fa7132009-11-11 12:25:40 +01001312 * @dump_survey: get site survey information.
1313 *
Jouni Malinen9588bbd2009-12-23 13:15:41 +01001314 * @remain_on_channel: Request the driver to remain awake on the specified
1315 * channel for the specified duration to complete an off-channel
1316 * operation (e.g., public action frame exchange). When the driver is
1317 * ready on the requested channel, it must indicate this with an event
1318 * notification by calling cfg80211_ready_on_channel().
1319 * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
1320 * This allows the operation to be terminated prior to timeout based on
1321 * the duration value.
Johannes Bergf7ca38d2010-11-25 10:02:29 +01001322 * @mgmt_tx: Transmit a management frame.
1323 * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
1324 * frame on another channel
Jouni Malinen9588bbd2009-12-23 13:15:41 +01001325 *
Johannes Bergaff89a92009-07-01 21:26:51 +02001326 * @testmode_cmd: run a test mode command
Samuel Ortiz67fbb162009-11-24 23:59:15 +01001327 *
Johannes Bergabe37c42010-06-07 11:12:27 +02001328 * @set_bitrate_mask: set the bitrate mask configuration
1329 *
Samuel Ortiz67fbb162009-11-24 23:59:15 +01001330 * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
1331 * devices running firmwares capable of generating the (re) association
1332 * RSN IE. It allows for faster roaming between WPA2 BSSIDs.
1333 * @del_pmksa: Delete a cached PMKID.
1334 * @flush_pmksa: Flush all cached PMKIDs.
Juuso Oikarinen9043f3b2010-04-27 12:47:41 +03001335 * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
1336 * allows the driver to adjust the dynamic ps timeout value.
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02001337 * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
Luciano Coelho807f8a82011-05-11 17:09:35 +03001338 * @sched_scan_start: Tell the driver to start a scheduled scan.
1339 * @sched_scan_stop: Tell the driver to stop an ongoing scheduled
1340 * scan. The driver_initiated flag specifies whether the driver
1341 * itself has informed that the scan has stopped.
Samuel Ortiz67fbb162009-11-24 23:59:15 +01001342 *
Johannes Berg271733c2010-10-13 12:06:23 +02001343 * @mgmt_frame_register: Notify driver that a management frame type was
1344 * registered. Note that this callback may not sleep, and cannot run
1345 * concurrently with itself.
Bruno Randolf547025d2010-12-02 16:23:12 +09001346 *
1347 * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
1348 * Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
1349 * reject TX/RX mask combinations they cannot support by returning -EINVAL
1350 * (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
1351 *
1352 * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
John W. Linville36777132011-03-07 16:17:59 -05001353 *
1354 * @set_ringparam: Set tx and rx ring sizes.
1355 *
1356 * @get_ringparam: Get tx and rx ring current and maximum sizes.
Johannes Berg704232c2007-04-23 12:20:05 -07001357 */
1358struct cfg80211_ops {
Johannes Bergff1b6e62011-05-04 15:37:28 +02001359 int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
Johannes Berg0378b3f2009-01-19 11:20:52 -05001360 int (*resume)(struct wiphy *wiphy);
1361
Johannes Bergf9e10ce2010-12-03 09:20:42 +01001362 struct net_device * (*add_virtual_intf)(struct wiphy *wiphy,
1363 char *name,
1364 enum nl80211_iftype type,
1365 u32 *flags,
1366 struct vif_params *params);
Johannes Berg463d0182009-07-14 00:33:35 +02001367 int (*del_virtual_intf)(struct wiphy *wiphy, struct net_device *dev);
Johannes Berge36d56b2009-06-09 21:04:43 +02001368 int (*change_virtual_intf)(struct wiphy *wiphy,
1369 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01001370 enum nl80211_iftype type, u32 *flags,
1371 struct vif_params *params);
Johannes Berg41ade002007-12-19 02:03:29 +01001372
1373 int (*add_key)(struct wiphy *wiphy, struct net_device *netdev,
Johannes Berge31b8212010-10-05 19:39:30 +02001374 u8 key_index, bool pairwise, const u8 *mac_addr,
Johannes Berg41ade002007-12-19 02:03:29 +01001375 struct key_params *params);
1376 int (*get_key)(struct wiphy *wiphy, struct net_device *netdev,
Johannes Berge31b8212010-10-05 19:39:30 +02001377 u8 key_index, bool pairwise, const u8 *mac_addr,
1378 void *cookie,
Johannes Berg41ade002007-12-19 02:03:29 +01001379 void (*callback)(void *cookie, struct key_params*));
1380 int (*del_key)(struct wiphy *wiphy, struct net_device *netdev,
Johannes Berge31b8212010-10-05 19:39:30 +02001381 u8 key_index, bool pairwise, const u8 *mac_addr);
Johannes Berg41ade002007-12-19 02:03:29 +01001382 int (*set_default_key)(struct wiphy *wiphy,
1383 struct net_device *netdev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +01001384 u8 key_index, bool unicast, bool multicast);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +02001385 int (*set_default_mgmt_key)(struct wiphy *wiphy,
1386 struct net_device *netdev,
1387 u8 key_index);
Johannes Berged1b6cc2007-12-19 02:03:32 +01001388
1389 int (*add_beacon)(struct wiphy *wiphy, struct net_device *dev,
1390 struct beacon_parameters *info);
1391 int (*set_beacon)(struct wiphy *wiphy, struct net_device *dev,
1392 struct beacon_parameters *info);
1393 int (*del_beacon)(struct wiphy *wiphy, struct net_device *dev);
Johannes Berg5727ef12007-12-19 02:03:34 +01001394
1395
1396 int (*add_station)(struct wiphy *wiphy, struct net_device *dev,
1397 u8 *mac, struct station_parameters *params);
1398 int (*del_station)(struct wiphy *wiphy, struct net_device *dev,
1399 u8 *mac);
1400 int (*change_station)(struct wiphy *wiphy, struct net_device *dev,
1401 u8 *mac, struct station_parameters *params);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01001402 int (*get_station)(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01001403 u8 *mac, struct station_info *sinfo);
1404 int (*dump_station)(struct wiphy *wiphy, struct net_device *dev,
1405 int idx, u8 *mac, struct station_info *sinfo);
1406
1407 int (*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
1408 u8 *dst, u8 *next_hop);
1409 int (*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
1410 u8 *dst);
1411 int (*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
1412 u8 *dst, u8 *next_hop);
1413 int (*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
1414 u8 *dst, u8 *next_hop,
1415 struct mpath_info *pinfo);
1416 int (*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
1417 int idx, u8 *dst, u8 *next_hop,
1418 struct mpath_info *pinfo);
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001419 int (*get_mesh_config)(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001420 struct net_device *dev,
1421 struct mesh_config *conf);
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001422 int (*update_mesh_config)(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001423 struct net_device *dev, u32 mask,
1424 const struct mesh_config *nconf);
1425 int (*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
1426 const struct mesh_config *conf,
1427 const struct mesh_setup *setup);
1428 int (*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
1429
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001430 int (*change_bss)(struct wiphy *wiphy, struct net_device *dev,
1431 struct bss_parameters *params);
Jouni Malinen31888482008-10-30 16:59:24 +02001432
1433 int (*set_txq_params)(struct wiphy *wiphy,
1434 struct ieee80211_txq_params *params);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001435
Johannes Bergf444de02010-05-05 15:25:02 +02001436 int (*set_channel)(struct wiphy *wiphy, struct net_device *dev,
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001437 struct ieee80211_channel *chan,
Sujith094d05d2008-12-12 11:57:43 +05301438 enum nl80211_channel_type channel_type);
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02001439
Johannes Berg2a519312009-02-10 21:25:55 +01001440 int (*scan)(struct wiphy *wiphy, struct net_device *dev,
1441 struct cfg80211_scan_request *request);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001442
1443 int (*auth)(struct wiphy *wiphy, struct net_device *dev,
1444 struct cfg80211_auth_request *req);
1445 int (*assoc)(struct wiphy *wiphy, struct net_device *dev,
1446 struct cfg80211_assoc_request *req);
1447 int (*deauth)(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001448 struct cfg80211_deauth_request *req,
1449 void *cookie);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001450 int (*disassoc)(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg667503d2009-07-07 03:56:11 +02001451 struct cfg80211_disassoc_request *req,
1452 void *cookie);
Johannes Berg04a773a2009-04-19 21:24:32 +02001453
Samuel Ortizb23aa672009-07-01 21:26:54 +02001454 int (*connect)(struct wiphy *wiphy, struct net_device *dev,
1455 struct cfg80211_connect_params *sme);
1456 int (*disconnect)(struct wiphy *wiphy, struct net_device *dev,
1457 u16 reason_code);
1458
Johannes Berg04a773a2009-04-19 21:24:32 +02001459 int (*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
1460 struct cfg80211_ibss_params *params);
1461 int (*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001462
1463 int (*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001464
1465 int (*set_tx_power)(struct wiphy *wiphy,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001466 enum nl80211_tx_power_setting type, int mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001467 int (*get_tx_power)(struct wiphy *wiphy, int *dbm);
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001468
Johannes Bergab737a42009-07-01 21:26:58 +02001469 int (*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02001470 const u8 *addr);
Johannes Bergab737a42009-07-01 21:26:58 +02001471
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001472 void (*rfkill_poll)(struct wiphy *wiphy);
Johannes Bergaff89a92009-07-01 21:26:51 +02001473
1474#ifdef CONFIG_NL80211_TESTMODE
1475 int (*testmode_cmd)(struct wiphy *wiphy, void *data, int len);
1476#endif
Johannes Bergbc92afd2009-07-01 21:26:57 +02001477
Johannes Berg99303802009-07-01 21:26:59 +02001478 int (*set_bitrate_mask)(struct wiphy *wiphy,
1479 struct net_device *dev,
1480 const u8 *peer,
1481 const struct cfg80211_bitrate_mask *mask);
1482
Holger Schurig61fa7132009-11-11 12:25:40 +01001483 int (*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
1484 int idx, struct survey_info *info);
1485
Samuel Ortiz67fbb162009-11-24 23:59:15 +01001486 int (*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
1487 struct cfg80211_pmksa *pmksa);
1488 int (*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
1489 struct cfg80211_pmksa *pmksa);
1490 int (*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
1491
Jouni Malinen9588bbd2009-12-23 13:15:41 +01001492 int (*remain_on_channel)(struct wiphy *wiphy,
1493 struct net_device *dev,
1494 struct ieee80211_channel *chan,
1495 enum nl80211_channel_type channel_type,
1496 unsigned int duration,
1497 u64 *cookie);
1498 int (*cancel_remain_on_channel)(struct wiphy *wiphy,
1499 struct net_device *dev,
1500 u64 cookie);
1501
Johannes Berg2e161f72010-08-12 15:38:38 +02001502 int (*mgmt_tx)(struct wiphy *wiphy, struct net_device *dev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +01001503 struct ieee80211_channel *chan, bool offchan,
Jouni Malinen026331c2010-02-15 12:53:10 +02001504 enum nl80211_channel_type channel_type,
Johannes Bergf7ca38d2010-11-25 10:02:29 +01001505 bool channel_type_valid, unsigned int wait,
Jouni Malinen026331c2010-02-15 12:53:10 +02001506 const u8 *buf, size_t len, u64 *cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01001507 int (*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
1508 struct net_device *dev,
1509 u64 cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02001510
Johannes Bergbc92afd2009-07-01 21:26:57 +02001511 int (*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
1512 bool enabled, int timeout);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02001513
1514 int (*set_cqm_rssi_config)(struct wiphy *wiphy,
1515 struct net_device *dev,
1516 s32 rssi_thold, u32 rssi_hyst);
Johannes Berg271733c2010-10-13 12:06:23 +02001517
1518 void (*mgmt_frame_register)(struct wiphy *wiphy,
1519 struct net_device *dev,
1520 u16 frame_type, bool reg);
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09001521
1522 int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
1523 int (*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
John W. Linville36777132011-03-07 16:17:59 -05001524
1525 int (*set_ringparam)(struct wiphy *wiphy, u32 tx, u32 rx);
1526 void (*get_ringparam)(struct wiphy *wiphy,
1527 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
Luciano Coelho807f8a82011-05-11 17:09:35 +03001528
1529 int (*sched_scan_start)(struct wiphy *wiphy,
1530 struct net_device *dev,
1531 struct cfg80211_sched_scan_request *request);
Luciano Coelho85a99942011-05-12 16:28:29 +03001532 int (*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev);
Johannes Berg704232c2007-04-23 12:20:05 -07001533};
1534
Johannes Bergd3236552009-04-20 14:31:42 +02001535/*
1536 * wireless hardware and networking interfaces structures
1537 * and registration/helper functions
1538 */
1539
1540/**
Johannes Berg5be83de2009-11-19 00:56:28 +01001541 * enum wiphy_flags - wiphy capability flags
1542 *
1543 * @WIPHY_FLAG_CUSTOM_REGULATORY: tells us the driver for this device
Johannes Bergd3236552009-04-20 14:31:42 +02001544 * has its own custom regulatory domain and cannot identify the
1545 * ISO / IEC 3166 alpha2 it belongs to. When this is enabled
1546 * we will disregard the first regulatory hint (when the
1547 * initiator is %REGDOM_SET_BY_CORE).
Johannes Berg5be83de2009-11-19 00:56:28 +01001548 * @WIPHY_FLAG_STRICT_REGULATORY: tells us the driver for this device will
1549 * ignore regulatory domain settings until it gets its own regulatory
Luis R. Rodriguez749b5272010-10-20 10:18:54 -07001550 * domain via its regulatory_hint() unless the regulatory hint is
1551 * from a country IE. After its gets its own regulatory domain it will
1552 * only allow further regulatory domain settings to further enhance
1553 * compliance. For example if channel 13 and 14 are disabled by this
1554 * regulatory domain no user regulatory domain can enable these channels
1555 * at a later time. This can be used for devices which do not have
1556 * calibration information guaranteed for frequencies or settings
1557 * outside of its regulatory domain.
Johannes Berg5be83de2009-11-19 00:56:28 +01001558 * @WIPHY_FLAG_DISABLE_BEACON_HINTS: enable this if your driver needs to ensure
1559 * that passive scan flags and beaconing flags may not be lifted by
1560 * cfg80211 due to regulatory beacon hints. For more information on beacon
Luis R. Rodriguez37184242009-07-30 17:43:48 -07001561 * hints read the documenation for regulatory_hint_found_beacon()
Johannes Berg5be83de2009-11-19 00:56:28 +01001562 * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
1563 * wiphy at all
Johannes Berg7527a782011-05-13 10:58:57 +02001564 * @WIPHY_FLAG_ENFORCE_COMBINATIONS: Set this flag to enforce interface
1565 * combinations for this device. This flag is used for backward
1566 * compatibility only until all drivers advertise combinations and
1567 * they will always be enforced.
Johannes Berg5be83de2009-11-19 00:56:28 +01001568 * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
1569 * by default -- this flag will be set depending on the kernel's default
1570 * on wiphy_new(), but can be changed by the driver if it has a good
1571 * reason to override the default
Johannes Berg9bc383d2009-11-19 11:55:19 +01001572 * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
1573 * on a VLAN interface)
1574 * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
Johannes Bergc0692b82010-08-27 14:26:53 +03001575 * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
1576 * control port protocol ethertype. The device also honours the
1577 * control_port_no_encrypt flag.
Johannes Berge31b8212010-10-05 19:39:30 +02001578 * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
Javier Cardona15d5dda2011-04-07 15:08:28 -07001579 * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
1580 * auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
Randy Dunlap1ba01452011-05-22 17:16:20 -07001581 * @WIPHY_FLAG_SUPPORTS_SCHED_SCAN: The device supports scheduled scans.
Johannes Berg5be83de2009-11-19 00:56:28 +01001582 */
1583enum wiphy_flags {
Johannes Bergc0692b82010-08-27 14:26:53 +03001584 WIPHY_FLAG_CUSTOM_REGULATORY = BIT(0),
1585 WIPHY_FLAG_STRICT_REGULATORY = BIT(1),
1586 WIPHY_FLAG_DISABLE_BEACON_HINTS = BIT(2),
1587 WIPHY_FLAG_NETNS_OK = BIT(3),
1588 WIPHY_FLAG_PS_ON_BY_DEFAULT = BIT(4),
1589 WIPHY_FLAG_4ADDR_AP = BIT(5),
1590 WIPHY_FLAG_4ADDR_STATION = BIT(6),
1591 WIPHY_FLAG_CONTROL_PORT_PROTOCOL = BIT(7),
Jussi Kivilinna309075c2010-11-12 08:53:56 +02001592 WIPHY_FLAG_IBSS_RSN = BIT(8),
Javier Cardona15d5dda2011-04-07 15:08:28 -07001593 WIPHY_FLAG_MESH_AUTH = BIT(10),
Luciano Coelho807f8a82011-05-11 17:09:35 +03001594 WIPHY_FLAG_SUPPORTS_SCHED_SCAN = BIT(11),
Johannes Berg7527a782011-05-13 10:58:57 +02001595 WIPHY_FLAG_ENFORCE_COMBINATIONS = BIT(12),
1596};
1597
1598/**
1599 * struct ieee80211_iface_limit - limit on certain interface types
1600 * @max: maximum number of interfaces of these types
1601 * @types: interface types (bits)
1602 */
1603struct ieee80211_iface_limit {
1604 u16 max;
1605 u16 types;
1606};
1607
1608/**
1609 * struct ieee80211_iface_combination - possible interface combination
1610 * @limits: limits for the given interface types
1611 * @n_limits: number of limitations
1612 * @num_different_channels: can use up to this many different channels
1613 * @max_interfaces: maximum number of interfaces in total allowed in this
1614 * group
1615 * @beacon_int_infra_match: In this combination, the beacon intervals
1616 * between infrastructure and AP types must match. This is required
1617 * only in special cases.
1618 *
1619 * These examples can be expressed as follows:
1620 *
1621 * Allow #STA <= 1, #AP <= 1, matching BI, channels = 1, 2 total:
1622 *
1623 * struct ieee80211_iface_limit limits1[] = {
1624 * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
1625 * { .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
1626 * };
1627 * struct ieee80211_iface_combination combination1 = {
1628 * .limits = limits1,
1629 * .n_limits = ARRAY_SIZE(limits1),
1630 * .max_interfaces = 2,
1631 * .beacon_int_infra_match = true,
1632 * };
1633 *
1634 *
1635 * Allow #{AP, P2P-GO} <= 8, channels = 1, 8 total:
1636 *
1637 * struct ieee80211_iface_limit limits2[] = {
1638 * { .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
1639 * BIT(NL80211_IFTYPE_P2P_GO), },
1640 * };
1641 * struct ieee80211_iface_combination combination2 = {
1642 * .limits = limits2,
1643 * .n_limits = ARRAY_SIZE(limits2),
1644 * .max_interfaces = 8,
1645 * .num_different_channels = 1,
1646 * };
1647 *
1648 *
1649 * Allow #STA <= 1, #{P2P-client,P2P-GO} <= 3 on two channels, 4 total.
1650 * This allows for an infrastructure connection and three P2P connections.
1651 *
1652 * struct ieee80211_iface_limit limits3[] = {
1653 * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
1654 * { .max = 3, .types = BIT(NL80211_IFTYPE_P2P_GO) |
1655 * BIT(NL80211_IFTYPE_P2P_CLIENT), },
1656 * };
1657 * struct ieee80211_iface_combination combination3 = {
1658 * .limits = limits3,
1659 * .n_limits = ARRAY_SIZE(limits3),
1660 * .max_interfaces = 4,
1661 * .num_different_channels = 2,
1662 * };
1663 */
1664struct ieee80211_iface_combination {
1665 const struct ieee80211_iface_limit *limits;
1666 u32 num_different_channels;
1667 u16 max_interfaces;
1668 u8 n_limits;
1669 bool beacon_int_infra_match;
Johannes Berg5be83de2009-11-19 00:56:28 +01001670};
1671
Johannes Bergef15aac2010-01-20 12:02:33 +01001672struct mac_address {
1673 u8 addr[ETH_ALEN];
1674};
1675
Johannes Berg2e161f72010-08-12 15:38:38 +02001676struct ieee80211_txrx_stypes {
1677 u16 tx, rx;
1678};
1679
Johannes Berg5be83de2009-11-19 00:56:28 +01001680/**
Johannes Bergff1b6e62011-05-04 15:37:28 +02001681 * enum wiphy_wowlan_support_flags - WoWLAN support flags
1682 * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
1683 * trigger that keeps the device operating as-is and
1684 * wakes up the host on any activity, for example a
1685 * received packet that passed filtering; note that the
1686 * packet should be preserved in that case
1687 * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
1688 * (see nl80211.h)
1689 * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
1690 */
1691enum wiphy_wowlan_support_flags {
1692 WIPHY_WOWLAN_ANY = BIT(0),
1693 WIPHY_WOWLAN_MAGIC_PKT = BIT(1),
1694 WIPHY_WOWLAN_DISCONNECT = BIT(2),
1695};
1696
1697/**
1698 * struct wiphy_wowlan_support - WoWLAN support data
1699 * @flags: see &enum wiphy_wowlan_support_flags
1700 * @n_patterns: number of supported wakeup patterns
1701 * (see nl80211.h for the pattern definition)
1702 * @pattern_max_len: maximum length of each pattern
1703 * @pattern_min_len: minimum length of each pattern
1704 */
1705struct wiphy_wowlan_support {
1706 u32 flags;
1707 int n_patterns;
1708 int pattern_max_len;
1709 int pattern_min_len;
1710};
1711
1712/**
Johannes Berg5be83de2009-11-19 00:56:28 +01001713 * struct wiphy - wireless hardware description
Luis R. Rodriguez2784fe92010-12-15 19:24:11 -08001714 * @reg_notifier: the driver's regulatory notification callback,
1715 * note that if your driver uses wiphy_apply_custom_regulatory()
1716 * the reg_notifier's request can be passed as NULL
Johannes Bergd3236552009-04-20 14:31:42 +02001717 * @regd: the driver's regulatory domain, if one was requested via
1718 * the regulatory_hint() API. This can be used by the driver
1719 * on the reg_notifier() if it chooses to ignore future
1720 * regulatory domain changes caused by other drivers.
1721 * @signal_type: signal type reported in &struct cfg80211_bss.
1722 * @cipher_suites: supported cipher suites
1723 * @n_cipher_suites: number of supported cipher suites
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001724 * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
1725 * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
1726 * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
1727 * -1 = fragmentation disabled, only odd values >= 256 used
1728 * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
Johannes Bergabe37c42010-06-07 11:12:27 +02001729 * @_net: the network namespace this wiphy currently lives in
Johannes Bergef15aac2010-01-20 12:02:33 +01001730 * @perm_addr: permanent MAC address of this device
1731 * @addr_mask: If the device supports multiple MAC addresses by masking,
1732 * set this to a mask with variable bits set to 1, e.g. if the last
1733 * four bits are variable then set it to 00:...:00:0f. The actual
1734 * variable bits shall be determined by the interfaces added, with
1735 * interfaces not matching the mask being rejected to be brought up.
1736 * @n_addresses: number of addresses in @addresses.
1737 * @addresses: If the device has more than one address, set this pointer
1738 * to a list of addresses (6 bytes each). The first one will be used
1739 * by default for perm_addr. In this case, the mask should be set to
1740 * all-zeroes. In this case it is assumed that the device can handle
1741 * the same number of arbitrary MAC addresses.
Johannes Bergabe37c42010-06-07 11:12:27 +02001742 * @debugfsdir: debugfs directory used for this wiphy, will be renamed
1743 * automatically on wiphy renames
1744 * @dev: (virtual) struct device for this wiphy
1745 * @wext: wireless extension handlers
1746 * @priv: driver private data (sized according to wiphy_new() parameter)
1747 * @interface_modes: bitmask of interfaces types valid for this wiphy,
1748 * must be set by driver
Johannes Berg7527a782011-05-13 10:58:57 +02001749 * @iface_combinations: Valid interface combinations array, should not
1750 * list single interface types.
1751 * @n_iface_combinations: number of entries in @iface_combinations array.
1752 * @software_iftypes: bitmask of software interface types, these are not
1753 * subject to any restrictions since they are purely managed in SW.
Johannes Bergabe37c42010-06-07 11:12:27 +02001754 * @flags: wiphy flags, see &enum wiphy_flags
1755 * @bss_priv_size: each BSS struct has private data allocated with it,
1756 * this variable determines its size
1757 * @max_scan_ssids: maximum number of SSIDs the device can scan for in
1758 * any given scan
1759 * @max_scan_ie_len: maximum length of user-controlled IEs device can
1760 * add to probe request frames transmitted during a scan, must not
1761 * include fixed IEs like supported rates
1762 * @coverage_class: current coverage class
1763 * @fw_version: firmware version for ethtool reporting
1764 * @hw_version: hardware version for ethtool reporting
1765 * @max_num_pmkids: maximum number of PMKIDs supported by device
1766 * @privid: a pointer that drivers can use to identify if an arbitrary
1767 * wiphy is theirs, e.g. in global notifiers
1768 * @bands: information about bands/channels supported by this device
Johannes Berg2e161f72010-08-12 15:38:38 +02001769 *
1770 * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
1771 * transmitted through nl80211, points to an array indexed by interface
1772 * type
Bruno Randolfa7ffac92010-12-08 13:59:24 +09001773 *
Bruno Randolf7f531e02010-12-16 11:30:22 +09001774 * @available_antennas_tx: bitmap of antennas which are available to be
1775 * configured as TX antennas. Antenna configuration commands will be
1776 * rejected unless this or @available_antennas_rx is set.
1777 *
1778 * @available_antennas_rx: bitmap of antennas which are available to be
1779 * configured as RX antennas. Antenna configuration commands will be
1780 * rejected unless this or @available_antennas_tx is set.
Johannes Berga2939112010-12-14 17:54:28 +01001781 *
1782 * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
1783 * may request, if implemented.
Johannes Bergff1b6e62011-05-04 15:37:28 +02001784 *
1785 * @wowlan: WoWLAN support information
Johannes Bergd3236552009-04-20 14:31:42 +02001786 */
1787struct wiphy {
1788 /* assign these fields before you register the wiphy */
1789
Johannes Bergef15aac2010-01-20 12:02:33 +01001790 /* permanent MAC address(es) */
Johannes Bergd3236552009-04-20 14:31:42 +02001791 u8 perm_addr[ETH_ALEN];
Johannes Bergef15aac2010-01-20 12:02:33 +01001792 u8 addr_mask[ETH_ALEN];
1793
Johannes Bergef15aac2010-01-20 12:02:33 +01001794 struct mac_address *addresses;
Johannes Bergd3236552009-04-20 14:31:42 +02001795
Johannes Berg2e161f72010-08-12 15:38:38 +02001796 const struct ieee80211_txrx_stypes *mgmt_stypes;
1797
Johannes Berg7527a782011-05-13 10:58:57 +02001798 const struct ieee80211_iface_combination *iface_combinations;
1799 int n_iface_combinations;
1800 u16 software_iftypes;
1801
Johannes Berg2e161f72010-08-12 15:38:38 +02001802 u16 n_addresses;
1803
Johannes Bergd3236552009-04-20 14:31:42 +02001804 /* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
1805 u16 interface_modes;
1806
Johannes Berg5be83de2009-11-19 00:56:28 +01001807 u32 flags;
Johannes Berg463d0182009-07-14 00:33:35 +02001808
Johannes Bergd3236552009-04-20 14:31:42 +02001809 enum cfg80211_signal_type signal_type;
1810
1811 int bss_priv_size;
1812 u8 max_scan_ssids;
1813 u16 max_scan_ie_len;
1814
1815 int n_cipher_suites;
1816 const u32 *cipher_suites;
1817
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001818 u8 retry_short;
1819 u8 retry_long;
1820 u32 frag_threshold;
1821 u32 rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01001822 u8 coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001823
Kalle Valodfce95f2009-09-24 11:02:42 -07001824 char fw_version[ETHTOOL_BUSINFO_LEN];
1825 u32 hw_version;
1826
Johannes Bergff1b6e62011-05-04 15:37:28 +02001827 struct wiphy_wowlan_support wowlan;
1828
Johannes Berga2939112010-12-14 17:54:28 +01001829 u16 max_remain_on_channel_duration;
1830
Samuel Ortiz67fbb162009-11-24 23:59:15 +01001831 u8 max_num_pmkids;
1832
Bruno Randolf7f531e02010-12-16 11:30:22 +09001833 u32 available_antennas_tx;
1834 u32 available_antennas_rx;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09001835
Johannes Bergd3236552009-04-20 14:31:42 +02001836 /* If multiple wiphys are registered and you're handed e.g.
1837 * a regular netdev with assigned ieee80211_ptr, you won't
1838 * know whether it points to a wiphy your driver has registered
1839 * or not. Assign this to something global to your driver to
1840 * help determine whether you own this wiphy or not. */
David Kilroycf5aa2f2009-05-16 23:13:47 +01001841 const void *privid;
Johannes Bergd3236552009-04-20 14:31:42 +02001842
1843 struct ieee80211_supported_band *bands[IEEE80211_NUM_BANDS];
1844
1845 /* Lets us get back the wiphy on the callback */
1846 int (*reg_notifier)(struct wiphy *wiphy,
1847 struct regulatory_request *request);
1848
1849 /* fields below are read-only, assigned by cfg80211 */
1850
1851 const struct ieee80211_regdomain *regd;
1852
1853 /* the item in /sys/class/ieee80211/ points to this,
1854 * you need use set_wiphy_dev() (see below) */
1855 struct device dev;
1856
1857 /* dir in debugfs: ieee80211/<wiphyname> */
1858 struct dentry *debugfsdir;
1859
Johannes Berg463d0182009-07-14 00:33:35 +02001860#ifdef CONFIG_NET_NS
1861 /* the network namespace this phy lives in currently */
1862 struct net *_net;
1863#endif
1864
Johannes Berg3d23e342009-09-29 23:27:28 +02001865#ifdef CONFIG_CFG80211_WEXT
1866 const struct iw_handler_def *wext;
1867#endif
1868
Johannes Bergd3236552009-04-20 14:31:42 +02001869 char priv[0] __attribute__((__aligned__(NETDEV_ALIGN)));
1870};
1871
Johannes Berg463d0182009-07-14 00:33:35 +02001872static inline struct net *wiphy_net(struct wiphy *wiphy)
1873{
Eric Dumazetc2d9ba92010-06-01 06:51:19 +00001874 return read_pnet(&wiphy->_net);
Johannes Berg463d0182009-07-14 00:33:35 +02001875}
1876
1877static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
1878{
Eric Dumazetc2d9ba92010-06-01 06:51:19 +00001879 write_pnet(&wiphy->_net, net);
Johannes Berg463d0182009-07-14 00:33:35 +02001880}
Johannes Berg463d0182009-07-14 00:33:35 +02001881
Johannes Bergd3236552009-04-20 14:31:42 +02001882/**
1883 * wiphy_priv - return priv from wiphy
1884 *
1885 * @wiphy: the wiphy whose priv pointer to return
1886 */
1887static inline void *wiphy_priv(struct wiphy *wiphy)
1888{
1889 BUG_ON(!wiphy);
1890 return &wiphy->priv;
1891}
1892
1893/**
David Kilroyf1f74822009-06-18 23:21:13 +01001894 * priv_to_wiphy - return the wiphy containing the priv
1895 *
1896 * @priv: a pointer previously returned by wiphy_priv
1897 */
1898static inline struct wiphy *priv_to_wiphy(void *priv)
1899{
1900 BUG_ON(!priv);
1901 return container_of(priv, struct wiphy, priv);
1902}
1903
1904/**
Johannes Bergd3236552009-04-20 14:31:42 +02001905 * set_wiphy_dev - set device pointer for wiphy
1906 *
1907 * @wiphy: The wiphy whose device to bind
1908 * @dev: The device to parent it to
1909 */
1910static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
1911{
1912 wiphy->dev.parent = dev;
1913}
1914
1915/**
1916 * wiphy_dev - get wiphy dev pointer
1917 *
1918 * @wiphy: The wiphy whose device struct to look up
1919 */
1920static inline struct device *wiphy_dev(struct wiphy *wiphy)
1921{
1922 return wiphy->dev.parent;
1923}
1924
1925/**
1926 * wiphy_name - get wiphy name
1927 *
1928 * @wiphy: The wiphy whose name to return
1929 */
Joe Perchese1db74f2010-07-26 14:39:57 -07001930static inline const char *wiphy_name(const struct wiphy *wiphy)
Johannes Bergd3236552009-04-20 14:31:42 +02001931{
1932 return dev_name(&wiphy->dev);
1933}
1934
1935/**
1936 * wiphy_new - create a new wiphy for use with cfg80211
1937 *
1938 * @ops: The configuration operations for this device
1939 * @sizeof_priv: The size of the private area to allocate
1940 *
1941 * Create a new wiphy and associate the given operations with it.
1942 * @sizeof_priv bytes are allocated for private use.
1943 *
1944 * The returned pointer must be assigned to each netdev's
1945 * ieee80211_ptr for proper operation.
1946 */
David Kilroy3dcf6702009-05-16 23:13:46 +01001947struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv);
Johannes Bergd3236552009-04-20 14:31:42 +02001948
1949/**
1950 * wiphy_register - register a wiphy with cfg80211
1951 *
1952 * @wiphy: The wiphy to register.
1953 *
1954 * Returns a non-negative wiphy index or a negative error code.
1955 */
1956extern int wiphy_register(struct wiphy *wiphy);
1957
1958/**
1959 * wiphy_unregister - deregister a wiphy from cfg80211
1960 *
1961 * @wiphy: The wiphy to unregister.
1962 *
1963 * After this call, no more requests can be made with this priv
1964 * pointer, but the call may sleep to wait for an outstanding
1965 * request that is being handled.
1966 */
1967extern void wiphy_unregister(struct wiphy *wiphy);
1968
1969/**
1970 * wiphy_free - free wiphy
1971 *
1972 * @wiphy: The wiphy to free
1973 */
1974extern void wiphy_free(struct wiphy *wiphy);
1975
Johannes Bergfffd0932009-07-08 14:22:54 +02001976/* internal structs */
Johannes Berg6829c872009-07-02 09:13:27 +02001977struct cfg80211_conn;
Johannes Berg19957bb2009-07-02 17:20:43 +02001978struct cfg80211_internal_bss;
Johannes Bergfffd0932009-07-08 14:22:54 +02001979struct cfg80211_cached_keys;
Johannes Berg19957bb2009-07-02 17:20:43 +02001980
1981#define MAX_AUTH_BSSES 4
Johannes Berg6829c872009-07-02 09:13:27 +02001982
Johannes Bergd3236552009-04-20 14:31:42 +02001983/**
1984 * struct wireless_dev - wireless per-netdev state
1985 *
1986 * This structure must be allocated by the driver/stack
1987 * that uses the ieee80211_ptr field in struct net_device
1988 * (this is intentional so it can be allocated along with
1989 * the netdev.)
1990 *
1991 * @wiphy: pointer to hardware description
1992 * @iftype: interface type
1993 * @list: (private) Used to collect the interfaces
1994 * @netdev: (private) Used to reference back to the netdev
1995 * @current_bss: (private) Used by the internal configuration code
Johannes Bergf444de02010-05-05 15:25:02 +02001996 * @channel: (private) Used by the internal configuration code to track
1997 * user-set AP, monitor and WDS channels for wireless extensions
Johannes Bergd3236552009-04-20 14:31:42 +02001998 * @bssid: (private) Used by the internal configuration code
1999 * @ssid: (private) Used by the internal configuration code
2000 * @ssid_len: (private) Used by the internal configuration code
Johannes Berg29cbe682010-12-03 09:20:44 +01002001 * @mesh_id_len: (private) Used by the internal configuration code
2002 * @mesh_id_up_len: (private) Used by the internal configuration code
Johannes Bergd3236552009-04-20 14:31:42 +02002003 * @wext: (private) Used by the internal wireless extensions compat code
Johannes Berg9bc383d2009-11-19 11:55:19 +01002004 * @use_4addr: indicates 4addr mode is used on this interface, must be
2005 * set by driver (if supported) on add_interface BEFORE registering the
2006 * netdev and may otherwise be used by driver read-only, will be update
2007 * by cfg80211 on change_interface
Johannes Berg2e161f72010-08-12 15:38:38 +02002008 * @mgmt_registrations: list of registrations for management frames
2009 * @mgmt_registrations_lock: lock for the list
Johannes Bergabe37c42010-06-07 11:12:27 +02002010 * @mtx: mutex used to lock data in this struct
2011 * @cleanup_work: work struct used for cleanup that can't be done directly
Johannes Berg56d18932011-05-09 18:41:15 +02002012 * @beacon_interval: beacon interval used on this device for transmitting
2013 * beacons, 0 when not valid
Johannes Bergd3236552009-04-20 14:31:42 +02002014 */
2015struct wireless_dev {
2016 struct wiphy *wiphy;
2017 enum nl80211_iftype iftype;
2018
Johannes Berg667503d2009-07-07 03:56:11 +02002019 /* the remainder of this struct should be private to cfg80211 */
Johannes Bergd3236552009-04-20 14:31:42 +02002020 struct list_head list;
2021 struct net_device *netdev;
2022
Johannes Berg2e161f72010-08-12 15:38:38 +02002023 struct list_head mgmt_registrations;
2024 spinlock_t mgmt_registrations_lock;
Jouni Malinen026331c2010-02-15 12:53:10 +02002025
Johannes Berg667503d2009-07-07 03:56:11 +02002026 struct mutex mtx;
2027
Johannes Bergad002392009-08-18 19:51:57 +02002028 struct work_struct cleanup_work;
2029
Johannes Berg9bc383d2009-11-19 11:55:19 +01002030 bool use_4addr;
2031
Samuel Ortizb23aa672009-07-01 21:26:54 +02002032 /* currently used for IBSS and SME - might be rearranged later */
Johannes Bergd3236552009-04-20 14:31:42 +02002033 u8 ssid[IEEE80211_MAX_SSID_LEN];
Johannes Berg29cbe682010-12-03 09:20:44 +01002034 u8 ssid_len, mesh_id_len, mesh_id_up_len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02002035 enum {
2036 CFG80211_SME_IDLE,
Johannes Berg6829c872009-07-02 09:13:27 +02002037 CFG80211_SME_CONNECTING,
Samuel Ortizb23aa672009-07-01 21:26:54 +02002038 CFG80211_SME_CONNECTED,
2039 } sme_state;
Johannes Berg6829c872009-07-02 09:13:27 +02002040 struct cfg80211_conn *conn;
Johannes Bergfffd0932009-07-08 14:22:54 +02002041 struct cfg80211_cached_keys *connect_keys;
Johannes Bergd3236552009-04-20 14:31:42 +02002042
Johannes Berg667503d2009-07-07 03:56:11 +02002043 struct list_head event_list;
2044 spinlock_t event_lock;
2045
Johannes Berg19957bb2009-07-02 17:20:43 +02002046 struct cfg80211_internal_bss *authtry_bsses[MAX_AUTH_BSSES];
2047 struct cfg80211_internal_bss *auth_bsses[MAX_AUTH_BSSES];
2048 struct cfg80211_internal_bss *current_bss; /* associated / joined */
Johannes Bergf444de02010-05-05 15:25:02 +02002049 struct ieee80211_channel *channel;
Johannes Berg19957bb2009-07-02 17:20:43 +02002050
Kalle Valoffb9eb32010-02-17 17:58:10 +02002051 bool ps;
2052 int ps_timeout;
2053
Johannes Berg56d18932011-05-09 18:41:15 +02002054 int beacon_interval;
2055
Johannes Berg3d23e342009-09-29 23:27:28 +02002056#ifdef CONFIG_CFG80211_WEXT
Johannes Bergd3236552009-04-20 14:31:42 +02002057 /* wext data */
Johannes Bergcbe8fa92009-05-09 20:09:03 +02002058 struct {
Johannes Bergc238c8a2009-07-07 03:56:06 +02002059 struct cfg80211_ibss_params ibss;
2060 struct cfg80211_connect_params connect;
Johannes Bergfffd0932009-07-08 14:22:54 +02002061 struct cfg80211_cached_keys *keys;
Johannes Bergf2129352009-07-01 21:26:56 +02002062 u8 *ie;
2063 size_t ie_len;
Johannes Bergf401a6f2009-08-07 14:51:05 +02002064 u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
Johannes Bergf2129352009-07-01 21:26:56 +02002065 u8 ssid[IEEE80211_MAX_SSID_LEN];
Johannes Berg08645122009-05-11 13:54:58 +02002066 s8 default_key, default_mgmt_key;
Kalle Valoffb9eb32010-02-17 17:58:10 +02002067 bool prev_bssid_valid;
Johannes Bergcbe8fa92009-05-09 20:09:03 +02002068 } wext;
Johannes Bergd3236552009-04-20 14:31:42 +02002069#endif
2070};
2071
2072/**
2073 * wdev_priv - return wiphy priv from wireless_dev
2074 *
2075 * @wdev: The wireless device whose wiphy's priv pointer to return
2076 */
2077static inline void *wdev_priv(struct wireless_dev *wdev)
2078{
2079 BUG_ON(!wdev);
2080 return wiphy_priv(wdev->wiphy);
2081}
2082
Johannes Bergd70e9692010-08-19 16:11:27 +02002083/**
2084 * DOC: Utility functions
2085 *
2086 * cfg80211 offers a number of utility functions that can be useful.
Johannes Bergd3236552009-04-20 14:31:42 +02002087 */
2088
2089/**
2090 * ieee80211_channel_to_frequency - convert channel number to frequency
Johannes Bergabe37c42010-06-07 11:12:27 +02002091 * @chan: channel number
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002092 * @band: band, necessary due to channel number overlap
Johannes Bergd3236552009-04-20 14:31:42 +02002093 */
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002094extern int ieee80211_channel_to_frequency(int chan, enum ieee80211_band band);
Johannes Bergd3236552009-04-20 14:31:42 +02002095
2096/**
2097 * ieee80211_frequency_to_channel - convert frequency to channel number
Johannes Bergabe37c42010-06-07 11:12:27 +02002098 * @freq: center frequency
Johannes Bergd3236552009-04-20 14:31:42 +02002099 */
2100extern int ieee80211_frequency_to_channel(int freq);
2101
2102/*
2103 * Name indirection necessary because the ieee80211 code also has
2104 * a function named "ieee80211_get_channel", so if you include
2105 * cfg80211's header file you get cfg80211's version, if you try
2106 * to include both header files you'll (rightfully!) get a symbol
2107 * clash.
2108 */
2109extern struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
2110 int freq);
2111/**
2112 * ieee80211_get_channel - get channel struct from wiphy for specified frequency
Johannes Bergabe37c42010-06-07 11:12:27 +02002113 * @wiphy: the struct wiphy to get the channel for
2114 * @freq: the center frequency of the channel
Johannes Bergd3236552009-04-20 14:31:42 +02002115 */
2116static inline struct ieee80211_channel *
2117ieee80211_get_channel(struct wiphy *wiphy, int freq)
2118{
2119 return __ieee80211_get_channel(wiphy, freq);
2120}
2121
2122/**
2123 * ieee80211_get_response_rate - get basic rate for a given rate
2124 *
2125 * @sband: the band to look for rates in
2126 * @basic_rates: bitmap of basic rates
2127 * @bitrate: the bitrate for which to find the basic rate
2128 *
2129 * This function returns the basic rate corresponding to a given
2130 * bitrate, that is the next lower bitrate contained in the basic
2131 * rate map, which is, for this function, given as a bitmap of
2132 * indices of rates in the band's bitrate table.
2133 */
2134struct ieee80211_rate *
2135ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
2136 u32 basic_rates, int bitrate);
2137
2138/*
2139 * Radiotap parsing functions -- for controlled injection support
2140 *
2141 * Implemented in net/wireless/radiotap.c
2142 * Documentation in Documentation/networking/radiotap-headers.txt
2143 */
2144
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002145struct radiotap_align_size {
2146 uint8_t align:4, size:4;
2147};
2148
2149struct ieee80211_radiotap_namespace {
2150 const struct radiotap_align_size *align_size;
2151 int n_bits;
2152 uint32_t oui;
2153 uint8_t subns;
2154};
2155
2156struct ieee80211_radiotap_vendor_namespaces {
2157 const struct ieee80211_radiotap_namespace *ns;
2158 int n_ns;
2159};
2160
Johannes Bergd3236552009-04-20 14:31:42 +02002161/**
2162 * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002163 * @this_arg_index: index of current arg, valid after each successful call
2164 * to ieee80211_radiotap_iterator_next()
2165 * @this_arg: pointer to current radiotap arg; it is valid after each
2166 * call to ieee80211_radiotap_iterator_next() but also after
2167 * ieee80211_radiotap_iterator_init() where it will point to
2168 * the beginning of the actual data portion
2169 * @this_arg_size: length of the current arg, for convenience
2170 * @current_namespace: pointer to the current namespace definition
2171 * (or internally %NULL if the current namespace is unknown)
2172 * @is_radiotap_ns: indicates whether the current namespace is the default
2173 * radiotap namespace or not
2174 *
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002175 * @_rtheader: pointer to the radiotap header we are walking through
2176 * @_max_length: length of radiotap header in cpu byte ordering
2177 * @_arg_index: next argument index
2178 * @_arg: next argument pointer
2179 * @_next_bitmap: internal pointer to next present u32
2180 * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
2181 * @_vns: vendor namespace definitions
2182 * @_next_ns_data: beginning of the next namespace's data
2183 * @_reset_on_ext: internal; reset the arg index to 0 when going to the
2184 * next bitmap word
2185 *
2186 * Describes the radiotap parser state. Fields prefixed with an underscore
2187 * must not be used by users of the parser, only by the parser internally.
Johannes Bergd3236552009-04-20 14:31:42 +02002188 */
2189
2190struct ieee80211_radiotap_iterator {
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002191 struct ieee80211_radiotap_header *_rtheader;
2192 const struct ieee80211_radiotap_vendor_namespaces *_vns;
2193 const struct ieee80211_radiotap_namespace *current_namespace;
Johannes Bergd3236552009-04-20 14:31:42 +02002194
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002195 unsigned char *_arg, *_next_ns_data;
Johannes Berg67272442010-04-21 10:25:36 +02002196 __le32 *_next_bitmap;
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002197
2198 unsigned char *this_arg;
2199 int this_arg_index;
2200 int this_arg_size;
2201
2202 int is_radiotap_ns;
2203
2204 int _max_length;
2205 int _arg_index;
2206 uint32_t _bitmap_shifter;
2207 int _reset_on_ext;
Johannes Bergd3236552009-04-20 14:31:42 +02002208};
2209
2210extern int ieee80211_radiotap_iterator_init(
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002211 struct ieee80211_radiotap_iterator *iterator,
2212 struct ieee80211_radiotap_header *radiotap_header,
2213 int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns);
Johannes Bergd3236552009-04-20 14:31:42 +02002214
2215extern int ieee80211_radiotap_iterator_next(
Johannes Berg33e5a2f2010-02-03 10:24:30 +01002216 struct ieee80211_radiotap_iterator *iterator);
2217
Johannes Bergd3236552009-04-20 14:31:42 +02002218
Zhu Yie31a16d2009-05-21 21:47:03 +08002219extern const unsigned char rfc1042_header[6];
2220extern const unsigned char bridge_tunnel_header[6];
2221
2222/**
2223 * ieee80211_get_hdrlen_from_skb - get header length from data
2224 *
2225 * Given an skb with a raw 802.11 header at the data pointer this function
2226 * returns the 802.11 header length in bytes (not including encryption
2227 * headers). If the data in the sk_buff is too short to contain a valid 802.11
2228 * header the function returns 0.
2229 *
2230 * @skb: the frame
2231 */
2232unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
2233
2234/**
2235 * ieee80211_hdrlen - get header length in bytes from frame control
2236 * @fc: frame control field in little-endian format
2237 */
Johannes Berg633adf12010-08-12 14:49:58 +02002238unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
Zhu Yie31a16d2009-05-21 21:47:03 +08002239
2240/**
Johannes Bergd70e9692010-08-19 16:11:27 +02002241 * DOC: Data path helpers
2242 *
2243 * In addition to generic utilities, cfg80211 also offers
2244 * functions that help implement the data path for devices
2245 * that do not do the 802.11/802.3 conversion on the device.
2246 */
2247
2248/**
Zhu Yie31a16d2009-05-21 21:47:03 +08002249 * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
2250 * @skb: the 802.11 data frame
2251 * @addr: the device MAC address
2252 * @iftype: the virtual interface type
2253 */
Zhu Yieaf85ca2009-12-01 10:18:37 +08002254int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
Zhu Yie31a16d2009-05-21 21:47:03 +08002255 enum nl80211_iftype iftype);
2256
2257/**
2258 * ieee80211_data_from_8023 - convert an 802.3 frame to 802.11
2259 * @skb: the 802.3 frame
2260 * @addr: the device MAC address
2261 * @iftype: the virtual interface type
2262 * @bssid: the network bssid (used only for iftype STATION and ADHOC)
2263 * @qos: build 802.11 QoS data frame
2264 */
Zhu Yieaf85ca2009-12-01 10:18:37 +08002265int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
Zhu Yie31a16d2009-05-21 21:47:03 +08002266 enum nl80211_iftype iftype, u8 *bssid, bool qos);
2267
2268/**
Zhu Yieaf85ca2009-12-01 10:18:37 +08002269 * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
2270 *
2271 * Decode an IEEE 802.11n A-MSDU frame and convert it to a list of
2272 * 802.3 frames. The @list will be empty if the decode fails. The
2273 * @skb is consumed after the function returns.
2274 *
2275 * @skb: The input IEEE 802.11n A-MSDU frame.
2276 * @list: The output list of 802.3 frames. It must be allocated and
2277 * initialized by by the caller.
2278 * @addr: The device MAC address.
2279 * @iftype: The device interface type.
2280 * @extra_headroom: The hardware extra headroom for SKBs in the @list.
Yogesh Ashok Powar8b3beca2011-05-13 11:22:31 -07002281 * @has_80211_header: Set it true if SKB is with IEEE 802.11 header.
Zhu Yieaf85ca2009-12-01 10:18:37 +08002282 */
2283void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
2284 const u8 *addr, enum nl80211_iftype iftype,
Yogesh Ashok Powar8b3beca2011-05-13 11:22:31 -07002285 const unsigned int extra_headroom,
2286 bool has_80211_header);
Zhu Yieaf85ca2009-12-01 10:18:37 +08002287
2288/**
Zhu Yie31a16d2009-05-21 21:47:03 +08002289 * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
2290 * @skb: the data frame
2291 */
2292unsigned int cfg80211_classify8021d(struct sk_buff *skb);
2293
Johannes Bergc21dbf92010-01-26 14:15:46 +01002294/**
2295 * cfg80211_find_ie - find information element in data
2296 *
2297 * @eid: element ID
2298 * @ies: data consisting of IEs
2299 * @len: length of data
2300 *
2301 * This function will return %NULL if the element ID could
2302 * not be found or if the element is invalid (claims to be
2303 * longer than the given data), or a pointer to the first byte
2304 * of the requested element, that is the byte containing the
2305 * element ID. There are no checks on the element length
2306 * other than having to fit into the given data.
2307 */
2308const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len);
2309
Johannes Bergd70e9692010-08-19 16:11:27 +02002310/**
2311 * DOC: Regulatory enforcement infrastructure
2312 *
2313 * TODO
Johannes Bergd3236552009-04-20 14:31:42 +02002314 */
2315
2316/**
2317 * regulatory_hint - driver hint to the wireless core a regulatory domain
2318 * @wiphy: the wireless device giving the hint (used only for reporting
2319 * conflicts)
2320 * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
2321 * should be in. If @rd is set this should be NULL. Note that if you
2322 * set this to NULL you should still set rd->alpha2 to some accepted
2323 * alpha2.
2324 *
2325 * Wireless drivers can use this function to hint to the wireless core
2326 * what it believes should be the current regulatory domain by
2327 * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
2328 * domain should be in or by providing a completely build regulatory domain.
2329 * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
2330 * for a regulatory domain structure for the respective country.
2331 *
2332 * The wiphy must have been registered to cfg80211 prior to this call.
2333 * For cfg80211 drivers this means you must first use wiphy_register(),
2334 * for mac80211 drivers you must first use ieee80211_register_hw().
2335 *
2336 * Drivers should check the return value, its possible you can get
2337 * an -ENOMEM.
2338 */
2339extern int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
2340
2341/**
Johannes Bergd3236552009-04-20 14:31:42 +02002342 * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
2343 * @wiphy: the wireless device we want to process the regulatory domain on
2344 * @regd: the custom regulatory domain to use for this wiphy
2345 *
2346 * Drivers can sometimes have custom regulatory domains which do not apply
2347 * to a specific country. Drivers can use this to apply such custom regulatory
2348 * domains. This routine must be called prior to wiphy registration. The
2349 * custom regulatory domain will be trusted completely and as such previous
2350 * default channel settings will be disregarded. If no rule is found for a
2351 * channel on the regulatory domain the channel will be disabled.
2352 */
2353extern void wiphy_apply_custom_regulatory(
2354 struct wiphy *wiphy,
2355 const struct ieee80211_regdomain *regd);
2356
2357/**
2358 * freq_reg_info - get regulatory information for the given frequency
2359 * @wiphy: the wiphy for which we want to process this rule for
2360 * @center_freq: Frequency in KHz for which we want regulatory information for
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002361 * @desired_bw_khz: the desired max bandwidth you want to use per
2362 * channel. Note that this is still 20 MHz if you want to use HT40
2363 * as HT40 makes use of two channels for its 40 MHz width bandwidth.
2364 * If set to 0 we'll assume you want the standard 20 MHz.
Johannes Bergd3236552009-04-20 14:31:42 +02002365 * @reg_rule: the regulatory rule which we have for this frequency
2366 *
2367 * Use this function to get the regulatory rule for a specific frequency on
2368 * a given wireless device. If the device has a specific regulatory domain
2369 * it wants to follow we respect that unless a country IE has been received
2370 * and processed already.
2371 *
2372 * Returns 0 if it was able to find a valid regulatory rule which does
2373 * apply to the given center_freq otherwise it returns non-zero. It will
2374 * also return -ERANGE if we determine the given center_freq does not even have
2375 * a regulatory rule for a frequency range in the center_freq's band. See
2376 * freq_in_rule_band() for our current definition of a band -- this is purely
2377 * subjective and right now its 802.11 specific.
2378 */
Luis R. Rodriguez038659e2009-05-02 00:37:17 -04002379extern int freq_reg_info(struct wiphy *wiphy,
2380 u32 center_freq,
2381 u32 desired_bw_khz,
Johannes Bergd3236552009-04-20 14:31:42 +02002382 const struct ieee80211_reg_rule **reg_rule);
2383
2384/*
2385 * Temporary wext handlers & helper functions
2386 *
2387 * In the future cfg80211 will simply assign the entire wext handler
2388 * structure to netdevs it manages, but we're not there yet.
2389 */
Johannes Bergfee52672008-11-26 22:36:31 +01002390int cfg80211_wext_giwname(struct net_device *dev,
2391 struct iw_request_info *info,
2392 char *name, char *extra);
Johannes Berge60c7742008-11-26 23:31:40 +01002393int cfg80211_wext_siwmode(struct net_device *dev, struct iw_request_info *info,
2394 u32 *mode, char *extra);
2395int cfg80211_wext_giwmode(struct net_device *dev, struct iw_request_info *info,
2396 u32 *mode, char *extra);
Johannes Berg2a519312009-02-10 21:25:55 +01002397int cfg80211_wext_siwscan(struct net_device *dev,
2398 struct iw_request_info *info,
2399 union iwreq_data *wrqu, char *extra);
2400int cfg80211_wext_giwscan(struct net_device *dev,
2401 struct iw_request_info *info,
2402 struct iw_point *data, char *extra);
Johannes Berg691597c2009-04-19 19:57:45 +02002403int cfg80211_wext_siwmlme(struct net_device *dev,
2404 struct iw_request_info *info,
2405 struct iw_point *data, char *extra);
Johannes Berg4aa188e2009-02-18 19:32:08 +01002406int cfg80211_wext_giwrange(struct net_device *dev,
2407 struct iw_request_info *info,
2408 struct iw_point *data, char *extra);
Johannes Bergf2129352009-07-01 21:26:56 +02002409int cfg80211_wext_siwgenie(struct net_device *dev,
2410 struct iw_request_info *info,
2411 struct iw_point *data, char *extra);
2412int cfg80211_wext_siwauth(struct net_device *dev,
2413 struct iw_request_info *info,
2414 struct iw_param *data, char *extra);
2415int cfg80211_wext_giwauth(struct net_device *dev,
2416 struct iw_request_info *info,
2417 struct iw_param *data, char *extra);
2418
Johannes Berg0e82ffe2009-07-27 12:01:50 +02002419int cfg80211_wext_siwfreq(struct net_device *dev,
2420 struct iw_request_info *info,
2421 struct iw_freq *freq, char *extra);
2422int cfg80211_wext_giwfreq(struct net_device *dev,
2423 struct iw_request_info *info,
2424 struct iw_freq *freq, char *extra);
Johannes Berg1f9298f2009-07-27 12:01:52 +02002425int cfg80211_wext_siwessid(struct net_device *dev,
2426 struct iw_request_info *info,
2427 struct iw_point *data, char *ssid);
2428int cfg80211_wext_giwessid(struct net_device *dev,
2429 struct iw_request_info *info,
2430 struct iw_point *data, char *ssid);
Johannes Berg99303802009-07-01 21:26:59 +02002431int cfg80211_wext_siwrate(struct net_device *dev,
2432 struct iw_request_info *info,
2433 struct iw_param *rate, char *extra);
2434int cfg80211_wext_giwrate(struct net_device *dev,
2435 struct iw_request_info *info,
2436 struct iw_param *rate, char *extra);
2437
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002438int cfg80211_wext_siwrts(struct net_device *dev,
2439 struct iw_request_info *info,
2440 struct iw_param *rts, char *extra);
2441int cfg80211_wext_giwrts(struct net_device *dev,
2442 struct iw_request_info *info,
2443 struct iw_param *rts, char *extra);
2444int cfg80211_wext_siwfrag(struct net_device *dev,
2445 struct iw_request_info *info,
2446 struct iw_param *frag, char *extra);
2447int cfg80211_wext_giwfrag(struct net_device *dev,
2448 struct iw_request_info *info,
2449 struct iw_param *frag, char *extra);
2450int cfg80211_wext_siwretry(struct net_device *dev,
2451 struct iw_request_info *info,
2452 struct iw_param *retry, char *extra);
2453int cfg80211_wext_giwretry(struct net_device *dev,
2454 struct iw_request_info *info,
2455 struct iw_param *retry, char *extra);
Johannes Berg08645122009-05-11 13:54:58 +02002456int cfg80211_wext_siwencodeext(struct net_device *dev,
2457 struct iw_request_info *info,
2458 struct iw_point *erq, char *extra);
2459int cfg80211_wext_siwencode(struct net_device *dev,
2460 struct iw_request_info *info,
2461 struct iw_point *erq, char *keybuf);
2462int cfg80211_wext_giwencode(struct net_device *dev,
2463 struct iw_request_info *info,
2464 struct iw_point *erq, char *keybuf);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002465int cfg80211_wext_siwtxpower(struct net_device *dev,
2466 struct iw_request_info *info,
2467 union iwreq_data *data, char *keybuf);
2468int cfg80211_wext_giwtxpower(struct net_device *dev,
2469 struct iw_request_info *info,
2470 union iwreq_data *data, char *keybuf);
Johannes Berg89906462009-07-01 21:27:00 +02002471struct iw_statistics *cfg80211_wireless_stats(struct net_device *dev);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002472
Johannes Bergbc92afd2009-07-01 21:26:57 +02002473int cfg80211_wext_siwpower(struct net_device *dev,
2474 struct iw_request_info *info,
2475 struct iw_param *wrq, char *extra);
2476int cfg80211_wext_giwpower(struct net_device *dev,
2477 struct iw_request_info *info,
2478 struct iw_param *wrq, char *extra);
2479
Johannes Berg562e4822009-07-27 12:01:51 +02002480int cfg80211_wext_siwap(struct net_device *dev,
2481 struct iw_request_info *info,
2482 struct sockaddr *ap_addr, char *extra);
2483int cfg80211_wext_giwap(struct net_device *dev,
2484 struct iw_request_info *info,
2485 struct sockaddr *ap_addr, char *extra);
Johannes Bergab737a42009-07-01 21:26:58 +02002486
John W. Linvillec28991a2010-07-20 12:22:40 -04002487int cfg80211_wext_siwpmksa(struct net_device *dev,
2488 struct iw_request_info *info,
2489 struct iw_point *data, char *extra);
2490
Johannes Bergd3236552009-04-20 14:31:42 +02002491/*
2492 * callbacks for asynchronous cfg80211 methods, notification
2493 * functions and BSS handling helpers
2494 */
2495
Johannes Berg2a519312009-02-10 21:25:55 +01002496/**
2497 * cfg80211_scan_done - notify that scan finished
2498 *
2499 * @request: the corresponding scan request
2500 * @aborted: set to true if the scan was aborted for any reason,
2501 * userspace will be notified of that
2502 */
2503void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted);
2504
2505/**
Luciano Coelho807f8a82011-05-11 17:09:35 +03002506 * cfg80211_sched_scan_results - notify that new scan results are available
2507 *
2508 * @wiphy: the wiphy which got scheduled scan results
2509 */
2510void cfg80211_sched_scan_results(struct wiphy *wiphy);
2511
2512/**
2513 * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
2514 *
2515 * @wiphy: the wiphy on which the scheduled scan stopped
2516 *
2517 * The driver can call this function to inform cfg80211 that the
2518 * scheduled scan had to be stopped, for whatever reason. The driver
2519 * is then called back via the sched_scan_stop operation when done.
2520 */
2521void cfg80211_sched_scan_stopped(struct wiphy *wiphy);
2522
2523/**
Johannes Bergabe37c42010-06-07 11:12:27 +02002524 * cfg80211_inform_bss_frame - inform cfg80211 of a received BSS frame
Johannes Berg2a519312009-02-10 21:25:55 +01002525 *
2526 * @wiphy: the wiphy reporting the BSS
Johannes Bergabe37c42010-06-07 11:12:27 +02002527 * @channel: The channel the frame was received on
2528 * @mgmt: the management frame (probe response or beacon)
2529 * @len: length of the management frame
Johannes Berg77965c92009-02-18 18:45:06 +01002530 * @signal: the signal strength, type depends on the wiphy's signal_type
Johannes Berg2a519312009-02-10 21:25:55 +01002531 * @gfp: context flags
2532 *
2533 * This informs cfg80211 that BSS information was found and
2534 * the BSS should be updated/added.
2535 */
2536struct cfg80211_bss*
2537cfg80211_inform_bss_frame(struct wiphy *wiphy,
2538 struct ieee80211_channel *channel,
2539 struct ieee80211_mgmt *mgmt, size_t len,
Johannes Berg77965c92009-02-18 18:45:06 +01002540 s32 signal, gfp_t gfp);
Johannes Berg2a519312009-02-10 21:25:55 +01002541
Johannes Bergabe37c42010-06-07 11:12:27 +02002542/**
2543 * cfg80211_inform_bss - inform cfg80211 of a new BSS
2544 *
2545 * @wiphy: the wiphy reporting the BSS
2546 * @channel: The channel the frame was received on
2547 * @bssid: the BSSID of the BSS
2548 * @timestamp: the TSF timestamp sent by the peer
2549 * @capability: the capability field sent by the peer
2550 * @beacon_interval: the beacon interval announced by the peer
2551 * @ie: additional IEs sent by the peer
2552 * @ielen: length of the additional IEs
2553 * @signal: the signal strength, type depends on the wiphy's signal_type
2554 * @gfp: context flags
2555 *
2556 * This informs cfg80211 that BSS information was found and
2557 * the BSS should be updated/added.
2558 */
Jussi Kivilinna06aa7af2009-03-26 23:40:09 +02002559struct cfg80211_bss*
2560cfg80211_inform_bss(struct wiphy *wiphy,
2561 struct ieee80211_channel *channel,
2562 const u8 *bssid,
2563 u64 timestamp, u16 capability, u16 beacon_interval,
2564 const u8 *ie, size_t ielen,
2565 s32 signal, gfp_t gfp);
2566
Johannes Berg2a519312009-02-10 21:25:55 +01002567struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
2568 struct ieee80211_channel *channel,
2569 const u8 *bssid,
Johannes Berg79420f02009-02-10 21:25:59 +01002570 const u8 *ssid, size_t ssid_len,
2571 u16 capa_mask, u16 capa_val);
2572static inline struct cfg80211_bss *
2573cfg80211_get_ibss(struct wiphy *wiphy,
2574 struct ieee80211_channel *channel,
2575 const u8 *ssid, size_t ssid_len)
2576{
2577 return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
2578 WLAN_CAPABILITY_IBSS, WLAN_CAPABILITY_IBSS);
2579}
2580
Johannes Berg2a519312009-02-10 21:25:55 +01002581struct cfg80211_bss *cfg80211_get_mesh(struct wiphy *wiphy,
2582 struct ieee80211_channel *channel,
2583 const u8 *meshid, size_t meshidlen,
2584 const u8 *meshcfg);
2585void cfg80211_put_bss(struct cfg80211_bss *bss);
Johannes Bergd3236552009-04-20 14:31:42 +02002586
Johannes Bergd491af12009-02-10 21:25:58 +01002587/**
2588 * cfg80211_unlink_bss - unlink BSS from internal data structures
2589 * @wiphy: the wiphy
2590 * @bss: the bss to remove
2591 *
2592 * This function removes the given BSS from the internal data structures
2593 * thereby making it no longer show up in scan results etc. Use this
2594 * function when you detect a BSS is gone. Normally BSSes will also time
2595 * out, so it is not necessary to use this function at all.
2596 */
2597void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
Johannes Bergfee52672008-11-26 22:36:31 +01002598
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002599/**
2600 * cfg80211_send_rx_auth - notification of processed authentication
2601 * @dev: network device
2602 * @buf: authentication frame (header + body)
2603 * @len: length of the frame data
2604 *
2605 * This function is called whenever an authentication has been processed in
Jouni Malinen1965c852009-04-22 21:38:25 +03002606 * station mode. The driver is required to call either this function or
2607 * cfg80211_send_auth_timeout() to indicate the result of cfg80211_ops::auth()
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002608 * call. This function may sleep.
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002609 */
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002610void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002611
2612/**
Jouni Malinen1965c852009-04-22 21:38:25 +03002613 * cfg80211_send_auth_timeout - notification of timed out authentication
2614 * @dev: network device
2615 * @addr: The MAC address of the device with which the authentication timed out
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002616 *
2617 * This function may sleep.
Jouni Malinen1965c852009-04-22 21:38:25 +03002618 */
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002619void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr);
Jouni Malinen1965c852009-04-22 21:38:25 +03002620
2621/**
Johannes Berga58ce432009-11-19 12:45:42 +01002622 * __cfg80211_auth_canceled - notify cfg80211 that authentication was canceled
2623 * @dev: network device
2624 * @addr: The MAC address of the device with which the authentication timed out
2625 *
2626 * When a pending authentication had no action yet, the driver may decide
2627 * to not send a deauth frame, but in that case must calls this function
2628 * to tell cfg80211 about this decision. It is only valid to call this
2629 * function within the deauth() callback.
2630 */
2631void __cfg80211_auth_canceled(struct net_device *dev, const u8 *addr);
2632
2633/**
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002634 * cfg80211_send_rx_assoc - notification of processed association
2635 * @dev: network device
2636 * @buf: (re)association response frame (header + body)
2637 * @len: length of the frame data
2638 *
2639 * This function is called whenever a (re)association response has been
Jouni Malinen1965c852009-04-22 21:38:25 +03002640 * processed in station mode. The driver is required to call either this
2641 * function or cfg80211_send_assoc_timeout() to indicate the result of
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002642 * cfg80211_ops::assoc() call. This function may sleep.
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002643 */
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002644void cfg80211_send_rx_assoc(struct net_device *dev, const u8 *buf, size_t len);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002645
2646/**
Jouni Malinen1965c852009-04-22 21:38:25 +03002647 * cfg80211_send_assoc_timeout - notification of timed out association
2648 * @dev: network device
2649 * @addr: The MAC address of the device with which the association timed out
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002650 *
2651 * This function may sleep.
Jouni Malinen1965c852009-04-22 21:38:25 +03002652 */
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002653void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr);
Jouni Malinen1965c852009-04-22 21:38:25 +03002654
2655/**
Jouni Malinen53b46b82009-03-27 20:53:56 +02002656 * cfg80211_send_deauth - notification of processed deauthentication
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002657 * @dev: network device
2658 * @buf: deauthentication frame (header + body)
2659 * @len: length of the frame data
2660 *
2661 * This function is called whenever deauthentication has been processed in
Jouni Malinen53b46b82009-03-27 20:53:56 +02002662 * station mode. This includes both received deauthentication frames and
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002663 * locally generated ones. This function may sleep.
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002664 */
Holger Schurigce470612009-10-13 13:28:13 +02002665void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
2666
2667/**
2668 * __cfg80211_send_deauth - notification of processed deauthentication
2669 * @dev: network device
2670 * @buf: deauthentication frame (header + body)
2671 * @len: length of the frame data
2672 *
2673 * Like cfg80211_send_deauth(), but doesn't take the wdev lock.
2674 */
2675void __cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002676
2677/**
Jouni Malinen53b46b82009-03-27 20:53:56 +02002678 * cfg80211_send_disassoc - notification of processed disassociation
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002679 * @dev: network device
2680 * @buf: disassociation response frame (header + body)
2681 * @len: length of the frame data
2682 *
2683 * This function is called whenever disassociation has been processed in
Jouni Malinen53b46b82009-03-27 20:53:56 +02002684 * station mode. This includes both received disassociation frames and locally
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002685 * generated ones. This function may sleep.
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002686 */
Holger Schurigce470612009-10-13 13:28:13 +02002687void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len);
2688
2689/**
2690 * __cfg80211_send_disassoc - notification of processed disassociation
2691 * @dev: network device
2692 * @buf: disassociation response frame (header + body)
2693 * @len: length of the frame data
2694 *
2695 * Like cfg80211_send_disassoc(), but doesn't take the wdev lock.
2696 */
2697void __cfg80211_send_disassoc(struct net_device *dev, const u8 *buf,
2698 size_t len);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02002699
Kalle Valoa08c1c12009-03-22 21:57:28 +02002700/**
Jouni Malinencf4e5942010-12-16 00:52:40 +02002701 * cfg80211_send_unprot_deauth - notification of unprotected deauthentication
2702 * @dev: network device
2703 * @buf: deauthentication frame (header + body)
2704 * @len: length of the frame data
2705 *
2706 * This function is called whenever a received Deauthentication frame has been
2707 * dropped in station mode because of MFP being used but the Deauthentication
2708 * frame was not protected. This function may sleep.
2709 */
2710void cfg80211_send_unprot_deauth(struct net_device *dev, const u8 *buf,
2711 size_t len);
2712
2713/**
2714 * cfg80211_send_unprot_disassoc - notification of unprotected disassociation
2715 * @dev: network device
2716 * @buf: disassociation frame (header + body)
2717 * @len: length of the frame data
2718 *
2719 * This function is called whenever a received Disassociation frame has been
2720 * dropped in station mode because of MFP being used but the Disassociation
2721 * frame was not protected. This function may sleep.
2722 */
2723void cfg80211_send_unprot_disassoc(struct net_device *dev, const u8 *buf,
2724 size_t len);
2725
2726/**
Jouni Malinena3b8b052009-03-27 21:59:49 +02002727 * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
2728 * @dev: network device
2729 * @addr: The source MAC address of the frame
2730 * @key_type: The key type that the received frame used
Arik Nemtsova66b98d2011-06-23 00:00:24 +03002731 * @key_id: Key identifier (0..3). Can be -1 if missing.
Jouni Malinena3b8b052009-03-27 21:59:49 +02002732 * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
Johannes Berge6d6e342009-07-01 21:26:47 +02002733 * @gfp: allocation flags
Jouni Malinena3b8b052009-03-27 21:59:49 +02002734 *
2735 * This function is called whenever the local MAC detects a MIC failure in a
2736 * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
2737 * primitive.
2738 */
2739void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
2740 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +02002741 const u8 *tsc, gfp_t gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +02002742
Johannes Berg04a773a2009-04-19 21:24:32 +02002743/**
2744 * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
2745 *
2746 * @dev: network device
2747 * @bssid: the BSSID of the IBSS joined
2748 * @gfp: allocation flags
2749 *
2750 * This function notifies cfg80211 that the device joined an IBSS or
2751 * switched to a different BSSID. Before this function can be called,
2752 * either a beacon has to have been received from the IBSS, or one of
2753 * the cfg80211_inform_bss{,_frame} functions must have been called
2754 * with the locally generated beacon -- this guarantees that there is
2755 * always a scan result for this IBSS. cfg80211 will handle the rest.
2756 */
2757void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp);
2758
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002759/**
Javier Cardonac93b5e72011-04-07 15:08:34 -07002760 * cfg80211_notify_new_candidate - notify cfg80211 of a new mesh peer candidate
2761 *
2762 * @dev: network device
2763 * @macaddr: the MAC address of the new candidate
2764 * @ie: information elements advertised by the peer candidate
2765 * @ie_len: lenght of the information elements buffer
2766 * @gfp: allocation flags
2767 *
2768 * This function notifies cfg80211 that the mesh peer candidate has been
2769 * detected, most likely via a beacon or, less likely, via a probe response.
2770 * cfg80211 then sends a notification to userspace.
2771 */
2772void cfg80211_notify_new_peer_candidate(struct net_device *dev,
2773 const u8 *macaddr, const u8 *ie, u8 ie_len, gfp_t gfp);
2774
2775/**
Johannes Bergd70e9692010-08-19 16:11:27 +02002776 * DOC: RFkill integration
2777 *
2778 * RFkill integration in cfg80211 is almost invisible to drivers,
2779 * as cfg80211 automatically registers an rfkill instance for each
2780 * wireless device it knows about. Soft kill is also translated
2781 * into disconnecting and turning all interfaces off, drivers are
2782 * expected to turn off the device when all interfaces are down.
2783 *
2784 * However, devices may have a hard RFkill line, in which case they
2785 * also need to interact with the rfkill subsystem, via cfg80211.
2786 * They can do this with a few helper functions documented here.
2787 */
2788
2789/**
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002790 * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
2791 * @wiphy: the wiphy
2792 * @blocked: block status
2793 */
2794void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked);
2795
2796/**
2797 * wiphy_rfkill_start_polling - start polling rfkill
2798 * @wiphy: the wiphy
2799 */
2800void wiphy_rfkill_start_polling(struct wiphy *wiphy);
2801
2802/**
2803 * wiphy_rfkill_stop_polling - stop polling rfkill
2804 * @wiphy: the wiphy
2805 */
2806void wiphy_rfkill_stop_polling(struct wiphy *wiphy);
2807
Johannes Bergaff89a92009-07-01 21:26:51 +02002808#ifdef CONFIG_NL80211_TESTMODE
2809/**
Johannes Bergd70e9692010-08-19 16:11:27 +02002810 * DOC: Test mode
2811 *
2812 * Test mode is a set of utility functions to allow drivers to
2813 * interact with driver-specific tools to aid, for instance,
2814 * factory programming.
2815 *
2816 * This chapter describes how drivers interact with it, for more
2817 * information see the nl80211 book's chapter on it.
2818 */
2819
2820/**
Johannes Bergaff89a92009-07-01 21:26:51 +02002821 * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
2822 * @wiphy: the wiphy
2823 * @approxlen: an upper bound of the length of the data that will
2824 * be put into the skb
2825 *
2826 * This function allocates and pre-fills an skb for a reply to
2827 * the testmode command. Since it is intended for a reply, calling
2828 * it outside of the @testmode_cmd operation is invalid.
2829 *
2830 * The returned skb (or %NULL if any errors happen) is pre-filled
2831 * with the wiphy index and set up in a way that any data that is
2832 * put into the skb (with skb_put(), nla_put() or similar) will end
2833 * up being within the %NL80211_ATTR_TESTDATA attribute, so all that
2834 * needs to be done with the skb is adding data for the corresponding
2835 * userspace tool which can then read that data out of the testdata
2836 * attribute. You must not modify the skb in any other way.
2837 *
2838 * When done, call cfg80211_testmode_reply() with the skb and return
2839 * its error code as the result of the @testmode_cmd operation.
2840 */
2841struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
2842 int approxlen);
2843
2844/**
2845 * cfg80211_testmode_reply - send the reply skb
2846 * @skb: The skb, must have been allocated with
2847 * cfg80211_testmode_alloc_reply_skb()
2848 *
2849 * Returns an error code or 0 on success, since calling this
2850 * function will usually be the last thing before returning
2851 * from the @testmode_cmd you should return the error code.
2852 * Note that this function consumes the skb regardless of the
2853 * return value.
2854 */
2855int cfg80211_testmode_reply(struct sk_buff *skb);
2856
2857/**
2858 * cfg80211_testmode_alloc_event_skb - allocate testmode event
2859 * @wiphy: the wiphy
2860 * @approxlen: an upper bound of the length of the data that will
2861 * be put into the skb
2862 * @gfp: allocation flags
2863 *
2864 * This function allocates and pre-fills an skb for an event on the
2865 * testmode multicast group.
2866 *
2867 * The returned skb (or %NULL if any errors happen) is set up in the
2868 * same way as with cfg80211_testmode_alloc_reply_skb() but prepared
2869 * for an event. As there, you should simply add data to it that will
2870 * then end up in the %NL80211_ATTR_TESTDATA attribute. Again, you must
2871 * not modify the skb in any other way.
2872 *
2873 * When done filling the skb, call cfg80211_testmode_event() with the
2874 * skb to send the event.
2875 */
2876struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
2877 int approxlen, gfp_t gfp);
2878
2879/**
2880 * cfg80211_testmode_event - send the event
2881 * @skb: The skb, must have been allocated with
2882 * cfg80211_testmode_alloc_event_skb()
2883 * @gfp: allocation flags
2884 *
2885 * This function sends the given @skb, which must have been allocated
2886 * by cfg80211_testmode_alloc_event_skb(), as an event. It always
2887 * consumes it.
2888 */
2889void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp);
2890
2891#define CFG80211_TESTMODE_CMD(cmd) .testmode_cmd = (cmd),
2892#else
2893#define CFG80211_TESTMODE_CMD(cmd)
2894#endif
2895
Samuel Ortizb23aa672009-07-01 21:26:54 +02002896/**
2897 * cfg80211_connect_result - notify cfg80211 of connection result
2898 *
2899 * @dev: network device
2900 * @bssid: the BSSID of the AP
2901 * @req_ie: association request IEs (maybe be %NULL)
2902 * @req_ie_len: association request IEs length
2903 * @resp_ie: association response IEs (may be %NULL)
2904 * @resp_ie_len: assoc response IEs length
2905 * @status: status code, 0 for successful connection, use
2906 * %WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
2907 * the real status code for failures.
2908 * @gfp: allocation flags
2909 *
2910 * It should be called by the underlying driver whenever connect() has
2911 * succeeded.
2912 */
2913void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
2914 const u8 *req_ie, size_t req_ie_len,
2915 const u8 *resp_ie, size_t resp_ie_len,
2916 u16 status, gfp_t gfp);
2917
2918/**
2919 * cfg80211_roamed - notify cfg80211 of roaming
2920 *
2921 * @dev: network device
Jouni Malinened9d0102011-05-16 19:40:15 +03002922 * @channel: the channel of the new AP
Samuel Ortizb23aa672009-07-01 21:26:54 +02002923 * @bssid: the BSSID of the new AP
2924 * @req_ie: association request IEs (maybe be %NULL)
2925 * @req_ie_len: association request IEs length
2926 * @resp_ie: association response IEs (may be %NULL)
2927 * @resp_ie_len: assoc response IEs length
2928 * @gfp: allocation flags
2929 *
2930 * It should be called by the underlying driver whenever it roamed
2931 * from one AP to another while connected.
2932 */
Jouni Malinened9d0102011-05-16 19:40:15 +03002933void cfg80211_roamed(struct net_device *dev,
2934 struct ieee80211_channel *channel,
2935 const u8 *bssid,
Samuel Ortizb23aa672009-07-01 21:26:54 +02002936 const u8 *req_ie, size_t req_ie_len,
2937 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
2938
2939/**
2940 * cfg80211_disconnected - notify cfg80211 that connection was dropped
2941 *
2942 * @dev: network device
2943 * @ie: information elements of the deauth/disassoc frame (may be %NULL)
2944 * @ie_len: length of IEs
2945 * @reason: reason code for the disconnection, set it to 0 if unknown
2946 * @gfp: allocation flags
2947 *
2948 * After it calls this function, the driver should enter an idle state
2949 * and not try to connect to any AP any more.
2950 */
2951void cfg80211_disconnected(struct net_device *dev, u16 reason,
2952 u8 *ie, size_t ie_len, gfp_t gfp);
2953
Jouni Malinen9588bbd2009-12-23 13:15:41 +01002954/**
2955 * cfg80211_ready_on_channel - notification of remain_on_channel start
2956 * @dev: network device
2957 * @cookie: the request cookie
2958 * @chan: The current channel (from remain_on_channel request)
2959 * @channel_type: Channel type
2960 * @duration: Duration in milliseconds that the driver intents to remain on the
2961 * channel
2962 * @gfp: allocation flags
2963 */
2964void cfg80211_ready_on_channel(struct net_device *dev, u64 cookie,
2965 struct ieee80211_channel *chan,
2966 enum nl80211_channel_type channel_type,
2967 unsigned int duration, gfp_t gfp);
2968
2969/**
2970 * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
2971 * @dev: network device
2972 * @cookie: the request cookie
2973 * @chan: The current channel (from remain_on_channel request)
2974 * @channel_type: Channel type
2975 * @gfp: allocation flags
2976 */
2977void cfg80211_remain_on_channel_expired(struct net_device *dev,
2978 u64 cookie,
2979 struct ieee80211_channel *chan,
2980 enum nl80211_channel_type channel_type,
2981 gfp_t gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +02002982
Johannes Berg98b62182009-12-23 13:15:44 +01002983
2984/**
2985 * cfg80211_new_sta - notify userspace about station
2986 *
2987 * @dev: the netdev
2988 * @mac_addr: the station's address
2989 * @sinfo: the station information
2990 * @gfp: allocation flags
2991 */
2992void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
2993 struct station_info *sinfo, gfp_t gfp);
2994
Jouni Malinen026331c2010-02-15 12:53:10 +02002995/**
Jouni Malinenec15e682011-03-23 15:29:52 +02002996 * cfg80211_del_sta - notify userspace about deletion of a station
2997 *
2998 * @dev: the netdev
2999 * @mac_addr: the station's address
3000 * @gfp: allocation flags
3001 */
3002void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp);
3003
3004/**
Johannes Berg2e161f72010-08-12 15:38:38 +02003005 * cfg80211_rx_mgmt - notification of received, unprocessed management frame
Jouni Malinen026331c2010-02-15 12:53:10 +02003006 * @dev: network device
3007 * @freq: Frequency on which the frame was received in MHz
Johannes Berg2e161f72010-08-12 15:38:38 +02003008 * @buf: Management frame (header + body)
Jouni Malinen026331c2010-02-15 12:53:10 +02003009 * @len: length of the frame data
3010 * @gfp: context flags
Johannes Berg2e161f72010-08-12 15:38:38 +02003011 *
3012 * Returns %true if a user space application has registered for this frame.
3013 * For action frames, that makes it responsible for rejecting unrecognized
3014 * action frames; %false otherwise, in which case for action frames the
3015 * driver is responsible for rejecting the frame.
Jouni Malinen026331c2010-02-15 12:53:10 +02003016 *
3017 * This function is called whenever an Action frame is received for a station
3018 * mode interface, but is not processed in kernel.
3019 */
Johannes Berg2e161f72010-08-12 15:38:38 +02003020bool cfg80211_rx_mgmt(struct net_device *dev, int freq, const u8 *buf,
3021 size_t len, gfp_t gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +02003022
3023/**
Johannes Berg2e161f72010-08-12 15:38:38 +02003024 * cfg80211_mgmt_tx_status - notification of TX status for management frame
Jouni Malinen026331c2010-02-15 12:53:10 +02003025 * @dev: network device
Johannes Berg2e161f72010-08-12 15:38:38 +02003026 * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
3027 * @buf: Management frame (header + body)
Jouni Malinen026331c2010-02-15 12:53:10 +02003028 * @len: length of the frame data
3029 * @ack: Whether frame was acknowledged
3030 * @gfp: context flags
3031 *
Johannes Berg2e161f72010-08-12 15:38:38 +02003032 * This function is called whenever a management frame was requested to be
3033 * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
Jouni Malinen026331c2010-02-15 12:53:10 +02003034 * transmission attempt.
3035 */
Johannes Berg2e161f72010-08-12 15:38:38 +02003036void cfg80211_mgmt_tx_status(struct net_device *dev, u64 cookie,
3037 const u8 *buf, size_t len, bool ack, gfp_t gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +02003038
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02003039
3040/**
3041 * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
3042 * @dev: network device
3043 * @rssi_event: the triggered RSSI event
3044 * @gfp: context flags
3045 *
3046 * This function is called when a configured connection quality monitoring
3047 * rssi threshold reached event occurs.
3048 */
3049void cfg80211_cqm_rssi_notify(struct net_device *dev,
3050 enum nl80211_cqm_rssi_threshold_event rssi_event,
3051 gfp_t gfp);
3052
Johannes Bergc063dbf2010-11-24 08:10:05 +01003053/**
3054 * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
3055 * @dev: network device
3056 * @peer: peer's MAC address
3057 * @num_packets: how many packets were lost -- should be a fixed threshold
3058 * but probably no less than maybe 50, or maybe a throughput dependent
3059 * threshold (to account for temporary interference)
3060 * @gfp: context flags
3061 */
3062void cfg80211_cqm_pktloss_notify(struct net_device *dev,
3063 const u8 *peer, u32 num_packets, gfp_t gfp);
3064
Joe Perchese1db74f2010-07-26 14:39:57 -07003065/* Logging, debugging and troubleshooting/diagnostic helpers. */
3066
3067/* wiphy_printk helpers, similar to dev_printk */
3068
3069#define wiphy_printk(level, wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003070 dev_printk(level, &(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003071#define wiphy_emerg(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003072 dev_emerg(&(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003073#define wiphy_alert(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003074 dev_alert(&(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003075#define wiphy_crit(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003076 dev_crit(&(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003077#define wiphy_err(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003078 dev_err(&(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003079#define wiphy_warn(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003080 dev_warn(&(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003081#define wiphy_notice(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003082 dev_notice(&(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003083#define wiphy_info(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003084 dev_info(&(wiphy)->dev, format, ##args)
Joe Perches073730d2010-07-26 14:40:00 -07003085
Joe Perches9c376632010-08-20 15:13:59 -07003086#define wiphy_debug(wiphy, format, args...) \
Joe Perchese1db74f2010-07-26 14:39:57 -07003087 wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
Joe Perches9c376632010-08-20 15:13:59 -07003088
Joe Perchese1db74f2010-07-26 14:39:57 -07003089#define wiphy_dbg(wiphy, format, args...) \
Joe Perches9c376632010-08-20 15:13:59 -07003090 dev_dbg(&(wiphy)->dev, format, ##args)
Joe Perchese1db74f2010-07-26 14:39:57 -07003091
3092#if defined(VERBOSE_DEBUG)
3093#define wiphy_vdbg wiphy_dbg
3094#else
Joe Perchese1db74f2010-07-26 14:39:57 -07003095#define wiphy_vdbg(wiphy, format, args...) \
3096({ \
3097 if (0) \
3098 wiphy_printk(KERN_DEBUG, wiphy, format, ##args); \
Joe Perches9c376632010-08-20 15:13:59 -07003099 0; \
Joe Perchese1db74f2010-07-26 14:39:57 -07003100})
3101#endif
3102
3103/*
3104 * wiphy_WARN() acts like wiphy_printk(), but with the key difference
3105 * of using a WARN/WARN_ON to get the message out, including the
3106 * file/line information and a backtrace.
3107 */
3108#define wiphy_WARN(wiphy, format, args...) \
3109 WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
3110
Johannes Berg704232c2007-04-23 12:20:05 -07003111#endif /* __NET_CFG80211_H */