driver.h revision 391c59f0632df8db1c325da1d31d479b2eedce45
18d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/*
28d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Driver interface definition
3c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
48d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *
5c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt * This software may be distributed under the terms of the BSD license.
6c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt * See README for more details.
78d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *
88d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * This file defines a driver interface used by both %wpa_supplicant and
98d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * hostapd. The first part of the file defines data structures used in various
108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * driver operations. This is followed by the struct wpa_driver_ops that each
118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * driver wrapper will beed to define with callback functions for requesting
128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * driver operations. After this, there are definitions for driver event
138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * reporting with wpa_supplicant_event() and some convenience helper functions
148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * that can be used to report events.
158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#ifndef DRIVER_H
188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define DRIVER_H
198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_SUPPLICANT_DRIVER_VERSION 4
218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#include "common/defs.h"
23b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt#include "utils/list.h"
248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define HOSTAPD_CHAN_DISABLED 0x00000001
268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define HOSTAPD_CHAN_PASSIVE_SCAN 0x00000002
278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define HOSTAPD_CHAN_NO_IBSS 0x00000004
288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define HOSTAPD_CHAN_RADAR 0x00000008
298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define HOSTAPD_CHAN_HT40PLUS 0x00000010
308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define HOSTAPD_CHAN_HT40MINUS 0x00000020
318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define HOSTAPD_CHAN_HT40 0x00000040
32391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt#define HOSTAPD_CHAN_SURVEY_LIST_INITIALIZED 0x00000080
338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt#define HOSTAPD_CHAN_DFS_UNKNOWN 0x00000000
35ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt#define HOSTAPD_CHAN_DFS_USABLE 0x00000100
36ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt#define HOSTAPD_CHAN_DFS_UNAVAILABLE 0x00000200
37ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt#define HOSTAPD_CHAN_DFS_AVAILABLE 0x00000300
38ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt#define HOSTAPD_CHAN_DFS_MASK 0x00000300
39ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct hostapd_channel_data - Channel information
428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct hostapd_channel_data {
448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * chan - Channel number (IEEE 802.11)
468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	short chan;
488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * freq - Frequency in MHz
518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
52d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt	int freq;
538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * flag - Channel flags (HOSTAPD_CHAN_*)
568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int flag;
588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
60b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * max_tx_power - Maximum transmit power in dBm
618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 max_tx_power;
63b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
64b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	/*
65b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * survey_list - Linked list of surveys
66b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 */
67b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	struct dl_list survey_list;
68b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
69b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	/**
70b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * min_nf - Minimum observed noise floor, in dBm, based on all
71b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * surveyed channel data
72b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 */
73b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	s8 min_nf;
74391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt
75391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt#ifdef CONFIG_ACS
76391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt	/**
77391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt	 * interference_factor - Computed interference factor on this
78391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt	 * channel (used internally in src/ap/acs.c; driver wrappers do not
79391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt	 * need to set this)
80391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt	 */
81391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt	long double interference_factor;
82391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidt#endif /* CONFIG_ACS */
838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
851f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define HOSTAPD_MODE_FLAG_HT_INFO_KNOWN BIT(0)
86c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt#define HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN BIT(1)
871f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct hostapd_hw_modes - Supported hardware mode information
908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct hostapd_hw_modes {
928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mode - Hardware mode
948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum hostapd_hw_mode mode;
968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * num_channels - Number of entries in the channels array
998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
1008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int num_channels;
1018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
1038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * channels - Array of supported channels
1048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
1058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct hostapd_channel_data *channels;
1068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
1088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * num_rates - Number of entries in the rates array
1098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
1108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int num_rates;
1118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
1138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * rates - Array of supported rates in 100 kbps units
1148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
1158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int *rates;
1168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
1188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ht_capab - HT (IEEE 802.11n) capabilities
1198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
1208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 ht_capab;
1218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
1238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mcs_set - MCS (IEEE 802.11n) rate parameters
1248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
1258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 mcs_set[16];
1268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
1288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
1298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
1308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 a_mpdu_params;
1311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
13204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
13304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * vht_capab - VHT (IEEE 802.11ac) capabilities
13404949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 */
13504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	u32 vht_capab;
13604949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
13704949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
13804949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * vht_mcs_set - VHT MCS (IEEE 802.11ac) rate parameters
13904949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 */
14004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	u8 vht_mcs_set[8];
14104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
1421f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int flags; /* HOSTAPD_MODE_FLAG_* */
1438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
1448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define IEEE80211_MODE_INFRA	0
1478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define IEEE80211_MODE_IBSS	1
1488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define IEEE80211_MODE_AP	2
1498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define IEEE80211_CAP_ESS	0x0001
1518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define IEEE80211_CAP_IBSS	0x0002
1528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define IEEE80211_CAP_PRIVACY	0x0010
1538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
154f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt/* DMG (60 GHz) IEEE 802.11ad */
155f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt/* type - bits 0..1 */
156f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt#define IEEE80211_CAP_DMG_MASK	0x0003
157f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt#define IEEE80211_CAP_DMG_IBSS	0x0001 /* Tx by: STA */
158f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt#define IEEE80211_CAP_DMG_PBSS	0x0002 /* Tx by: PCP */
159f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt#define IEEE80211_CAP_DMG_AP	0x0003 /* Tx by: AP */
160f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt
1618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_SCAN_QUAL_INVALID		BIT(0)
1628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_SCAN_NOISE_INVALID		BIT(1)
1638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_SCAN_LEVEL_INVALID		BIT(2)
1648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_SCAN_LEVEL_DBM		BIT(3)
1658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_SCAN_AUTHENTICATED		BIT(4)
1668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_SCAN_ASSOCIATED		BIT(5)
1678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
1698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_scan_res - Scan result for an BSS/IBSS
1708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
1718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @bssid: BSSID
1728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
1738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @beacon_int: beacon interval in TUs (host byte order)
1748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @caps: capability information field in host byte order
1758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @qual: signal quality
1768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @noise: noise level
1778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @level: signal level
1788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @tsf: Timestamp
1798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @age: Age of the information in milliseconds (i.e., how many milliseconds
1808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * ago the last Beacon or Probe Response frame was received)
1818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @ie_len: length of the following IE field in octets
1828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @beacon_ie_len: length of the following Beacon IE field in octets
1838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *
1848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * This structure is used as a generic format for scan results from the
1858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * driver. Each driver interface implementation is responsible for converting
1868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * the driver or OS specific scan results into this format.
1878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *
1888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * If the driver does not support reporting all IEs, the IE data structure is
1898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * constructed of the IEs that are available. This field will also need to
1908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * include SSID in IE format. All drivers are encouraged to be extended to
1918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * report all IEs to make it easier to support future additions.
1928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
1938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_scan_res {
1948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int flags;
1958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 bssid[ETH_ALEN];
1968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int freq;
1978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 beacon_int;
1988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 caps;
1998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int qual;
2008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int noise;
2018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int level;
2028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u64 tsf;
2038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int age;
2048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t ie_len;
2058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t beacon_ie_len;
2068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/*
2078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Followed by ie_len octets of IEs from Probe Response frame (or if
2088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the driver does not indicate source of IEs, these may also be from
2098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Beacon frame). After the first set of IEs, another set of IEs may
2108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * follow (with beacon_ie_len octets of data) if the driver provides
2118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * both IE sets.
2128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
2138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
2148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
2168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_scan_results - Scan results
2178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @res: Array of pointers to allocated variable length scan result entries
2188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @num: Number of entries in the scan result array
219f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt * @fetch_time: Time when the results were fetched from the driver
2208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
2218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_scan_results {
2228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpa_scan_res **res;
2238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t num;
224f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	struct os_time fetch_time;
2258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
2268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
2288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_interface_info - Network interface information
2298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @next: Pointer to the next interface or NULL if this is the last one
2308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @ifname: Interface name that can be used with init() or init2()
2318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
2328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *	not available
2338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
2348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *	is not an allocated copy, i.e., get_interfaces() caller will not free
2358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *	this)
2368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
2378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_interface_info {
2388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpa_interface_info *next;
2398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	char *ifname;
2408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	char *desc;
2418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *drv_name;
2428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
2438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2441f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPAS_MAX_SCAN_SSIDS 16
2458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
2478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_driver_scan_params - Scan parameters
2488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Data for struct wpa_driver_ops::scan2().
2498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
2508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_driver_scan_params {
2518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
2528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ssids - SSIDs to scan for
2538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
2548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpa_driver_scan_ssid {
2558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
2568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ssid - specific SSID to scan for (ProbeReq)
2578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * %NULL or zero-length SSID is used to indicate active scan
2588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * with wildcard SSID.
2598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
2608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *ssid;
2618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
2628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ssid_len: Length of the SSID in octets
2638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
2648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ssid_len;
2658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} ssids[WPAS_MAX_SCAN_SSIDS];
2668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
2688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * num_ssids - Number of entries in ssids array
2698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Zero indicates a request for a passive scan.
2708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
2718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t num_ssids;
2728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
2748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * extra_ies - Extra IE(s) to add into Probe Request or %NULL
2758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
2768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *extra_ies;
2778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
2798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * extra_ies_len - Length of extra_ies in octets
2808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
2818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t extra_ies_len;
2828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
2848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * freqs - Array of frequencies to scan or %NULL for all frequencies
2858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
2868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The frequency is set in MHz. The array is zero-terminated.
2878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
2888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int *freqs;
2898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
2908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
2918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * filter_ssids - Filter for reporting SSIDs
2928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
2938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional parameter can be used to request the driver wrapper to
2948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * filter scan results to include only the specified SSIDs. %NULL
2958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * indicates that no filtering is to be done. This can be used to
2968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * reduce memory needs for scan results in environments that have large
2978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * number of APs with different SSIDs.
2988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
2998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The driver wrapper is allowed to take this allocated buffer into its
3008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * own use by setting the pointer to %NULL. In that case, the driver
3018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wrapper is responsible for freeing the buffer with os_free() once it
3028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * is not needed anymore.
3038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
3048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpa_driver_scan_filter {
3058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 ssid[32];
3068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ssid_len;
3078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} *filter_ssids;
3088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
3108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * num_filter_ssids - Number of entries in filter_ssids array
3118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
3128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t num_filter_ssids;
3131f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
3141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
31561d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * filter_rssi - Filter by RSSI
31661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 *
31761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * The driver may filter scan results in firmware to reduce host
31861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * wakeups and thereby save power. Specify the RSSI threshold in s32
31961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * dBm.
32061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 */
32161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	s32 filter_rssi;
32261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt
32361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	/**
3241f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * p2p_probe - Used to disable CCK (802.11b) rates for P2P probes
3251f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
3261f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * When set, the driver is expected to remove rates 1, 2, 5.5, and 11
3271f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Mbps from the support rates element(s) in the Probe Request frames
3281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * and not to transmit the frames at any of those rates.
3291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
3301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	u8 p2p_probe;
3318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
3328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
3348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_driver_auth_params - Authentication parameters
3358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Data for struct wpa_driver_ops::authenticate().
3368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
3378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_driver_auth_params {
3388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int freq;
3398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *bssid;
3408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *ssid;
3418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t ssid_len;
3428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int auth_alg;
3438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *ie;
3448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t ie_len;
3458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *wep_key[4];
3468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t wep_key_len[4];
3478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int wep_tx_keyidx;
3488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int local_state_change;
3491f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
3501f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
3511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * p2p - Whether this connection is a P2P group
3521f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
3531f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int p2p;
3541f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
355d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt	const u8 *sae_data;
356d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt	size_t sae_data_len;
357d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt
3588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
3598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtenum wps_mode {
3618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPS_MODE_NONE /* no WPS provisioning being used */,
3628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPS_MODE_OPEN /* WPS provisioning with AP that is in open mode */,
3638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPS_MODE_PRIVACY /* WPS provisioning with AP that is using protection
3648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  */
3658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
3668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
3688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_driver_associate_params - Association parameters
3698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Data for struct wpa_driver_ops::associate().
3708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
3718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_driver_associate_params {
3728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
3738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * bssid - BSSID of the selected AP
3748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This can be %NULL, if ap_scan=2 mode is used and the driver is
3758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * responsible for selecting with which BSS to associate. */
3768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *bssid;
3778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
3798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ssid - The selected SSID
3808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
3818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *ssid;
3828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
3848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ssid_len - Length of the SSID (1..32)
3858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
3868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t ssid_len;
3878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
3898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * freq - Frequency of the channel the selected AP is using
3908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Frequency that the selected AP is using (in MHz as
3918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * reported in the scan results)
3928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
3938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int freq;
3948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
3958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
39604949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * bg_scan_period - Background scan period in seconds, 0 to disable
39704949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * background scan, or -1 to indicate no change to default driver
39804949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * configuration
39904949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 */
40004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	int bg_scan_period;
40104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
40204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
4038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_ie - WPA information element for (Re)Association Request
4048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA information element to be included in (Re)Association
4058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Request (including information element id and length). Use
4068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * of this WPA IE is optional. If the driver generates the WPA
4078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * IE, it can use pairwise_suite, group_suite, and
4088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * key_mgmt_suite to select proper algorithms. In this case,
4098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the driver has to notify wpa_supplicant about the used WPA
4108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * IE by generating an event that the interface code will
4118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * convert into EVENT_ASSOCINFO data (see below).
4128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
4138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
4148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * instead. The driver can determine which version is used by
4158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * looking at the first byte of the IE (0xdd for WPA, 0x30 for
4168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA2/RSN).
4178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
4188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
4198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *wpa_ie;
4218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_ie_len - length of the wpa_ie
4248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t wpa_ie_len;
4268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * wpa_proto - Bitfield of WPA_PROTO_* values to indicate WPA/WPA2
4291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
4301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int wpa_proto;
4311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
4321f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
4338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * pairwise_suite - Selected pairwise cipher suite
4348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
4358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is usually ignored if @wpa_ie is used.
4368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum wpa_cipher pairwise_suite;
4388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * group_suite - Selected group cipher suite
4418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
4428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is usually ignored if @wpa_ie is used.
4438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum wpa_cipher group_suite;
4458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * key_mgmt_suite - Selected key management suite
4488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
4498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is usually ignored if @wpa_ie is used.
4508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum wpa_key_mgmt key_mgmt_suite;
4528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * auth_alg - Allowed authentication algorithms
4558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Bit field of WPA_AUTH_ALG_*
4568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int auth_alg;
4588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
4618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int mode;
4638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wep_key - WEP keys for static WEP configuration
4668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *wep_key[4];
4688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wep_key_len - WEP key length for static WEP configuration
4718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t wep_key_len[4];
4738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wep_tx_keyidx - WEP TX key index for static WEP configuration
4768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int wep_tx_keyidx;
4788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mgmt_frame_protection - IEEE 802.11w management frame protection
4818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
4828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum mfp_options mgmt_frame_protection;
4838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
4848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
4858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ft_ies - IEEE 802.11r / FT information elements
4868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
4878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * for fast transition, this parameter is set to include the IEs that
4888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * are to be sent in the next FT Authentication Request message.
4898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * update_ft_ies() handler is called to update the IEs for further
4908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * FT messages in the sequence.
4918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
4928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The driver should use these IEs only if the target AP is advertising
4938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the same mobility domain as the one included in the MDIE here.
4948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
4958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * In ap_scan=2 mode, the driver can use these IEs when moving to a new
4968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * AP after the initial association. These IEs can only be used if the
4978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * target AP is advertising support for FT and is using the same MDIE
4988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * and SSID as the current AP.
4998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
5008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The driver is responsible for reporting the FT IEs received from the
5018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
5028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * type. update_ft_ies() handler will then be called with the FT IEs to
5038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * include in the next frame in the authentication sequence.
5048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *ft_ies;
5068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ft_ies_len - Length of ft_ies in bytes
5098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t ft_ies_len;
5118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
5148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
5158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This value is provided to allow the driver interface easier access
5168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * to the current mobility domain. This value is set to %NULL if no
5178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mobility domain is currently active.
5188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *ft_md;
5208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * passphrase - RSN passphrase for PSK
5238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
5248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This value is made available only for WPA/WPA2-Personal (PSK) and
5258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
5268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the 8..63 character ASCII passphrase, if available. Please note that
5278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * this can be %NULL if passphrase was not used to generate the PSK. In
5288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * that case, the psk field must be used to fetch the PSK.
5298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *passphrase;
5318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * psk - RSN PSK (alternative for passphrase for PSK)
5348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
5358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This value is made available only for WPA/WPA2-Personal (PSK) and
5368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
5378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the 32-octet (256-bit) PSK, if available. The driver wrapper should
5388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * be prepared to handle %NULL value as an error.
5398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *psk;
5418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * drop_unencrypted - Enable/disable unencrypted frame filtering
5448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
5458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Configure the driver to drop all non-EAPOL frames (both receive and
5468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
5478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * still be allowed for key negotiation.
5488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int drop_unencrypted;
5508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * prev_bssid - Previously used BSSID in this ESS
5538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
5548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * When not %NULL, this is a request to use reassociation instead of
5558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * association.
5568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *prev_bssid;
5588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wps - WPS mode
5618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
5628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * If the driver needs to do special configuration for WPS association,
5638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * this variable provides more information on what type of association
5648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * is being requested. Most drivers should not need ot use this.
5658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum wps_mode wps;
5678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p - Whether this connection is a P2P group
5708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int p2p;
5728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
5738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
5748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * uapsd - UAPSD parameters for the network
5758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * -1 = do not change defaults
5768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * AP mode: 1 = enabled, 0 = disabled
5778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE
5788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
5798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int uapsd;
580c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt
581c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	/**
582c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 * fixed_bssid - Whether to force this BSSID in IBSS mode
583c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 * 1 = Fix this BSSID and prevent merges.
584c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 * 0 = Do not fix BSSID.
585c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 */
586c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	int fixed_bssid;
587c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt
588c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	/**
589c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 * disable_ht - Disable HT (IEEE 802.11n) for this connection
590c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 */
591c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	int disable_ht;
592c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt
593c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	/**
594c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 * HT Capabilities over-rides. Only bits set in the mask will be used,
595c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 * and not all values are used by the kernel anyway. Currently, MCS,
596c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 * MPDU and MSDU fields are used.
597c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	 */
598c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	const u8 *htcaps;       /* struct ieee80211_ht_capabilities * */
599c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	const u8 *htcaps_mask;  /* struct ieee80211_ht_capabilities * */
6002f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt
6012f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt#ifdef CONFIG_VHT_OVERRIDES
6022f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	/**
6032f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	 * disable_vht - Disable VHT for this connection
6042f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	 */
6052f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	int disable_vht;
6062f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt
6072f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	/**
6082f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	 * VHT capability overrides.
6092f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	 */
6102f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	const struct ieee80211_vht_capabilities *vhtcaps;
6112f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt	const struct ieee80211_vht_capabilities *vhtcaps_mask;
6122f023193a0fd630eb82ce6381b80911ad5a3462fDmitry Shmidt#endif /* CONFIG_VHT_OVERRIDES */
6138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
6148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
6151f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidtenum hide_ssid {
6161f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	NO_SSID_HIDING,
6171f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	HIDDEN_SSID_ZERO_LEN,
6181f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	HIDDEN_SSID_ZERO_CONTENTS
6191f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt};
6201f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6211f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidtstruct wpa_driver_ap_params {
6221f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6231f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * head - Beacon head from IEEE 802.11 header to IEs before TIM IE
6241f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6251f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const u8 *head;
6261f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6271f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * head_len - Length of the head buffer in octets
6291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	size_t head_len;
6311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6321f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6331f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * tail - Beacon tail following TIM IE
6341f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6351f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const u8 *tail;
6361f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6371f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6381f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * tail_len - Length of the tail buffer in octets
6391f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6401f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	size_t tail_len;
6411f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6421f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6431f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * dtim_period - DTIM period
6441f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6451f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int dtim_period;
6461f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6471f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6481f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * beacon_int - Beacon interval
6491f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6501f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int beacon_int;
6511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6521f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6531f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * basic_rates: -1 terminated array of basic rates in 100 kbps
6541f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
6551f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This parameter can be used to set a specific basic rate set for the
6561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * BSS. If %NULL, default basic rate set is used.
6571f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6581f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int *basic_rates;
6591f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6601f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6611f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * proberesp - Probe Response template
6621f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
6631f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This is used by drivers that reply to Probe Requests internally in
6641f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * AP mode and require the full Probe Response template.
6651f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6661f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const u8 *proberesp;
6671f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6681f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6691f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * proberesp_len - Length of the proberesp buffer in octets
6701f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6711f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	size_t proberesp_len;
6721f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6731f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6741f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * ssid - The SSID to use in Beacon/Probe Response frames
6751f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6761f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const u8 *ssid;
6771f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6781f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6791f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * ssid_len - Length of the SSID (1..32)
6801f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6811f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	size_t ssid_len;
6821f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6831f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6841f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * hide_ssid - Whether to hide the SSID
6851f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6861f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	enum hide_ssid hide_ssid;
6871f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6881f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6891f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * pairwise_ciphers - WPA_CIPHER_* bitfield
6901f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6911f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int pairwise_ciphers;
6921f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6931f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6941f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * group_cipher - WPA_CIPHER_*
6951f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
6961f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int group_cipher;
6971f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
6981f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
6991f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * key_mgmt_suites - WPA_KEY_MGMT_* bitfield
7001f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7011f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int key_mgmt_suites;
7021f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7031f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7041f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * auth_algs - WPA_AUTH_ALG_* bitfield
7051f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7061f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int auth_algs;
7071f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7081f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7091f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * wpa_version - WPA_PROTO_* bitfield
7101f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7111f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int wpa_version;
7121f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7131f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * privacy - Whether privacy is used in the BSS
7151f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7161f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int privacy;
7171f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7181f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7191f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * beacon_ies - WPS/P2P IE(s) for Beacon frames
7201f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
7211f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This is used to add IEs like WPS IE and P2P IE by drivers that do
7221f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * not use the full Beacon template.
7231f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7241f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const struct wpabuf *beacon_ies;
7251f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7261f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7271f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * proberesp_ies - P2P/WPS IE(s) for Probe Response frames
7281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
7291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This is used to add IEs like WPS IE and P2P IE by drivers that
7301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * reply to Probe Request frames internally.
7311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7321f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const struct wpabuf *proberesp_ies;
7331f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7341f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7351f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * assocresp_ies - WPS IE(s) for (Re)Association Response frames
7361f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
7371f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This is used to add IEs like WPS IE by drivers that reply to
7381f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * (Re)Association Request frames internally.
7391f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7401f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const struct wpabuf *assocresp_ies;
7411f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7421f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7431f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * isolate - Whether to isolate frames between associated stations
7441f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
7451f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * If this is non-zero, the AP is requested to disable forwarding of
7461f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * frames between associated stations.
7471f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7481f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int isolate;
7491f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7501f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * cts_protect - Whether CTS protection is enabled
7521f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7531f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int cts_protect;
7541f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7551f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * preamble - Whether short preamble is enabled
7571f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7581f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int preamble;
7591f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7601f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7611f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * short_slot_time - Whether short slot time is enabled
7621f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
7631f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * 0 = short slot time disable, 1 = short slot time enabled, -1 = do
7641f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * not set (e.g., when 802.11g mode is not in use)
7651f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7661f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int short_slot_time;
7671f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7681f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7691f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * ht_opmode - HT operation mode or -1 if HT not in use
7701f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7711f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int ht_opmode;
7721f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7731f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7741f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * interworking - Whether Interworking is enabled
7751f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7761f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int interworking;
7771f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7781f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7791f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * hessid - Homogeneous ESS identifier or %NULL if not set
7801f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7811f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	const u8 *hessid;
7821f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
7831f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
7841f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * access_network_type - Access Network Type (0..15)
7851f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
7861f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This is used for filtering Probe Request frames when Interworking is
7871f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * enabled.
7881f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
7891f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	u8 access_network_type;
79004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
79104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
79204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
79304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 *
79404949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * This is used by driver which advertises this capability.
79504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 */
79604949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	int ap_max_inactivity;
79761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt
79861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	/**
79961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * disable_dgaf - Whether group-addressed frames are disabled
80061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 */
80161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	int disable_dgaf;
8021f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt};
8031f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
8048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
8058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_driver_capa - Driver capability information
8068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
8078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_driver_capa {
8088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_WPA		0x00000001
8098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_WPA2		0x00000002
8108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK	0x00000004
8118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK	0x00000008
8128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE	0x00000010
8138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_FT		0x00000020
8148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK		0x00000040
815d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt#define WPA_DRIVER_CAPA_KEY_MGMT_WAPI_PSK	0x00000080
8168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int key_mgmt;
8178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
8188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_ENC_WEP40	0x00000001
8198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_ENC_WEP104	0x00000002
8208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_ENC_TKIP	0x00000004
8218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_CAPA_ENC_CCMP	0x00000008
82204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#define WPA_DRIVER_CAPA_ENC_WEP128	0x00000010
82361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt#define WPA_DRIVER_CAPA_ENC_GCMP	0x00000020
8248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int enc;
8258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
8268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_AUTH_OPEN		0x00000001
8278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_AUTH_SHARED		0x00000002
8288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_AUTH_LEAP		0x00000004
8298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int auth;
8308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
8318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver generated WPA/RSN IE */
8328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_DRIVER_IE	0x00000001
8338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver needs static WEP key setup after association command */
8348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
8351f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* unused: 0x00000004 */
8368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver takes care of RSN 4-way handshake internally; PMK is configured with
8378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
8388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
8398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_WIRED		0x00000010
8408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver provides separate commands for authentication and association (SME in
8418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * wpa_supplicant). */
8428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_SME		0x00000020
8438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver supports AP mode */
8448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_AP		0x00000040
8458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver needs static WEP key setup after association has been completed */
8468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE	0x00000080
8478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver takes care of P2P management operations */
8488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_P2P_MGMT	0x00000100
8498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver supports concurrent P2P operations */
8508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_P2P_CONCURRENT	0x00000200
8518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/*
8528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Driver uses the initial interface as a dedicated management interface, i.e.,
8538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * it cannot be used for P2P group operations or non-P2P purposes.
8548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
8558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE	0x00000400
85634af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt/* This interface is P2P capable (P2P GO or P2P Client) */
8578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_P2P_CAPABLE	0x00000800
858c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt/* unused: 0x00001000 */
8598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/*
8608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Driver uses the initial interface for P2P management interface and non-P2P
8618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * purposes (e.g., connect to infra AP), but this interface cannot be used for
8628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * P2P group operations.
8638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
8648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P		0x00002000
8658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/*
8668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Driver is known to use sane error codes, i.e., when it indicates that
8678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * something (e.g., association) fails, there was indeed a failure and the
8688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * operation does not end up getting completed successfully later.
8698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
8708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_SANE_ERROR_CODES		0x00004000
8718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver supports off-channel TX */
8728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_OFFCHANNEL_TX			0x00008000
8738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Driver indicates TX status events for EAPOL Data frames */
8748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_DRIVER_FLAGS_EAPOL_TX_STATUS		0x00010000
8751f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver indicates TX status events for Deauth/Disassoc frames */
8761f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS		0x00020000
8771f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver supports roaming (BSS selection) in firmware */
8781f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_FLAGS_BSS_SELECTION			0x00040000
8791f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver supports operating as a TDLS peer */
8801f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_FLAGS_TDLS_SUPPORT			0x00080000
8811f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver requires external TDLS setup/teardown/discovery */
8821f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP		0x00100000
8831f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver indicates support for Probe Response offloading in AP mode */
8841f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD		0x00200000
8851f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver supports U-APSD in AP mode */
8861f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_FLAGS_AP_UAPSD			0x00400000
88704949598a23f501be6eec21697465fd46a28840aDmitry Shmidt/* Driver supports inactivity timer in AP mode */
88804949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#define WPA_DRIVER_FLAGS_INACTIVITY_TIMER		0x00800000
88961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt/* Driver expects user space implementation of MLME in AP mode */
89061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt#define WPA_DRIVER_FLAGS_AP_MLME			0x01000000
891d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt/* Driver supports SAE with user space SME */
892d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt#define WPA_DRIVER_FLAGS_SAE				0x02000000
893d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt/* Driver makes use of OBSS scan mechanism in wpa_supplicant */
894d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt#define WPA_DRIVER_FLAGS_OBSS_SCAN			0x04000000
895700a137ab366edc72e371da68ba187b4717ee660Dmitry Shmidt/* Driver supports IBSS (Ad-hoc) mode */
896700a137ab366edc72e371da68ba187b4717ee660Dmitry Shmidt#define WPA_DRIVER_FLAGS_IBSS				0x08000000
897ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt/* Driver supports radar detection */
898ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt#define WPA_DRIVER_FLAGS_RADAR				0x10000000
89934af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt/* Driver supports a dedicated interface for P2P Device */
90034af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt#define WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE		0x20000000
9018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int flags;
9028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int max_scan_ssids;
9041f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int max_sched_scan_ssids;
9051f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int sched_scan_supported;
9061f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int max_match_sets;
9078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
9098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * max_remain_on_chan - Maximum remain-on-channel duration in msec
9108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
9118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int max_remain_on_chan;
9128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
9148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * max_stations - Maximum number of associated stations the driver
9158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * supports in AP mode
9168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
9178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int max_stations;
9181f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
9191f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
9201f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * probe_resp_offloads - Bitmap of supported protocols by the driver
9211f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * for Probe Response offloading.
9221f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
9231f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver Probe Response offloading support for WPS ver. 1 */
9241f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS		0x00000001
9251f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver Probe Response offloading support for WPS ver. 2 */
9261f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2		0x00000002
9271f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver Probe Response offloading support for P2P */
9281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P		0x00000004
9291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Driver Probe Response offloading support for IEEE 802.11u (Interworking) */
9301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING	0x00000008
9311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	unsigned int probe_resp_offloads;
932444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt
9338bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	unsigned int max_acl_mac_addrs;
9348bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt
935444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	/**
936c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt	 * Number of supported concurrent channels
937c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt	 */
938c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt	unsigned int num_multichan_concurrent;
939c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt
940c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt	/**
941444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	 * extended_capa - extended capabilities in driver/device
942444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	 *
943444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	 * Must be allocated and freed by driver and the pointers must be
944444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	 * valid for the lifetime of the driver, i.e., freed in deinit()
945444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	 */
946444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	const u8 *extended_capa, *extended_capa_mask;
947444d567b27731d8572ef37697dd12fd1c37c2f24Dmitry Shmidt	unsigned int extended_capa_len;
9488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
9498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct hostapd_data;
9528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct hostap_sta_driver_data {
9548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
9558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long current_tx_rate;
9568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long inactive_msec;
9578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long flags;
9588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long num_ps_buf_frames;
9598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long tx_retry_failed;
9608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long tx_retry_count;
9618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int last_rssi;
9628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int last_ack_rssi;
9638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
9648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct hostapd_sta_add_params {
9668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *addr;
9678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 aid;
9688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 capability;
9698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *supp_rates;
9708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t supp_rates_len;
9718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 listen_interval;
9728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const struct ieee80211_ht_capabilities *ht_capabilities;
973a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	const struct ieee80211_vht_capabilities *vht_capabilities;
9741f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	u32 flags; /* bitmask of WPA_STA_* flags */
9751f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int set; /* Set STA parameters instead of add */
9761f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	u8 qosinfo;
977f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	const u8 *ext_capab;
978f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	size_t ext_capab_len;
9798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
9808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
9818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct hostapd_freq_params {
9828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int mode;
9838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int freq;
9848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int channel;
985a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	/* for HT */
9868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int ht_enabled;
9878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int sec_channel_offset; /* 0 = HT40 disabled, -1 = HT40 enabled,
9888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				 * secondary channel below primary, 1 = HT40
9898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				 * enabled, secondary channel above primary */
990a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt
991a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	/* for VHT */
992a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	int vht_enabled;
993a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt
994a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	/* valid for both HT and VHT, center_freq2 is non-zero
995a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	 * only for bandwidth 80 and an 80+80 channel */
996a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	int center_freq1, center_freq2;
997a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	int bandwidth;
9988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
9998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10008bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidtstruct mac_address {
10018bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	u8 addr[ETH_ALEN];
10028bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt};
10038bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt
10048bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidtstruct hostapd_acl_params {
10058bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	u8 acl_policy;
10068bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	unsigned int num_mac_acl;
10078bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	struct mac_address mac_acl[0];
10088bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt};
10098bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt
10108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtenum wpa_driver_if_type {
10118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
10128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA_IF_STATION - Station mode interface
10138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
10148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPA_IF_STATION,
10158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
10178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA_IF_AP_VLAN - AP mode VLAN interface
10188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
10198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This interface shares its address and Beacon frame with the main
10208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * BSS.
10218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
10228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPA_IF_AP_VLAN,
10238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
10258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA_IF_AP_BSS - AP mode BSS interface
10268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
10278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This interface has its own address and Beacon frame.
10288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
10298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPA_IF_AP_BSS,
10308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
10328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA_IF_P2P_GO - P2P Group Owner
10338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
10348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPA_IF_P2P_GO,
10358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
10378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA_IF_P2P_CLIENT - P2P Client
10388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
10398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	WPA_IF_P2P_CLIENT,
10408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
10428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA_IF_P2P_GROUP - P2P Group interface (will become either
10438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known)
10448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
104534af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	WPA_IF_P2P_GROUP,
104634af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt
104734af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	/**
104834af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	 * WPA_IF_P2P_DEVICE - P2P Device interface is used to indentify the
104934af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	 * abstracted P2P Device function in the driver
105034af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	 */
105134af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	WPA_IF_P2P_DEVICE
10528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
10538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_init_params {
10551f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	void *global_priv;
10568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *bssid;
10578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *ifname;
10588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 *ssid;
10598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t ssid_len;
10608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *test_socket;
10618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int use_pae_group_addr;
10628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	char **bridge;
10638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t num_bridge;
10648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 *own_addr; /* buffer for writing own MAC address */
10668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
10678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_bss_params {
10708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/** Interface name (for multi-SSID/VLAN support) */
10718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *ifname;
10728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/** Whether IEEE 802.1X or WPA/WPA2 is enabled */
10738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int enabled;
10748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int wpa;
10768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int ieee802_1x;
10778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int wpa_group;
10788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int wpa_pairwise;
10798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int wpa_key_mgmt;
10808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int rsn_preauth;
10818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum mfp_options ieee80211w;
10828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
10838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_STA_AUTHORIZED BIT(0)
10858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_STA_WMM BIT(1)
10868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_STA_SHORT_PREAMBLE BIT(2)
10878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WPA_STA_MFP BIT(3)
10881f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WPA_STA_TDLS_PEER BIT(4)
10898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
10918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct p2p_params - P2P parameters for driver-based P2P management
10928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
10938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct p2p_params {
10948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *dev_name;
10958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 pri_dev_type[8];
10968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define DRV_MAX_SEC_DEV_TYPES 5
10978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 sec_dev_type[DRV_MAX_SEC_DEV_TYPES][8];
10988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	size_t num_sec_dev_types;
10998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
11008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
11018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtenum tdls_oper {
11028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	TDLS_DISCOVERY_REQ,
11038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	TDLS_SETUP,
11048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	TDLS_TEARDOWN,
11058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	TDLS_ENABLE_LINK,
11068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	TDLS_DISABLE_LINK,
11078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	TDLS_ENABLE,
11088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	TDLS_DISABLE
11098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
11108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
111161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidtenum wnm_oper {
111261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_ENTER_CONFIRM,
111361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_ENTER_FAIL,
111461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_EXIT_CONFIRM,
111561d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_EXIT_FAIL,
111661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_TFS_REQ_IE_ADD,   /* STA requests driver to add TFS req IE */
111761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_TFS_REQ_IE_NONE,  /* STA requests empty TFS req IE */
111861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_TFS_REQ_IE_SET,   /* AP requests driver to set TFS req IE for
111961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt				     * a STA */
112061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_TFS_RESP_IE_ADD,  /* AP requests driver to add TFS resp IE
112161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt				     * for a STA */
112261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_TFS_RESP_IE_NONE, /* AP requests empty TFS resp IE */
112361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_TFS_RESP_IE_SET,  /* AP requests driver to set TFS resp IE
112461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt				     * for a STA */
112561d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	WNM_SLEEP_TFS_IE_DEL        /* AP delete the TFS IE */
112661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt};
112761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt
112834af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt/* enum chan_width - Channel width definitions */
112934af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidtenum chan_width {
113034af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	CHAN_WIDTH_20_NOHT,
113134af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	CHAN_WIDTH_20,
113234af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	CHAN_WIDTH_40,
113334af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	CHAN_WIDTH_80,
113434af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	CHAN_WIDTH_80P80,
113534af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	CHAN_WIDTH_160,
113634af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	CHAN_WIDTH_UNKNOWN
113734af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt};
113834af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt
11398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
11408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_signal_info - Information about channel signal quality
11418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
11428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_signal_info {
11438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u32 frequency;
11448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int above_threshold;
11458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int current_signal;
114634af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	int avg_signal;
11478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int current_noise;
11488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int current_txrate;
114934af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	enum chan_width chanwidth;
115034af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	int center_frq1;
115134af306c42b7ccf956508e7cd23f0ba90606e360Dmitry Shmidt	int center_frq2;
11528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
11538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
11548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
11558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * struct wpa_driver_ops - Driver interface API definition
11568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *
11578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * This structure defines the API that each driver interface needs to implement
11588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * for core wpa_supplicant code. All driver specific functionality is captured
11598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * in this wrapper.
11608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
11618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct wpa_driver_ops {
11628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/** Name of the driver interface */
11638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *name;
11648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/** One line description of the driver interface */
11658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char *desc;
11668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
11678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
11688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_bssid - Get the current BSSID
11698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
11708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
11718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
11728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
11738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
11748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Query kernel driver for the current BSSID and copy it to bssid.
11758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
11768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * associated.
11778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
11788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*get_bssid)(void *priv, u8 *bssid);
11798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
11808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
11818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_ssid - Get the current SSID
11828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
11838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ssid: buffer for SSID (at least 32 bytes)
11848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
11858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Length of the SSID on success, -1 on failure
11868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
11878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Query kernel driver for the current SSID and copy it to ssid.
11888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returning zero is recommended if the STA is not associated.
11898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
11908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Note: SSID is an array of octets, i.e., it is not nul terminated and
11918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * can, at least in theory, contain control characters (including nul)
11928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * and as such, should be processed as binary data, not a printable
11938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * string.
11948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
11958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*get_ssid)(void *priv, u8 *ssid);
11968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
11978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
11988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_key - Configure encryption key
11998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ifname: Interface name (for multi-SSID/VLAN support)
12008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
12018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
120261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 *	%WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK,
120361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 *	%WPA_ALG_GCMP);
12048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	%WPA_ALG_NONE clears the key.
12058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: Address of the peer STA (BSSID of the current AP when setting
12068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	pairwise key in station mode), ff:ff:ff:ff:ff:ff for
12078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	broadcast keys, %NULL for default keys that are used both for
12088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	broadcast and unicast; when clearing keys, %NULL is used to
12098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	indicate that both the broadcast-only and default key of the
12108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	specified key index is to be cleared
12118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
12128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	IGTK
12138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @set_tx: configure this key as the default Tx key (only used when
12148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	driver does not support separate unicast/individual key
12158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @seq: sequence number/packet number, seq_len octets, the next
12168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	packet number to be used for in replay protection; configured
12178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	for Rx keys (in most cases, this is only used with broadcast
12188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	keys and set to zero for unicast keys); %NULL if not set
12198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @seq_len: length of the seq, depends on the algorithm:
122061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 *	TKIP: 6 octets, CCMP/GCMP: 6 octets, IGTK: 6 octets
12218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
12228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	8-byte Rx Mic Key
12238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
122461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 *	TKIP: 32, CCMP/GCMP: 16, IGTK: 16)
12258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
12278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Configure the given key for the kernel driver. If the driver
12298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * supports separate individual keys (4 default keys + 1 individual),
12308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * addr can be used to determine whether the key is default or
12318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * individual. If only 4 keys are supported, the default key with key
12328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * index 0 is used as the individual key. STA must be configured to use
12338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * it as the default Tx key (set_tx is set) and accept Rx for all the
12348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
12358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * broadcast keys, so key index 0 is available for this kind of
12368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * configuration.
12378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Please note that TKIP keys include separate TX and RX MIC keys and
12398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * some drivers may expect them in different order than wpa_supplicant
12408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
12418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * will trigger Michael MIC errors. This can be fixed by changing the
12428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
12438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * in driver_*.c set_key() implementation, see driver_ndis.c for an
12448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * example on how this can be done.
12458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
12468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg,
12478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		       const u8 *addr, int key_idx, int set_tx,
12488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		       const u8 *seq, size_t seq_len,
12498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		       const u8 *key, size_t key_len);
12508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
12518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
12528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * init - Initialize driver interface
12538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ctx: context to be used when calling wpa_supplicant functions,
12548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * e.g., wpa_supplicant_event()
12558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ifname: interface name, e.g., wlan0
12568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Pointer to private data, %NULL on failure
12588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Initialize driver interface, including event processing for kernel
12608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * driver events (e.g., associated, scan results, Michael MIC failure).
12618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function can allocate a private configuration data area for
12628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ctx, file descriptor, interface name, etc. information that may be
12638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * needed in future driver operations. If this is not used, non-NULL
12648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * value will need to be returned because %NULL is used to indicate
12658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * failure. The returned value will be used as 'void *priv' data for
12668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * all other driver_ops functions.
12678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The main event loop (eloop.c) of wpa_supplicant can be used to
12698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * register callback for read sockets (eloop_register_read_sock()).
12708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * See below for more information about events and
12728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_supplicant_event() function.
12738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
12748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void * (*init)(void *ctx, const char *ifname);
12758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
12768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
12778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * deinit - Deinitialize driver interface
12788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data from init()
12798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Shut down driver interface and processing of driver events. Free
12818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * private data buffer if one was allocated in init() handler.
12828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
12838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void (*deinit)(void *priv);
12848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
12858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
12868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_param - Set driver configuration parameters
12878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data from init()
12888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @param: driver specific configuration parameters
12898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
12918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
12928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Optional handler for notifying driver interface about configuration
12938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * parameters (driver_param).
12948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
12958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_param)(void *priv, const char *param);
12968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
12978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
12988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_countermeasures - Enable/disable TKIP countermeasures
12998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
13008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @enabled: 1 = countermeasures enabled, 0 = disabled
13018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
13038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Configure TKIP countermeasures. When these are enabled, the driver
13058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * should drop all received and queued frames that are using TKIP.
13068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
13078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_countermeasures)(void *priv, int enabled);
13088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
13098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
13108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * deauthenticate - Request driver to deauthenticate
13118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
13128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: peer address (BSSID of the AP)
13138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @reason_code: 16-bit reason code to be sent in the deauthentication
13148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	frame
13158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
13178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
13188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
13198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
13208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
13218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * associate - Request driver to associate
13228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
13238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @params: association parameters
13248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
13268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
13278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*associate)(void *priv,
13288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			 struct wpa_driver_associate_params *params);
13298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
13308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
13318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * add_pmkid - Add PMKSA cache entry to the driver
13328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
13338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bssid: BSSID for the PMKSA cache entry
13348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @pmkid: PMKID for the PMKSA cache entry
13358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
13378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is called when a new PMK is received, as a result of
13398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * either normal authentication or RSN pre-authentication.
13408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
13428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * associate(), add_pmkid() can be used to add new PMKSA cache entries
13438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
13448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * driver_ops function does not need to be implemented. Likewise, if
13458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the driver does not support WPA, this function is not needed.
13468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
13478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
13488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
13498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
13508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * remove_pmkid - Remove PMKSA cache entry to the driver
13518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
13528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bssid: BSSID for the PMKSA cache entry
13538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @pmkid: PMKID for the PMKSA cache entry
13548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
13568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is called when the supplicant drops a PMKSA cache
13588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * entry for any reason.
13598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
13618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
13628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * between the driver and wpa_supplicant. If the driver uses wpa_ie
13638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * from wpa_supplicant, this driver_ops function does not need to be
13648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * implemented. Likewise, if the driver does not support WPA, this
13658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * function is not needed.
13668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
13678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
13688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
13698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
13708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * flush_pmkid - Flush PMKSA cache
13718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
13728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
13748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is called when the supplicant drops all PMKSA cache
13768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * entries for any reason.
13778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
13798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
13808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * between the driver and wpa_supplicant. If the driver uses wpa_ie
13818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * from wpa_supplicant, this driver_ops function does not need to be
13828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * implemented. Likewise, if the driver does not support WPA, this
13838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * function is not needed.
13848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
13858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*flush_pmkid)(void *priv);
13868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
13878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
13888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_capa - Get driver capabilities
13898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
13908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
13928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
13938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Get driver/firmware/hardware capabilities.
13948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
13958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
13968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
13978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
13988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * poll - Poll driver for association information
13998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
14008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an option callback that can be used when the driver does not
14028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * provide event mechanism for association events. This is called when
14038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * receiving WPA EAPOL-Key messages that require association
14048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * information. The driver interface is supposed to generate associnfo
14058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * event before returning from this callback function. In addition, the
14068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * driver interface should generate an association event after having
14078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sent out associnfo.
14088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
14098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void (*poll)(void *priv);
14108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
14118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
14128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_ifname - Get interface name
14138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
14148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Pointer to the interface name. This can differ from the
14168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interface name used in init() call. Init() is called first.
14178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional function can be used to allow the driver interface to
14198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * replace the interface name with something else, e.g., based on an
14208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interface mapping from a more descriptive name.
14218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
14228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char * (*get_ifname)(void *priv);
14238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
14248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
14258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_mac_addr - Get own MAC address
14268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
14278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Pointer to own MAC address or %NULL on failure
14298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional function can be used to get the own MAC address of the
14318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * device from the driver interface code. This is only needed if the
14328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * l2_packet implementation for the OS does not provide easy access to
14338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * a MAC address. */
14348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const u8 * (*get_mac_addr)(void *priv);
14358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
14368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
14378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_eapol - Optional function for sending EAPOL packets
14388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
14398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dest: Destination MAC address
14408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @proto: Ethertype
14418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data: EAPOL packet starting with IEEE 802.1X header
14428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data_len: Size of the EAPOL packet
14438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
14458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional function can be used to override l2_packet operations
14478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * with driver specific functionality. If this function pointer is set,
14488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * l2_packet module is not used at all and the driver interface code is
14498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * responsible for receiving and sending all EAPOL packets. The
14508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * received EAPOL packets are sent to core code with EVENT_EAPOL_RX
14518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * event. The driver interface is required to implement get_mac_addr()
14528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * handler if send_eapol() is used.
14538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
14548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
14558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  const u8 *data, size_t data_len);
14568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
14578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
14588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_operstate - Sets device operating state to DORMANT or UP
14598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
14608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @state: 0 = dormant, 1 = up
14618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
14628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an optional function that can be used on operating systems
14648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * that support a concept of controlling network device state from user
14658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * space applications. This function, if set, gets called with
14668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * state = 1 when authentication has been completed and with state = 0
14678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * when connection is lost.
14688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
14698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_operstate)(void *priv, int state);
14708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
14718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
14728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mlme_setprotection - MLME-SETPROTECTION.request primitive
14738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
14748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: Address of the station for which to set protection (may be
14758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * %NULL for group keys)
14768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
14778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
14788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
14798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
14808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an optional function that can be used to set the driver to
14818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * require protection for Tx and/or Rx frames. This uses the layer
14828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
14838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
14848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set protection operation; instead, they set protection implicitly
14858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * based on configured keys.
14868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
14878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
14888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				  int key_type);
14898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
14908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
14918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_hw_feature_data - Get hardware support data (channels and rates)
14928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
14938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @num_modes: Variable for returning the number of returned modes
14948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * flags: Variable for returning hardware feature flags
14958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Pointer to allocated hardware data on success or %NULL on
14968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * failure. Caller is responsible for freeing this.
14978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
14988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
14998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt							 u16 *num_modes,
15008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt							 u16 *flags);
15018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_mlme - Send management frame from MLME
15048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
15058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data: IEEE 802.11 management frame with IEEE 802.11 header
15068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data_len: Size of the management frame
15071f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @noack: Do not wait for this frame to be acked (disable retries)
15088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
15098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
15101f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int (*send_mlme)(void *priv, const u8 *data, size_t data_len,
15111f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			 int noack);
15128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * update_ft_ies - Update FT (IEEE 802.11r) IEs
15158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
15168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @md: Mobility domain (2 octets) (also included inside ies)
15178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
15188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ies_len: Length of FT IEs in bytes
15198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
15208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The supplicant uses this callback to let the driver know that keying
15228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * material for FT is available and that the driver can use the
15238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * provided IEs in the next message in FT authentication sequence.
15248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only needed for driver that support IEEE 802.11r
15268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * (Fast BSS Transition).
15278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
15288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
15298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			     size_t ies_len);
15308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_ft_action - Send FT Action frame (IEEE 802.11r)
15338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
15348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @action: Action field value
15358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @target_ap: Target AP address
15368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
15378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ies_len: Length of FT IEs in bytes
15388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
15398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The supplicant uses this callback to request the driver to transmit
15418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * an FT Action frame (action category 6) for over-the-DS fast BSS
15428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * transition.
15438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
15448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
15458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			      const u8 *ies, size_t ies_len);
15468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_scan_results2 - Fetch the latest scan results
15498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
15508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Allocated buffer of scan results (caller is responsible for
15528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * freeing the data structure) on success, NULL on failure
15538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
15548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 struct wpa_scan_results * (*get_scan_results2)(void *priv);
15558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_country - Set country
15588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
15598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @alpha2: country to which to switch to
15608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
15618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is for drivers which support some form
15638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * of setting a regulatory domain.
15648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
15658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_country)(void *priv, const char *alpha2);
15668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * global_init - Global driver initialization
15698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Pointer to private data (global), %NULL on failure
15708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional function is called to initialize the driver wrapper
15728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * for global data, i.e., data that applies to all interfaces. If this
15738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * function is implemented, global_deinit() will also need to be
15748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * implemented to free the private data. The driver will also likely
15758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * use init2() function instead of init() to get the pointer to global
15768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * data available to per-interface initializer.
15778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
15788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void * (*global_init)(void);
15798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * global_deinit - Global driver deinitialization
15828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver global data from global_init()
15838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Terminate any global driver related functionality and free the
15858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * global data structure.
15868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
15878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void (*global_deinit)(void *priv);
15888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
15898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
15908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * init2 - Initialize driver interface (with global data)
15918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ctx: context to be used when calling wpa_supplicant functions,
15928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * e.g., wpa_supplicant_event()
15938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ifname: interface name, e.g., wlan0
15948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @global_priv: private driver global data from global_init()
15958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Pointer to private data, %NULL on failure
15968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
15978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function can be used instead of init() if the driver wrapper
15988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * uses global data.
15998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
16008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void * (*init2)(void *ctx, const char *ifname, void *global_priv);
16018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
16028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
16038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_interfaces - Get information about available interfaces
16048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @global_priv: private driver global data from global_init()
16058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Allocated buffer of interface information (caller is
16068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * responsible for freeing the data structure) on success, NULL on
16078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * failure
16088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
16098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpa_interface_info * (*get_interfaces)(void *global_priv);
16108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
16118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
16128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * scan2 - Request the driver to initiate scan
16138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
16148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @params: Scan parameters
16158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
16168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
16178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
16188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Once the scan results are ready, the driver should report scan
16198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * results event for wpa_supplicant which will eventually request the
16208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * results with wpa_driver_get_scan_results2().
16218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
16228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
16238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
16248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
16258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * authenticate - Request driver to authenticate
16268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
16278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @params: authentication parameters
16288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
16298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
16308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an optional function that can be used with drivers that
16318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * support separate authentication and association steps, i.e., when
16328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_supplicant can act as the SME. If not implemented, associate()
16338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * function is expected to take care of IEEE 802.11 authentication,
16348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * too.
16358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
16368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*authenticate)(void *priv,
16378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			    struct wpa_driver_auth_params *params);
16388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
16398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
16401f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * set_ap - Set Beacon and Probe Response information for AP mode
16418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
16421f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @params: Parameters to use in AP mode
16438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
16441f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This function is used to configure Beacon template and/or extra IEs
16451f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * to add for Beacon and Probe Response frames for the driver in
16468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * AP mode. The driver is responsible for building the full Beacon
16478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * frame by concatenating the head part with TIM IE generated by the
16481f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * driver/firmware and finishing with the tail part. Depending on the
16491f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * driver architectue, this can be done either by using the full
16501f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * template or the set of additional IEs (e.g., WPS and P2P IE).
16511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Similarly, Probe Response processing depends on the driver design.
16521f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * If the driver (or firmware) takes care of replying to Probe Request
16531f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * frames, the extra IEs provided here needs to be added to the Probe
16541f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Response frames.
16551f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
16561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
16578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
16581f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int (*set_ap)(void *priv, struct wpa_driver_ap_params *params);
16598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
16608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
16618bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	 * set_acl - Set ACL in AP mode
16628bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	 * @priv: Private driver interface data
16638bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	 * @params: Parameters to configure ACL
16648bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
16658bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	 *
16668bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	 * This is used only for the drivers which support MAC address ACL.
16678bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	 */
16688bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	int (*set_acl)(void *priv, struct hostapd_acl_params *params);
16698bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt
16708bae4138a0356709720a96f3e50b4d734e532c12Dmitry Shmidt	/**
16718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * hapd_init - Initialize driver interface (hostapd only)
16728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @hapd: Pointer to hostapd context
16738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @params: Configuration for the driver wrapper
16748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Pointer to private data, %NULL on failure
16758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
16768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used instead of init() or init2() when the driver
16771f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * wrapper is used with hostapd.
16788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
16798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void * (*hapd_init)(struct hostapd_data *hapd,
16808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			    struct wpa_init_params *params);
16818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
16828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
16838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * hapd_deinit - Deinitialize driver interface (hostapd only)
16848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data from hapd_init()
16858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
16868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void (*hapd_deinit)(void *priv);
16878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
16888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
16898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
16908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
16918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @params: BSS parameters
16928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
16938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
16948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an optional function to configure the kernel driver to
16958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
16968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * can be left undefined (set to %NULL) if IEEE 802.1X support is
16971f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * always enabled and the driver uses set_ap() to set WPA/RSN IE
16988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * for Beacon frames.
16991f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
17001f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * DEPRECATED - use set_ap() instead
17018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
17038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
17048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
17058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_privacy - Enable/disable privacy (AP only)
17068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
17078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @enabled: 1 = privacy enabled, 0 = disabled
17088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
17098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
17108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an optional function to configure privacy field in the
17118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * kernel driver for Beacon frames. This can be left undefined (set to
17121f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * %NULL) if the driver uses the Beacon template from set_ap().
17131f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
17141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * DEPRECATED - use set_ap() instead
17158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_privacy)(void *priv, int enabled);
17178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
17188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
17198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_seqnum - Fetch the current TSC/packet number (AP only)
17208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ifname: The interface name (main or virtual)
17218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
17228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the station or %NULL for group keys
17238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @idx: Key index
17248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @seq: Buffer for returning the latest used TSC/packet number
17258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
17268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
17278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used to fetch the last used TSC/packet number for
172861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * a TKIP, CCMP, GCMP, or BIP/IGTK key. It is mainly used with group
172961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * keys, so there is no strict requirement on implementing support for
173061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * unicast keys (i.e., addr != %NULL).
17318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
17338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  int idx, u8 *seq);
17348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
17358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
17368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * flush - Flush all association stations (AP only)
17378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
17388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
17398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
17408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function requests the driver to disassociate all associated
17418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * stations. This function does not need to be implemented if the
17428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * driver does not process association frames internally.
17438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*flush)(void *priv);
17458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
17468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
17478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
17488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
17498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @elem: Information elements
17508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @elem_len: Length of the elem buffer in octets
17518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
17528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
17538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an optional function to add information elements in the
17548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * kernel driver for Beacon and Probe Response frames. This can be left
17558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * undefined (set to %NULL) if the driver uses the Beacon template from
17561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * set_ap().
17571f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
17581f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * DEPRECATED - use set_ap() instead
17598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
17618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
17628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
17631e6c57fee4a56b421cc20f6dc0785c9138b21337Jouni Malinen	 * read_sta_data - Fetch station data
17648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
17658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data: Buffer for returning station information
17668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the station
17678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
17688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
17708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			     const u8 *addr);
17718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
17728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
17738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * hapd_send_eapol - Send an EAPOL packet (AP only)
17748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
17758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: Destination MAC address
17768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data: EAPOL packet starting with IEEE 802.1X header
17778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data_len: Length of the EAPOL packet in octets
17788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @encrypt: Whether the frame should be encrypted
17798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @own_addr: Source MAC address
17808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @flags: WPA_STA_* flags for the destination station
17818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
17828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
17838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
17858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			       size_t data_len, int encrypt,
17868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			       const u8 *own_addr, u32 flags);
17878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
17888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
17898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sta_deauth - Deauthenticate a station (AP only)
17908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
17918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @own_addr: Source address and BSSID for the Deauthentication frame
17928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the station to deauthenticate
17938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @reason: Reason code for the Deauthentiation frame
17948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
17958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
17968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function requests a specific station to be deauthenticated and
17978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * a Deauthentication frame to be sent to it.
17988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
17998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
18008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  int reason);
18018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sta_disassoc - Disassociate a station (AP only)
18048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @own_addr: Source address and BSSID for the Disassociation frame
18068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the station to disassociate
18078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @reason: Reason code for the Disassociation frame
18088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
18098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
18108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function requests a specific station to be disassociated and
18118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * a Disassociation frame to be sent to it.
18128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
18148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			    int reason);
18158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sta_remove - Remove a station entry (AP only)
18188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the station to be removed
18208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
18218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*sta_remove)(void *priv, const u8 *addr);
18238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * hapd_get_ssid - Get the current SSID (AP only)
18268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @buf: Buffer for returning the SSID
18288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @len: Maximum length of the buffer
18298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Length of the SSID on success, -1 on failure
18308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
18318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function need not be implemented if the driver uses Beacon
18321f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * template from set_ap() and does not reply to Probe Request frames.
18338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*hapd_get_ssid)(void *priv, u8 *buf, int len);
18358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * hapd_set_ssid - Set SSID (AP only)
18388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @buf: SSID
18408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @len: Length of the SSID in octets
18418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
18421f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
18431f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * DEPRECATED - use set_ap() instead
18448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*hapd_set_ssid)(void *priv, const u8 *buf, int len);
18468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
18498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @enabled: 1 = countermeasures enabled, 0 = disabled
18518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
18528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
18538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This need not be implemented if the driver does not take care of
18548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * association processing.
18558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*hapd_set_countermeasures)(void *priv, int enabled);
18578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sta_add - Add a station entry
18608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @params: Station parameters
18628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
18638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
18648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used to add a station entry to the driver once the
18658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * station has completed association. This is only used if the driver
18668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * does not take care of association processing.
18671f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
18681f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * With TDLS, this function is also used to add or set (params->set 1)
18691f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * TDLS peer entries.
18708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*sta_add)(void *priv, struct hostapd_sta_add_params *params);
18728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_inact_sec - Get station inactivity duration (AP only)
18758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: Station address
18778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Number of seconds station has been inactive, -1 on failure
18788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*get_inact_sec)(void *priv, const u8 *addr);
18808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sta_clear_stats - Clear station statistics (AP only)
18838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: Station address
18858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
18868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*sta_clear_stats)(void *priv, const u8 *addr);
18888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_freq - Set channel/frequency (AP only)
18918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
18928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freq: Channel parameters
18938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
18948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
18958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
18968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
18978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
18988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_rts - Set RTS threshold
18998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
19008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @rts: RTS threshold in octets
19018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
19028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_rts)(void *priv, int rts);
19048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
19068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_frag - Set fragmentation threshold
19078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
19088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @frag: Fragmentation threshold in octets
19098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
19108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_frag)(void *priv, int frag);
19128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
19148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sta_set_flags - Set station flags (AP only)
19158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
19168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: Station address
19178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @total_flags: Bitmap of all WPA_STA_* flags currently set
19188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @flags_or: Bitmap of WPA_STA_* flags to add
19198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
19208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
19218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*sta_set_flags)(void *priv, const u8 *addr,
19238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			     int total_flags, int flags_or, int flags_and);
19248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
19268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_tx_queue_params - Set TX queue parameters
19278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
19288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @queue: Queue number (0 = VO, 1 = VI, 2 = BE, 3 = BK)
19298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @aifs: AIFS
19308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @cw_min: cwMin
19318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @cw_max: cwMax
19328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @burst_time: Maximum length for bursting in 0.1 msec units
19338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
19358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				   int cw_max, int burst_time);
19368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
19388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * if_add - Add a virtual interface
19398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
19408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @type: Interface type
19418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ifname: Interface name for the new virtual interface
19428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: Local address to use for the interface or %NULL to use the
19438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	parent interface address
19448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
19458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @drv_priv: Pointer for overwriting the driver context or %NULL if
19468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	not allowed (applies only to %WPA_IF_AP_BSS type)
19478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @force_ifname: Buffer for returning an interface name that the
19488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	driver ended up using if it differs from the requested ifname
19498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @if_addr: Buffer for returning the allocated interface address
19508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	(this may differ from the requested addr if the driver cannot
19518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	change interface address)
19528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bridge: Bridge interface to use or %NULL if no bridge configured
19538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
19548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*if_add)(void *priv, enum wpa_driver_if_type type,
19568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		      const char *ifname, const u8 *addr, void *bss_ctx,
19578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		      void **drv_priv, char *force_ifname, u8 *if_addr,
19588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		      const char *bridge);
19598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
19618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * if_remove - Remove a virtual interface
19628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
19638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @type: Interface type
19648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ifname: Interface name of the virtual interface to be removed
19658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
19668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*if_remove)(void *priv, enum wpa_driver_if_type type,
19688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			 const char *ifname);
19698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
19718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_sta_vlan - Bind a station into a specific interface (AP only)
19728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
19738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ifname: Interface (main or virtual BSS or VLAN)
19748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the associated station
19758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @vlan_id: VLAN ID
19768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
19778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
19788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used to bind a station to a specific virtual
19798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interface. It is only used if when virtual interfaces are supported,
19808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * e.g., to assign stations to different VLAN interfaces based on
19818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * information from a RADIUS server. This allows separate broadcast
19828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * domains to be used with a single BSS.
19838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
19858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			    int vlan_id);
19868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
19888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * commit - Optional commit changes handler (AP only)
19898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: driver private data
19908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
19918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
19928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional handler function can be registered if the driver
19938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interface implementation needs to commit changes (e.g., by setting
19948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * network interface up) at the end of initial configuration. If set,
19958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * this handler will be called after initial setup has been completed.
19968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
19978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*commit)(void *priv);
19988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
19998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
20008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_ether - Send an ethernet packet (AP only)
20018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
20028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dst: Destination MAC address
20038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @src: Source MAC address
20048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @proto: Ethertype
20058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data: EAPOL packet starting with IEEE 802.1X header
20068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data_len: Length of the EAPOL packet in octets
20078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
20088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
20098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
20108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  const u8 *data, size_t data_len);
20118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
20128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
20138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_radius_acl_auth - Notification of RADIUS ACL change
20148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
20158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @mac: MAC address of the station
20168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @accepted: Whether the station was accepted
20178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @session_timeout: Session timeout for the station
20188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
20198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
20208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted,
20218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				   u32 session_timeout);
20228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
20238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
20248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_radius_acl_expire - Notification of RADIUS ACL expiration
20258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
20268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @mac: MAC address of the station
20278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
20288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
20298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_radius_acl_expire)(void *priv, const u8 *mac);
20308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
20318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
20328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
20338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
20348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
20358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
20368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	extra IE(s)
20378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @assocresp: WPS IE(s) for (Re)Association Response frames or %NULL
20388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	to remove extra IE(s)
20398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
20408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
20418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is an optional function to add WPS IE in the kernel driver for
20428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Beacon and Probe Response frames. This can be left undefined (set
20431f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * to %NULL) if the driver uses the Beacon template from set_ap()
20448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * and does not process Probe Request frames. If the driver takes care
20458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * of (Re)Association frame processing, the assocresp buffer includes
20468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * WPS IE(s) that need to be added to (Re)Association Response frames
20478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * whenever a (Re)Association Request frame indicated use of WPS.
20488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
20498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This will also be used to add P2P IE(s) into Beacon/Probe Response
20508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * frames when operating as a GO. The driver is responsible for adding
20518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * timing related attributes (e.g., NoA) in addition to the IEs
20528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * included here by appending them after these buffers. This call is
20538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * also used to provide Probe Response IEs for P2P Listen state
20548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * operations for drivers that generate the Probe Response frames
20558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * internally.
20561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
20571f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * DEPRECATED - use set_ap() instead
20588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
20598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon,
20608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			     const struct wpabuf *proberesp,
20618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			     const struct wpabuf *assocresp);
20628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
20638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
20648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_supp_port - Set IEEE 802.1X Supplicant Port status
20658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
20668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @authorized: Whether the port is authorized
20678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
20688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
20698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_supp_port)(void *priv, int authorized);
20708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
20718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
20728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_wds_sta - Bind a station into a 4-address WDS (AP only)
20738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
20748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the associated station
20758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @aid: Association ID
20768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @val: 1 = bind to 4-address WDS; 0 = unbind
20778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bridge_ifname: Bridge interface to use for the WDS station or %NULL
20788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	to indicate that bridge is not to be used
2079c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt	 * @ifname_wds: Buffer to return the interface name for the new WDS
2080c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt	 *	station or %NULL to indicate name is not returned.
20818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
20828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
20838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val,
2084c2ebb4b85d69b65f552fee71ac68f44e8d87b39eDmitry Shmidt	                   const char *bridge_ifname, char *ifname_wds);
20858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
20868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
20878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_action - Transmit an Action frame
20888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
20898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freq: Frequency (in MHz) of the channel
20908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @wait: Time to wait off-channel for a response (in ms), or zero
20918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dst: Destination MAC address (Address 1)
20928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @src: Source MAC address (Address 2)
20938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bssid: BSSID (Address 3)
20948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data: Frame body
20958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data_len: data length in octets
20961f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 @ @no_cck: Whether CCK rates must not be used to transmit this frame
20978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
20988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
20998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This command can be used to request the driver to transmit an action
21008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * frame to the specified destination.
21018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * If the %WPA_DRIVER_FLAGS_OFFCHANNEL_TX flag is set, the frame will
21038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * be transmitted on the given channel and the device will wait for a
21048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * response on that channel for the given wait time.
21058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * If the flag is not set, the wait time will be ignored. In this case,
21078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * if a remain-on-channel duration is in progress, the frame must be
21088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * transmitted on that channel; alternatively the frame may be sent on
21098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the current operational channel (if in associated state in station
21108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mode or while operating as an AP.)
21118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
21128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*send_action)(void *priv, unsigned int freq, unsigned int wait,
21138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			   const u8 *dst, const u8 *src, const u8 *bssid,
21141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			   const u8 *data, size_t data_len, int no_cck);
21158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
21168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
21178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_action_cancel_wait - Cancel action frame TX wait
21188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
21198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This command cancels the wait time associated with sending an action
21218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * frame. It is only available when %WPA_DRIVER_FLAGS_OFFCHANNEL_TX is
21228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set in the driver flags.
21238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
21248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void (*send_action_cancel_wait)(void *priv);
21258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
21268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
21278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * remain_on_channel - Remain awake on a channel
21288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
21298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freq: Frequency (in MHz) of the channel
21308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @duration: Duration in milliseconds
21318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
21328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This command is used to request the driver to remain awake on the
21348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * specified channel for the specified duration and report received
21358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Action frames with EVENT_RX_ACTION events. Optionally, received
21368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Probe Request frames may also be requested to be reported by calling
21378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
21388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The driver may not be at the requested channel when this function
21408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * returns, i.e., the return code is only indicating whether the
21418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * request was accepted. The caller will need to wait until the
21428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
21438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * completed the channel change. This may take some time due to other
21448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * need for the radio and the caller should be prepared to timing out
21458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * its wait since there are no guarantees on when this request can be
21468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * executed.
21478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
21488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*remain_on_channel)(void *priv, unsigned int freq,
21498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				 unsigned int duration);
21508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
21518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
21528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * cancel_remain_on_channel - Cancel remain-on-channel operation
21538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
21548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This command can be used to cancel a remain-on-channel operation
21568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * before its originally requested duration has passed. This could be
21578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * used, e.g., when remain_on_channel() is used to request extra time
21588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * to receive a response to an Action frame and the response is
21598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * received when there is still unneeded time remaining on the
21608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * remain-on-channel operation.
21618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
21628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*cancel_remain_on_channel)(void *priv);
21638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
21648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
21658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * probe_req_report - Request Probe Request frames to be indicated
21668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
21678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @report: Whether to report received Probe Request frames
21688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure (or if not supported)
21698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This command can be used to request the driver to indicate when
21718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
21728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Since this operation may require extra resources, e.g., due to less
21738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * optimal hardware/firmware RX filtering, many drivers may disable
21748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Probe Request reporting at least in station mode. This command is
21758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * used to notify the driver when the Probe Request frames need to be
21768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * reported, e.g., during remain-on-channel operations.
21778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
21788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*probe_req_report)(void *priv, int report);
21798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
21808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
21818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * deinit_ap - Deinitialize AP mode
21828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
21838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure (or if not supported)
21848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
21858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional function can be used to disable AP mode related
2186b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * configuration. If the interface was not dynamically added,
2187b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * change the driver mode to station mode to allow normal station
2188b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * operations like scanning to be completed.
21898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
21908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*deinit_ap)(void *priv);
21918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
21928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
219304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * deinit_p2p_cli - Deinitialize P2P client mode
219404949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * @priv: Private driver interface data
219504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * Returns: 0 on success, -1 on failure (or if not supported)
219604949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 *
2197b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * This optional function can be used to disable P2P client mode. If the
2198b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * interface was not dynamically added, change the interface type back
2199b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * to station mode.
220004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 */
220104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	int (*deinit_p2p_cli)(void *priv);
220204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
220304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
22048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * suspend - Notification on system suspend/hibernate event
22058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void (*suspend)(void *priv);
22088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * resume - Notification on system resume/thaw event
22118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	void (*resume)(void *priv);
22148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * signal_monitor - Set signal monitoring parameters
22178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @threshold: Threshold value for signal change events; 0 = disabled
22198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @hysteresis: Minimum change in signal strength before indicating a
22208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	new event
22218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure (or if not supported)
22228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
22238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function can be used to configure monitoring of signal strength
22248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * with the current AP. Whenever signal strength drops below the
22258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
22268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * should be generated assuming the signal strength has changed at
22278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * least %hysteresis from the previously indicated signal change event.
22288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*signal_monitor)(void *priv, int threshold, int hysteresis);
22308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_frame - Send IEEE 802.11 frame (testing use only)
22338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data: IEEE 802.11 frame with IEEE 802.11 header
22358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @data_len: Size of the frame
22368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @encrypt: Whether to encrypt the frame (if keys are set)
22378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
22388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
22398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used for debugging purposes and is not
22408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * required to be implemented for normal operations.
22418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*send_frame)(void *priv, const u8 *data, size_t data_len,
22438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  int encrypt);
22448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * shared_freq - Get operating frequency of shared interface(s)
22478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Operating frequency in MHz, 0 if no shared operation in
22498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * use, or -1 on failure
22508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
22518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This command can be used to request the current operating frequency
22528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * of any virtual interface that shares the same radio to provide
22538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * information for channel selection for other virtual interfaces.
22548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*shared_freq)(void *priv);
22568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_noa - Get current Notice of Absence attribute payload
22598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @buf: Buffer for returning NoA
22618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @buf_len: Buffer length in octets
22628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Number of octets used in buf, 0 to indicate no NoA is being
22638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * advertized, or -1 on failure
22648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
22658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used to fetch the current Notice of Absence
22668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * attribute value from GO.
22678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*get_noa)(void *priv, u8 *buf, size_t buf_len);
22698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_noa - Set Notice of Absence parameters for GO (testing)
22728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @count: Count
22748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @start: Start time in ms from next TBTT
22758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @duration: Duration in ms
22768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success or -1 on failure
22778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
22788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used to set Notice of Absence parameters for GO. It
22798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * is used only for testing. To disable NoA, all parameters are set to
22808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * 0.
22818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_noa)(void *priv, u8 count, int start, int duration);
22838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * set_p2p_powersave - Set P2P power save options
22868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change
22888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @opp_ps: 0 = disable, 1 = enable, -1 = no change
22898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ctwindow: 0.. = change (msec), -1 = no change
22908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success or -1 on failure
22918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
22928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps,
22938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				 int ctwindow);
22948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
22958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
22968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * ampdu - Enable/disable aggregation
22978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
22988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ampdu: 1/0 = enable/disable A-MPDU aggregation
22998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success or -1 on failure
23008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
23018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*ampdu)(void *priv, int ampdu);
23028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
23038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
23048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * get_radio_name - Get physical radio name for the device
23058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
23068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Radio name or %NULL if not known
23078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The returned data must not be modified by the caller. It is assumed
23098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * that any interface that has the same radio name as another is
23108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sharing the same physical radio. This information can be used to
23118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * share scan results etc. information between the virtual interfaces
23128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * to speed up various operations.
23138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
23148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	const char * (*get_radio_name)(void *priv);
23158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
23168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
23178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_find - Start P2P Device Discovery
23188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
23198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @timeout: Timeout for find operation in seconds or 0 for no timeout
23208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @type: Device Discovery type (enum p2p_discovery_type)
23218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
23228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
23248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
23258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
23268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
23278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_find)(void *priv, unsigned int timeout, int type);
23288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
23298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
23308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_stop_find - Stop P2P Device Discovery
23318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
23328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
23338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
23358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
23368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
23378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
23388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_stop_find)(void *priv);
23398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
23408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
23418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_listen - Start P2P Listen state for specified duration
23428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
23438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @timeout: Listen state duration in milliseconds
23448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
23458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function can be used to request the P2P module to keep the
23478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * device discoverable on the listen channel for an extended set of
23488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * time. At least in its current form, this is mainly used for testing
23498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * purposes and may not be of much use for normal P2P operations.
23508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
23528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
23538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
23548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
23558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_listen)(void *priv, unsigned int timeout);
23568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
23578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
23588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_connect - Start P2P group formation (GO negotiation)
23598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
23608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @peer_addr: MAC address of the peer P2P client
23618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @wps_method: enum p2p_wps_method value indicating config method
23628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @go_intent: Local GO intent value (1..15)
23638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @own_interface_addr: Intended interface address to use with the
23648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	group
23658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @force_freq: The only allowed channel frequency in MHz or 0
23668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @persistent_group: Whether to create persistent group
23678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
23688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
23708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
23718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
23728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
23738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_connect)(void *priv, const u8 *peer_addr, int wps_method,
23748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			   int go_intent, const u8 *own_interface_addr,
23758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			   unsigned int force_freq, int persistent_group);
23768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
23778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
23788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wps_success_cb - Report successfully completed WPS provisioning
23798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
23808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @peer_addr: Peer address
23818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
23828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used to report successfully completed WPS
23848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * provisioning during group formation in both GO/Registrar and
23858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * client/Enrollee roles.
23868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
23888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
23898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
23908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
23918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*wps_success_cb)(void *priv, const u8 *peer_addr);
23928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
23938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
23948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_group_formation_failed - Report failed WPS provisioning
23958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
23968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
23978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
23988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is used to report failed group formation. This can
23998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * happen either due to failed WPS provisioning or due to 15 second
24008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * timeout during the provisioning phase.
24018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
24038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
24048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
24058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
24068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_group_formation_failed)(void *priv);
24078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
24088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
24098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_set_params - Set P2P parameters
24108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
24118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @params: P2P parameters
24128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
24138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
24158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
24168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
24178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
24188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_set_params)(void *priv, const struct p2p_params *params);
24198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
24208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
24218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_prov_disc_req - Send Provision Discovery Request
24228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
24238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @peer_addr: MAC address of the peer P2P client
24248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @config_methods: WPS Config Methods value (only one bit set)
24258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
24268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function can be used to request a discovered P2P peer to
24288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * display a PIN (config_methods = WPS_CONFIG_DISPLAY) or be prepared
24298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * to enter a PIN from us (config_methods = WPS_CONFIG_KEYPAD). The
24308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Provision Discovery Request frame is transmitted once immediately
24318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * and if no response is received, the frame will be sent again
24328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * whenever the target device is discovered during device dsicovery
24338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * (start with a p2p_find() call). Response from the peer is indicated
24348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * with the EVENT_P2P_PROV_DISC_RESPONSE event.
24358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
24378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
24388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
24398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
24408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_prov_disc_req)(void *priv, const u8 *peer_addr,
24411f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt				 u16 config_methods, int join);
24428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
24438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
24448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_sd_request - Schedule a service discovery query
24458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
24468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dst: Destination peer or %NULL to apply for all peers
24478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @tlvs: P2P Service Query TLV(s)
24488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: Reference to the query or 0 on failure
24498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Response to the query is indicated with the
24518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_P2P_SD_RESPONSE driver event.
24528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
24548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
24558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
24568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
24578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u64 (*p2p_sd_request)(void *priv, const u8 *dst,
24588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			      const struct wpabuf *tlvs);
24598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
24608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
24618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_sd_cancel_request - Cancel a pending service discovery query
24628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
24638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @req: Query reference from p2p_sd_request()
24648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
24658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
24678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
24688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
24698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
24708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_sd_cancel_request)(void *priv, u64 req);
24718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
24728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
24738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_sd_response - Send response to a service discovery query
24748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
24758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freq: Frequency from EVENT_P2P_SD_REQUEST event
24768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dst: Destination address from EVENT_P2P_SD_REQUEST event
24778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dialog_token: Dialog token from EVENT_P2P_SD_REQUEST event
24788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @resp_tlvs: P2P Service Response TLV(s)
24798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
24808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is called as a response to the request indicated with
24828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the EVENT_P2P_SD_REQUEST driver event.
24838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
24858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
24868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
24878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
24888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_sd_response)(void *priv, int freq, const u8 *dst,
24898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			       u8 dialog_token,
24908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			       const struct wpabuf *resp_tlvs);
24918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
24928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
24938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_service_update - Indicate a change in local services
24948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
24958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
24968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
24978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function needs to be called whenever there is a change in
24988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * availability of the local services. This will increment the
24998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Service Update Indicator value which will be used in SD Request and
25008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Response frames.
25018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
25028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This function is only used if the driver implements P2P management,
25038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
25048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_capa.
25058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
25068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_service_update)(void *priv);
25078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
25088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
25098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_reject - Reject peer device (explicitly block connections)
25108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
25118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: MAC address of the peer
25128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
25138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
25148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_reject)(void *priv, const u8 *addr);
25158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
25168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
25178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * p2p_invite - Invite a P2P Device into a group
25188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
25198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @peer: Device Address of the peer P2P Device
25208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @role: Local role in the group
25218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @bssid: Group BSSID or %NULL if not known
25228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ssid: Group SSID
25238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ssid_len: Length of ssid in octets
25248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @go_dev_addr: Forced GO Device Address or %NULL if none
25258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @persistent_group: Whether this is to reinvoke a persistent group
25268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
25278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
25288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*p2p_invite)(void *priv, const u8 *peer, int role,
25298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  const u8 *bssid, const u8 *ssid, size_t ssid_len,
25308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  const u8 *go_dev_addr, int persistent_group);
25318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
25328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
25338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * send_tdls_mgmt - for sending TDLS management packets
25348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: private driver interface data
25358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dst: Destination (peer) MAC address
25368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @action_code: TDLS action code for the mssage
25378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @dialog_token: Dialog Token to use in the message (if needed)
25388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @status_code: Status Code or Reason Code to use (if needed)
25398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @buf: TDLS IEs to add to the message
25408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @len: Length of buf in octets
25411f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, negative (<0) on failure
25428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
25438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional function can be used to send packet to driver which is
25448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * responsible for receiving and sending all TDLS packets.
25458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
25468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code,
25478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			      u8 dialog_token, u16 status_code,
25488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			      const u8 *buf, size_t len);
25498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
25501f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
25511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * tdls_oper - Ask the driver to perform high-level TDLS operations
25521f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
25531f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @oper: TDLS high-level operation. See %enum tdls_oper
25541f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @peer: Destination (peer) MAC address
25551f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, negative (<0) on failure
25561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
25571f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This optional function can be used to send high-level TDLS commands
25581f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * to the driver.
25591f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
25608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer);
25618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
25628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
256361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * wnm_oper - Notify driver of the WNM frame reception
256461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * @priv: Private driver interface data
256561d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * @oper: WNM operation. See %enum wnm_oper
256661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * @peer: Destination (peer) MAC address
256761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * @buf: Buffer for the driver to fill in (for getting IE)
256861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * @buf_len: Return the len of buf
256961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * Returns: 0 on success, negative (<0) on failure
257061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 */
257161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	int (*wnm_oper)(void *priv, enum wnm_oper oper, const u8 *peer,
257261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt			u8 *buf, u16 *buf_len);
257361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt
257461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	/**
25758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * signal_poll - Get current connection information
25768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @priv: Private driver interface data
25778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @signal_info: Connection info structure
25788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt         */
25798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int (*signal_poll)(void *priv, struct wpa_signal_info *signal_info);
2580bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt
2581bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	/**
258275ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 * set_authmode - Set authentication algorithm(s) for static WEP
258375ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 * @priv: Private driver interface data
258475ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 * @authmode: 1=Open System, 2=Shared Key, 3=both
258575ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 * Returns: 0 on success, -1 on failure
258675ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 *
258775ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 * This function can be used to set authentication algorithms for AP
258875ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 * mode when static WEP is used. If the driver uses user space MLME/SME
258975ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 * implementation, there is no need to implement this function.
25901f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
25911f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * DEPRECATED - use set_ap() instead
259275ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	 */
259375ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	int (*set_authmode)(void *priv, int authmode);
25941f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#ifdef ANDROID
259575ecf5267604f166b85a7ee2cf0d9cb682966680Jouni Malinen	/**
2596bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 * driver_cmd - execute driver-specific command
2597bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 * @priv: private driver interface data
2598bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 * @cmd: command to execute
2599bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 * @buf: return buffer
2600bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 * @buf_len: buffer length
2601bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 *
2602bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
2603bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 */
2604bd567ad93e03f285fdad93464100148cd5ae7941Dmitry Shmidt	 int (*driver_cmd)(void *priv, char *cmd, char *buf, size_t buf_len);
26051f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#endif
26061f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
26071f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * set_rekey_info - Set rekey information
26081f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
26091f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @kek: Current KEK
26101f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @kck: Current KCK
26111f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @replay_ctr: Current EAPOL-Key Replay Counter
26121f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
26131f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This optional function can be used to provide information for the
26141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * driver/firmware to process EAPOL-Key frames in Group Key Handshake
26151f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * while the host (including wpa_supplicant) is sleeping.
26161f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
26171f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	void (*set_rekey_info)(void *priv, const u8 *kek, const u8 *kck,
26181f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			       const u8 *replay_ctr);
26191f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
26201f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
26211f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * sta_assoc - Station association indication
26221f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
26231f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @own_addr: Source address and BSSID for association frame
26241f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @addr: MAC address of the station to associate
26251f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @reassoc: flag to indicate re-association
26261f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @status: association response status code
26271f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @ie: assoc response ie buffer
26281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @len: ie buffer length
26291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
26301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
26311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This function indicates the driver to send (Re)Association
26321f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Response frame to the station.
26331f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
26341f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 int (*sta_assoc)(void *priv, const u8 *own_addr, const u8 *addr,
26351f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			  int reassoc, u16 status, const u8 *ie, size_t len);
26361f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
26371f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
26381f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * sta_auth - Station authentication indication
26391f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
26401f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @own_addr: Source address and BSSID for authentication frame
26411f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @addr: MAC address of the station to associate
26421f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @seq: authentication sequence number
26431f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @status: authentication response status code
26441f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @ie: authentication frame ie buffer
26451f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @len: ie buffer length
26461f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
26471f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This function indicates the driver to send Authentication frame
26481f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * to the station.
26491f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
26501f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 int (*sta_auth)(void *priv, const u8 *own_addr, const u8 *addr,
26511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			 u16 seq, u16 status, const u8 *ie, size_t len);
26521f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
26531f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
26541f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * add_tspec - Add traffic stream
26551f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
26561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @addr: MAC address of the station to associate
26571f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @tspec_ie: tspec ie buffer
26581f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @tspec_ielen: tspec ie length
26591f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
26601f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
26611f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This function adds the traffic steam for the station
26621f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * and fills the medium_time in tspec_ie.
26631f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
26641f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 int (*add_tspec)(void *priv, const u8 *addr, u8 *tspec_ie,
26651f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			  size_t tspec_ielen);
26661f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
26671f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
26681f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * add_sta_node - Add a station node in the driver
26691f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
26701f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @addr: MAC address of the station to add
26711f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @auth_alg: authentication algorithm used by the station
26721f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
26731f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
26741f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This function adds the station node in the driver, when
26751f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * the station gets added by FT-over-DS.
26761f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
26771f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int (*add_sta_node)(void *priv, const u8 *addr, u16 auth_alg);
26781f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
26791f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
26801f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * sched_scan - Request the driver to initiate scheduled scan
26811f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
26821f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @params: Scan parameters
26831f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @interval: Interval between scan cycles in milliseconds
26841f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
26851f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
26861f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This operation should be used for scheduled scan offload to
26871f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * the hardware. Every time scan results are available, the
26881f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * driver should report scan results event for wpa_supplicant
26891f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * which will eventually request the results with
26901f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * wpa_driver_get_scan_results2(). This operation is optional
26911f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * and if not provided or if it returns -1, we fall back to
26921f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * normal host-scheduled scans.
26931f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
26941f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int (*sched_scan)(void *priv, struct wpa_driver_scan_params *params,
26951f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			  u32 interval);
26961f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
26971f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
26981f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * stop_sched_scan - Request the driver to stop a scheduled scan
26991f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
27001f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
27011f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
27021f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This should cause the scheduled scan to be stopped and
27031f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * results should stop being sent. Must be supported if
27041f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * sched_scan is supported.
27051f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
27061f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	int (*stop_sched_scan)(void *priv);
27071f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
27081f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
27091f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * poll_client - Probe (null data or such) the given station
27101f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
27111f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @own_addr: MAC address of sending interface
27121f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @addr: MAC address of the station to probe
27131f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @qos: Indicates whether station is QoS station
27141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
27151f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This function is used to verify whether an associated station is
27161f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * still present. This function does not need to be implemented if the
27171f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * driver provides such inactivity polling mechanism.
27181f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
27191f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	void (*poll_client)(void *priv, const u8 *own_addr,
27201f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt			    const u8 *addr, int qos);
272104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
27221f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
272304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * radio_disable - Disable/enable radio
27241f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @priv: Private driver interface data
272504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * @disabled: 1=disable 0=enable radio
27261f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
27271f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
272804949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * This optional command is for testing purposes. It can be used to
272904949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * disable the radio on a testbed device to simulate out-of-radio-range
273004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * conditions.
273104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 */
273204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	int (*radio_disable)(void *priv, int disabled);
273304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
273404949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
273504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * switch_channel - Announce channel switch and migrate the GO to the
273604949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * given frequency
273704949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * @priv: Private driver interface data
273804949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * @freq: Frequency in MHz
273904949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * Returns: 0 on success, -1 on failure
274004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 *
274104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * This function is used to move the GO to the legacy STA channel to
274204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * avoid frequency conflict in single channel concurrency.
27431f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
2744c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt	int (*switch_channel)(void *priv, unsigned int freq);
2745ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
2746ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	/**
2747ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * start_dfs_cac - Listen for radar interference on the channel
2748ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * @priv: Private driver interface data
2749ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * @freq: Frequency (in MHz) of the channel
2750ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * Returns: 0 on success, -1 on failure
2751ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 */
2752ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	int (*start_dfs_cac)(void *priv, int freq);
2753ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
2754ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	/**
2755ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * stop_ap - Removes beacon from AP
2756ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * @priv: Private driver interface data
2757ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * Returns: 0 on success, -1 on failure (or if not supported)
2758ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 *
2759ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * This optional function can be used to disable AP mode related
2760ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * configuration. Unlike deinit_ap, it does not change to station
2761ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * mode.
2762ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 */
2763ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	int (*stop_ap)(void *priv);
2764b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
2765b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	/**
2766b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * get_survey - Retrieve survey data
2767b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * @priv: Private driver interface data
2768b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * @freq: If set, survey data for the specified frequency is only
2769b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 *	being requested. If not set, all survey data is requested.
2770b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * Returns: 0 on success, -1 on failure
2771b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 *
2772b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * Use this to retrieve:
2773b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 *
2774b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * - the observed channel noise floor
2775b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * - the amount of time we have spent on the channel
2776b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * - the amount of time during which we have spent on the channel that
2777b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 *   the radio has determined the medium is busy and we cannot
2778b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 *   transmit
2779b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * - the amount of time we have spent receiving data
2780b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * - the amount of time we have spent transmitting data
2781b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 *
2782b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * This data can be used for spectrum heuristics. One example is
2783b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * Automatic Channel Selection (ACS). The channel survey data is
2784b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * kept on a linked list on the channel data, one entry is added
2785b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * for each survey. The min_nf of the channel is updated for each
2786b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * survey.
2787b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 */
2788b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	int (*get_survey)(void *priv, unsigned int freq);
27898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
27908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
27918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
27928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
27938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * enum wpa_event_type - Event type for wpa_supplicant_event() calls
27948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
27958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtenum wpa_event_type {
27968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
27978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOC - Association completed
27988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
27998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event needs to be delivered when the driver completes IEEE
28008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * 802.11 association or reassociation successfully.
28018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
28028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * after this event has been generated. In addition, optional
28038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
28048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * more information about the association. If the driver interface gets
28058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * both of these events at the same time, it can also include the
28068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * assoc_info data in EVENT_ASSOC call.
28078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
28088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_ASSOC,
28098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
28108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
28118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_DISASSOC - Association lost
28128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event should be called when association is lost either due to
28148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * receiving deauthenticate or disassociate frame from the AP or when
28158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * sending either of these frames to the current AP. If the driver
28168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * supports separate deauthentication event, EVENT_DISASSOC should only
28178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * be used for disassociation and EVENT_DEAUTH for deauthentication.
28188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * In AP mode, union wpa_event_data::disassoc_info is required.
28198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
28208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_DISASSOC,
28218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
28228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
28238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
28248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event must be delivered when a Michael MIC error is detected by
28268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the local driver. Additional data for event processing is
28278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * provided with union wpa_event_data::michael_mic_failure. This
28288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * information is used to request new encyption key and to initiate
28298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * TKIP countermeasures if needed.
28308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
28318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_MICHAEL_MIC_FAILURE,
28328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
28338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
28348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_SCAN_RESULTS - Scan results available
28358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event must be called whenever scan results are available to be
28378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * fetched with struct wpa_driver_ops::get_scan_results(). This event
28388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * is expected to be used some time after struct wpa_driver_ops::scan()
28398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * is called. If the driver provides an unsolicited event when the scan
28408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * has been completed, this event can be used to trigger
28418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_SCAN_RESULTS call. If such event is not available from the
28428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * driver, the driver wrapper code is expected to use a registered
28438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
28448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * scan is expected to be completed. Optional information about
28458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * completed scan can be provided with union wpa_event_data::scan_info.
28468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
28478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_SCAN_RESULTS,
28488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
28498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
28508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOCINFO - Report optional extra information for association
28518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event can be used to report extra association information for
28538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOC processing. This extra information includes IEs from
28548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * association frames and Beacon/Probe Response frames in union
28558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
28568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOC. Alternatively, the driver interface can include
28578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * assoc_info data in the EVENT_ASSOC call if it has all the
28588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * information available at the same point.
28598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
28608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_ASSOCINFO,
28618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
28628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
28638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_INTERFACE_STATUS - Report interface status changes
28648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This optional event can be used to report changes in interface
28668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * status (interface added/removed) using union
28678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_event_data::interface_status. This can be used to trigger
28688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_supplicant to stop and re-start processing for the interface,
28698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * e.g., when a cardbus card is ejected/inserted.
28708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
28718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_INTERFACE_STATUS,
28728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
28738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
28748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
28758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event can be used to inform wpa_supplicant about candidates for
28778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
28788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * for scan request (ap_scan=2 mode), this event is required for
28798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * pre-authentication. If wpa_supplicant is performing scan request
28808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * (ap_scan=1), this event is optional since scan results can be used
28818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * to add pre-authentication candidates. union
28828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
28838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * candidate and priority of the candidate, e.g., based on the signal
28848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * strength, in order to try to pre-authenticate first with candidates
28858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * that are most likely targets for re-association.
28868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
28888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * on the candidate list. In addition, it can be called for the current
28898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
28908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * will automatically skip pre-authentication in cases where a valid
28918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * PMKSA exists. When more than one candidate exists, this event should
28928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * be generated once for each candidate.
28938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
28948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Driver will be notified about successful pre-authentication with
28958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_ops::add_pmkid() calls.
28968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
28978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_PMKID_CANDIDATE,
28988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
28998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
29018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
29028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event can be used to inform wpa_supplicant about desire to set
29038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * up secure direct link connection between two stations as defined in
29048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
29058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * STAKey negotiation. The caller will need to set peer address for the
29068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * event.
29078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_STKSTART,
29098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_TDLS - Request TDLS operation
29128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
29138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event can be used to request a TDLS operation to be performed.
29148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_TDLS,
29168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
29198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
29208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The driver is expected to report the received FT IEs from
29218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * FT authentication sequence from the AP. The FT IEs are included in
29228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the extra information in union wpa_event_data::ft_ies.
29238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_FT_RESPONSE,
29258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
29288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
29298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * The driver can use this event to inform wpa_supplicant about a STA
29308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * in an IBSS with which protected frames could be exchanged. This
29318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * event starts RSN authentication with the other STA to authenticate
29328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the STA and set up encryption keys with it.
29338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_IBSS_RSN_START,
29358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_AUTH - Authentication result
29388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
29398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event should be called when authentication attempt has been
29408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * completed. This is only used if the driver supports separate
29418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * authentication step (struct wpa_driver_ops::authenticate).
29428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Information about authentication result is included in
29438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::auth.
29448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_AUTH,
29468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_DEAUTH - Authentication lost
29498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
29508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event should be called when authentication is lost either due
29518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * to receiving deauthenticate frame from the AP or when sending that
29528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * frame to the current AP.
29538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * In AP mode, union wpa_event_data::deauth_info is required.
29548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_DEAUTH,
29568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOC_REJECT - Association rejected
29598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
29608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event should be called when (re)association attempt has been
29618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * rejected by the AP. Information about the association response is
29628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * included in union wpa_event_data::assoc_reject.
29638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_ASSOC_REJECT,
29658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_AUTH_TIMED_OUT - Authentication timed out
29688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_AUTH_TIMED_OUT,
29708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOC_TIMED_OUT - Association timed out
29738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_ASSOC_TIMED_OUT,
29758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
29788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_FT_RRB_RX,
29808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
29838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_WPS_BUTTON_PUSHED,
29858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_TX_STATUS - Report TX status
29888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_TX_STATUS,
29908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
29938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_RX_FROM_UNKNOWN,
29958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
29968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
29978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_RX_MGMT - Report RX of a management frame
29988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
29998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_RX_MGMT,
30008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_RX_ACTION - Action frame received
30038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate when an Action frame has been
30058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * received. Information about the received frame is included in
30068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::rx_action.
30078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_RX_ACTION,
30098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
30128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate when the driver has started the
30148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * requested remain-on-channel duration. Information about the
30158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * operation is included in union wpa_event_data::remain_on_channel.
30168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_REMAIN_ON_CHANNEL,
30188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
30218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate when the driver has completed
30238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * remain-on-channel duration, i.e., may noot be available on the
30248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * requested channel anymore. Information about the
30258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * operation is included in union wpa_event_data::remain_on_channel.
30268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_CANCEL_REMAIN_ON_CHANNEL,
30288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
30318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used only by driver_test.c and userspace MLME.
30338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_MLME_RX,
30358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
30388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate when a Probe Request frame has been
30408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * received. Information about the received frame is included in
30418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::rx_probe_req. The driver is required to report
30428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * these events only after successfully completed probe_req_report()
30438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * commands to request the events (i.e., report parameter is non-zero)
30448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * in station mode. In AP mode, Probe Request frames should always be
30458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * reported.
30468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_RX_PROBE_REQ,
30488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_NEW_STA - New wired device noticed
30518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate that a new device has been detected
30538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * in a network that does not use association-like functionality (i.e.,
30548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * mainly wired Ethernet). This can be used to start EAPOL
30558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * authenticator when receiving a frame from a device. The address of
30568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the device is included in union wpa_event_data::new_sta.
30578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_NEW_STA,
30598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_EAPOL_RX - Report received EAPOL frame
30628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * When in AP mode with hostapd, this event is required to be used to
30648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * deliver the receive EAPOL frames from the driver. With
30658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * %wpa_supplicant, this event is used only if the send_eapol() handler
30668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * is used to override the use of l2_packet for EAPOL frame TX.
30678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_EAPOL_RX,
30698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
30728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate changes in the signal strength
30748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * observed in frames received from the current AP if signal strength
30758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * monitoring has been enabled with signal_monitor().
30768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_SIGNAL_CHANGE,
30788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_INTERFACE_ENABLED - Notify that interface was enabled
30818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate that the interface was enabled after
30838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * having been previously disabled, e.g., due to rfkill.
30848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_INTERFACE_ENABLED,
30868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_INTERFACE_DISABLED - Notify that interface was disabled
30898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate that the interface was disabled,
30918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * e.g., due to rfkill.
30928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
30938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_INTERFACE_DISABLED,
30948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
30958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
30968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_CHANNEL_LIST_CHANGED - Channel list changed
30978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
30988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate that the channel list has changed,
30998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * e.g., because of a regulatory domain change triggered by scan
31008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * results including an AP advertising a country code.
31018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_CHANNEL_LIST_CHANGED,
31038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_INTERFACE_UNAVAILABLE - Notify that interface is unavailable
31068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used to indicate that the driver cannot maintain this
31088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interface in its operation mode anymore. The most likely use for
31098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * this is to indicate that AP mode operation is not available due to
31108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * operating channel would need to be changed to a DFS channel when
31118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * the driver does not support radar detection and another virtual
31128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interfaces caused the operating channel to change. Other similar
31138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * resource conflicts could also trigger this for station mode
31148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * interfaces.
31158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_INTERFACE_UNAVAILABLE,
31178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_BEST_CHANNEL
31208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Driver generates this event whenever it detects a better channel
31228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * (e.g., based on RSSI or channel use). This information can be used
31238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * to improve channel selection for a new AP/P2P group.
31248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_BEST_CHANNEL,
31268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_UNPROT_DEAUTH - Unprotected Deauthentication frame received
31298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event should be called when a Deauthentication frame is dropped
31318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * due to it not being protected (MFP/IEEE 802.11w).
31328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::unprot_deauth is required to provide more
31338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * details of the frame.
31348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_UNPROT_DEAUTH,
31368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_UNPROT_DISASSOC - Unprotected Disassociation frame received
31398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event should be called when a Disassociation frame is dropped
31418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * due to it not being protected (MFP/IEEE 802.11w).
31428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::unprot_disassoc is required to provide more
31438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * details of the frame.
31448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_UNPROT_DISASSOC,
31468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_STATION_LOW_ACK
31498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * Driver generates this event whenever it detected that a particular
31518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * station was lost. Detection can be through massive transmission
31528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * failures for example.
31538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_STATION_LOW_ACK,
31558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_P2P_DEV_FOUND - Report a discovered P2P device
31588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used only if the driver implements P2P management
31608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * internally. Event data is stored in
31618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::p2p_dev_found.
31628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_P2P_DEV_FOUND,
31648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_P2P_GO_NEG_REQ_RX - Report reception of GO Negotiation Request
31678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used only if the driver implements P2P management
31698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * internally. Event data is stored in
31708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::p2p_go_neg_req_rx.
31718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_P2P_GO_NEG_REQ_RX,
31738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_P2P_GO_NEG_COMPLETED - Report completion of GO Negotiation
31768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
31778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This event is used only if the driver implements P2P management
31788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * internally. Event data is stored in
31798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * union wpa_event_data::p2p_go_neg_completed.
31808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_P2P_GO_NEG_COMPLETED,
31828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_P2P_PROV_DISC_REQUEST,
31848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_P2P_PROV_DISC_RESPONSE,
31858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_P2P_SD_REQUEST,
31868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	EVENT_P2P_SD_RESPONSE,
31878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
31888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
31898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_IBSS_PEER_LOST - IBSS peer not reachable anymore
31908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
31911f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	EVENT_IBSS_PEER_LOST,
31921f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
31931f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
31941f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * EVENT_DRIVER_GTK_REKEY - Device/driver did GTK rekey
31951f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
31961f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This event carries the new replay counter to notify wpa_supplicant
31971f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * of the current EAPOL-Key Replay Counter in case the driver/firmware
31981f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * completed Group Key Handshake while the host (including
31991f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * wpa_supplicant was sleeping).
32001f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
32011f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	EVENT_DRIVER_GTK_REKEY,
32021f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
32031f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
32041f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * EVENT_SCHED_SCAN_STOPPED - Scheduled scan was stopped
32051f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
32061f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	EVENT_SCHED_SCAN_STOPPED,
32071f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
32081f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
32091f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * EVENT_DRIVER_CLIENT_POLL_OK - Station responded to poll
32101f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
32111f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This event indicates that the station responded to the poll
32121f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * initiated with @poll_client.
32131f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
32141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	EVENT_DRIVER_CLIENT_POLL_OK,
32151f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
32161f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
32171f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * EVENT_EAPOL_TX_STATUS - notify of EAPOL TX status
32181f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
321904949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	EVENT_EAPOL_TX_STATUS,
322004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
322104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
322204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * EVENT_CH_SWITCH - AP or GO decided to switch channels
322304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 *
322404949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * Described in wpa_event_data.ch_switch
322504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * */
322661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	EVENT_CH_SWITCH,
322761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt
322861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	/**
322961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * EVENT_WNM - Request WNM operation
323061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 *
323161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * This event can be used to request a WNM operation to be performed.
323261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 */
3233f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	EVENT_WNM,
3234f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt
3235f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	/**
3236f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 * EVENT_CONNECT_FAILED_REASON - Connection failure reason in AP mode
3237f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 *
3238f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 * This event indicates that the driver reported a connection failure
3239f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 * with the specified client (for example, max client reached, etc.) in
3240f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 * AP mode.
3241f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 */
3242ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	EVENT_CONNECT_FAILED_REASON,
3243ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
3244ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	/**
3245ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * EVENT_RADAR_DETECTED - Notify of radar detection
3246ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 *
3247ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * A radar has been detected on the supplied frequency, hostapd should
3248ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * react accordingly (e.g., change channel).
3249ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 */
3250ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	EVENT_DFS_RADAR_DETECTED,
3251ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
3252ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	/**
3253ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * EVENT_CAC_FINISHED - Notify that channel availability check has been completed
3254ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 *
3255ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * After a successful CAC, the channel can be marked clear and used.
3256ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 */
3257ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	EVENT_DFS_CAC_FINISHED,
3258ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
3259ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	/**
3260ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * EVENT_CAC_ABORTED - Notify that channel availability check has been aborted
3261ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 *
3262ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * The CAC was not successful, and the channel remains in the previous
3263ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * state. This may happen due to a radar beeing detected or other
3264ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * external influences.
3265ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 */
3266ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	EVENT_DFS_CAC_ABORTED,
3267ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
3268ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	/**
3269ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * EVENT_DFS_CAC_NOP_FINISHED - Notify that non-occupancy period is over
3270ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 *
3271ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * The channel which was previously unavailable is now available again.
3272ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 */
3273b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	EVENT_DFS_NOP_FINISHED,
3274b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
3275b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	/*
3276b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	* EVENT_SURVEY - Received survey data
3277b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	*
3278b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	* This event gets triggered when a driver query is issued for survey
3279b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	* data and the requested data becomes available. The returned data is
3280b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	* stored in struct survey_results. The results provide at most one
3281b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	* survey entry for each frequency and at minimum will provide one survey
3282b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	* entry for one frequency. The survey data can be os_malloc()'d and
3283b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	* then os_free()'d, so the event callback must only copy data.
3284b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	*/
3285b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	EVENT_SURVEY
32868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
32878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
32888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
32898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
3290b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * struct freq_survey - Channel survey info
3291b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt *
3292b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @ifidx: Interface index in which this survey was observed
3293b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @freq: Center of frequency of the surveyed channel
3294b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @nf: Channel noise floor in dBm
3295b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @channel_time: Amount of time in ms the radio spent on the channel
3296b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @channel_time_busy: Amount of time in ms the radio detected some signal
3297b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt *     that indicated to the radio the channel was not clear
3298b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @channel_time_rx: Amount of time the radio spent receiving data
3299b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @channel_time_tx: Amount of time the radio spent transmitting data
3300b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @filled: bitmask indicating which fields have been reported, see
3301b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt *     SURVEY_HAS_* defines.
3302b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt * @list: Internal list pointers
3303b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt */
3304b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidtstruct freq_survey {
3305b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	u32 ifidx;
3306b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	unsigned int freq;
3307b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	s8 nf;
3308b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	u64 channel_time;
3309b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	u64 channel_time_busy;
3310b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	u64 channel_time_rx;
3311b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	u64 channel_time_tx;
3312b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	unsigned int filled;
3313b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	struct dl_list list;
3314b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt};
3315b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
3316b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt#define SURVEY_HAS_NF BIT(0)
3317b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt#define SURVEY_HAS_CHAN_TIME BIT(1)
3318b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt#define SURVEY_HAS_CHAN_TIME_BUSY BIT(2)
3319b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt#define SURVEY_HAS_CHAN_TIME_RX BIT(3)
3320b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt#define SURVEY_HAS_CHAN_TIME_TX BIT(4)
3321b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
3322b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
3323b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt/**
33248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * union wpa_event_data - Additional data for wpa_supplicant_event() calls
33258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
33268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtunion wpa_event_data {
33278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
33288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
33298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
33308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This structure is optional for EVENT_ASSOC calls and required for
33318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
33328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * driver interface does not need to generate separate EVENT_ASSOCINFO
33338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * calls.
33348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
33358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct assoc_info {
33368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
33378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * reassoc - Flag to indicate association or reassociation
33388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
33398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int reassoc;
33408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
33418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
33428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * req_ies - (Re)Association Request IEs
33438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
33448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * If the driver generates WPA/RSN IE, this event data must be
33458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * returned for WPA handshake to have needed information. If
33468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * wpa_supplicant-generated WPA/RSN IE is used, this
33478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * information event is optional.
33488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
33498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * This should start with the first IE (fixed fields before IEs
33508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * are not included).
33518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
33528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *req_ies;
33538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
33548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
33558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * req_ies_len - Length of req_ies in bytes
33568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
33578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t req_ies_len;
33588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
33598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
33608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * resp_ies - (Re)Association Response IEs
33618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
33628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * Optional association data from the driver. This data is not
33638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * required WPA, but may be useful for some protocols and as
33648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * such, should be reported if this is available to the driver
33658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * interface.
33668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
33678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * This should start with the first IE (fixed fields before IEs
33688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * are not included).
33698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
33708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *resp_ies;
33718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
33728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
33738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * resp_ies_len - Length of resp_ies in bytes
33748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
33758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t resp_ies_len;
33768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
33778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
33788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * beacon_ies - Beacon or Probe Response IEs
33798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
33808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * Optional Beacon/ProbeResp data: IEs included in Beacon or
33818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * Probe Response frames from the current AP (i.e., the one
33828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * that the client just associated with). This information is
33838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * used to update WPA/RSN IE for the AP. If this field is not
33848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * set, the results from previous scan will be used. If no
33858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * data for the new AP is found, scan results will be requested
33868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * again (without scan request). At this point, the driver is
33878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
33888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * used).
33898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
33908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * This should start with the first IE (fixed fields before IEs
33918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * are not included).
33928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
33938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *beacon_ies;
33948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
33958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
33968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * beacon_ies_len - Length of beacon_ies */
33978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t beacon_ies_len;
33988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
33998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * freq - Frequency of the operational channel in MHz
34018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		unsigned int freq;
34038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * addr - Station address (for AP mode)
34068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *addr;
34088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} assoc_info;
34098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
34118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct disassoc_info - Data for EVENT_DISASSOC events
34128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
34138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct disassoc_info {
34148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * addr - Station address (for AP mode)
34168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *addr;
34188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * reason_code - Reason Code (host byte order) used in
34218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *	Deauthentication frame
34228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 reason_code;
34248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ie - Optional IE(s) in Disassociation frame
34278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *ie;
34298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ie_len - Length of ie buffer in octets
34328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ie_len;
3434c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt
3435c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		/**
3436c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		 * locally_generated - Whether the frame was locally generated
3437c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		 */
3438c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		int locally_generated;
34398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} disassoc_info;
34408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
34428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct deauth_info - Data for EVENT_DEAUTH events
34438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
34448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct deauth_info {
34458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * addr - Station address (for AP mode)
34478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *addr;
34498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * reason_code - Reason Code (host byte order) used in
34528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *	Deauthentication frame
34538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 reason_code;
34558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ie - Optional IE(s) in Deauthentication frame
34588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *ie;
34608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
34628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ie_len - Length of ie buffer in octets
34638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
34648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ie_len;
3465c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt
3466c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		/**
3467c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		 * locally_generated - Whether the frame was locally generated
3468c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		 */
3469c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt		int locally_generated;
34708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} deauth_info;
34718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
34738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
34748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
34758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct michael_mic_failure {
34768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int unicast;
34778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *src;
34788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} michael_mic_failure;
34798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
34818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct interface_status - Data for EVENT_INTERFACE_STATUS
34828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
34838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct interface_status {
34848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		char ifname[100];
34858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		enum {
34868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
34878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		} ievent;
34888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} interface_status;
34898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
34908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
34918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
34928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
34938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct pmkid_candidate {
34948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/** BSSID of the PMKID candidate */
34958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 bssid[ETH_ALEN];
34968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/** Smaller the index, higher the priority */
34978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int index;
34988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/** Whether RSN IE includes pre-authenticate flag */
34998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int preauth;
35008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} pmkid_candidate;
35018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
35028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
35038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct stkstart - Data for EVENT_STKSTART
35048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
35058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct stkstart {
35068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 peer[ETH_ALEN];
35078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} stkstart;
35088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
35098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
35108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct tdls - Data for EVENT_TDLS
35118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
35128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct tdls {
35138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 peer[ETH_ALEN];
35148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		enum {
35158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			TDLS_REQUEST_SETUP,
35168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			TDLS_REQUEST_TEARDOWN
35178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		} oper;
35188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 reason_code; /* for teardown */
35198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} tdls;
35208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
35218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
352261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 * struct wnm - Data for EVENT_WNM
352361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	 */
352461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	struct wnm {
352561d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		u8 addr[ETH_ALEN];
352661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		enum {
352761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt			WNM_OPER_SLEEP,
352861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		} oper;
352961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		enum {
353061d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt			WNM_SLEEP_ENTER,
353161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt			WNM_SLEEP_EXIT
353261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		} sleep_action;
353361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		int sleep_intval;
353461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		u16 reason_code;
353561d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		u8 *buf;
353661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt		u16 buf_len;
353761d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	} wnm;
353861d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt
353961d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	/**
35408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
35418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
35428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * During FT (IEEE 802.11r) authentication sequence, the driver is
35438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * expected to use this event to report received FT IEs (MDIE, FTIE,
35448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * RSN IE, TIE, possible resource request) to the supplicant. The FT
35458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * IEs for the next message will be delivered through the
35468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct wpa_driver_ops::update_ft_ies() callback.
35478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
35488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct ft_ies {
35498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *ies;
35508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ies_len;
35518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int ft_action;
35528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 target_ap[ETH_ALEN];
35538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
35548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *ric_ies;
35558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/** Length of ric_ies buffer in octets */
35568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ric_ies_len;
35578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} ft_ies;
35588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
35598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
35608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
35618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
35628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct ibss_rsn_start {
35638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 peer[ETH_ALEN];
35648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} ibss_rsn_start;
35658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
35668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
35678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct auth_info - Data for EVENT_AUTH events
35688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
35698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct auth_info {
35708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 peer[ETH_ALEN];
35711f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		u8 bssid[ETH_ALEN];
35728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 auth_type;
35731f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		u16 auth_transaction;
35748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 status_code;
35758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *ies;
35768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ies_len;
35778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} auth;
35788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
35798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
35808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
35818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
35828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct assoc_reject {
35838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
35848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * bssid - BSSID of the AP that rejected association
35858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
35868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *bssid;
35878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
35888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
35898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * resp_ies - (Re)Association Response IEs
35908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
35918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * Optional association data from the driver. This data is not
35928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * required WPA, but may be useful for some protocols and as
35938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * such, should be reported if this is available to the driver
35948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * interface.
35958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 *
35968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * This should start with the first IE (fixed fields before IEs
35978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * are not included).
35988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
35998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *resp_ies;
36008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * resp_ies_len - Length of resp_ies in bytes
36038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t resp_ies_len;
36058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * status_code - Status Code from (Re)association Response
36088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 status_code;
36108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} assoc_reject;
36118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct timeout_event {
36138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 addr[ETH_ALEN];
36148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} timeout_event;
36158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
36178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
36188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
36198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct ft_rrb_rx {
36208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *src;
36218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *data;
36228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t data_len;
36238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} ft_rrb_rx;
36248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
36268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct tx_status - Data for EVENT_TX_STATUS events
36278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
36288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct tx_status {
36298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 type;
36308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 stype;
36318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *dst;
36328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *data;
36338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t data_len;
36348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int ack;
36358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} tx_status;
36368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
36388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
36398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
36408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct rx_from_unknown {
36411f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *bssid;
36421f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *addr;
36431f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		int wds;
36448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} rx_from_unknown;
36458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
36478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct rx_mgmt - Data for EVENT_RX_MGMT events
36488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
36498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct rx_mgmt {
36508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *frame;
36518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t frame_len;
36528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u32 datarate;
365304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		int ssi_signal; /* dBm */
36548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} rx_mgmt;
36558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
36578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct rx_action - Data for EVENT_RX_ACTION events
36588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
36598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct rx_action {
36608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * da - Destination address of the received Action frame
36628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *da;
36648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * sa - Source address of the received Action frame
36678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *sa;
36698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * bssid - Address 3 of the received Action frame
36728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *bssid;
36748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * category - Action frame category
36778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 category;
36798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * data - Action frame body after category field
36828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *data;
36848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * len - Length of data in octets
36878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t len;
36898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
36918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * freq - Frequency (in MHz) on which the frame was received
36928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
36938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int freq;
36948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} rx_action;
36958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
36968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
36978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
36988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
36998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
37008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
37018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct remain_on_channel {
37028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
37038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * freq - Channel frequency in MHz
37048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
37058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		unsigned int freq;
37068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
37088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * duration - Duration to remain on the channel in milliseconds
37098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
37108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		unsigned int duration;
37118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} remain_on_channel;
37128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
37148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
37158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @aborted: Whether the scan was aborted
37168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
37178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @num_freqs: Number of entries in freqs array
37188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
37198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *	SSID)
37208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @num_ssids: Number of entries in ssids array
37218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
37228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct scan_info {
37238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int aborted;
37248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const int *freqs;
37258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t num_freqs;
37268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
37278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t num_ssids;
37288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} scan_info;
37298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
37318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct mlme_rx - Data for EVENT_MLME_RX events
37328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
37338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct mlme_rx {
37348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *buf;
37358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t len;
37368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int freq;
37378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int channel;
37388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int ssi;
37398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} mlme_rx;
37408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
37428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
37438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
37448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct rx_probe_req {
37458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
37468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * sa - Source address of the received Probe Request frame
37478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
37488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *sa;
37498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
37511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		 * da - Destination address of the received Probe Request frame
37521f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		 *	or %NULL if not available
37531f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		 */
37541f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *da;
37551f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
37561f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		/**
37571f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		 * bssid - BSSID of the received Probe Request frame or %NULL
37581f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		 *	if not available
37591f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		 */
37601f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *bssid;
37611f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
37621f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		/**
37638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ie - IEs from the Probe Request body
37648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
37658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *ie;
37668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		/**
37688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 * ie_len - Length of ie buffer in octets
37698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		 */
37708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t ie_len;
377104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
377204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		/**
377304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		 * signal - signal strength in dBm (or 0 if not available)
377404949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		 */
377504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		int ssi_signal;
37768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} rx_probe_req;
37778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
37798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct new_sta - Data for EVENT_NEW_STA events
37808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
37818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct new_sta {
37828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *addr;
37838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} new_sta;
37848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
37868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct eapol_rx - Data for EVENT_EAPOL_RX events
37878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
37888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct eapol_rx {
37898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *src;
37908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *data;
37918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t data_len;
37928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} eapol_rx;
37938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
37958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * signal_change - Data for EVENT_SIGNAL_CHANGE events
37968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
37978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpa_signal_info signal_change;
37988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
37998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
38008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct best_channel - Data for EVENT_BEST_CHANNEL events
38018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freq_24: Best 2.4 GHz band channel frequency in MHz
38028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freq_5: Best 5 GHz band channel frequency in MHz
38038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @freq_overall: Best channel frequency in MHz
38048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 *
38058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * 0 can be used to indicate no preference in either band.
38068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
38078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct best_channel {
38088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int freq_24;
38098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int freq_5;
38108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int freq_overall;
38118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} best_chan;
38128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct unprot_deauth {
38148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *sa;
38158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *da;
38168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 reason_code;
38178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} unprot_deauth;
38188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct unprot_disassoc {
38208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *sa;
38218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *da;
38228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 reason_code;
38238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} unprot_disassoc;
38248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
38268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct low_ack - Data for EVENT_STATION_LOW_ACK events
38278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * @addr: station address
38288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
38298d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct low_ack {
38308d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 addr[ETH_ALEN];
38318d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} low_ack;
38328d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
38348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct p2p_dev_found - Data for EVENT_P2P_DEV_FOUND
38358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
38368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct p2p_dev_found {
38378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *addr;
38388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *dev_addr;
38398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *pri_dev_type;
38408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const char *dev_name;
38418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 config_methods;
38428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 dev_capab;
38438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 group_capab;
38448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} p2p_dev_found;
38458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
38478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct p2p_go_neg_req_rx - Data for EVENT_P2P_GO_NEG_REQ_RX
38488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
38498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct p2p_go_neg_req_rx {
38508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *src;
38518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 dev_passwd_id;
38528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} p2p_go_neg_req_rx;
38538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
38558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct p2p_go_neg_completed - Data for EVENT_P2P_GO_NEG_COMPLETED
38568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
38578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct p2p_go_neg_completed {
38588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		struct p2p_go_neg_results *res;
38598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} p2p_go_neg_completed;
38608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct p2p_prov_disc_req {
38628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *peer;
38638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 config_methods;
38648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *dev_addr;
38658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *pri_dev_type;
38668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const char *dev_name;
38678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 supp_config_methods;
38688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 dev_capab;
38698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 group_capab;
38708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} p2p_prov_disc_req;
38718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct p2p_prov_disc_resp {
38738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *peer;
38748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 config_methods;
38758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} p2p_prov_disc_resp;
38768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct p2p_sd_req {
38788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		int freq;
38798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *sa;
38808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 dialog_token;
38818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 update_indic;
38828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *tlvs;
38838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t tlvs_len;
38848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} p2p_sd_req;
38858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct p2p_sd_resp {
38878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *sa;
38888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u16 update_indic;
38898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		const u8 *tlvs;
38908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		size_t tlvs_len;
38918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} p2p_sd_resp;
38928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
38938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/**
38948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 * struct ibss_peer_lost - Data for EVENT_IBSS_PEER_LOST
38958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	 */
38968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct ibss_peer_lost {
38978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		u8 peer[ETH_ALEN];
38988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} ibss_peer_lost;
38991f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
39001f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
39011f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * struct driver_gtk_rekey - Data for EVENT_DRIVER_GTK_REKEY
39021f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
39031f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	struct driver_gtk_rekey {
39041f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *bssid;
39051f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *replay_ctr;
39061f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	} driver_gtk_rekey;
39071f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
39081f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
39091f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * struct client_poll - Data for EVENT_DRIVER_CLIENT_POLL_OK events
39101f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @addr: station address
39111f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
39121f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	struct client_poll {
39131f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		u8 addr[ETH_ALEN];
39141f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	} client_poll;
39151f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
39161f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	/**
39171f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * struct eapol_tx_status
39181f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @dst: Original destination
39191f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @data: Data starting with IEEE 802.1X header (!)
39201f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @data_len: Length of data
39211f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * @ack: Indicates ack or lost frame
39221f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 *
39231f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * This corresponds to hapd_send_eapol if the frame sent
39241f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 * there isn't just reported as EVENT_TX_STATUS.
39251f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	 */
39261f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	struct eapol_tx_status {
39271f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *dst;
39281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		const u8 *data;
39291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		int data_len;
39301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt		int ack;
39311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	} eapol_tx_status;
393204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
393304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	/**
393404949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * struct ch_switch
393504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * @freq: Frequency of new channel in MHz
393604949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * @ht_enabled: Whether this is an HT channel
393704949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 * @ch_offset: Secondary channel offset
393804949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	 */
393904949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	struct ch_switch {
394004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		int freq;
394104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		int ht_enabled;
394204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		int ch_offset;
394304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	} ch_switch;
3944f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt
3945f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	/**
3946f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 * struct connect_failed - Data for EVENT_CONNECT_FAILED_REASON
3947f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 * @addr: Remote client address
3948f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 * @code: Reason code for connection failure
3949f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	 */
3950f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	struct connect_failed_reason {
3951f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt		u8 addr[ETH_ALEN];
3952f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt		enum {
3953f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt			MAX_CLIENT_REACHED,
3954f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt			BLOCKED_CLIENT
3955f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt		} code;
3956f86232838cf712377867cb42417c1613ab5dc425Dmitry Shmidt	} connect_failed_reason;
3957ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt
3958ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	/**
3959ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * struct dfs_event - Data for radar detected events
3960ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 * @freq: Frequency of the channel in MHz
3961ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	 */
3962ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	struct dfs_event {
3963ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt		int freq;
3964ea69e84a6f4455c59348485895d3d5e3af77a65bDmitry Shmidt	} dfs_event;
3965b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt
3966b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	/**
3967b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * survey_results - Survey result data for EVENT_SURVEY
3968b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * @freq_filter: Requested frequency survey filter, 0 if request
3969b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 *	was for all survey data
3970b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 * @survey_list: Linked list of survey data
3971b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	 */
3972b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	struct survey_results {
3973b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt		unsigned int freq_filter;
3974b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt		struct dl_list survey_list; /* struct freq_survey */
3975b7b4d0ec07161a6d76c40ba7ef1306e82fbb7e15Dmitry Shmidt	} survey_results;
39768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
39778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
39788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/**
39798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * wpa_supplicant_event - Report a driver event for wpa_supplicant
39808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @ctx: Context pointer (wpa_s); this is the ctx variable registered
39818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *	with struct wpa_driver_ops::init()
39828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @event: event type (defined above)
39838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * @data: possible extra data for the event
39848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *
39858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Driver wrapper code should call this function whenever an event is received
39868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * from the driver.
39878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
39888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid wpa_supplicant_event(void *ctx, enum wpa_event_type event,
39898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			  union wpa_event_data *data);
39908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
39918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
39928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/*
39938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * The following inline functions are provided for convenience to simplify
39948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * event indication for some of the common events.
39958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
39968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
39978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstatic inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie,
39988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				   size_t ielen, int reassoc)
39998d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt{
40008d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	union wpa_event_data event;
40018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	os_memset(&event, 0, sizeof(event));
40028d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.assoc_info.reassoc = reassoc;
40038d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.assoc_info.req_ies = ie;
40048d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.assoc_info.req_ies_len = ielen;
40058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.assoc_info.addr = addr;
40068d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
40078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt}
40088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
40098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstatic inline void drv_event_disassoc(void *ctx, const u8 *addr)
40108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt{
40118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	union wpa_event_data event;
40128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	os_memset(&event, 0, sizeof(event));
40138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.disassoc_info.addr = addr;
40148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
40158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt}
40168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
40178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstatic inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data,
40188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				      size_t data_len)
40198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt{
40208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	union wpa_event_data event;
40218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	os_memset(&event, 0, sizeof(event));
40228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.eapol_rx.src = src;
40238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.eapol_rx.data = data;
40248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	event.eapol_rx.data_len = data_len;
40258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
40268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt}
40278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
40281f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* driver_common.c */
40291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidtvoid wpa_scan_results_free(struct wpa_scan_results *res);
40301f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
40311f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt/* Convert wpa_event_type to a string for logging */
40321f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidtconst char * event_to_string(enum wpa_event_type event);
40331f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
40348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#endif /* DRIVER_H */
4035