Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Driver interface definition |
Dmitry Shmidt | 807291d | 2015-01-27 13:40:23 -0800 | [diff] [blame] | 3 | * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi> |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 7 | * |
| 8 | * This file defines a driver interface used by both %wpa_supplicant and |
| 9 | * hostapd. The first part of the file defines data structures used in various |
| 10 | * driver operations. This is followed by the struct wpa_driver_ops that each |
| 11 | * driver wrapper will beed to define with callback functions for requesting |
| 12 | * driver operations. After this, there are definitions for driver event |
| 13 | * reporting with wpa_supplicant_event() and some convenience helper functions |
| 14 | * that can be used to report events. |
| 15 | */ |
| 16 | |
| 17 | #ifndef DRIVER_H |
| 18 | #define DRIVER_H |
| 19 | |
| 20 | #define WPA_SUPPLICANT_DRIVER_VERSION 4 |
| 21 | |
| 22 | #include "common/defs.h" |
Dmitry Shmidt | 9d9e602 | 2015-04-23 10:34:55 -0700 | [diff] [blame] | 23 | #include "common/ieee802_11_defs.h" |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 24 | #include "utils/list.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 25 | |
| 26 | #define HOSTAPD_CHAN_DISABLED 0x00000001 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 27 | #define HOSTAPD_CHAN_NO_IR 0x00000002 |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 28 | #define HOSTAPD_CHAN_RADAR 0x00000008 |
| 29 | #define HOSTAPD_CHAN_HT40PLUS 0x00000010 |
| 30 | #define HOSTAPD_CHAN_HT40MINUS 0x00000020 |
| 31 | #define HOSTAPD_CHAN_HT40 0x00000040 |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 32 | #define HOSTAPD_CHAN_SURVEY_LIST_INITIALIZED 0x00000080 |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 33 | |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 34 | #define HOSTAPD_CHAN_DFS_UNKNOWN 0x00000000 |
| 35 | #define HOSTAPD_CHAN_DFS_USABLE 0x00000100 |
| 36 | #define HOSTAPD_CHAN_DFS_UNAVAILABLE 0x00000200 |
| 37 | #define HOSTAPD_CHAN_DFS_AVAILABLE 0x00000300 |
| 38 | #define HOSTAPD_CHAN_DFS_MASK 0x00000300 |
| 39 | |
Dmitry Shmidt | 68d0e3e | 2013-10-28 17:59:21 -0700 | [diff] [blame] | 40 | #define HOSTAPD_CHAN_VHT_10_70 0x00000800 |
| 41 | #define HOSTAPD_CHAN_VHT_30_50 0x00001000 |
| 42 | #define HOSTAPD_CHAN_VHT_50_30 0x00002000 |
| 43 | #define HOSTAPD_CHAN_VHT_70_10 0x00004000 |
| 44 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 45 | #define HOSTAPD_CHAN_INDOOR_ONLY 0x00010000 |
| 46 | #define HOSTAPD_CHAN_GO_CONCURRENT 0x00020000 |
| 47 | |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 48 | #define HOSTAPD_CHAN_VHT_10_150 0x00100000 |
| 49 | #define HOSTAPD_CHAN_VHT_30_130 0x00200000 |
| 50 | #define HOSTAPD_CHAN_VHT_50_110 0x00400000 |
| 51 | #define HOSTAPD_CHAN_VHT_70_90 0x00800000 |
| 52 | #define HOSTAPD_CHAN_VHT_90_70 0x01000000 |
| 53 | #define HOSTAPD_CHAN_VHT_110_50 0x02000000 |
| 54 | #define HOSTAPD_CHAN_VHT_130_30 0x04000000 |
| 55 | #define HOSTAPD_CHAN_VHT_150_10 0x08000000 |
| 56 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 57 | /** |
| 58 | * enum reg_change_initiator - Regulatory change initiator |
| 59 | */ |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 60 | enum reg_change_initiator { |
| 61 | REGDOM_SET_BY_CORE, |
| 62 | REGDOM_SET_BY_USER, |
| 63 | REGDOM_SET_BY_DRIVER, |
| 64 | REGDOM_SET_BY_COUNTRY_IE, |
Dmitry Shmidt | 9767226 | 2014-02-03 13:02:54 -0800 | [diff] [blame] | 65 | REGDOM_BEACON_HINT, |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 66 | }; |
| 67 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 68 | /** |
| 69 | * enum reg_type - Regulatory change types |
| 70 | */ |
Dmitry Shmidt | 7dba0e5 | 2014-04-14 10:49:15 -0700 | [diff] [blame] | 71 | enum reg_type { |
| 72 | REGDOM_TYPE_UNKNOWN, |
| 73 | REGDOM_TYPE_COUNTRY, |
| 74 | REGDOM_TYPE_WORLD, |
| 75 | REGDOM_TYPE_CUSTOM_WORLD, |
| 76 | REGDOM_TYPE_INTERSECTION, |
| 77 | }; |
| 78 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 79 | /** |
| 80 | * struct hostapd_channel_data - Channel information |
| 81 | */ |
| 82 | struct hostapd_channel_data { |
| 83 | /** |
| 84 | * chan - Channel number (IEEE 802.11) |
| 85 | */ |
| 86 | short chan; |
| 87 | |
| 88 | /** |
| 89 | * freq - Frequency in MHz |
| 90 | */ |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 91 | int freq; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 92 | |
| 93 | /** |
| 94 | * flag - Channel flags (HOSTAPD_CHAN_*) |
| 95 | */ |
| 96 | int flag; |
| 97 | |
| 98 | /** |
Dmitry Shmidt | 68d0e3e | 2013-10-28 17:59:21 -0700 | [diff] [blame] | 99 | * max_tx_power - Regulatory transmit power limit in dBm |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 100 | */ |
| 101 | u8 max_tx_power; |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 102 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 103 | /** |
| 104 | * survey_list - Linked list of surveys (struct freq_survey) |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 105 | */ |
| 106 | struct dl_list survey_list; |
| 107 | |
| 108 | /** |
| 109 | * min_nf - Minimum observed noise floor, in dBm, based on all |
| 110 | * surveyed channel data |
| 111 | */ |
| 112 | s8 min_nf; |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 113 | |
| 114 | #ifdef CONFIG_ACS |
| 115 | /** |
| 116 | * interference_factor - Computed interference factor on this |
| 117 | * channel (used internally in src/ap/acs.c; driver wrappers do not |
| 118 | * need to set this) |
| 119 | */ |
| 120 | long double interference_factor; |
| 121 | #endif /* CONFIG_ACS */ |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 122 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 123 | /** |
| 124 | * dfs_cac_ms - DFS CAC time in milliseconds |
| 125 | */ |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 126 | unsigned int dfs_cac_ms; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 127 | }; |
| 128 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 129 | #define HOSTAPD_MODE_FLAG_HT_INFO_KNOWN BIT(0) |
Dmitry Shmidt | c2ebb4b | 2013-07-24 12:57:51 -0700 | [diff] [blame] | 130 | #define HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN BIT(1) |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 131 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 132 | /** |
| 133 | * struct hostapd_hw_modes - Supported hardware mode information |
| 134 | */ |
| 135 | struct hostapd_hw_modes { |
| 136 | /** |
| 137 | * mode - Hardware mode |
| 138 | */ |
| 139 | enum hostapd_hw_mode mode; |
| 140 | |
| 141 | /** |
| 142 | * num_channels - Number of entries in the channels array |
| 143 | */ |
| 144 | int num_channels; |
| 145 | |
| 146 | /** |
| 147 | * channels - Array of supported channels |
| 148 | */ |
| 149 | struct hostapd_channel_data *channels; |
| 150 | |
| 151 | /** |
| 152 | * num_rates - Number of entries in the rates array |
| 153 | */ |
| 154 | int num_rates; |
| 155 | |
| 156 | /** |
| 157 | * rates - Array of supported rates in 100 kbps units |
| 158 | */ |
| 159 | int *rates; |
| 160 | |
| 161 | /** |
| 162 | * ht_capab - HT (IEEE 802.11n) capabilities |
| 163 | */ |
| 164 | u16 ht_capab; |
| 165 | |
| 166 | /** |
| 167 | * mcs_set - MCS (IEEE 802.11n) rate parameters |
| 168 | */ |
| 169 | u8 mcs_set[16]; |
| 170 | |
| 171 | /** |
| 172 | * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters |
| 173 | */ |
| 174 | u8 a_mpdu_params; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 175 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 176 | /** |
| 177 | * vht_capab - VHT (IEEE 802.11ac) capabilities |
| 178 | */ |
| 179 | u32 vht_capab; |
| 180 | |
| 181 | /** |
| 182 | * vht_mcs_set - VHT MCS (IEEE 802.11ac) rate parameters |
| 183 | */ |
| 184 | u8 vht_mcs_set[8]; |
| 185 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 186 | unsigned int flags; /* HOSTAPD_MODE_FLAG_* */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 187 | }; |
| 188 | |
| 189 | |
| 190 | #define IEEE80211_MODE_INFRA 0 |
| 191 | #define IEEE80211_MODE_IBSS 1 |
| 192 | #define IEEE80211_MODE_AP 2 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 193 | #define IEEE80211_MODE_MESH 5 |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 194 | |
| 195 | #define IEEE80211_CAP_ESS 0x0001 |
| 196 | #define IEEE80211_CAP_IBSS 0x0002 |
| 197 | #define IEEE80211_CAP_PRIVACY 0x0010 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 198 | #define IEEE80211_CAP_RRM 0x1000 |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 199 | |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 200 | /* DMG (60 GHz) IEEE 802.11ad */ |
| 201 | /* type - bits 0..1 */ |
| 202 | #define IEEE80211_CAP_DMG_MASK 0x0003 |
| 203 | #define IEEE80211_CAP_DMG_IBSS 0x0001 /* Tx by: STA */ |
| 204 | #define IEEE80211_CAP_DMG_PBSS 0x0002 /* Tx by: PCP */ |
| 205 | #define IEEE80211_CAP_DMG_AP 0x0003 /* Tx by: AP */ |
| 206 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 207 | #define WPA_SCAN_QUAL_INVALID BIT(0) |
| 208 | #define WPA_SCAN_NOISE_INVALID BIT(1) |
| 209 | #define WPA_SCAN_LEVEL_INVALID BIT(2) |
| 210 | #define WPA_SCAN_LEVEL_DBM BIT(3) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 211 | #define WPA_SCAN_ASSOCIATED BIT(5) |
| 212 | |
| 213 | /** |
| 214 | * struct wpa_scan_res - Scan result for an BSS/IBSS |
| 215 | * @flags: information flags about the BSS/IBSS (WPA_SCAN_*) |
| 216 | * @bssid: BSSID |
| 217 | * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1) |
| 218 | * @beacon_int: beacon interval in TUs (host byte order) |
| 219 | * @caps: capability information field in host byte order |
| 220 | * @qual: signal quality |
| 221 | * @noise: noise level |
| 222 | * @level: signal level |
| 223 | * @tsf: Timestamp |
| 224 | * @age: Age of the information in milliseconds (i.e., how many milliseconds |
| 225 | * ago the last Beacon or Probe Response frame was received) |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 226 | * @est_throughput: Estimated throughput in kbps (this is calculated during |
| 227 | * scan result processing if left zero by the driver wrapper) |
| 228 | * @snr: Signal-to-noise ratio in dB (calculated during scan result processing) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 229 | * @ie_len: length of the following IE field in octets |
| 230 | * @beacon_ie_len: length of the following Beacon IE field in octets |
| 231 | * |
| 232 | * This structure is used as a generic format for scan results from the |
| 233 | * driver. Each driver interface implementation is responsible for converting |
| 234 | * the driver or OS specific scan results into this format. |
| 235 | * |
| 236 | * If the driver does not support reporting all IEs, the IE data structure is |
| 237 | * constructed of the IEs that are available. This field will also need to |
| 238 | * include SSID in IE format. All drivers are encouraged to be extended to |
| 239 | * report all IEs to make it easier to support future additions. |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 240 | * |
| 241 | * This structure data is followed by ie_len octets of IEs from Probe Response |
| 242 | * frame (or if the driver does not indicate source of IEs, these may also be |
| 243 | * from Beacon frame). After the first set of IEs, another set of IEs may follow |
| 244 | * (with beacon_ie_len octets of data) if the driver provides both IE sets. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 245 | */ |
| 246 | struct wpa_scan_res { |
| 247 | unsigned int flags; |
| 248 | u8 bssid[ETH_ALEN]; |
| 249 | int freq; |
| 250 | u16 beacon_int; |
| 251 | u16 caps; |
| 252 | int qual; |
| 253 | int noise; |
| 254 | int level; |
| 255 | u64 tsf; |
| 256 | unsigned int age; |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 257 | unsigned int est_throughput; |
| 258 | int snr; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 259 | size_t ie_len; |
| 260 | size_t beacon_ie_len; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 261 | /* Followed by ie_len + beacon_ie_len octets of IE data */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 262 | }; |
| 263 | |
| 264 | /** |
| 265 | * struct wpa_scan_results - Scan results |
| 266 | * @res: Array of pointers to allocated variable length scan result entries |
| 267 | * @num: Number of entries in the scan result array |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 268 | * @fetch_time: Time when the results were fetched from the driver |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 269 | */ |
| 270 | struct wpa_scan_results { |
| 271 | struct wpa_scan_res **res; |
| 272 | size_t num; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 273 | struct os_reltime fetch_time; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 274 | }; |
| 275 | |
| 276 | /** |
| 277 | * struct wpa_interface_info - Network interface information |
| 278 | * @next: Pointer to the next interface or NULL if this is the last one |
| 279 | * @ifname: Interface name that can be used with init() or init2() |
| 280 | * @desc: Human readable adapter description (e.g., vendor/model) or NULL if |
| 281 | * not available |
| 282 | * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one |
| 283 | * is not an allocated copy, i.e., get_interfaces() caller will not free |
| 284 | * this) |
| 285 | */ |
| 286 | struct wpa_interface_info { |
| 287 | struct wpa_interface_info *next; |
| 288 | char *ifname; |
| 289 | char *desc; |
| 290 | const char *drv_name; |
| 291 | }; |
| 292 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 293 | #define WPAS_MAX_SCAN_SSIDS 16 |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 294 | |
| 295 | /** |
| 296 | * struct wpa_driver_scan_params - Scan parameters |
| 297 | * Data for struct wpa_driver_ops::scan2(). |
| 298 | */ |
| 299 | struct wpa_driver_scan_params { |
| 300 | /** |
| 301 | * ssids - SSIDs to scan for |
| 302 | */ |
| 303 | struct wpa_driver_scan_ssid { |
| 304 | /** |
| 305 | * ssid - specific SSID to scan for (ProbeReq) |
| 306 | * %NULL or zero-length SSID is used to indicate active scan |
| 307 | * with wildcard SSID. |
| 308 | */ |
| 309 | const u8 *ssid; |
| 310 | /** |
| 311 | * ssid_len: Length of the SSID in octets |
| 312 | */ |
| 313 | size_t ssid_len; |
| 314 | } ssids[WPAS_MAX_SCAN_SSIDS]; |
| 315 | |
| 316 | /** |
| 317 | * num_ssids - Number of entries in ssids array |
| 318 | * Zero indicates a request for a passive scan. |
| 319 | */ |
| 320 | size_t num_ssids; |
| 321 | |
| 322 | /** |
| 323 | * extra_ies - Extra IE(s) to add into Probe Request or %NULL |
| 324 | */ |
| 325 | const u8 *extra_ies; |
| 326 | |
| 327 | /** |
| 328 | * extra_ies_len - Length of extra_ies in octets |
| 329 | */ |
| 330 | size_t extra_ies_len; |
| 331 | |
| 332 | /** |
| 333 | * freqs - Array of frequencies to scan or %NULL for all frequencies |
| 334 | * |
| 335 | * The frequency is set in MHz. The array is zero-terminated. |
| 336 | */ |
| 337 | int *freqs; |
| 338 | |
| 339 | /** |
| 340 | * filter_ssids - Filter for reporting SSIDs |
| 341 | * |
| 342 | * This optional parameter can be used to request the driver wrapper to |
| 343 | * filter scan results to include only the specified SSIDs. %NULL |
| 344 | * indicates that no filtering is to be done. This can be used to |
| 345 | * reduce memory needs for scan results in environments that have large |
| 346 | * number of APs with different SSIDs. |
| 347 | * |
| 348 | * The driver wrapper is allowed to take this allocated buffer into its |
| 349 | * own use by setting the pointer to %NULL. In that case, the driver |
| 350 | * wrapper is responsible for freeing the buffer with os_free() once it |
| 351 | * is not needed anymore. |
| 352 | */ |
| 353 | struct wpa_driver_scan_filter { |
Dmitry Shmidt | 9d9e602 | 2015-04-23 10:34:55 -0700 | [diff] [blame] | 354 | u8 ssid[SSID_MAX_LEN]; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 355 | size_t ssid_len; |
| 356 | } *filter_ssids; |
| 357 | |
| 358 | /** |
| 359 | * num_filter_ssids - Number of entries in filter_ssids array |
| 360 | */ |
| 361 | size_t num_filter_ssids; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 362 | |
| 363 | /** |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 364 | * filter_rssi - Filter by RSSI |
| 365 | * |
| 366 | * The driver may filter scan results in firmware to reduce host |
| 367 | * wakeups and thereby save power. Specify the RSSI threshold in s32 |
| 368 | * dBm. |
| 369 | */ |
| 370 | s32 filter_rssi; |
| 371 | |
| 372 | /** |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 373 | * p2p_probe - Used to disable CCK (802.11b) rates for P2P probes |
| 374 | * |
| 375 | * When set, the driver is expected to remove rates 1, 2, 5.5, and 11 |
| 376 | * Mbps from the support rates element(s) in the Probe Request frames |
| 377 | * and not to transmit the frames at any of those rates. |
| 378 | */ |
Dmitry Shmidt | 2271d3f | 2014-06-23 12:16:31 -0700 | [diff] [blame] | 379 | unsigned int p2p_probe:1; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 380 | |
| 381 | /** |
| 382 | * only_new_results - Request driver to report only new results |
| 383 | * |
| 384 | * This is used to request the driver to report only BSSes that have |
| 385 | * been detected after this scan request has been started, i.e., to |
| 386 | * flush old cached BSS entries. |
| 387 | */ |
Dmitry Shmidt | 2271d3f | 2014-06-23 12:16:31 -0700 | [diff] [blame] | 388 | unsigned int only_new_results:1; |
| 389 | |
| 390 | /** |
| 391 | * low_priority - Requests driver to use a lower scan priority |
| 392 | * |
| 393 | * This is used to request the driver to use a lower scan priority |
| 394 | * if it supports such a thing. |
| 395 | */ |
| 396 | unsigned int low_priority:1; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 397 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 398 | /** |
| 399 | * mac_addr_rand - Requests driver to randomize MAC address |
| 400 | */ |
| 401 | unsigned int mac_addr_rand:1; |
| 402 | |
| 403 | /** |
| 404 | * mac_addr - MAC address used with randomization. The address cannot be |
| 405 | * a multicast one, i.e., bit 0 of byte 0 should not be set. |
| 406 | */ |
| 407 | const u8 *mac_addr; |
| 408 | |
| 409 | /** |
| 410 | * mac_addr_mask - MAC address mask used with randomization. |
| 411 | * |
| 412 | * Bits that are 0 in the mask should be randomized. Bits that are 1 in |
| 413 | * the mask should be taken as is from mac_addr. The mask should not |
| 414 | * allow the generation of a multicast address, i.e., bit 0 of byte 0 |
| 415 | * must be set. |
| 416 | */ |
| 417 | const u8 *mac_addr_mask; |
| 418 | |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 419 | /** |
| 420 | * sched_scan_plans - Scan plans for scheduled scan |
| 421 | * |
| 422 | * Each scan plan consists of the number of iterations to scan and the |
| 423 | * interval between scans. When a scan plan finishes (i.e., it was run |
| 424 | * for the specified number of iterations), the next scan plan is |
| 425 | * executed. The scan plans are executed in the order they appear in |
| 426 | * the array (lower index first). The last scan plan will run infinitely |
| 427 | * (until requested to stop), thus must not specify the number of |
| 428 | * iterations. All other scan plans must specify the number of |
| 429 | * iterations. |
| 430 | */ |
| 431 | struct sched_scan_plan { |
| 432 | u32 interval; /* In seconds */ |
| 433 | u32 iterations; /* Zero to run infinitely */ |
| 434 | } *sched_scan_plans; |
| 435 | |
| 436 | /** |
| 437 | * sched_scan_plans_num - Number of scan plans in sched_scan_plans array |
| 438 | */ |
| 439 | unsigned int sched_scan_plans_num; |
| 440 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 441 | /* |
| 442 | * NOTE: Whenever adding new parameters here, please make sure |
| 443 | * wpa_scan_clone_params() and wpa_scan_free_params() get updated with |
| 444 | * matching changes. |
| 445 | */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 446 | }; |
| 447 | |
| 448 | /** |
| 449 | * struct wpa_driver_auth_params - Authentication parameters |
| 450 | * Data for struct wpa_driver_ops::authenticate(). |
| 451 | */ |
| 452 | struct wpa_driver_auth_params { |
| 453 | int freq; |
| 454 | const u8 *bssid; |
| 455 | const u8 *ssid; |
| 456 | size_t ssid_len; |
| 457 | int auth_alg; |
| 458 | const u8 *ie; |
| 459 | size_t ie_len; |
| 460 | const u8 *wep_key[4]; |
| 461 | size_t wep_key_len[4]; |
| 462 | int wep_tx_keyidx; |
| 463 | int local_state_change; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 464 | |
| 465 | /** |
| 466 | * p2p - Whether this connection is a P2P group |
| 467 | */ |
| 468 | int p2p; |
| 469 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 470 | /** |
| 471 | * sae_data - SAE elements for Authentication frame |
| 472 | * |
| 473 | * This buffer starts with the Authentication transaction sequence |
| 474 | * number field. If SAE is not used, this pointer is %NULL. |
| 475 | */ |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 476 | const u8 *sae_data; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 477 | |
| 478 | /** |
| 479 | * sae_data_len - Length of sae_data buffer in octets |
| 480 | */ |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 481 | size_t sae_data_len; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 482 | }; |
| 483 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 484 | /** |
| 485 | * enum wps_mode - WPS mode |
| 486 | */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 487 | enum wps_mode { |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 488 | /** |
| 489 | * WPS_MODE_NONE - No WPS provisioning being used |
| 490 | */ |
| 491 | WPS_MODE_NONE, |
| 492 | |
| 493 | /** |
| 494 | * WPS_MODE_OPEN - WPS provisioning with AP that is in open mode |
| 495 | */ |
| 496 | WPS_MODE_OPEN, |
| 497 | |
| 498 | /** |
| 499 | * WPS_MODE_PRIVACY - WPS provisioning with AP that is using protection |
| 500 | */ |
| 501 | WPS_MODE_PRIVACY |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 502 | }; |
| 503 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 504 | /** |
| 505 | * struct hostapd_freq_params - Channel parameters |
| 506 | */ |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 507 | struct hostapd_freq_params { |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 508 | /** |
| 509 | * mode - Mode/band (HOSTAPD_MODE_IEEE80211A, ..) |
| 510 | */ |
| 511 | enum hostapd_hw_mode mode; |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 512 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 513 | /** |
| 514 | * freq - Primary channel center frequency in MHz |
| 515 | */ |
| 516 | int freq; |
| 517 | |
| 518 | /** |
| 519 | * channel - Channel number |
| 520 | */ |
| 521 | int channel; |
| 522 | |
| 523 | /** |
| 524 | * ht_enabled - Whether HT is enabled |
| 525 | */ |
| 526 | int ht_enabled; |
| 527 | |
| 528 | /** |
| 529 | * sec_channel_offset - Secondary channel offset for HT40 |
| 530 | * |
| 531 | * 0 = HT40 disabled, |
| 532 | * -1 = HT40 enabled, secondary channel below primary, |
| 533 | * 1 = HT40 enabled, secondary channel above primary |
| 534 | */ |
| 535 | int sec_channel_offset; |
| 536 | |
| 537 | /** |
| 538 | * vht_enabled - Whether VHT is enabled |
| 539 | */ |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 540 | int vht_enabled; |
| 541 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 542 | /** |
| 543 | * center_freq1 - Segment 0 center frequency in MHz |
| 544 | * |
| 545 | * Valid for both HT and VHT. |
| 546 | */ |
| 547 | int center_freq1; |
| 548 | |
| 549 | /** |
| 550 | * center_freq2 - Segment 1 center frequency in MHz |
| 551 | * |
| 552 | * Non-zero only for bandwidth 80 and an 80+80 channel |
| 553 | */ |
| 554 | int center_freq2; |
| 555 | |
| 556 | /** |
| 557 | * bandwidth - Channel bandwidth in MHz (20, 40, 80, 160) |
| 558 | */ |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 559 | int bandwidth; |
| 560 | }; |
| 561 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 562 | /** |
| 563 | * struct wpa_driver_associate_params - Association parameters |
| 564 | * Data for struct wpa_driver_ops::associate(). |
| 565 | */ |
| 566 | struct wpa_driver_associate_params { |
| 567 | /** |
| 568 | * bssid - BSSID of the selected AP |
| 569 | * This can be %NULL, if ap_scan=2 mode is used and the driver is |
| 570 | * responsible for selecting with which BSS to associate. */ |
| 571 | const u8 *bssid; |
| 572 | |
| 573 | /** |
Dmitry Shmidt | 96be622 | 2014-02-13 10:16:51 -0800 | [diff] [blame] | 574 | * bssid_hint - BSSID of a proposed AP |
| 575 | * |
| 576 | * This indicates which BSS has been found a suitable candidate for |
| 577 | * initial association for drivers that use driver/firmwate-based BSS |
| 578 | * selection. Unlike the @bssid parameter, @bssid_hint does not limit |
| 579 | * the driver from selecting other BSSes in the ESS. |
| 580 | */ |
| 581 | const u8 *bssid_hint; |
| 582 | |
| 583 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 584 | * ssid - The selected SSID |
| 585 | */ |
| 586 | const u8 *ssid; |
| 587 | |
| 588 | /** |
| 589 | * ssid_len - Length of the SSID (1..32) |
| 590 | */ |
| 591 | size_t ssid_len; |
| 592 | |
| 593 | /** |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 594 | * freq - channel parameters |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 595 | */ |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 596 | struct hostapd_freq_params freq; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 597 | |
| 598 | /** |
Dmitry Shmidt | 96be622 | 2014-02-13 10:16:51 -0800 | [diff] [blame] | 599 | * freq_hint - Frequency of the channel the proposed AP is using |
| 600 | * |
| 601 | * This provides a channel on which a suitable BSS has been found as a |
| 602 | * hint for the driver. Unlike the @freq parameter, @freq_hint does not |
| 603 | * limit the driver from selecting other channels for |
| 604 | * driver/firmware-based BSS selection. |
| 605 | */ |
| 606 | int freq_hint; |
| 607 | |
| 608 | /** |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 609 | * bg_scan_period - Background scan period in seconds, 0 to disable |
| 610 | * background scan, or -1 to indicate no change to default driver |
| 611 | * configuration |
| 612 | */ |
| 613 | int bg_scan_period; |
| 614 | |
| 615 | /** |
Dmitry Shmidt | 2ac5f60 | 2014-03-07 10:08:21 -0800 | [diff] [blame] | 616 | * beacon_int - Beacon interval for IBSS or 0 to use driver default |
| 617 | */ |
| 618 | int beacon_int; |
| 619 | |
| 620 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 621 | * wpa_ie - WPA information element for (Re)Association Request |
| 622 | * WPA information element to be included in (Re)Association |
| 623 | * Request (including information element id and length). Use |
| 624 | * of this WPA IE is optional. If the driver generates the WPA |
| 625 | * IE, it can use pairwise_suite, group_suite, and |
| 626 | * key_mgmt_suite to select proper algorithms. In this case, |
| 627 | * the driver has to notify wpa_supplicant about the used WPA |
| 628 | * IE by generating an event that the interface code will |
| 629 | * convert into EVENT_ASSOCINFO data (see below). |
| 630 | * |
| 631 | * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE |
| 632 | * instead. The driver can determine which version is used by |
| 633 | * looking at the first byte of the IE (0xdd for WPA, 0x30 for |
| 634 | * WPA2/RSN). |
| 635 | * |
| 636 | * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE. |
| 637 | */ |
| 638 | const u8 *wpa_ie; |
| 639 | |
| 640 | /** |
| 641 | * wpa_ie_len - length of the wpa_ie |
| 642 | */ |
| 643 | size_t wpa_ie_len; |
| 644 | |
| 645 | /** |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 646 | * wpa_proto - Bitfield of WPA_PROTO_* values to indicate WPA/WPA2 |
| 647 | */ |
| 648 | unsigned int wpa_proto; |
| 649 | |
| 650 | /** |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 651 | * pairwise_suite - Selected pairwise cipher suite (WPA_CIPHER_*) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 652 | * |
| 653 | * This is usually ignored if @wpa_ie is used. |
| 654 | */ |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 655 | unsigned int pairwise_suite; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 656 | |
| 657 | /** |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 658 | * group_suite - Selected group cipher suite (WPA_CIPHER_*) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 659 | * |
| 660 | * This is usually ignored if @wpa_ie is used. |
| 661 | */ |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 662 | unsigned int group_suite; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 663 | |
| 664 | /** |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 665 | * key_mgmt_suite - Selected key management suite (WPA_KEY_MGMT_*) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 666 | * |
| 667 | * This is usually ignored if @wpa_ie is used. |
| 668 | */ |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 669 | unsigned int key_mgmt_suite; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 670 | |
| 671 | /** |
| 672 | * auth_alg - Allowed authentication algorithms |
| 673 | * Bit field of WPA_AUTH_ALG_* |
| 674 | */ |
| 675 | int auth_alg; |
| 676 | |
| 677 | /** |
| 678 | * mode - Operation mode (infra/ibss) IEEE80211_MODE_* |
| 679 | */ |
| 680 | int mode; |
| 681 | |
| 682 | /** |
| 683 | * wep_key - WEP keys for static WEP configuration |
| 684 | */ |
| 685 | const u8 *wep_key[4]; |
| 686 | |
| 687 | /** |
| 688 | * wep_key_len - WEP key length for static WEP configuration |
| 689 | */ |
| 690 | size_t wep_key_len[4]; |
| 691 | |
| 692 | /** |
| 693 | * wep_tx_keyidx - WEP TX key index for static WEP configuration |
| 694 | */ |
| 695 | int wep_tx_keyidx; |
| 696 | |
| 697 | /** |
| 698 | * mgmt_frame_protection - IEEE 802.11w management frame protection |
| 699 | */ |
| 700 | enum mfp_options mgmt_frame_protection; |
| 701 | |
| 702 | /** |
| 703 | * ft_ies - IEEE 802.11r / FT information elements |
| 704 | * If the supplicant is using IEEE 802.11r (FT) and has the needed keys |
| 705 | * for fast transition, this parameter is set to include the IEs that |
| 706 | * are to be sent in the next FT Authentication Request message. |
| 707 | * update_ft_ies() handler is called to update the IEs for further |
| 708 | * FT messages in the sequence. |
| 709 | * |
| 710 | * The driver should use these IEs only if the target AP is advertising |
| 711 | * the same mobility domain as the one included in the MDIE here. |
| 712 | * |
| 713 | * In ap_scan=2 mode, the driver can use these IEs when moving to a new |
| 714 | * AP after the initial association. These IEs can only be used if the |
| 715 | * target AP is advertising support for FT and is using the same MDIE |
| 716 | * and SSID as the current AP. |
| 717 | * |
| 718 | * The driver is responsible for reporting the FT IEs received from the |
| 719 | * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE |
| 720 | * type. update_ft_ies() handler will then be called with the FT IEs to |
| 721 | * include in the next frame in the authentication sequence. |
| 722 | */ |
| 723 | const u8 *ft_ies; |
| 724 | |
| 725 | /** |
| 726 | * ft_ies_len - Length of ft_ies in bytes |
| 727 | */ |
| 728 | size_t ft_ies_len; |
| 729 | |
| 730 | /** |
| 731 | * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies) |
| 732 | * |
| 733 | * This value is provided to allow the driver interface easier access |
| 734 | * to the current mobility domain. This value is set to %NULL if no |
| 735 | * mobility domain is currently active. |
| 736 | */ |
| 737 | const u8 *ft_md; |
| 738 | |
| 739 | /** |
| 740 | * passphrase - RSN passphrase for PSK |
| 741 | * |
| 742 | * This value is made available only for WPA/WPA2-Personal (PSK) and |
| 743 | * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is |
| 744 | * the 8..63 character ASCII passphrase, if available. Please note that |
| 745 | * this can be %NULL if passphrase was not used to generate the PSK. In |
| 746 | * that case, the psk field must be used to fetch the PSK. |
| 747 | */ |
| 748 | const char *passphrase; |
| 749 | |
| 750 | /** |
| 751 | * psk - RSN PSK (alternative for passphrase for PSK) |
| 752 | * |
| 753 | * This value is made available only for WPA/WPA2-Personal (PSK) and |
| 754 | * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is |
| 755 | * the 32-octet (256-bit) PSK, if available. The driver wrapper should |
| 756 | * be prepared to handle %NULL value as an error. |
| 757 | */ |
| 758 | const u8 *psk; |
| 759 | |
| 760 | /** |
| 761 | * drop_unencrypted - Enable/disable unencrypted frame filtering |
| 762 | * |
| 763 | * Configure the driver to drop all non-EAPOL frames (both receive and |
| 764 | * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must |
| 765 | * still be allowed for key negotiation. |
| 766 | */ |
| 767 | int drop_unencrypted; |
| 768 | |
| 769 | /** |
| 770 | * prev_bssid - Previously used BSSID in this ESS |
| 771 | * |
| 772 | * When not %NULL, this is a request to use reassociation instead of |
| 773 | * association. |
| 774 | */ |
| 775 | const u8 *prev_bssid; |
| 776 | |
| 777 | /** |
| 778 | * wps - WPS mode |
| 779 | * |
| 780 | * If the driver needs to do special configuration for WPS association, |
| 781 | * this variable provides more information on what type of association |
| 782 | * is being requested. Most drivers should not need ot use this. |
| 783 | */ |
| 784 | enum wps_mode wps; |
| 785 | |
| 786 | /** |
| 787 | * p2p - Whether this connection is a P2P group |
| 788 | */ |
| 789 | int p2p; |
| 790 | |
| 791 | /** |
| 792 | * uapsd - UAPSD parameters for the network |
| 793 | * -1 = do not change defaults |
| 794 | * AP mode: 1 = enabled, 0 = disabled |
| 795 | * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE |
| 796 | */ |
| 797 | int uapsd; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 798 | |
| 799 | /** |
| 800 | * fixed_bssid - Whether to force this BSSID in IBSS mode |
| 801 | * 1 = Fix this BSSID and prevent merges. |
| 802 | * 0 = Do not fix BSSID. |
| 803 | */ |
| 804 | int fixed_bssid; |
| 805 | |
| 806 | /** |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 807 | * fixed_freq - Fix control channel in IBSS mode |
| 808 | * 0 = don't fix control channel (default) |
| 809 | * 1 = fix control channel; this prevents IBSS merging with another |
| 810 | * channel |
| 811 | */ |
| 812 | int fixed_freq; |
| 813 | |
| 814 | /** |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 815 | * disable_ht - Disable HT (IEEE 802.11n) for this connection |
| 816 | */ |
| 817 | int disable_ht; |
| 818 | |
| 819 | /** |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 820 | * htcaps - HT Capabilities over-rides |
| 821 | * |
| 822 | * Only bits set in the mask will be used, and not all values are used |
| 823 | * by the kernel anyway. Currently, MCS, MPDU and MSDU fields are used. |
| 824 | * |
| 825 | * Pointer to struct ieee80211_ht_capabilities. |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 826 | */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 827 | const u8 *htcaps; |
| 828 | |
| 829 | /** |
| 830 | * htcaps_mask - HT Capabilities over-rides mask |
| 831 | * |
| 832 | * Pointer to struct ieee80211_ht_capabilities. |
| 833 | */ |
| 834 | const u8 *htcaps_mask; |
Dmitry Shmidt | 2f02319 | 2013-03-12 12:44:17 -0700 | [diff] [blame] | 835 | |
| 836 | #ifdef CONFIG_VHT_OVERRIDES |
| 837 | /** |
| 838 | * disable_vht - Disable VHT for this connection |
| 839 | */ |
| 840 | int disable_vht; |
| 841 | |
| 842 | /** |
| 843 | * VHT capability overrides. |
| 844 | */ |
| 845 | const struct ieee80211_vht_capabilities *vhtcaps; |
| 846 | const struct ieee80211_vht_capabilities *vhtcaps_mask; |
| 847 | #endif /* CONFIG_VHT_OVERRIDES */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 848 | |
| 849 | /** |
| 850 | * req_key_mgmt_offload - Request key management offload for connection |
| 851 | * |
| 852 | * Request key management offload for this connection if the device |
| 853 | * supports it. |
| 854 | */ |
| 855 | int req_key_mgmt_offload; |
| 856 | |
| 857 | /** |
| 858 | * Flag for indicating whether this association includes support for |
| 859 | * RRM (Radio Resource Measurements) |
| 860 | */ |
| 861 | int rrm_used; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 862 | }; |
| 863 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 864 | enum hide_ssid { |
| 865 | NO_SSID_HIDING, |
| 866 | HIDDEN_SSID_ZERO_LEN, |
| 867 | HIDDEN_SSID_ZERO_CONTENTS |
| 868 | }; |
| 869 | |
Dmitry Shmidt | b58836e | 2014-04-29 14:35:56 -0700 | [diff] [blame] | 870 | struct wowlan_triggers { |
| 871 | u8 any; |
| 872 | u8 disconnect; |
| 873 | u8 magic_pkt; |
| 874 | u8 gtk_rekey_failure; |
| 875 | u8 eap_identity_req; |
| 876 | u8 four_way_handshake; |
| 877 | u8 rfkill_release; |
| 878 | }; |
| 879 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 880 | struct wpa_driver_ap_params { |
| 881 | /** |
| 882 | * head - Beacon head from IEEE 802.11 header to IEs before TIM IE |
| 883 | */ |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 884 | u8 *head; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 885 | |
| 886 | /** |
| 887 | * head_len - Length of the head buffer in octets |
| 888 | */ |
| 889 | size_t head_len; |
| 890 | |
| 891 | /** |
| 892 | * tail - Beacon tail following TIM IE |
| 893 | */ |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 894 | u8 *tail; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 895 | |
| 896 | /** |
| 897 | * tail_len - Length of the tail buffer in octets |
| 898 | */ |
| 899 | size_t tail_len; |
| 900 | |
| 901 | /** |
| 902 | * dtim_period - DTIM period |
| 903 | */ |
| 904 | int dtim_period; |
| 905 | |
| 906 | /** |
| 907 | * beacon_int - Beacon interval |
| 908 | */ |
| 909 | int beacon_int; |
| 910 | |
| 911 | /** |
| 912 | * basic_rates: -1 terminated array of basic rates in 100 kbps |
| 913 | * |
| 914 | * This parameter can be used to set a specific basic rate set for the |
| 915 | * BSS. If %NULL, default basic rate set is used. |
| 916 | */ |
| 917 | int *basic_rates; |
| 918 | |
| 919 | /** |
| 920 | * proberesp - Probe Response template |
| 921 | * |
| 922 | * This is used by drivers that reply to Probe Requests internally in |
| 923 | * AP mode and require the full Probe Response template. |
| 924 | */ |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 925 | u8 *proberesp; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 926 | |
| 927 | /** |
| 928 | * proberesp_len - Length of the proberesp buffer in octets |
| 929 | */ |
| 930 | size_t proberesp_len; |
| 931 | |
| 932 | /** |
| 933 | * ssid - The SSID to use in Beacon/Probe Response frames |
| 934 | */ |
| 935 | const u8 *ssid; |
| 936 | |
| 937 | /** |
| 938 | * ssid_len - Length of the SSID (1..32) |
| 939 | */ |
| 940 | size_t ssid_len; |
| 941 | |
| 942 | /** |
| 943 | * hide_ssid - Whether to hide the SSID |
| 944 | */ |
| 945 | enum hide_ssid hide_ssid; |
| 946 | |
| 947 | /** |
| 948 | * pairwise_ciphers - WPA_CIPHER_* bitfield |
| 949 | */ |
| 950 | unsigned int pairwise_ciphers; |
| 951 | |
| 952 | /** |
| 953 | * group_cipher - WPA_CIPHER_* |
| 954 | */ |
| 955 | unsigned int group_cipher; |
| 956 | |
| 957 | /** |
| 958 | * key_mgmt_suites - WPA_KEY_MGMT_* bitfield |
| 959 | */ |
| 960 | unsigned int key_mgmt_suites; |
| 961 | |
| 962 | /** |
| 963 | * auth_algs - WPA_AUTH_ALG_* bitfield |
| 964 | */ |
| 965 | unsigned int auth_algs; |
| 966 | |
| 967 | /** |
| 968 | * wpa_version - WPA_PROTO_* bitfield |
| 969 | */ |
| 970 | unsigned int wpa_version; |
| 971 | |
| 972 | /** |
| 973 | * privacy - Whether privacy is used in the BSS |
| 974 | */ |
| 975 | int privacy; |
| 976 | |
| 977 | /** |
| 978 | * beacon_ies - WPS/P2P IE(s) for Beacon frames |
| 979 | * |
| 980 | * This is used to add IEs like WPS IE and P2P IE by drivers that do |
| 981 | * not use the full Beacon template. |
| 982 | */ |
| 983 | const struct wpabuf *beacon_ies; |
| 984 | |
| 985 | /** |
| 986 | * proberesp_ies - P2P/WPS IE(s) for Probe Response frames |
| 987 | * |
| 988 | * This is used to add IEs like WPS IE and P2P IE by drivers that |
| 989 | * reply to Probe Request frames internally. |
| 990 | */ |
| 991 | const struct wpabuf *proberesp_ies; |
| 992 | |
| 993 | /** |
| 994 | * assocresp_ies - WPS IE(s) for (Re)Association Response frames |
| 995 | * |
| 996 | * This is used to add IEs like WPS IE by drivers that reply to |
| 997 | * (Re)Association Request frames internally. |
| 998 | */ |
| 999 | const struct wpabuf *assocresp_ies; |
| 1000 | |
| 1001 | /** |
| 1002 | * isolate - Whether to isolate frames between associated stations |
| 1003 | * |
| 1004 | * If this is non-zero, the AP is requested to disable forwarding of |
| 1005 | * frames between associated stations. |
| 1006 | */ |
| 1007 | int isolate; |
| 1008 | |
| 1009 | /** |
| 1010 | * cts_protect - Whether CTS protection is enabled |
| 1011 | */ |
| 1012 | int cts_protect; |
| 1013 | |
| 1014 | /** |
| 1015 | * preamble - Whether short preamble is enabled |
| 1016 | */ |
| 1017 | int preamble; |
| 1018 | |
| 1019 | /** |
| 1020 | * short_slot_time - Whether short slot time is enabled |
| 1021 | * |
| 1022 | * 0 = short slot time disable, 1 = short slot time enabled, -1 = do |
| 1023 | * not set (e.g., when 802.11g mode is not in use) |
| 1024 | */ |
| 1025 | int short_slot_time; |
| 1026 | |
| 1027 | /** |
| 1028 | * ht_opmode - HT operation mode or -1 if HT not in use |
| 1029 | */ |
| 1030 | int ht_opmode; |
| 1031 | |
| 1032 | /** |
| 1033 | * interworking - Whether Interworking is enabled |
| 1034 | */ |
| 1035 | int interworking; |
| 1036 | |
| 1037 | /** |
| 1038 | * hessid - Homogeneous ESS identifier or %NULL if not set |
| 1039 | */ |
| 1040 | const u8 *hessid; |
| 1041 | |
| 1042 | /** |
| 1043 | * access_network_type - Access Network Type (0..15) |
| 1044 | * |
| 1045 | * This is used for filtering Probe Request frames when Interworking is |
| 1046 | * enabled. |
| 1047 | */ |
| 1048 | u8 access_network_type; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1049 | |
| 1050 | /** |
| 1051 | * ap_max_inactivity - Timeout in seconds to detect STA's inactivity |
| 1052 | * |
| 1053 | * This is used by driver which advertises this capability. |
| 1054 | */ |
| 1055 | int ap_max_inactivity; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1056 | |
| 1057 | /** |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1058 | * ctwindow - Client Traffic Window (in TUs) |
| 1059 | */ |
| 1060 | u8 p2p_go_ctwindow; |
| 1061 | |
| 1062 | /** |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1063 | * smps_mode - SMPS mode |
| 1064 | * |
| 1065 | * SMPS mode to be used by the AP, specified as the relevant bits of |
| 1066 | * ht_capab (i.e. HT_CAP_INFO_SMPS_*). |
| 1067 | */ |
| 1068 | unsigned int smps_mode; |
| 1069 | |
| 1070 | /** |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1071 | * disable_dgaf - Whether group-addressed frames are disabled |
| 1072 | */ |
| 1073 | int disable_dgaf; |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1074 | |
| 1075 | /** |
| 1076 | * osen - Whether OSEN security is enabled |
| 1077 | */ |
| 1078 | int osen; |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 1079 | |
| 1080 | /** |
| 1081 | * freq - Channel parameters for dynamic bandwidth changes |
| 1082 | */ |
| 1083 | struct hostapd_freq_params *freq; |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1084 | |
| 1085 | /** |
| 1086 | * reenable - Whether this is to re-enable beaconing |
| 1087 | */ |
| 1088 | int reenable; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1089 | }; |
| 1090 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1091 | struct wpa_driver_mesh_bss_params { |
| 1092 | #define WPA_DRIVER_MESH_CONF_FLAG_AUTO_PLINKS 0x00000001 |
| 1093 | /* |
| 1094 | * TODO: Other mesh configuration parameters would go here. |
| 1095 | * See NL80211_MESHCONF_* for all the mesh config parameters. |
| 1096 | */ |
| 1097 | unsigned int flags; |
Dmitry Shmidt | 2f74e36 | 2015-01-21 13:19:05 -0800 | [diff] [blame] | 1098 | int peer_link_timeout; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1099 | }; |
| 1100 | |
| 1101 | struct wpa_driver_mesh_join_params { |
| 1102 | const u8 *meshid; |
| 1103 | int meshid_len; |
| 1104 | const int *basic_rates; |
| 1105 | const u8 *ies; |
| 1106 | int ie_len; |
Dmitry Shmidt | ff787d5 | 2015-01-12 13:01:47 -0800 | [diff] [blame] | 1107 | struct hostapd_freq_params freq; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1108 | int beacon_int; |
| 1109 | int max_peer_links; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1110 | struct wpa_driver_mesh_bss_params conf; |
| 1111 | #define WPA_DRIVER_MESH_FLAG_USER_MPM 0x00000001 |
| 1112 | #define WPA_DRIVER_MESH_FLAG_DRIVER_MPM 0x00000002 |
| 1113 | #define WPA_DRIVER_MESH_FLAG_SAE_AUTH 0x00000004 |
| 1114 | #define WPA_DRIVER_MESH_FLAG_AMPE 0x00000008 |
| 1115 | unsigned int flags; |
| 1116 | }; |
| 1117 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1118 | /** |
| 1119 | * struct wpa_driver_capa - Driver capability information |
| 1120 | */ |
| 1121 | struct wpa_driver_capa { |
| 1122 | #define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001 |
| 1123 | #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002 |
| 1124 | #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004 |
| 1125 | #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008 |
| 1126 | #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010 |
| 1127 | #define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020 |
| 1128 | #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040 |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1129 | #define WPA_DRIVER_CAPA_KEY_MGMT_WAPI_PSK 0x00000080 |
Dmitry Shmidt | 807291d | 2015-01-27 13:40:23 -0800 | [diff] [blame] | 1130 | #define WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B 0x00000100 |
| 1131 | #define WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B_192 0x00000200 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1132 | /** Bitfield of supported key management suites */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1133 | unsigned int key_mgmt; |
| 1134 | |
| 1135 | #define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001 |
| 1136 | #define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002 |
| 1137 | #define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004 |
| 1138 | #define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008 |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1139 | #define WPA_DRIVER_CAPA_ENC_WEP128 0x00000010 |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1140 | #define WPA_DRIVER_CAPA_ENC_GCMP 0x00000020 |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1141 | #define WPA_DRIVER_CAPA_ENC_GCMP_256 0x00000040 |
| 1142 | #define WPA_DRIVER_CAPA_ENC_CCMP_256 0x00000080 |
| 1143 | #define WPA_DRIVER_CAPA_ENC_BIP 0x00000100 |
| 1144 | #define WPA_DRIVER_CAPA_ENC_BIP_GMAC_128 0x00000200 |
| 1145 | #define WPA_DRIVER_CAPA_ENC_BIP_GMAC_256 0x00000400 |
| 1146 | #define WPA_DRIVER_CAPA_ENC_BIP_CMAC_256 0x00000800 |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1147 | #define WPA_DRIVER_CAPA_ENC_GTK_NOT_USED 0x00001000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1148 | /** Bitfield of supported cipher suites */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1149 | unsigned int enc; |
| 1150 | |
| 1151 | #define WPA_DRIVER_AUTH_OPEN 0x00000001 |
| 1152 | #define WPA_DRIVER_AUTH_SHARED 0x00000002 |
| 1153 | #define WPA_DRIVER_AUTH_LEAP 0x00000004 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1154 | /** Bitfield of supported IEEE 802.11 authentication algorithms */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1155 | unsigned int auth; |
| 1156 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1157 | /** Driver generated WPA/RSN IE */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1158 | #define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1159 | /** Driver needs static WEP key setup after association command */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1160 | #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1161 | /** Driver takes care of all DFS operations */ |
Dmitry Shmidt | d11f019 | 2014-03-24 12:09:47 -0700 | [diff] [blame] | 1162 | #define WPA_DRIVER_FLAGS_DFS_OFFLOAD 0x00000004 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1163 | /** Driver takes care of RSN 4-way handshake internally; PMK is configured with |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1164 | * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */ |
| 1165 | #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1166 | /** Driver is for a wired Ethernet interface */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1167 | #define WPA_DRIVER_FLAGS_WIRED 0x00000010 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1168 | /** Driver provides separate commands for authentication and association (SME in |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1169 | * wpa_supplicant). */ |
| 1170 | #define WPA_DRIVER_FLAGS_SME 0x00000020 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1171 | /** Driver supports AP mode */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1172 | #define WPA_DRIVER_FLAGS_AP 0x00000040 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1173 | /** Driver needs static WEP key setup after association has been completed */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1174 | #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1175 | /** Driver supports dynamic HT 20/40 MHz channel changes during BSS lifetime */ |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 1176 | #define WPA_DRIVER_FLAGS_HT_2040_COEX 0x00000100 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1177 | /** Driver supports concurrent P2P operations */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1178 | #define WPA_DRIVER_FLAGS_P2P_CONCURRENT 0x00000200 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1179 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1180 | * Driver uses the initial interface as a dedicated management interface, i.e., |
| 1181 | * it cannot be used for P2P group operations or non-P2P purposes. |
| 1182 | */ |
| 1183 | #define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE 0x00000400 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1184 | /** This interface is P2P capable (P2P GO or P2P Client) */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1185 | #define WPA_DRIVER_FLAGS_P2P_CAPABLE 0x00000800 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1186 | /** Driver supports station and key removal when stopping an AP */ |
Dmitry Shmidt | a38abf9 | 2014-03-06 13:38:44 -0800 | [diff] [blame] | 1187 | #define WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT 0x00001000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1188 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1189 | * Driver uses the initial interface for P2P management interface and non-P2P |
| 1190 | * purposes (e.g., connect to infra AP), but this interface cannot be used for |
| 1191 | * P2P group operations. |
| 1192 | */ |
| 1193 | #define WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P 0x00002000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1194 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1195 | * Driver is known to use sane error codes, i.e., when it indicates that |
| 1196 | * something (e.g., association) fails, there was indeed a failure and the |
| 1197 | * operation does not end up getting completed successfully later. |
| 1198 | */ |
| 1199 | #define WPA_DRIVER_FLAGS_SANE_ERROR_CODES 0x00004000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1200 | /** Driver supports off-channel TX */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1201 | #define WPA_DRIVER_FLAGS_OFFCHANNEL_TX 0x00008000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1202 | /** Driver indicates TX status events for EAPOL Data frames */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1203 | #define WPA_DRIVER_FLAGS_EAPOL_TX_STATUS 0x00010000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1204 | /** Driver indicates TX status events for Deauth/Disassoc frames */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1205 | #define WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS 0x00020000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1206 | /** Driver supports roaming (BSS selection) in firmware */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1207 | #define WPA_DRIVER_FLAGS_BSS_SELECTION 0x00040000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1208 | /** Driver supports operating as a TDLS peer */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1209 | #define WPA_DRIVER_FLAGS_TDLS_SUPPORT 0x00080000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1210 | /** Driver requires external TDLS setup/teardown/discovery */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1211 | #define WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP 0x00100000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1212 | /** Driver indicates support for Probe Response offloading in AP mode */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1213 | #define WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD 0x00200000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1214 | /** Driver supports U-APSD in AP mode */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1215 | #define WPA_DRIVER_FLAGS_AP_UAPSD 0x00400000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1216 | /** Driver supports inactivity timer in AP mode */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1217 | #define WPA_DRIVER_FLAGS_INACTIVITY_TIMER 0x00800000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1218 | /** Driver expects user space implementation of MLME in AP mode */ |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1219 | #define WPA_DRIVER_FLAGS_AP_MLME 0x01000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1220 | /** Driver supports SAE with user space SME */ |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1221 | #define WPA_DRIVER_FLAGS_SAE 0x02000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1222 | /** Driver makes use of OBSS scan mechanism in wpa_supplicant */ |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1223 | #define WPA_DRIVER_FLAGS_OBSS_SCAN 0x04000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1224 | /** Driver supports IBSS (Ad-hoc) mode */ |
Dmitry Shmidt | 700a137 | 2013-03-15 14:14:44 -0700 | [diff] [blame] | 1225 | #define WPA_DRIVER_FLAGS_IBSS 0x08000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1226 | /** Driver supports radar detection */ |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 1227 | #define WPA_DRIVER_FLAGS_RADAR 0x10000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1228 | /** Driver supports a dedicated interface for P2P Device */ |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 1229 | #define WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE 0x20000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1230 | /** Driver supports QoS Mapping */ |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1231 | #define WPA_DRIVER_FLAGS_QOS_MAPPING 0x40000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1232 | /** Driver supports CSA in AP mode */ |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1233 | #define WPA_DRIVER_FLAGS_AP_CSA 0x80000000 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1234 | /** Driver supports mesh */ |
| 1235 | #define WPA_DRIVER_FLAGS_MESH 0x0000000100000000ULL |
| 1236 | /** Driver support ACS offload */ |
| 1237 | #define WPA_DRIVER_FLAGS_ACS_OFFLOAD 0x0000000200000000ULL |
| 1238 | /** Driver supports key management offload */ |
| 1239 | #define WPA_DRIVER_FLAGS_KEY_MGMT_OFFLOAD 0x0000000400000000ULL |
| 1240 | /** Driver supports TDLS channel switching */ |
| 1241 | #define WPA_DRIVER_FLAGS_TDLS_CHANNEL_SWITCH 0x0000000800000000ULL |
Dmitry Shmidt | ff787d5 | 2015-01-12 13:01:47 -0800 | [diff] [blame] | 1242 | /** Driver supports IBSS with HT datarates */ |
| 1243 | #define WPA_DRIVER_FLAGS_HT_IBSS 0x0000001000000000ULL |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1244 | /** Driver supports IBSS with VHT datarates */ |
| 1245 | #define WPA_DRIVER_FLAGS_VHT_IBSS 0x0000002000000000ULL |
Dmitry Shmidt | b1e5210 | 2015-05-29 12:36:29 -0700 | [diff] [blame] | 1246 | /** Driver supports automatic band selection */ |
| 1247 | #define WPA_DRIVER_FLAGS_SUPPORT_HW_MODE_ANY 0x0000004000000000ULL |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1248 | /** Driver supports simultaneous off-channel operations */ |
| 1249 | #define WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS 0x0000008000000000ULL |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1250 | u64 flags; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1251 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1252 | #define WPA_DRIVER_SMPS_MODE_STATIC 0x00000001 |
| 1253 | #define WPA_DRIVER_SMPS_MODE_DYNAMIC 0x00000002 |
| 1254 | unsigned int smps_modes; |
| 1255 | |
| 1256 | unsigned int wmm_ac_supported:1; |
| 1257 | |
| 1258 | unsigned int mac_addr_rand_scan_supported:1; |
| 1259 | unsigned int mac_addr_rand_sched_scan_supported:1; |
| 1260 | |
| 1261 | /** Maximum number of supported active probe SSIDs */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1262 | int max_scan_ssids; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1263 | |
| 1264 | /** Maximum number of supported active probe SSIDs for sched_scan */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1265 | int max_sched_scan_ssids; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1266 | |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 1267 | /** Maximum number of supported scan plans for scheduled scan */ |
| 1268 | unsigned int max_sched_scan_plans; |
| 1269 | |
| 1270 | /** Maximum interval in a scan plan. In seconds */ |
| 1271 | u32 max_sched_scan_plan_interval; |
| 1272 | |
| 1273 | /** Maximum number of iterations in a single scan plan */ |
| 1274 | u32 max_sched_scan_plan_iterations; |
| 1275 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1276 | /** Whether sched_scan (offloaded scanning) is supported */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1277 | int sched_scan_supported; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1278 | |
| 1279 | /** Maximum number of supported match sets for sched_scan */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1280 | int max_match_sets; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1281 | |
| 1282 | /** |
| 1283 | * max_remain_on_chan - Maximum remain-on-channel duration in msec |
| 1284 | */ |
| 1285 | unsigned int max_remain_on_chan; |
| 1286 | |
| 1287 | /** |
| 1288 | * max_stations - Maximum number of associated stations the driver |
| 1289 | * supports in AP mode |
| 1290 | */ |
| 1291 | unsigned int max_stations; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1292 | |
| 1293 | /** |
| 1294 | * probe_resp_offloads - Bitmap of supported protocols by the driver |
| 1295 | * for Probe Response offloading. |
| 1296 | */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1297 | /** Driver Probe Response offloading support for WPS ver. 1 */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1298 | #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS 0x00000001 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1299 | /** Driver Probe Response offloading support for WPS ver. 2 */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1300 | #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2 0x00000002 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1301 | /** Driver Probe Response offloading support for P2P */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1302 | #define WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P 0x00000004 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1303 | /** Driver Probe Response offloading support for IEEE 802.11u (Interworking) */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1304 | #define WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING 0x00000008 |
| 1305 | unsigned int probe_resp_offloads; |
Dmitry Shmidt | 444d567 | 2013-04-01 13:08:44 -0700 | [diff] [blame] | 1306 | |
Dmitry Shmidt | 8bae413 | 2013-06-06 11:25:10 -0700 | [diff] [blame] | 1307 | unsigned int max_acl_mac_addrs; |
| 1308 | |
Dmitry Shmidt | 444d567 | 2013-04-01 13:08:44 -0700 | [diff] [blame] | 1309 | /** |
Dmitry Shmidt | c2ebb4b | 2013-07-24 12:57:51 -0700 | [diff] [blame] | 1310 | * Number of supported concurrent channels |
| 1311 | */ |
| 1312 | unsigned int num_multichan_concurrent; |
| 1313 | |
| 1314 | /** |
Dmitry Shmidt | 444d567 | 2013-04-01 13:08:44 -0700 | [diff] [blame] | 1315 | * extended_capa - extended capabilities in driver/device |
| 1316 | * |
| 1317 | * Must be allocated and freed by driver and the pointers must be |
| 1318 | * valid for the lifetime of the driver, i.e., freed in deinit() |
| 1319 | */ |
| 1320 | const u8 *extended_capa, *extended_capa_mask; |
| 1321 | unsigned int extended_capa_len; |
Dmitry Shmidt | b58836e | 2014-04-29 14:35:56 -0700 | [diff] [blame] | 1322 | |
| 1323 | struct wowlan_triggers wowlan_triggers; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1324 | |
| 1325 | /** Driver adds the DS Params Set IE in Probe Request frames */ |
| 1326 | #define WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES 0x00000001 |
| 1327 | /** Driver adds the WFA TPC IE in Probe Request frames */ |
| 1328 | #define WPA_DRIVER_FLAGS_WFA_TPC_IE_IN_PROBES 0x00000002 |
| 1329 | /** Driver handles quiet period requests */ |
| 1330 | #define WPA_DRIVER_FLAGS_QUIET 0x00000004 |
| 1331 | /** |
| 1332 | * Driver is capable of inserting the current TX power value into the body of |
| 1333 | * transmitted frames. |
| 1334 | * Background: Some Action frames include a TPC Report IE. This IE contains a |
| 1335 | * TX power field, which has to be updated by lower layers. One such Action |
| 1336 | * frame is Link Measurement Report (part of RRM). Another is TPC Report (part |
| 1337 | * of spectrum management). Note that this insertion takes place at a fixed |
| 1338 | * offset, namely the 6th byte in the Action frame body. |
| 1339 | */ |
| 1340 | #define WPA_DRIVER_FLAGS_TX_POWER_INSERTION 0x00000008 |
| 1341 | u32 rrm_flags; |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1342 | |
| 1343 | /* Driver concurrency capabilities */ |
| 1344 | unsigned int conc_capab; |
| 1345 | /* Maximum number of concurrent channels on 2.4 GHz */ |
| 1346 | unsigned int max_conc_chan_2_4; |
| 1347 | /* Maximum number of concurrent channels on 5 GHz */ |
| 1348 | unsigned int max_conc_chan_5_0; |
| 1349 | |
| 1350 | /* Maximum number of supported CSA counters */ |
| 1351 | u16 max_csa_counters; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1352 | }; |
| 1353 | |
| 1354 | |
| 1355 | struct hostapd_data; |
| 1356 | |
| 1357 | struct hostap_sta_driver_data { |
| 1358 | unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes; |
| 1359 | unsigned long current_tx_rate; |
| 1360 | unsigned long inactive_msec; |
| 1361 | unsigned long flags; |
| 1362 | unsigned long num_ps_buf_frames; |
| 1363 | unsigned long tx_retry_failed; |
| 1364 | unsigned long tx_retry_count; |
| 1365 | int last_rssi; |
| 1366 | int last_ack_rssi; |
| 1367 | }; |
| 1368 | |
| 1369 | struct hostapd_sta_add_params { |
| 1370 | const u8 *addr; |
| 1371 | u16 aid; |
| 1372 | u16 capability; |
| 1373 | const u8 *supp_rates; |
| 1374 | size_t supp_rates_len; |
| 1375 | u16 listen_interval; |
| 1376 | const struct ieee80211_ht_capabilities *ht_capabilities; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1377 | const struct ieee80211_vht_capabilities *vht_capabilities; |
Dmitry Shmidt | bd14a57 | 2014-02-18 10:33:49 -0800 | [diff] [blame] | 1378 | int vht_opmode_enabled; |
| 1379 | u8 vht_opmode; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1380 | u32 flags; /* bitmask of WPA_STA_* flags */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1381 | u32 flags_mask; /* unset bits in flags */ |
| 1382 | #ifdef CONFIG_MESH |
| 1383 | enum mesh_plink_state plink_state; |
| 1384 | #endif /* CONFIG_MESH */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1385 | int set; /* Set STA parameters instead of add */ |
| 1386 | u8 qosinfo; |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 1387 | const u8 *ext_capab; |
| 1388 | size_t ext_capab_len; |
Dmitry Shmidt | 344abd3 | 2014-01-14 13:17:00 -0800 | [diff] [blame] | 1389 | const u8 *supp_channels; |
| 1390 | size_t supp_channels_len; |
| 1391 | const u8 *supp_oper_classes; |
| 1392 | size_t supp_oper_classes_len; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1393 | }; |
| 1394 | |
Dmitry Shmidt | 8bae413 | 2013-06-06 11:25:10 -0700 | [diff] [blame] | 1395 | struct mac_address { |
| 1396 | u8 addr[ETH_ALEN]; |
| 1397 | }; |
| 1398 | |
| 1399 | struct hostapd_acl_params { |
| 1400 | u8 acl_policy; |
| 1401 | unsigned int num_mac_acl; |
| 1402 | struct mac_address mac_acl[0]; |
| 1403 | }; |
| 1404 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1405 | enum wpa_driver_if_type { |
| 1406 | /** |
| 1407 | * WPA_IF_STATION - Station mode interface |
| 1408 | */ |
| 1409 | WPA_IF_STATION, |
| 1410 | |
| 1411 | /** |
| 1412 | * WPA_IF_AP_VLAN - AP mode VLAN interface |
| 1413 | * |
| 1414 | * This interface shares its address and Beacon frame with the main |
| 1415 | * BSS. |
| 1416 | */ |
| 1417 | WPA_IF_AP_VLAN, |
| 1418 | |
| 1419 | /** |
| 1420 | * WPA_IF_AP_BSS - AP mode BSS interface |
| 1421 | * |
| 1422 | * This interface has its own address and Beacon frame. |
| 1423 | */ |
| 1424 | WPA_IF_AP_BSS, |
| 1425 | |
| 1426 | /** |
| 1427 | * WPA_IF_P2P_GO - P2P Group Owner |
| 1428 | */ |
| 1429 | WPA_IF_P2P_GO, |
| 1430 | |
| 1431 | /** |
| 1432 | * WPA_IF_P2P_CLIENT - P2P Client |
| 1433 | */ |
| 1434 | WPA_IF_P2P_CLIENT, |
| 1435 | |
| 1436 | /** |
| 1437 | * WPA_IF_P2P_GROUP - P2P Group interface (will become either |
| 1438 | * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known) |
| 1439 | */ |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 1440 | WPA_IF_P2P_GROUP, |
| 1441 | |
| 1442 | /** |
| 1443 | * WPA_IF_P2P_DEVICE - P2P Device interface is used to indentify the |
| 1444 | * abstracted P2P Device function in the driver |
| 1445 | */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1446 | WPA_IF_P2P_DEVICE, |
| 1447 | |
| 1448 | /* |
| 1449 | * WPA_IF_MESH - Mesh interface |
| 1450 | */ |
| 1451 | WPA_IF_MESH, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1452 | |
| 1453 | /* |
| 1454 | * WPA_IF_TDLS - TDLS offchannel interface (used for pref freq only) |
| 1455 | */ |
| 1456 | WPA_IF_TDLS, |
| 1457 | |
| 1458 | /* |
| 1459 | * WPA_IF_IBSS - IBSS interface (used for pref freq only) |
| 1460 | */ |
| 1461 | WPA_IF_IBSS, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1462 | }; |
| 1463 | |
| 1464 | struct wpa_init_params { |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1465 | void *global_priv; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1466 | const u8 *bssid; |
| 1467 | const char *ifname; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1468 | const char *driver_params; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1469 | int use_pae_group_addr; |
| 1470 | char **bridge; |
| 1471 | size_t num_bridge; |
| 1472 | |
| 1473 | u8 *own_addr; /* buffer for writing own MAC address */ |
| 1474 | }; |
| 1475 | |
| 1476 | |
| 1477 | struct wpa_bss_params { |
| 1478 | /** Interface name (for multi-SSID/VLAN support) */ |
| 1479 | const char *ifname; |
| 1480 | /** Whether IEEE 802.1X or WPA/WPA2 is enabled */ |
| 1481 | int enabled; |
| 1482 | |
| 1483 | int wpa; |
| 1484 | int ieee802_1x; |
| 1485 | int wpa_group; |
| 1486 | int wpa_pairwise; |
| 1487 | int wpa_key_mgmt; |
| 1488 | int rsn_preauth; |
| 1489 | enum mfp_options ieee80211w; |
| 1490 | }; |
| 1491 | |
| 1492 | #define WPA_STA_AUTHORIZED BIT(0) |
| 1493 | #define WPA_STA_WMM BIT(1) |
| 1494 | #define WPA_STA_SHORT_PREAMBLE BIT(2) |
| 1495 | #define WPA_STA_MFP BIT(3) |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1496 | #define WPA_STA_TDLS_PEER BIT(4) |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1497 | #define WPA_STA_AUTHENTICATED BIT(5) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1498 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1499 | enum tdls_oper { |
| 1500 | TDLS_DISCOVERY_REQ, |
| 1501 | TDLS_SETUP, |
| 1502 | TDLS_TEARDOWN, |
| 1503 | TDLS_ENABLE_LINK, |
| 1504 | TDLS_DISABLE_LINK, |
| 1505 | TDLS_ENABLE, |
| 1506 | TDLS_DISABLE |
| 1507 | }; |
| 1508 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1509 | enum wnm_oper { |
| 1510 | WNM_SLEEP_ENTER_CONFIRM, |
| 1511 | WNM_SLEEP_ENTER_FAIL, |
| 1512 | WNM_SLEEP_EXIT_CONFIRM, |
| 1513 | WNM_SLEEP_EXIT_FAIL, |
| 1514 | WNM_SLEEP_TFS_REQ_IE_ADD, /* STA requests driver to add TFS req IE */ |
| 1515 | WNM_SLEEP_TFS_REQ_IE_NONE, /* STA requests empty TFS req IE */ |
| 1516 | WNM_SLEEP_TFS_REQ_IE_SET, /* AP requests driver to set TFS req IE for |
| 1517 | * a STA */ |
| 1518 | WNM_SLEEP_TFS_RESP_IE_ADD, /* AP requests driver to add TFS resp IE |
| 1519 | * for a STA */ |
| 1520 | WNM_SLEEP_TFS_RESP_IE_NONE, /* AP requests empty TFS resp IE */ |
| 1521 | WNM_SLEEP_TFS_RESP_IE_SET, /* AP requests driver to set TFS resp IE |
| 1522 | * for a STA */ |
| 1523 | WNM_SLEEP_TFS_IE_DEL /* AP delete the TFS IE */ |
| 1524 | }; |
| 1525 | |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 1526 | /* enum chan_width - Channel width definitions */ |
| 1527 | enum chan_width { |
| 1528 | CHAN_WIDTH_20_NOHT, |
| 1529 | CHAN_WIDTH_20, |
| 1530 | CHAN_WIDTH_40, |
| 1531 | CHAN_WIDTH_80, |
| 1532 | CHAN_WIDTH_80P80, |
| 1533 | CHAN_WIDTH_160, |
| 1534 | CHAN_WIDTH_UNKNOWN |
| 1535 | }; |
| 1536 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1537 | /** |
| 1538 | * struct wpa_signal_info - Information about channel signal quality |
| 1539 | */ |
| 1540 | struct wpa_signal_info { |
| 1541 | u32 frequency; |
| 1542 | int above_threshold; |
| 1543 | int current_signal; |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 1544 | int avg_signal; |
Dmitry Shmidt | f73259c | 2015-03-17 11:00:54 -0700 | [diff] [blame] | 1545 | int avg_beacon_signal; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1546 | int current_noise; |
| 1547 | int current_txrate; |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 1548 | enum chan_width chanwidth; |
| 1549 | int center_frq1; |
| 1550 | int center_frq2; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1551 | }; |
| 1552 | |
| 1553 | /** |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 1554 | * struct beacon_data - Beacon data |
| 1555 | * @head: Head portion of Beacon frame (before TIM IE) |
| 1556 | * @tail: Tail portion of Beacon frame (after TIM IE) |
| 1557 | * @beacon_ies: Extra information element(s) to add into Beacon frames or %NULL |
| 1558 | * @proberesp_ies: Extra information element(s) to add into Probe Response |
| 1559 | * frames or %NULL |
| 1560 | * @assocresp_ies: Extra information element(s) to add into (Re)Association |
| 1561 | * Response frames or %NULL |
| 1562 | * @probe_resp: Probe Response frame template |
| 1563 | * @head_len: Length of @head |
| 1564 | * @tail_len: Length of @tail |
| 1565 | * @beacon_ies_len: Length of beacon_ies in octets |
| 1566 | * @proberesp_ies_len: Length of proberesp_ies in octets |
| 1567 | * @proberesp_ies_len: Length of proberesp_ies in octets |
| 1568 | * @probe_resp_len: Length of probe response template (@probe_resp) |
| 1569 | */ |
| 1570 | struct beacon_data { |
| 1571 | u8 *head, *tail; |
| 1572 | u8 *beacon_ies; |
| 1573 | u8 *proberesp_ies; |
| 1574 | u8 *assocresp_ies; |
| 1575 | u8 *probe_resp; |
| 1576 | |
| 1577 | size_t head_len, tail_len; |
| 1578 | size_t beacon_ies_len; |
| 1579 | size_t proberesp_ies_len; |
| 1580 | size_t assocresp_ies_len; |
| 1581 | size_t probe_resp_len; |
| 1582 | }; |
| 1583 | |
| 1584 | /** |
| 1585 | * struct csa_settings - Settings for channel switch command |
| 1586 | * @cs_count: Count in Beacon frames (TBTT) to perform the switch |
| 1587 | * @block_tx: 1 - block transmission for CSA period |
| 1588 | * @freq_params: Next channel frequency parameter |
| 1589 | * @beacon_csa: Beacon/probe resp/asooc resp info for CSA period |
| 1590 | * @beacon_after: Next beacon/probe resp/asooc resp info |
| 1591 | * @counter_offset_beacon: Offset to the count field in beacon's tail |
| 1592 | * @counter_offset_presp: Offset to the count field in probe resp. |
| 1593 | */ |
| 1594 | struct csa_settings { |
| 1595 | u8 cs_count; |
| 1596 | u8 block_tx; |
| 1597 | |
| 1598 | struct hostapd_freq_params freq_params; |
| 1599 | struct beacon_data beacon_csa; |
| 1600 | struct beacon_data beacon_after; |
| 1601 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1602 | u16 counter_offset_beacon[2]; |
| 1603 | u16 counter_offset_presp[2]; |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 1604 | }; |
| 1605 | |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 1606 | /* TDLS peer capabilities for send_tdls_mgmt() */ |
| 1607 | enum tdls_peer_capability { |
| 1608 | TDLS_PEER_HT = BIT(0), |
| 1609 | TDLS_PEER_VHT = BIT(1), |
| 1610 | TDLS_PEER_WMM = BIT(2), |
| 1611 | }; |
| 1612 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1613 | /* valid info in the wmm_params struct */ |
| 1614 | enum wmm_params_valid_info { |
| 1615 | WMM_PARAMS_UAPSD_QUEUES_INFO = BIT(0), |
| 1616 | }; |
| 1617 | |
| 1618 | /** |
| 1619 | * struct wmm_params - WMM parameterss configured for this association |
| 1620 | * @info_bitmap: Bitmap of valid wmm_params info; indicates what fields |
| 1621 | * of the struct contain valid information. |
| 1622 | * @uapsd_queues: Bitmap of ACs configured for uapsd (valid only if |
| 1623 | * %WMM_PARAMS_UAPSD_QUEUES_INFO is set) |
| 1624 | */ |
| 1625 | struct wmm_params { |
| 1626 | u8 info_bitmap; |
| 1627 | u8 uapsd_queues; |
| 1628 | }; |
| 1629 | |
Dmitry Shmidt | 5a1480c | 2014-05-12 09:46:02 -0700 | [diff] [blame] | 1630 | #ifdef CONFIG_MACSEC |
| 1631 | struct macsec_init_params { |
| 1632 | Boolean always_include_sci; |
| 1633 | Boolean use_es; |
| 1634 | Boolean use_scb; |
| 1635 | }; |
| 1636 | #endif /* CONFIG_MACSEC */ |
| 1637 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1638 | enum drv_br_port_attr { |
| 1639 | DRV_BR_PORT_ATTR_PROXYARP, |
| 1640 | DRV_BR_PORT_ATTR_HAIRPIN_MODE, |
| 1641 | }; |
| 1642 | |
| 1643 | enum drv_br_net_param { |
| 1644 | DRV_BR_NET_PARAM_GARP_ACCEPT, |
Dmitry Shmidt | 8347444 | 2015-04-15 13:47:09 -0700 | [diff] [blame] | 1645 | DRV_BR_MULTICAST_SNOOPING, |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1646 | }; |
| 1647 | |
| 1648 | struct drv_acs_params { |
| 1649 | /* Selected mode (HOSTAPD_MODE_*) */ |
| 1650 | enum hostapd_hw_mode hw_mode; |
| 1651 | |
| 1652 | /* Indicates whether HT is enabled */ |
| 1653 | int ht_enabled; |
| 1654 | |
| 1655 | /* Indicates whether HT40 is enabled */ |
| 1656 | int ht40_enabled; |
Dmitry Shmidt | dda10c2 | 2015-03-24 16:05:01 -0700 | [diff] [blame] | 1657 | |
| 1658 | /* Indicates whether VHT is enabled */ |
| 1659 | int vht_enabled; |
| 1660 | |
| 1661 | /* Configured ACS channel width */ |
| 1662 | u16 ch_width; |
| 1663 | |
| 1664 | /* ACS channel list info */ |
| 1665 | unsigned int ch_list_len; |
| 1666 | const u8 *ch_list; |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1667 | const int *freq_list; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1668 | }; |
| 1669 | |
Dmitry Shmidt | 5a1480c | 2014-05-12 09:46:02 -0700 | [diff] [blame] | 1670 | |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 1671 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1672 | * struct wpa_driver_ops - Driver interface API definition |
| 1673 | * |
| 1674 | * This structure defines the API that each driver interface needs to implement |
| 1675 | * for core wpa_supplicant code. All driver specific functionality is captured |
| 1676 | * in this wrapper. |
| 1677 | */ |
| 1678 | struct wpa_driver_ops { |
| 1679 | /** Name of the driver interface */ |
| 1680 | const char *name; |
| 1681 | /** One line description of the driver interface */ |
| 1682 | const char *desc; |
| 1683 | |
| 1684 | /** |
| 1685 | * get_bssid - Get the current BSSID |
| 1686 | * @priv: private driver interface data |
| 1687 | * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes) |
| 1688 | * |
| 1689 | * Returns: 0 on success, -1 on failure |
| 1690 | * |
| 1691 | * Query kernel driver for the current BSSID and copy it to bssid. |
| 1692 | * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not |
| 1693 | * associated. |
| 1694 | */ |
| 1695 | int (*get_bssid)(void *priv, u8 *bssid); |
| 1696 | |
| 1697 | /** |
| 1698 | * get_ssid - Get the current SSID |
| 1699 | * @priv: private driver interface data |
| 1700 | * @ssid: buffer for SSID (at least 32 bytes) |
| 1701 | * |
| 1702 | * Returns: Length of the SSID on success, -1 on failure |
| 1703 | * |
| 1704 | * Query kernel driver for the current SSID and copy it to ssid. |
| 1705 | * Returning zero is recommended if the STA is not associated. |
| 1706 | * |
| 1707 | * Note: SSID is an array of octets, i.e., it is not nul terminated and |
| 1708 | * can, at least in theory, contain control characters (including nul) |
| 1709 | * and as such, should be processed as binary data, not a printable |
| 1710 | * string. |
| 1711 | */ |
| 1712 | int (*get_ssid)(void *priv, u8 *ssid); |
| 1713 | |
| 1714 | /** |
| 1715 | * set_key - Configure encryption key |
| 1716 | * @ifname: Interface name (for multi-SSID/VLAN support) |
| 1717 | * @priv: private driver interface data |
| 1718 | * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP, |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1719 | * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK, |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1720 | * %WPA_ALG_GCMP, %WPA_ALG_GCMP_256, %WPA_ALG_CCMP_256, |
| 1721 | * %WPA_ALG_BIP_GMAC_128, %WPA_ALG_BIP_GMAC_256, |
| 1722 | * %WPA_ALG_BIP_CMAC_256); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1723 | * %WPA_ALG_NONE clears the key. |
| 1724 | * @addr: Address of the peer STA (BSSID of the current AP when setting |
| 1725 | * pairwise key in station mode), ff:ff:ff:ff:ff:ff for |
| 1726 | * broadcast keys, %NULL for default keys that are used both for |
| 1727 | * broadcast and unicast; when clearing keys, %NULL is used to |
| 1728 | * indicate that both the broadcast-only and default key of the |
| 1729 | * specified key index is to be cleared |
| 1730 | * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for |
| 1731 | * IGTK |
| 1732 | * @set_tx: configure this key as the default Tx key (only used when |
| 1733 | * driver does not support separate unicast/individual key |
| 1734 | * @seq: sequence number/packet number, seq_len octets, the next |
| 1735 | * packet number to be used for in replay protection; configured |
| 1736 | * for Rx keys (in most cases, this is only used with broadcast |
| 1737 | * keys and set to zero for unicast keys); %NULL if not set |
| 1738 | * @seq_len: length of the seq, depends on the algorithm: |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1739 | * TKIP: 6 octets, CCMP/GCMP: 6 octets, IGTK: 6 octets |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1740 | * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key, |
| 1741 | * 8-byte Rx Mic Key |
| 1742 | * @key_len: length of the key buffer in octets (WEP: 5 or 13, |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1743 | * TKIP: 32, CCMP/GCMP: 16, IGTK: 16) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1744 | * |
| 1745 | * Returns: 0 on success, -1 on failure |
| 1746 | * |
| 1747 | * Configure the given key for the kernel driver. If the driver |
| 1748 | * supports separate individual keys (4 default keys + 1 individual), |
| 1749 | * addr can be used to determine whether the key is default or |
| 1750 | * individual. If only 4 keys are supported, the default key with key |
| 1751 | * index 0 is used as the individual key. STA must be configured to use |
| 1752 | * it as the default Tx key (set_tx is set) and accept Rx for all the |
| 1753 | * key indexes. In most cases, WPA uses only key indexes 1 and 2 for |
| 1754 | * broadcast keys, so key index 0 is available for this kind of |
| 1755 | * configuration. |
| 1756 | * |
| 1757 | * Please note that TKIP keys include separate TX and RX MIC keys and |
| 1758 | * some drivers may expect them in different order than wpa_supplicant |
| 1759 | * is using. If the TX/RX keys are swapped, all TKIP encrypted packets |
| 1760 | * will trigger Michael MIC errors. This can be fixed by changing the |
| 1761 | * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key |
| 1762 | * in driver_*.c set_key() implementation, see driver_ndis.c for an |
| 1763 | * example on how this can be done. |
| 1764 | */ |
| 1765 | int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg, |
| 1766 | const u8 *addr, int key_idx, int set_tx, |
| 1767 | const u8 *seq, size_t seq_len, |
| 1768 | const u8 *key, size_t key_len); |
| 1769 | |
| 1770 | /** |
| 1771 | * init - Initialize driver interface |
| 1772 | * @ctx: context to be used when calling wpa_supplicant functions, |
| 1773 | * e.g., wpa_supplicant_event() |
| 1774 | * @ifname: interface name, e.g., wlan0 |
| 1775 | * |
| 1776 | * Returns: Pointer to private data, %NULL on failure |
| 1777 | * |
| 1778 | * Initialize driver interface, including event processing for kernel |
| 1779 | * driver events (e.g., associated, scan results, Michael MIC failure). |
| 1780 | * This function can allocate a private configuration data area for |
| 1781 | * @ctx, file descriptor, interface name, etc. information that may be |
| 1782 | * needed in future driver operations. If this is not used, non-NULL |
| 1783 | * value will need to be returned because %NULL is used to indicate |
| 1784 | * failure. The returned value will be used as 'void *priv' data for |
| 1785 | * all other driver_ops functions. |
| 1786 | * |
| 1787 | * The main event loop (eloop.c) of wpa_supplicant can be used to |
| 1788 | * register callback for read sockets (eloop_register_read_sock()). |
| 1789 | * |
| 1790 | * See below for more information about events and |
| 1791 | * wpa_supplicant_event() function. |
| 1792 | */ |
| 1793 | void * (*init)(void *ctx, const char *ifname); |
| 1794 | |
| 1795 | /** |
| 1796 | * deinit - Deinitialize driver interface |
| 1797 | * @priv: private driver interface data from init() |
| 1798 | * |
| 1799 | * Shut down driver interface and processing of driver events. Free |
| 1800 | * private data buffer if one was allocated in init() handler. |
| 1801 | */ |
| 1802 | void (*deinit)(void *priv); |
| 1803 | |
| 1804 | /** |
| 1805 | * set_param - Set driver configuration parameters |
| 1806 | * @priv: private driver interface data from init() |
| 1807 | * @param: driver specific configuration parameters |
| 1808 | * |
| 1809 | * Returns: 0 on success, -1 on failure |
| 1810 | * |
| 1811 | * Optional handler for notifying driver interface about configuration |
| 1812 | * parameters (driver_param). |
| 1813 | */ |
| 1814 | int (*set_param)(void *priv, const char *param); |
| 1815 | |
| 1816 | /** |
| 1817 | * set_countermeasures - Enable/disable TKIP countermeasures |
| 1818 | * @priv: private driver interface data |
| 1819 | * @enabled: 1 = countermeasures enabled, 0 = disabled |
| 1820 | * |
| 1821 | * Returns: 0 on success, -1 on failure |
| 1822 | * |
| 1823 | * Configure TKIP countermeasures. When these are enabled, the driver |
| 1824 | * should drop all received and queued frames that are using TKIP. |
| 1825 | */ |
| 1826 | int (*set_countermeasures)(void *priv, int enabled); |
| 1827 | |
| 1828 | /** |
| 1829 | * deauthenticate - Request driver to deauthenticate |
| 1830 | * @priv: private driver interface data |
| 1831 | * @addr: peer address (BSSID of the AP) |
| 1832 | * @reason_code: 16-bit reason code to be sent in the deauthentication |
| 1833 | * frame |
| 1834 | * |
| 1835 | * Returns: 0 on success, -1 on failure |
| 1836 | */ |
| 1837 | int (*deauthenticate)(void *priv, const u8 *addr, int reason_code); |
| 1838 | |
| 1839 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1840 | * associate - Request driver to associate |
| 1841 | * @priv: private driver interface data |
| 1842 | * @params: association parameters |
| 1843 | * |
| 1844 | * Returns: 0 on success, -1 on failure |
| 1845 | */ |
| 1846 | int (*associate)(void *priv, |
| 1847 | struct wpa_driver_associate_params *params); |
| 1848 | |
| 1849 | /** |
| 1850 | * add_pmkid - Add PMKSA cache entry to the driver |
| 1851 | * @priv: private driver interface data |
| 1852 | * @bssid: BSSID for the PMKSA cache entry |
| 1853 | * @pmkid: PMKID for the PMKSA cache entry |
| 1854 | * |
| 1855 | * Returns: 0 on success, -1 on failure |
| 1856 | * |
| 1857 | * This function is called when a new PMK is received, as a result of |
| 1858 | * either normal authentication or RSN pre-authentication. |
| 1859 | * |
| 1860 | * If the driver generates RSN IE, i.e., it does not use wpa_ie in |
| 1861 | * associate(), add_pmkid() can be used to add new PMKSA cache entries |
| 1862 | * in the driver. If the driver uses wpa_ie from wpa_supplicant, this |
| 1863 | * driver_ops function does not need to be implemented. Likewise, if |
| 1864 | * the driver does not support WPA, this function is not needed. |
| 1865 | */ |
| 1866 | int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid); |
| 1867 | |
| 1868 | /** |
| 1869 | * remove_pmkid - Remove PMKSA cache entry to the driver |
| 1870 | * @priv: private driver interface data |
| 1871 | * @bssid: BSSID for the PMKSA cache entry |
| 1872 | * @pmkid: PMKID for the PMKSA cache entry |
| 1873 | * |
| 1874 | * Returns: 0 on success, -1 on failure |
| 1875 | * |
| 1876 | * This function is called when the supplicant drops a PMKSA cache |
| 1877 | * entry for any reason. |
| 1878 | * |
| 1879 | * If the driver generates RSN IE, i.e., it does not use wpa_ie in |
| 1880 | * associate(), remove_pmkid() can be used to synchronize PMKSA caches |
| 1881 | * between the driver and wpa_supplicant. If the driver uses wpa_ie |
| 1882 | * from wpa_supplicant, this driver_ops function does not need to be |
| 1883 | * implemented. Likewise, if the driver does not support WPA, this |
| 1884 | * function is not needed. |
| 1885 | */ |
| 1886 | int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid); |
| 1887 | |
| 1888 | /** |
| 1889 | * flush_pmkid - Flush PMKSA cache |
| 1890 | * @priv: private driver interface data |
| 1891 | * |
| 1892 | * Returns: 0 on success, -1 on failure |
| 1893 | * |
| 1894 | * This function is called when the supplicant drops all PMKSA cache |
| 1895 | * entries for any reason. |
| 1896 | * |
| 1897 | * If the driver generates RSN IE, i.e., it does not use wpa_ie in |
| 1898 | * associate(), remove_pmkid() can be used to synchronize PMKSA caches |
| 1899 | * between the driver and wpa_supplicant. If the driver uses wpa_ie |
| 1900 | * from wpa_supplicant, this driver_ops function does not need to be |
| 1901 | * implemented. Likewise, if the driver does not support WPA, this |
| 1902 | * function is not needed. |
| 1903 | */ |
| 1904 | int (*flush_pmkid)(void *priv); |
| 1905 | |
| 1906 | /** |
| 1907 | * get_capa - Get driver capabilities |
| 1908 | * @priv: private driver interface data |
| 1909 | * |
| 1910 | * Returns: 0 on success, -1 on failure |
| 1911 | * |
| 1912 | * Get driver/firmware/hardware capabilities. |
| 1913 | */ |
| 1914 | int (*get_capa)(void *priv, struct wpa_driver_capa *capa); |
| 1915 | |
| 1916 | /** |
| 1917 | * poll - Poll driver for association information |
| 1918 | * @priv: private driver interface data |
| 1919 | * |
| 1920 | * This is an option callback that can be used when the driver does not |
| 1921 | * provide event mechanism for association events. This is called when |
| 1922 | * receiving WPA EAPOL-Key messages that require association |
| 1923 | * information. The driver interface is supposed to generate associnfo |
| 1924 | * event before returning from this callback function. In addition, the |
| 1925 | * driver interface should generate an association event after having |
| 1926 | * sent out associnfo. |
| 1927 | */ |
| 1928 | void (*poll)(void *priv); |
| 1929 | |
| 1930 | /** |
| 1931 | * get_ifname - Get interface name |
| 1932 | * @priv: private driver interface data |
| 1933 | * |
| 1934 | * Returns: Pointer to the interface name. This can differ from the |
| 1935 | * interface name used in init() call. Init() is called first. |
| 1936 | * |
| 1937 | * This optional function can be used to allow the driver interface to |
| 1938 | * replace the interface name with something else, e.g., based on an |
| 1939 | * interface mapping from a more descriptive name. |
| 1940 | */ |
| 1941 | const char * (*get_ifname)(void *priv); |
| 1942 | |
| 1943 | /** |
| 1944 | * get_mac_addr - Get own MAC address |
| 1945 | * @priv: private driver interface data |
| 1946 | * |
| 1947 | * Returns: Pointer to own MAC address or %NULL on failure |
| 1948 | * |
| 1949 | * This optional function can be used to get the own MAC address of the |
| 1950 | * device from the driver interface code. This is only needed if the |
| 1951 | * l2_packet implementation for the OS does not provide easy access to |
| 1952 | * a MAC address. */ |
| 1953 | const u8 * (*get_mac_addr)(void *priv); |
| 1954 | |
| 1955 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1956 | * set_operstate - Sets device operating state to DORMANT or UP |
| 1957 | * @priv: private driver interface data |
| 1958 | * @state: 0 = dormant, 1 = up |
| 1959 | * Returns: 0 on success, -1 on failure |
| 1960 | * |
| 1961 | * This is an optional function that can be used on operating systems |
| 1962 | * that support a concept of controlling network device state from user |
| 1963 | * space applications. This function, if set, gets called with |
| 1964 | * state = 1 when authentication has been completed and with state = 0 |
| 1965 | * when connection is lost. |
| 1966 | */ |
| 1967 | int (*set_operstate)(void *priv, int state); |
| 1968 | |
| 1969 | /** |
| 1970 | * mlme_setprotection - MLME-SETPROTECTION.request primitive |
| 1971 | * @priv: Private driver interface data |
| 1972 | * @addr: Address of the station for which to set protection (may be |
| 1973 | * %NULL for group keys) |
| 1974 | * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_* |
| 1975 | * @key_type: MLME_SETPROTECTION_KEY_TYPE_* |
| 1976 | * Returns: 0 on success, -1 on failure |
| 1977 | * |
| 1978 | * This is an optional function that can be used to set the driver to |
| 1979 | * require protection for Tx and/or Rx frames. This uses the layer |
| 1980 | * interface defined in IEEE 802.11i-2004 clause 10.3.22.1 |
| 1981 | * (MLME-SETPROTECTION.request). Many drivers do not use explicit |
| 1982 | * set protection operation; instead, they set protection implicitly |
| 1983 | * based on configured keys. |
| 1984 | */ |
| 1985 | int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type, |
| 1986 | int key_type); |
| 1987 | |
| 1988 | /** |
| 1989 | * get_hw_feature_data - Get hardware support data (channels and rates) |
| 1990 | * @priv: Private driver interface data |
| 1991 | * @num_modes: Variable for returning the number of returned modes |
| 1992 | * flags: Variable for returning hardware feature flags |
| 1993 | * Returns: Pointer to allocated hardware data on success or %NULL on |
| 1994 | * failure. Caller is responsible for freeing this. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1995 | */ |
| 1996 | struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv, |
| 1997 | u16 *num_modes, |
| 1998 | u16 *flags); |
| 1999 | |
| 2000 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2001 | * send_mlme - Send management frame from MLME |
| 2002 | * @priv: Private driver interface data |
| 2003 | * @data: IEEE 802.11 management frame with IEEE 802.11 header |
| 2004 | * @data_len: Size of the management frame |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2005 | * @noack: Do not wait for this frame to be acked (disable retries) |
Dmitry Shmidt | a3dc309 | 2015-06-23 11:21:28 -0700 | [diff] [blame] | 2006 | * @freq: Frequency (in MHz) to send the frame on, or 0 to let the |
| 2007 | * driver decide |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 2008 | * @csa_offs: Array of CSA offsets or %NULL |
| 2009 | * @csa_offs_len: Number of elements in csa_offs |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2010 | * Returns: 0 on success, -1 on failure |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2011 | */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2012 | int (*send_mlme)(void *priv, const u8 *data, size_t data_len, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 2013 | int noack, unsigned int freq, const u16 *csa_offs, |
| 2014 | size_t csa_offs_len); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2015 | |
| 2016 | /** |
| 2017 | * update_ft_ies - Update FT (IEEE 802.11r) IEs |
| 2018 | * @priv: Private driver interface data |
| 2019 | * @md: Mobility domain (2 octets) (also included inside ies) |
| 2020 | * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs |
| 2021 | * @ies_len: Length of FT IEs in bytes |
| 2022 | * Returns: 0 on success, -1 on failure |
| 2023 | * |
| 2024 | * The supplicant uses this callback to let the driver know that keying |
| 2025 | * material for FT is available and that the driver can use the |
| 2026 | * provided IEs in the next message in FT authentication sequence. |
| 2027 | * |
| 2028 | * This function is only needed for driver that support IEEE 802.11r |
| 2029 | * (Fast BSS Transition). |
| 2030 | */ |
| 2031 | int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies, |
| 2032 | size_t ies_len); |
| 2033 | |
| 2034 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2035 | * get_scan_results2 - Fetch the latest scan results |
| 2036 | * @priv: private driver interface data |
| 2037 | * |
| 2038 | * Returns: Allocated buffer of scan results (caller is responsible for |
| 2039 | * freeing the data structure) on success, NULL on failure |
| 2040 | */ |
| 2041 | struct wpa_scan_results * (*get_scan_results2)(void *priv); |
| 2042 | |
| 2043 | /** |
| 2044 | * set_country - Set country |
| 2045 | * @priv: Private driver interface data |
| 2046 | * @alpha2: country to which to switch to |
| 2047 | * Returns: 0 on success, -1 on failure |
| 2048 | * |
| 2049 | * This function is for drivers which support some form |
| 2050 | * of setting a regulatory domain. |
| 2051 | */ |
| 2052 | int (*set_country)(void *priv, const char *alpha2); |
| 2053 | |
| 2054 | /** |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 2055 | * get_country - Get country |
| 2056 | * @priv: Private driver interface data |
| 2057 | * @alpha2: Buffer for returning country code (at least 3 octets) |
| 2058 | * Returns: 0 on success, -1 on failure |
| 2059 | */ |
| 2060 | int (*get_country)(void *priv, char *alpha2); |
| 2061 | |
| 2062 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2063 | * global_init - Global driver initialization |
| 2064 | * Returns: Pointer to private data (global), %NULL on failure |
| 2065 | * |
| 2066 | * This optional function is called to initialize the driver wrapper |
| 2067 | * for global data, i.e., data that applies to all interfaces. If this |
| 2068 | * function is implemented, global_deinit() will also need to be |
| 2069 | * implemented to free the private data. The driver will also likely |
| 2070 | * use init2() function instead of init() to get the pointer to global |
| 2071 | * data available to per-interface initializer. |
| 2072 | */ |
| 2073 | void * (*global_init)(void); |
| 2074 | |
| 2075 | /** |
| 2076 | * global_deinit - Global driver deinitialization |
| 2077 | * @priv: private driver global data from global_init() |
| 2078 | * |
| 2079 | * Terminate any global driver related functionality and free the |
| 2080 | * global data structure. |
| 2081 | */ |
| 2082 | void (*global_deinit)(void *priv); |
| 2083 | |
| 2084 | /** |
| 2085 | * init2 - Initialize driver interface (with global data) |
| 2086 | * @ctx: context to be used when calling wpa_supplicant functions, |
| 2087 | * e.g., wpa_supplicant_event() |
| 2088 | * @ifname: interface name, e.g., wlan0 |
| 2089 | * @global_priv: private driver global data from global_init() |
| 2090 | * Returns: Pointer to private data, %NULL on failure |
| 2091 | * |
| 2092 | * This function can be used instead of init() if the driver wrapper |
| 2093 | * uses global data. |
| 2094 | */ |
| 2095 | void * (*init2)(void *ctx, const char *ifname, void *global_priv); |
| 2096 | |
| 2097 | /** |
| 2098 | * get_interfaces - Get information about available interfaces |
| 2099 | * @global_priv: private driver global data from global_init() |
| 2100 | * Returns: Allocated buffer of interface information (caller is |
| 2101 | * responsible for freeing the data structure) on success, NULL on |
| 2102 | * failure |
| 2103 | */ |
| 2104 | struct wpa_interface_info * (*get_interfaces)(void *global_priv); |
| 2105 | |
| 2106 | /** |
| 2107 | * scan2 - Request the driver to initiate scan |
| 2108 | * @priv: private driver interface data |
| 2109 | * @params: Scan parameters |
| 2110 | * |
| 2111 | * Returns: 0 on success, -1 on failure |
| 2112 | * |
| 2113 | * Once the scan results are ready, the driver should report scan |
| 2114 | * results event for wpa_supplicant which will eventually request the |
| 2115 | * results with wpa_driver_get_scan_results2(). |
| 2116 | */ |
| 2117 | int (*scan2)(void *priv, struct wpa_driver_scan_params *params); |
| 2118 | |
| 2119 | /** |
| 2120 | * authenticate - Request driver to authenticate |
| 2121 | * @priv: private driver interface data |
| 2122 | * @params: authentication parameters |
| 2123 | * Returns: 0 on success, -1 on failure |
| 2124 | * |
| 2125 | * This is an optional function that can be used with drivers that |
| 2126 | * support separate authentication and association steps, i.e., when |
| 2127 | * wpa_supplicant can act as the SME. If not implemented, associate() |
| 2128 | * function is expected to take care of IEEE 802.11 authentication, |
| 2129 | * too. |
| 2130 | */ |
| 2131 | int (*authenticate)(void *priv, |
| 2132 | struct wpa_driver_auth_params *params); |
| 2133 | |
| 2134 | /** |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2135 | * set_ap - Set Beacon and Probe Response information for AP mode |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2136 | * @priv: Private driver interface data |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2137 | * @params: Parameters to use in AP mode |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2138 | * |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2139 | * This function is used to configure Beacon template and/or extra IEs |
| 2140 | * to add for Beacon and Probe Response frames for the driver in |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2141 | * AP mode. The driver is responsible for building the full Beacon |
| 2142 | * frame by concatenating the head part with TIM IE generated by the |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2143 | * driver/firmware and finishing with the tail part. Depending on the |
| 2144 | * driver architectue, this can be done either by using the full |
| 2145 | * template or the set of additional IEs (e.g., WPS and P2P IE). |
| 2146 | * Similarly, Probe Response processing depends on the driver design. |
| 2147 | * If the driver (or firmware) takes care of replying to Probe Request |
| 2148 | * frames, the extra IEs provided here needs to be added to the Probe |
| 2149 | * Response frames. |
| 2150 | * |
| 2151 | * Returns: 0 on success, -1 on failure |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2152 | */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2153 | int (*set_ap)(void *priv, struct wpa_driver_ap_params *params); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2154 | |
| 2155 | /** |
Dmitry Shmidt | 8bae413 | 2013-06-06 11:25:10 -0700 | [diff] [blame] | 2156 | * set_acl - Set ACL in AP mode |
| 2157 | * @priv: Private driver interface data |
| 2158 | * @params: Parameters to configure ACL |
| 2159 | * Returns: 0 on success, -1 on failure |
| 2160 | * |
| 2161 | * This is used only for the drivers which support MAC address ACL. |
| 2162 | */ |
| 2163 | int (*set_acl)(void *priv, struct hostapd_acl_params *params); |
| 2164 | |
| 2165 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2166 | * hapd_init - Initialize driver interface (hostapd only) |
| 2167 | * @hapd: Pointer to hostapd context |
| 2168 | * @params: Configuration for the driver wrapper |
| 2169 | * Returns: Pointer to private data, %NULL on failure |
| 2170 | * |
| 2171 | * This function is used instead of init() or init2() when the driver |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2172 | * wrapper is used with hostapd. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2173 | */ |
| 2174 | void * (*hapd_init)(struct hostapd_data *hapd, |
| 2175 | struct wpa_init_params *params); |
| 2176 | |
| 2177 | /** |
| 2178 | * hapd_deinit - Deinitialize driver interface (hostapd only) |
| 2179 | * @priv: Private driver interface data from hapd_init() |
| 2180 | */ |
| 2181 | void (*hapd_deinit)(void *priv); |
| 2182 | |
| 2183 | /** |
| 2184 | * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only) |
| 2185 | * @priv: Private driver interface data |
| 2186 | * @params: BSS parameters |
| 2187 | * Returns: 0 on success, -1 on failure |
| 2188 | * |
| 2189 | * This is an optional function to configure the kernel driver to |
| 2190 | * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This |
| 2191 | * can be left undefined (set to %NULL) if IEEE 802.1X support is |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2192 | * always enabled and the driver uses set_ap() to set WPA/RSN IE |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2193 | * for Beacon frames. |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2194 | * |
| 2195 | * DEPRECATED - use set_ap() instead |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2196 | */ |
| 2197 | int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params); |
| 2198 | |
| 2199 | /** |
| 2200 | * set_privacy - Enable/disable privacy (AP only) |
| 2201 | * @priv: Private driver interface data |
| 2202 | * @enabled: 1 = privacy enabled, 0 = disabled |
| 2203 | * Returns: 0 on success, -1 on failure |
| 2204 | * |
| 2205 | * This is an optional function to configure privacy field in the |
| 2206 | * kernel driver for Beacon frames. This can be left undefined (set to |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2207 | * %NULL) if the driver uses the Beacon template from set_ap(). |
| 2208 | * |
| 2209 | * DEPRECATED - use set_ap() instead |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2210 | */ |
| 2211 | int (*set_privacy)(void *priv, int enabled); |
| 2212 | |
| 2213 | /** |
| 2214 | * get_seqnum - Fetch the current TSC/packet number (AP only) |
| 2215 | * @ifname: The interface name (main or virtual) |
| 2216 | * @priv: Private driver interface data |
| 2217 | * @addr: MAC address of the station or %NULL for group keys |
| 2218 | * @idx: Key index |
| 2219 | * @seq: Buffer for returning the latest used TSC/packet number |
| 2220 | * Returns: 0 on success, -1 on failure |
| 2221 | * |
| 2222 | * This function is used to fetch the last used TSC/packet number for |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2223 | * a TKIP, CCMP, GCMP, or BIP/IGTK key. It is mainly used with group |
| 2224 | * keys, so there is no strict requirement on implementing support for |
| 2225 | * unicast keys (i.e., addr != %NULL). |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2226 | */ |
| 2227 | int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr, |
| 2228 | int idx, u8 *seq); |
| 2229 | |
| 2230 | /** |
| 2231 | * flush - Flush all association stations (AP only) |
| 2232 | * @priv: Private driver interface data |
| 2233 | * Returns: 0 on success, -1 on failure |
| 2234 | * |
| 2235 | * This function requests the driver to disassociate all associated |
| 2236 | * stations. This function does not need to be implemented if the |
| 2237 | * driver does not process association frames internally. |
| 2238 | */ |
| 2239 | int (*flush)(void *priv); |
| 2240 | |
| 2241 | /** |
| 2242 | * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP) |
| 2243 | * @priv: Private driver interface data |
| 2244 | * @elem: Information elements |
| 2245 | * @elem_len: Length of the elem buffer in octets |
| 2246 | * Returns: 0 on success, -1 on failure |
| 2247 | * |
| 2248 | * This is an optional function to add information elements in the |
| 2249 | * kernel driver for Beacon and Probe Response frames. This can be left |
| 2250 | * undefined (set to %NULL) if the driver uses the Beacon template from |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2251 | * set_ap(). |
| 2252 | * |
| 2253 | * DEPRECATED - use set_ap() instead |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2254 | */ |
| 2255 | int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len); |
| 2256 | |
| 2257 | /** |
Jouni Malinen | 1e6c57f | 2012-09-05 17:07:03 +0300 | [diff] [blame] | 2258 | * read_sta_data - Fetch station data |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2259 | * @priv: Private driver interface data |
| 2260 | * @data: Buffer for returning station information |
| 2261 | * @addr: MAC address of the station |
| 2262 | * Returns: 0 on success, -1 on failure |
| 2263 | */ |
| 2264 | int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data, |
| 2265 | const u8 *addr); |
| 2266 | |
| 2267 | /** |
| 2268 | * hapd_send_eapol - Send an EAPOL packet (AP only) |
| 2269 | * @priv: private driver interface data |
| 2270 | * @addr: Destination MAC address |
| 2271 | * @data: EAPOL packet starting with IEEE 802.1X header |
| 2272 | * @data_len: Length of the EAPOL packet in octets |
| 2273 | * @encrypt: Whether the frame should be encrypted |
| 2274 | * @own_addr: Source MAC address |
| 2275 | * @flags: WPA_STA_* flags for the destination station |
| 2276 | * |
| 2277 | * Returns: 0 on success, -1 on failure |
| 2278 | */ |
| 2279 | int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data, |
| 2280 | size_t data_len, int encrypt, |
| 2281 | const u8 *own_addr, u32 flags); |
| 2282 | |
| 2283 | /** |
| 2284 | * sta_deauth - Deauthenticate a station (AP only) |
| 2285 | * @priv: Private driver interface data |
| 2286 | * @own_addr: Source address and BSSID for the Deauthentication frame |
| 2287 | * @addr: MAC address of the station to deauthenticate |
| 2288 | * @reason: Reason code for the Deauthentiation frame |
| 2289 | * Returns: 0 on success, -1 on failure |
| 2290 | * |
| 2291 | * This function requests a specific station to be deauthenticated and |
| 2292 | * a Deauthentication frame to be sent to it. |
| 2293 | */ |
| 2294 | int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr, |
| 2295 | int reason); |
| 2296 | |
| 2297 | /** |
| 2298 | * sta_disassoc - Disassociate a station (AP only) |
| 2299 | * @priv: Private driver interface data |
| 2300 | * @own_addr: Source address and BSSID for the Disassociation frame |
| 2301 | * @addr: MAC address of the station to disassociate |
| 2302 | * @reason: Reason code for the Disassociation frame |
| 2303 | * Returns: 0 on success, -1 on failure |
| 2304 | * |
| 2305 | * This function requests a specific station to be disassociated and |
| 2306 | * a Disassociation frame to be sent to it. |
| 2307 | */ |
| 2308 | int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr, |
| 2309 | int reason); |
| 2310 | |
| 2311 | /** |
| 2312 | * sta_remove - Remove a station entry (AP only) |
| 2313 | * @priv: Private driver interface data |
| 2314 | * @addr: MAC address of the station to be removed |
| 2315 | * Returns: 0 on success, -1 on failure |
| 2316 | */ |
| 2317 | int (*sta_remove)(void *priv, const u8 *addr); |
| 2318 | |
| 2319 | /** |
| 2320 | * hapd_get_ssid - Get the current SSID (AP only) |
| 2321 | * @priv: Private driver interface data |
| 2322 | * @buf: Buffer for returning the SSID |
| 2323 | * @len: Maximum length of the buffer |
| 2324 | * Returns: Length of the SSID on success, -1 on failure |
| 2325 | * |
| 2326 | * This function need not be implemented if the driver uses Beacon |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2327 | * template from set_ap() and does not reply to Probe Request frames. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2328 | */ |
| 2329 | int (*hapd_get_ssid)(void *priv, u8 *buf, int len); |
| 2330 | |
| 2331 | /** |
| 2332 | * hapd_set_ssid - Set SSID (AP only) |
| 2333 | * @priv: Private driver interface data |
| 2334 | * @buf: SSID |
| 2335 | * @len: Length of the SSID in octets |
| 2336 | * Returns: 0 on success, -1 on failure |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2337 | * |
| 2338 | * DEPRECATED - use set_ap() instead |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2339 | */ |
| 2340 | int (*hapd_set_ssid)(void *priv, const u8 *buf, int len); |
| 2341 | |
| 2342 | /** |
| 2343 | * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP) |
| 2344 | * @priv: Private driver interface data |
| 2345 | * @enabled: 1 = countermeasures enabled, 0 = disabled |
| 2346 | * Returns: 0 on success, -1 on failure |
| 2347 | * |
| 2348 | * This need not be implemented if the driver does not take care of |
| 2349 | * association processing. |
| 2350 | */ |
| 2351 | int (*hapd_set_countermeasures)(void *priv, int enabled); |
| 2352 | |
| 2353 | /** |
| 2354 | * sta_add - Add a station entry |
| 2355 | * @priv: Private driver interface data |
| 2356 | * @params: Station parameters |
| 2357 | * Returns: 0 on success, -1 on failure |
| 2358 | * |
| 2359 | * This function is used to add a station entry to the driver once the |
| 2360 | * station has completed association. This is only used if the driver |
| 2361 | * does not take care of association processing. |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2362 | * |
| 2363 | * With TDLS, this function is also used to add or set (params->set 1) |
| 2364 | * TDLS peer entries. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2365 | */ |
| 2366 | int (*sta_add)(void *priv, struct hostapd_sta_add_params *params); |
| 2367 | |
| 2368 | /** |
| 2369 | * get_inact_sec - Get station inactivity duration (AP only) |
| 2370 | * @priv: Private driver interface data |
| 2371 | * @addr: Station address |
| 2372 | * Returns: Number of seconds station has been inactive, -1 on failure |
| 2373 | */ |
| 2374 | int (*get_inact_sec)(void *priv, const u8 *addr); |
| 2375 | |
| 2376 | /** |
| 2377 | * sta_clear_stats - Clear station statistics (AP only) |
| 2378 | * @priv: Private driver interface data |
| 2379 | * @addr: Station address |
| 2380 | * Returns: 0 on success, -1 on failure |
| 2381 | */ |
| 2382 | int (*sta_clear_stats)(void *priv, const u8 *addr); |
| 2383 | |
| 2384 | /** |
| 2385 | * set_freq - Set channel/frequency (AP only) |
| 2386 | * @priv: Private driver interface data |
| 2387 | * @freq: Channel parameters |
| 2388 | * Returns: 0 on success, -1 on failure |
| 2389 | */ |
| 2390 | int (*set_freq)(void *priv, struct hostapd_freq_params *freq); |
| 2391 | |
| 2392 | /** |
| 2393 | * set_rts - Set RTS threshold |
| 2394 | * @priv: Private driver interface data |
| 2395 | * @rts: RTS threshold in octets |
| 2396 | * Returns: 0 on success, -1 on failure |
| 2397 | */ |
| 2398 | int (*set_rts)(void *priv, int rts); |
| 2399 | |
| 2400 | /** |
| 2401 | * set_frag - Set fragmentation threshold |
| 2402 | * @priv: Private driver interface data |
| 2403 | * @frag: Fragmentation threshold in octets |
| 2404 | * Returns: 0 on success, -1 on failure |
| 2405 | */ |
| 2406 | int (*set_frag)(void *priv, int frag); |
| 2407 | |
| 2408 | /** |
| 2409 | * sta_set_flags - Set station flags (AP only) |
| 2410 | * @priv: Private driver interface data |
| 2411 | * @addr: Station address |
| 2412 | * @total_flags: Bitmap of all WPA_STA_* flags currently set |
| 2413 | * @flags_or: Bitmap of WPA_STA_* flags to add |
| 2414 | * @flags_and: Bitmap of WPA_STA_* flags to us as a mask |
| 2415 | * Returns: 0 on success, -1 on failure |
| 2416 | */ |
| 2417 | int (*sta_set_flags)(void *priv, const u8 *addr, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 2418 | unsigned int total_flags, unsigned int flags_or, |
| 2419 | unsigned int flags_and); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2420 | |
| 2421 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2422 | * set_tx_queue_params - Set TX queue parameters |
| 2423 | * @priv: Private driver interface data |
| 2424 | * @queue: Queue number (0 = VO, 1 = VI, 2 = BE, 3 = BK) |
| 2425 | * @aifs: AIFS |
| 2426 | * @cw_min: cwMin |
| 2427 | * @cw_max: cwMax |
| 2428 | * @burst_time: Maximum length for bursting in 0.1 msec units |
| 2429 | */ |
| 2430 | int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min, |
| 2431 | int cw_max, int burst_time); |
| 2432 | |
| 2433 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2434 | * if_add - Add a virtual interface |
| 2435 | * @priv: Private driver interface data |
| 2436 | * @type: Interface type |
| 2437 | * @ifname: Interface name for the new virtual interface |
| 2438 | * @addr: Local address to use for the interface or %NULL to use the |
| 2439 | * parent interface address |
| 2440 | * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces |
| 2441 | * @drv_priv: Pointer for overwriting the driver context or %NULL if |
| 2442 | * not allowed (applies only to %WPA_IF_AP_BSS type) |
| 2443 | * @force_ifname: Buffer for returning an interface name that the |
| 2444 | * driver ended up using if it differs from the requested ifname |
| 2445 | * @if_addr: Buffer for returning the allocated interface address |
| 2446 | * (this may differ from the requested addr if the driver cannot |
| 2447 | * change interface address) |
| 2448 | * @bridge: Bridge interface to use or %NULL if no bridge configured |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 2449 | * @use_existing: Whether to allow existing interface to be used |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 2450 | * @setup_ap: Whether to setup AP for %WPA_IF_AP_BSS interfaces |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2451 | * Returns: 0 on success, -1 on failure |
| 2452 | */ |
| 2453 | int (*if_add)(void *priv, enum wpa_driver_if_type type, |
| 2454 | const char *ifname, const u8 *addr, void *bss_ctx, |
| 2455 | void **drv_priv, char *force_ifname, u8 *if_addr, |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 2456 | const char *bridge, int use_existing, int setup_ap); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2457 | |
| 2458 | /** |
| 2459 | * if_remove - Remove a virtual interface |
| 2460 | * @priv: Private driver interface data |
| 2461 | * @type: Interface type |
| 2462 | * @ifname: Interface name of the virtual interface to be removed |
| 2463 | * Returns: 0 on success, -1 on failure |
| 2464 | */ |
| 2465 | int (*if_remove)(void *priv, enum wpa_driver_if_type type, |
| 2466 | const char *ifname); |
| 2467 | |
| 2468 | /** |
| 2469 | * set_sta_vlan - Bind a station into a specific interface (AP only) |
| 2470 | * @priv: Private driver interface data |
| 2471 | * @ifname: Interface (main or virtual BSS or VLAN) |
| 2472 | * @addr: MAC address of the associated station |
| 2473 | * @vlan_id: VLAN ID |
| 2474 | * Returns: 0 on success, -1 on failure |
| 2475 | * |
| 2476 | * This function is used to bind a station to a specific virtual |
| 2477 | * interface. It is only used if when virtual interfaces are supported, |
| 2478 | * e.g., to assign stations to different VLAN interfaces based on |
| 2479 | * information from a RADIUS server. This allows separate broadcast |
| 2480 | * domains to be used with a single BSS. |
| 2481 | */ |
| 2482 | int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname, |
| 2483 | int vlan_id); |
| 2484 | |
| 2485 | /** |
| 2486 | * commit - Optional commit changes handler (AP only) |
| 2487 | * @priv: driver private data |
| 2488 | * Returns: 0 on success, -1 on failure |
| 2489 | * |
| 2490 | * This optional handler function can be registered if the driver |
| 2491 | * interface implementation needs to commit changes (e.g., by setting |
| 2492 | * network interface up) at the end of initial configuration. If set, |
| 2493 | * this handler will be called after initial setup has been completed. |
| 2494 | */ |
| 2495 | int (*commit)(void *priv); |
| 2496 | |
| 2497 | /** |
| 2498 | * send_ether - Send an ethernet packet (AP only) |
| 2499 | * @priv: private driver interface data |
| 2500 | * @dst: Destination MAC address |
| 2501 | * @src: Source MAC address |
| 2502 | * @proto: Ethertype |
| 2503 | * @data: EAPOL packet starting with IEEE 802.1X header |
| 2504 | * @data_len: Length of the EAPOL packet in octets |
| 2505 | * Returns: 0 on success, -1 on failure |
| 2506 | */ |
| 2507 | int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto, |
| 2508 | const u8 *data, size_t data_len); |
| 2509 | |
| 2510 | /** |
| 2511 | * set_radius_acl_auth - Notification of RADIUS ACL change |
| 2512 | * @priv: Private driver interface data |
| 2513 | * @mac: MAC address of the station |
| 2514 | * @accepted: Whether the station was accepted |
| 2515 | * @session_timeout: Session timeout for the station |
| 2516 | * Returns: 0 on success, -1 on failure |
| 2517 | */ |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 2518 | int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2519 | u32 session_timeout); |
| 2520 | |
| 2521 | /** |
| 2522 | * set_radius_acl_expire - Notification of RADIUS ACL expiration |
| 2523 | * @priv: Private driver interface data |
| 2524 | * @mac: MAC address of the station |
| 2525 | * Returns: 0 on success, -1 on failure |
| 2526 | */ |
| 2527 | int (*set_radius_acl_expire)(void *priv, const u8 *mac); |
| 2528 | |
| 2529 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2530 | * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP) |
| 2531 | * @priv: Private driver interface data |
| 2532 | * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s) |
| 2533 | * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove |
| 2534 | * extra IE(s) |
| 2535 | * @assocresp: WPS IE(s) for (Re)Association Response frames or %NULL |
| 2536 | * to remove extra IE(s) |
| 2537 | * Returns: 0 on success, -1 on failure |
| 2538 | * |
| 2539 | * This is an optional function to add WPS IE in the kernel driver for |
| 2540 | * Beacon and Probe Response frames. This can be left undefined (set |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2541 | * to %NULL) if the driver uses the Beacon template from set_ap() |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2542 | * and does not process Probe Request frames. If the driver takes care |
| 2543 | * of (Re)Association frame processing, the assocresp buffer includes |
| 2544 | * WPS IE(s) that need to be added to (Re)Association Response frames |
| 2545 | * whenever a (Re)Association Request frame indicated use of WPS. |
| 2546 | * |
| 2547 | * This will also be used to add P2P IE(s) into Beacon/Probe Response |
| 2548 | * frames when operating as a GO. The driver is responsible for adding |
| 2549 | * timing related attributes (e.g., NoA) in addition to the IEs |
| 2550 | * included here by appending them after these buffers. This call is |
| 2551 | * also used to provide Probe Response IEs for P2P Listen state |
| 2552 | * operations for drivers that generate the Probe Response frames |
| 2553 | * internally. |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2554 | * |
| 2555 | * DEPRECATED - use set_ap() instead |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2556 | */ |
| 2557 | int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon, |
| 2558 | const struct wpabuf *proberesp, |
| 2559 | const struct wpabuf *assocresp); |
| 2560 | |
| 2561 | /** |
| 2562 | * set_supp_port - Set IEEE 802.1X Supplicant Port status |
| 2563 | * @priv: Private driver interface data |
| 2564 | * @authorized: Whether the port is authorized |
| 2565 | * Returns: 0 on success, -1 on failure |
| 2566 | */ |
| 2567 | int (*set_supp_port)(void *priv, int authorized); |
| 2568 | |
| 2569 | /** |
| 2570 | * set_wds_sta - Bind a station into a 4-address WDS (AP only) |
| 2571 | * @priv: Private driver interface data |
| 2572 | * @addr: MAC address of the associated station |
| 2573 | * @aid: Association ID |
| 2574 | * @val: 1 = bind to 4-address WDS; 0 = unbind |
| 2575 | * @bridge_ifname: Bridge interface to use for the WDS station or %NULL |
| 2576 | * to indicate that bridge is not to be used |
Dmitry Shmidt | c2ebb4b | 2013-07-24 12:57:51 -0700 | [diff] [blame] | 2577 | * @ifname_wds: Buffer to return the interface name for the new WDS |
| 2578 | * station or %NULL to indicate name is not returned. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2579 | * Returns: 0 on success, -1 on failure |
| 2580 | */ |
| 2581 | int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val, |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 2582 | const char *bridge_ifname, char *ifname_wds); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2583 | |
| 2584 | /** |
| 2585 | * send_action - Transmit an Action frame |
| 2586 | * @priv: Private driver interface data |
| 2587 | * @freq: Frequency (in MHz) of the channel |
| 2588 | * @wait: Time to wait off-channel for a response (in ms), or zero |
| 2589 | * @dst: Destination MAC address (Address 1) |
| 2590 | * @src: Source MAC address (Address 2) |
| 2591 | * @bssid: BSSID (Address 3) |
| 2592 | * @data: Frame body |
| 2593 | * @data_len: data length in octets |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2594 | @ @no_cck: Whether CCK rates must not be used to transmit this frame |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2595 | * Returns: 0 on success, -1 on failure |
| 2596 | * |
| 2597 | * This command can be used to request the driver to transmit an action |
| 2598 | * frame to the specified destination. |
| 2599 | * |
| 2600 | * If the %WPA_DRIVER_FLAGS_OFFCHANNEL_TX flag is set, the frame will |
| 2601 | * be transmitted on the given channel and the device will wait for a |
| 2602 | * response on that channel for the given wait time. |
| 2603 | * |
| 2604 | * If the flag is not set, the wait time will be ignored. In this case, |
| 2605 | * if a remain-on-channel duration is in progress, the frame must be |
| 2606 | * transmitted on that channel; alternatively the frame may be sent on |
| 2607 | * the current operational channel (if in associated state in station |
| 2608 | * mode or while operating as an AP.) |
| 2609 | */ |
| 2610 | int (*send_action)(void *priv, unsigned int freq, unsigned int wait, |
| 2611 | const u8 *dst, const u8 *src, const u8 *bssid, |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2612 | const u8 *data, size_t data_len, int no_cck); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2613 | |
| 2614 | /** |
| 2615 | * send_action_cancel_wait - Cancel action frame TX wait |
| 2616 | * @priv: Private driver interface data |
| 2617 | * |
| 2618 | * This command cancels the wait time associated with sending an action |
| 2619 | * frame. It is only available when %WPA_DRIVER_FLAGS_OFFCHANNEL_TX is |
| 2620 | * set in the driver flags. |
| 2621 | */ |
| 2622 | void (*send_action_cancel_wait)(void *priv); |
| 2623 | |
| 2624 | /** |
| 2625 | * remain_on_channel - Remain awake on a channel |
| 2626 | * @priv: Private driver interface data |
| 2627 | * @freq: Frequency (in MHz) of the channel |
| 2628 | * @duration: Duration in milliseconds |
| 2629 | * Returns: 0 on success, -1 on failure |
| 2630 | * |
| 2631 | * This command is used to request the driver to remain awake on the |
| 2632 | * specified channel for the specified duration and report received |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 2633 | * Action frames with EVENT_RX_MGMT events. Optionally, received |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2634 | * Probe Request frames may also be requested to be reported by calling |
| 2635 | * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ. |
| 2636 | * |
| 2637 | * The driver may not be at the requested channel when this function |
| 2638 | * returns, i.e., the return code is only indicating whether the |
| 2639 | * request was accepted. The caller will need to wait until the |
| 2640 | * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has |
| 2641 | * completed the channel change. This may take some time due to other |
| 2642 | * need for the radio and the caller should be prepared to timing out |
| 2643 | * its wait since there are no guarantees on when this request can be |
| 2644 | * executed. |
| 2645 | */ |
| 2646 | int (*remain_on_channel)(void *priv, unsigned int freq, |
| 2647 | unsigned int duration); |
| 2648 | |
| 2649 | /** |
| 2650 | * cancel_remain_on_channel - Cancel remain-on-channel operation |
| 2651 | * @priv: Private driver interface data |
| 2652 | * |
| 2653 | * This command can be used to cancel a remain-on-channel operation |
| 2654 | * before its originally requested duration has passed. This could be |
| 2655 | * used, e.g., when remain_on_channel() is used to request extra time |
| 2656 | * to receive a response to an Action frame and the response is |
| 2657 | * received when there is still unneeded time remaining on the |
| 2658 | * remain-on-channel operation. |
| 2659 | */ |
| 2660 | int (*cancel_remain_on_channel)(void *priv); |
| 2661 | |
| 2662 | /** |
| 2663 | * probe_req_report - Request Probe Request frames to be indicated |
| 2664 | * @priv: Private driver interface data |
| 2665 | * @report: Whether to report received Probe Request frames |
| 2666 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 2667 | * |
| 2668 | * This command can be used to request the driver to indicate when |
| 2669 | * Probe Request frames are received with EVENT_RX_PROBE_REQ events. |
| 2670 | * Since this operation may require extra resources, e.g., due to less |
| 2671 | * optimal hardware/firmware RX filtering, many drivers may disable |
| 2672 | * Probe Request reporting at least in station mode. This command is |
| 2673 | * used to notify the driver when the Probe Request frames need to be |
| 2674 | * reported, e.g., during remain-on-channel operations. |
| 2675 | */ |
| 2676 | int (*probe_req_report)(void *priv, int report); |
| 2677 | |
| 2678 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2679 | * deinit_ap - Deinitialize AP mode |
| 2680 | * @priv: Private driver interface data |
| 2681 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 2682 | * |
| 2683 | * This optional function can be used to disable AP mode related |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 2684 | * configuration. If the interface was not dynamically added, |
| 2685 | * change the driver mode to station mode to allow normal station |
| 2686 | * operations like scanning to be completed. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2687 | */ |
| 2688 | int (*deinit_ap)(void *priv); |
| 2689 | |
| 2690 | /** |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2691 | * deinit_p2p_cli - Deinitialize P2P client mode |
| 2692 | * @priv: Private driver interface data |
| 2693 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 2694 | * |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 2695 | * This optional function can be used to disable P2P client mode. If the |
| 2696 | * interface was not dynamically added, change the interface type back |
| 2697 | * to station mode. |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2698 | */ |
| 2699 | int (*deinit_p2p_cli)(void *priv); |
| 2700 | |
| 2701 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2702 | * suspend - Notification on system suspend/hibernate event |
| 2703 | * @priv: Private driver interface data |
| 2704 | */ |
| 2705 | void (*suspend)(void *priv); |
| 2706 | |
| 2707 | /** |
| 2708 | * resume - Notification on system resume/thaw event |
| 2709 | * @priv: Private driver interface data |
| 2710 | */ |
| 2711 | void (*resume)(void *priv); |
| 2712 | |
| 2713 | /** |
| 2714 | * signal_monitor - Set signal monitoring parameters |
| 2715 | * @priv: Private driver interface data |
| 2716 | * @threshold: Threshold value for signal change events; 0 = disabled |
| 2717 | * @hysteresis: Minimum change in signal strength before indicating a |
| 2718 | * new event |
| 2719 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 2720 | * |
| 2721 | * This function can be used to configure monitoring of signal strength |
| 2722 | * with the current AP. Whenever signal strength drops below the |
| 2723 | * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event |
| 2724 | * should be generated assuming the signal strength has changed at |
| 2725 | * least %hysteresis from the previously indicated signal change event. |
| 2726 | */ |
| 2727 | int (*signal_monitor)(void *priv, int threshold, int hysteresis); |
| 2728 | |
| 2729 | /** |
| 2730 | * send_frame - Send IEEE 802.11 frame (testing use only) |
| 2731 | * @priv: Private driver interface data |
| 2732 | * @data: IEEE 802.11 frame with IEEE 802.11 header |
| 2733 | * @data_len: Size of the frame |
| 2734 | * @encrypt: Whether to encrypt the frame (if keys are set) |
| 2735 | * Returns: 0 on success, -1 on failure |
| 2736 | * |
| 2737 | * This function is only used for debugging purposes and is not |
| 2738 | * required to be implemented for normal operations. |
| 2739 | */ |
| 2740 | int (*send_frame)(void *priv, const u8 *data, size_t data_len, |
| 2741 | int encrypt); |
| 2742 | |
| 2743 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2744 | * get_noa - Get current Notice of Absence attribute payload |
| 2745 | * @priv: Private driver interface data |
| 2746 | * @buf: Buffer for returning NoA |
| 2747 | * @buf_len: Buffer length in octets |
| 2748 | * Returns: Number of octets used in buf, 0 to indicate no NoA is being |
| 2749 | * advertized, or -1 on failure |
| 2750 | * |
| 2751 | * This function is used to fetch the current Notice of Absence |
| 2752 | * attribute value from GO. |
| 2753 | */ |
| 2754 | int (*get_noa)(void *priv, u8 *buf, size_t buf_len); |
| 2755 | |
| 2756 | /** |
| 2757 | * set_noa - Set Notice of Absence parameters for GO (testing) |
| 2758 | * @priv: Private driver interface data |
| 2759 | * @count: Count |
| 2760 | * @start: Start time in ms from next TBTT |
| 2761 | * @duration: Duration in ms |
| 2762 | * Returns: 0 on success or -1 on failure |
| 2763 | * |
| 2764 | * This function is used to set Notice of Absence parameters for GO. It |
| 2765 | * is used only for testing. To disable NoA, all parameters are set to |
| 2766 | * 0. |
| 2767 | */ |
| 2768 | int (*set_noa)(void *priv, u8 count, int start, int duration); |
| 2769 | |
| 2770 | /** |
| 2771 | * set_p2p_powersave - Set P2P power save options |
| 2772 | * @priv: Private driver interface data |
| 2773 | * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change |
| 2774 | * @opp_ps: 0 = disable, 1 = enable, -1 = no change |
| 2775 | * @ctwindow: 0.. = change (msec), -1 = no change |
| 2776 | * Returns: 0 on success or -1 on failure |
| 2777 | */ |
| 2778 | int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps, |
| 2779 | int ctwindow); |
| 2780 | |
| 2781 | /** |
| 2782 | * ampdu - Enable/disable aggregation |
| 2783 | * @priv: Private driver interface data |
| 2784 | * @ampdu: 1/0 = enable/disable A-MPDU aggregation |
| 2785 | * Returns: 0 on success or -1 on failure |
| 2786 | */ |
| 2787 | int (*ampdu)(void *priv, int ampdu); |
| 2788 | |
| 2789 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2790 | * get_radio_name - Get physical radio name for the device |
| 2791 | * @priv: Private driver interface data |
| 2792 | * Returns: Radio name or %NULL if not known |
| 2793 | * |
| 2794 | * The returned data must not be modified by the caller. It is assumed |
| 2795 | * that any interface that has the same radio name as another is |
| 2796 | * sharing the same physical radio. This information can be used to |
| 2797 | * share scan results etc. information between the virtual interfaces |
| 2798 | * to speed up various operations. |
| 2799 | */ |
| 2800 | const char * (*get_radio_name)(void *priv); |
| 2801 | |
| 2802 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2803 | * send_tdls_mgmt - for sending TDLS management packets |
| 2804 | * @priv: private driver interface data |
| 2805 | * @dst: Destination (peer) MAC address |
| 2806 | * @action_code: TDLS action code for the mssage |
| 2807 | * @dialog_token: Dialog Token to use in the message (if needed) |
| 2808 | * @status_code: Status Code or Reason Code to use (if needed) |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 2809 | * @peer_capab: TDLS peer capability (TDLS_PEER_* bitfield) |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 2810 | * @initiator: Is the current end the TDLS link initiator |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2811 | * @buf: TDLS IEs to add to the message |
| 2812 | * @len: Length of buf in octets |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2813 | * Returns: 0 on success, negative (<0) on failure |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2814 | * |
| 2815 | * This optional function can be used to send packet to driver which is |
| 2816 | * responsible for receiving and sending all TDLS packets. |
| 2817 | */ |
| 2818 | int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code, |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 2819 | u8 dialog_token, u16 status_code, u32 peer_capab, |
Dmitry Shmidt | 9ead16e | 2014-10-07 13:15:23 -0700 | [diff] [blame] | 2820 | int initiator, const u8 *buf, size_t len); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2821 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2822 | /** |
| 2823 | * tdls_oper - Ask the driver to perform high-level TDLS operations |
| 2824 | * @priv: Private driver interface data |
| 2825 | * @oper: TDLS high-level operation. See %enum tdls_oper |
| 2826 | * @peer: Destination (peer) MAC address |
| 2827 | * Returns: 0 on success, negative (<0) on failure |
| 2828 | * |
| 2829 | * This optional function can be used to send high-level TDLS commands |
| 2830 | * to the driver. |
| 2831 | */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2832 | int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer); |
| 2833 | |
| 2834 | /** |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2835 | * wnm_oper - Notify driver of the WNM frame reception |
| 2836 | * @priv: Private driver interface data |
| 2837 | * @oper: WNM operation. See %enum wnm_oper |
| 2838 | * @peer: Destination (peer) MAC address |
| 2839 | * @buf: Buffer for the driver to fill in (for getting IE) |
| 2840 | * @buf_len: Return the len of buf |
| 2841 | * Returns: 0 on success, negative (<0) on failure |
| 2842 | */ |
| 2843 | int (*wnm_oper)(void *priv, enum wnm_oper oper, const u8 *peer, |
| 2844 | u8 *buf, u16 *buf_len); |
| 2845 | |
| 2846 | /** |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 2847 | * set_qos_map - Set QoS Map |
| 2848 | * @priv: Private driver interface data |
| 2849 | * @qos_map_set: QoS Map |
| 2850 | * @qos_map_set_len: Length of QoS Map |
| 2851 | */ |
| 2852 | int (*set_qos_map)(void *priv, const u8 *qos_map_set, |
| 2853 | u8 qos_map_set_len); |
| 2854 | |
| 2855 | /** |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 2856 | * br_add_ip_neigh - Add a neigh to the bridge ip neigh table |
| 2857 | * @priv: Private driver interface data |
| 2858 | * @version: IP version of the IP address, 4 or 6 |
| 2859 | * @ipaddr: IP address for the neigh entry |
| 2860 | * @prefixlen: IP address prefix length |
| 2861 | * @addr: Corresponding MAC address |
| 2862 | * Returns: 0 on success, negative (<0) on failure |
| 2863 | */ |
| 2864 | int (*br_add_ip_neigh)(void *priv, u8 version, const u8 *ipaddr, |
| 2865 | int prefixlen, const u8 *addr); |
| 2866 | |
| 2867 | /** |
| 2868 | * br_delete_ip_neigh - Remove a neigh from the bridge ip neigh table |
| 2869 | * @priv: Private driver interface data |
| 2870 | * @version: IP version of the IP address, 4 or 6 |
| 2871 | * @ipaddr: IP address for the neigh entry |
| 2872 | * Returns: 0 on success, negative (<0) on failure |
| 2873 | */ |
| 2874 | int (*br_delete_ip_neigh)(void *priv, u8 version, const u8 *ipaddr); |
| 2875 | |
| 2876 | /** |
| 2877 | * br_port_set_attr - Set a bridge port attribute |
| 2878 | * @attr: Bridge port attribute to set |
| 2879 | * @val: Value to be set |
| 2880 | * Returns: 0 on success, negative (<0) on failure |
| 2881 | */ |
| 2882 | int (*br_port_set_attr)(void *priv, enum drv_br_port_attr attr, |
| 2883 | unsigned int val); |
| 2884 | |
| 2885 | /** |
| 2886 | * br_port_set_attr - Set a bridge network parameter |
| 2887 | * @param: Bridge parameter to set |
| 2888 | * @val: Value to be set |
| 2889 | * Returns: 0 on success, negative (<0) on failure |
| 2890 | */ |
| 2891 | int (*br_set_net_param)(void *priv, enum drv_br_net_param param, |
| 2892 | unsigned int val); |
| 2893 | |
| 2894 | /** |
Dmitry Shmidt | b58836e | 2014-04-29 14:35:56 -0700 | [diff] [blame] | 2895 | * set_wowlan - Set wake-on-wireless triggers |
| 2896 | * @priv: Private driver interface data |
| 2897 | * @triggers: wowlan triggers |
| 2898 | */ |
| 2899 | int (*set_wowlan)(void *priv, const struct wowlan_triggers *triggers); |
| 2900 | |
| 2901 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2902 | * signal_poll - Get current connection information |
| 2903 | * @priv: Private driver interface data |
| 2904 | * @signal_info: Connection info structure |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 2905 | */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2906 | int (*signal_poll)(void *priv, struct wpa_signal_info *signal_info); |
Dmitry Shmidt | bd567ad | 2011-05-09 14:17:09 -0700 | [diff] [blame] | 2907 | |
| 2908 | /** |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 2909 | * set_authmode - Set authentication algorithm(s) for static WEP |
| 2910 | * @priv: Private driver interface data |
| 2911 | * @authmode: 1=Open System, 2=Shared Key, 3=both |
| 2912 | * Returns: 0 on success, -1 on failure |
| 2913 | * |
| 2914 | * This function can be used to set authentication algorithms for AP |
| 2915 | * mode when static WEP is used. If the driver uses user space MLME/SME |
| 2916 | * implementation, there is no need to implement this function. |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2917 | * |
| 2918 | * DEPRECATED - use set_ap() instead |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 2919 | */ |
| 2920 | int (*set_authmode)(void *priv, int authmode); |
Dmitry Shmidt | 292b0c3 | 2013-11-22 12:54:42 -0800 | [diff] [blame] | 2921 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2922 | #ifdef ANDROID |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 2923 | /** |
Dmitry Shmidt | 292b0c3 | 2013-11-22 12:54:42 -0800 | [diff] [blame] | 2924 | * driver_cmd - Execute driver-specific command |
| 2925 | * @priv: Private driver interface data |
| 2926 | * @cmd: Command to execute |
| 2927 | * @buf: Return buffer |
| 2928 | * @buf_len: Buffer length |
Dmitry Shmidt | bd567ad | 2011-05-09 14:17:09 -0700 | [diff] [blame] | 2929 | * Returns: 0 on success, -1 on failure |
| 2930 | */ |
Dmitry Shmidt | 292b0c3 | 2013-11-22 12:54:42 -0800 | [diff] [blame] | 2931 | int (*driver_cmd)(void *priv, char *cmd, char *buf, size_t buf_len); |
| 2932 | #endif /* ANDROID */ |
| 2933 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2934 | /** |
Dmitry Shmidt | a38abf9 | 2014-03-06 13:38:44 -0800 | [diff] [blame] | 2935 | * vendor_cmd - Execute vendor specific command |
| 2936 | * @priv: Private driver interface data |
| 2937 | * @vendor_id: Vendor id |
| 2938 | * @subcmd: Vendor command id |
| 2939 | * @data: Vendor command parameters (%NULL if no parameters) |
| 2940 | * @data_len: Data length |
| 2941 | * @buf: Return buffer (%NULL to ignore reply) |
| 2942 | * Returns: 0 on success, negative (<0) on failure |
| 2943 | * |
| 2944 | * This function handles vendor specific commands that are passed to |
| 2945 | * the driver/device. The command is identified by vendor id and |
| 2946 | * command id. Parameters can be passed as argument to the command |
| 2947 | * in the data buffer. Reply (if any) will be filled in the supplied |
| 2948 | * return buffer. |
| 2949 | * |
| 2950 | * The exact driver behavior is driver interface and vendor specific. As |
| 2951 | * an example, this will be converted to a vendor specific cfg80211 |
| 2952 | * command in case of the nl80211 driver interface. |
| 2953 | */ |
| 2954 | int (*vendor_cmd)(void *priv, unsigned int vendor_id, |
| 2955 | unsigned int subcmd, const u8 *data, size_t data_len, |
| 2956 | struct wpabuf *buf); |
| 2957 | |
| 2958 | /** |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2959 | * set_rekey_info - Set rekey information |
| 2960 | * @priv: Private driver interface data |
| 2961 | * @kek: Current KEK |
Dmitry Shmidt | 807291d | 2015-01-27 13:40:23 -0800 | [diff] [blame] | 2962 | * @kek_len: KEK length in octets |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2963 | * @kck: Current KCK |
Dmitry Shmidt | 807291d | 2015-01-27 13:40:23 -0800 | [diff] [blame] | 2964 | * @kck_len: KCK length in octets |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2965 | * @replay_ctr: Current EAPOL-Key Replay Counter |
| 2966 | * |
| 2967 | * This optional function can be used to provide information for the |
| 2968 | * driver/firmware to process EAPOL-Key frames in Group Key Handshake |
| 2969 | * while the host (including wpa_supplicant) is sleeping. |
| 2970 | */ |
Dmitry Shmidt | 807291d | 2015-01-27 13:40:23 -0800 | [diff] [blame] | 2971 | void (*set_rekey_info)(void *priv, const u8 *kek, size_t kek_len, |
| 2972 | const u8 *kck, size_t kck_len, |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 2973 | const u8 *replay_ctr); |
| 2974 | |
| 2975 | /** |
| 2976 | * sta_assoc - Station association indication |
| 2977 | * @priv: Private driver interface data |
| 2978 | * @own_addr: Source address and BSSID for association frame |
| 2979 | * @addr: MAC address of the station to associate |
| 2980 | * @reassoc: flag to indicate re-association |
| 2981 | * @status: association response status code |
| 2982 | * @ie: assoc response ie buffer |
| 2983 | * @len: ie buffer length |
| 2984 | * Returns: 0 on success, -1 on failure |
| 2985 | * |
| 2986 | * This function indicates the driver to send (Re)Association |
| 2987 | * Response frame to the station. |
| 2988 | */ |
| 2989 | int (*sta_assoc)(void *priv, const u8 *own_addr, const u8 *addr, |
| 2990 | int reassoc, u16 status, const u8 *ie, size_t len); |
| 2991 | |
| 2992 | /** |
| 2993 | * sta_auth - Station authentication indication |
| 2994 | * @priv: Private driver interface data |
| 2995 | * @own_addr: Source address and BSSID for authentication frame |
| 2996 | * @addr: MAC address of the station to associate |
| 2997 | * @seq: authentication sequence number |
| 2998 | * @status: authentication response status code |
| 2999 | * @ie: authentication frame ie buffer |
| 3000 | * @len: ie buffer length |
| 3001 | * |
| 3002 | * This function indicates the driver to send Authentication frame |
| 3003 | * to the station. |
| 3004 | */ |
| 3005 | int (*sta_auth)(void *priv, const u8 *own_addr, const u8 *addr, |
| 3006 | u16 seq, u16 status, const u8 *ie, size_t len); |
| 3007 | |
| 3008 | /** |
| 3009 | * add_tspec - Add traffic stream |
| 3010 | * @priv: Private driver interface data |
| 3011 | * @addr: MAC address of the station to associate |
| 3012 | * @tspec_ie: tspec ie buffer |
| 3013 | * @tspec_ielen: tspec ie length |
| 3014 | * Returns: 0 on success, -1 on failure |
| 3015 | * |
| 3016 | * This function adds the traffic steam for the station |
| 3017 | * and fills the medium_time in tspec_ie. |
| 3018 | */ |
| 3019 | int (*add_tspec)(void *priv, const u8 *addr, u8 *tspec_ie, |
| 3020 | size_t tspec_ielen); |
| 3021 | |
| 3022 | /** |
| 3023 | * add_sta_node - Add a station node in the driver |
| 3024 | * @priv: Private driver interface data |
| 3025 | * @addr: MAC address of the station to add |
| 3026 | * @auth_alg: authentication algorithm used by the station |
| 3027 | * Returns: 0 on success, -1 on failure |
| 3028 | * |
| 3029 | * This function adds the station node in the driver, when |
| 3030 | * the station gets added by FT-over-DS. |
| 3031 | */ |
| 3032 | int (*add_sta_node)(void *priv, const u8 *addr, u16 auth_alg); |
| 3033 | |
| 3034 | /** |
| 3035 | * sched_scan - Request the driver to initiate scheduled scan |
| 3036 | * @priv: Private driver interface data |
| 3037 | * @params: Scan parameters |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 3038 | * Returns: 0 on success, -1 on failure |
| 3039 | * |
| 3040 | * This operation should be used for scheduled scan offload to |
| 3041 | * the hardware. Every time scan results are available, the |
| 3042 | * driver should report scan results event for wpa_supplicant |
| 3043 | * which will eventually request the results with |
| 3044 | * wpa_driver_get_scan_results2(). This operation is optional |
| 3045 | * and if not provided or if it returns -1, we fall back to |
| 3046 | * normal host-scheduled scans. |
| 3047 | */ |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 3048 | int (*sched_scan)(void *priv, struct wpa_driver_scan_params *params); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 3049 | |
| 3050 | /** |
| 3051 | * stop_sched_scan - Request the driver to stop a scheduled scan |
| 3052 | * @priv: Private driver interface data |
| 3053 | * Returns: 0 on success, -1 on failure |
| 3054 | * |
| 3055 | * This should cause the scheduled scan to be stopped and |
| 3056 | * results should stop being sent. Must be supported if |
| 3057 | * sched_scan is supported. |
| 3058 | */ |
| 3059 | int (*stop_sched_scan)(void *priv); |
| 3060 | |
| 3061 | /** |
| 3062 | * poll_client - Probe (null data or such) the given station |
| 3063 | * @priv: Private driver interface data |
| 3064 | * @own_addr: MAC address of sending interface |
| 3065 | * @addr: MAC address of the station to probe |
| 3066 | * @qos: Indicates whether station is QoS station |
| 3067 | * |
| 3068 | * This function is used to verify whether an associated station is |
| 3069 | * still present. This function does not need to be implemented if the |
| 3070 | * driver provides such inactivity polling mechanism. |
| 3071 | */ |
| 3072 | void (*poll_client)(void *priv, const u8 *own_addr, |
| 3073 | const u8 *addr, int qos); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 3074 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 3075 | /** |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 3076 | * radio_disable - Disable/enable radio |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 3077 | * @priv: Private driver interface data |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 3078 | * @disabled: 1=disable 0=enable radio |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 3079 | * Returns: 0 on success, -1 on failure |
| 3080 | * |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 3081 | * This optional command is for testing purposes. It can be used to |
| 3082 | * disable the radio on a testbed device to simulate out-of-radio-range |
| 3083 | * conditions. |
| 3084 | */ |
| 3085 | int (*radio_disable)(void *priv, int disabled); |
| 3086 | |
| 3087 | /** |
| 3088 | * switch_channel - Announce channel switch and migrate the GO to the |
| 3089 | * given frequency |
| 3090 | * @priv: Private driver interface data |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 3091 | * @settings: Settings for CSA period and new channel |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 3092 | * Returns: 0 on success, -1 on failure |
| 3093 | * |
| 3094 | * This function is used to move the GO to the legacy STA channel to |
| 3095 | * avoid frequency conflict in single channel concurrency. |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 3096 | */ |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 3097 | int (*switch_channel)(void *priv, struct csa_settings *settings); |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3098 | |
| 3099 | /** |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 3100 | * add_tx_ts - Add traffic stream |
| 3101 | * @priv: Private driver interface data |
| 3102 | * @tsid: Traffic stream ID |
| 3103 | * @addr: Receiver address |
| 3104 | * @user_prio: User priority of the traffic stream |
| 3105 | * @admitted_time: Admitted time for this TS in units of |
| 3106 | * 32 microsecond periods (per second). |
| 3107 | * Returns: 0 on success, -1 on failure |
| 3108 | */ |
| 3109 | int (*add_tx_ts)(void *priv, u8 tsid, const u8 *addr, u8 user_prio, |
| 3110 | u16 admitted_time); |
| 3111 | |
| 3112 | /** |
| 3113 | * del_tx_ts - Delete traffic stream |
| 3114 | * @priv: Private driver interface data |
| 3115 | * @tsid: Traffic stream ID |
| 3116 | * @addr: Receiver address |
| 3117 | * Returns: 0 on success, -1 on failure |
| 3118 | */ |
| 3119 | int (*del_tx_ts)(void *priv, u8 tsid, const u8 *addr); |
| 3120 | |
| 3121 | /** |
| 3122 | * Enable channel-switching with TDLS peer |
| 3123 | * @priv: Private driver interface data |
| 3124 | * @addr: MAC address of the TDLS peer |
| 3125 | * @oper_class: Operating class of the switch channel |
| 3126 | * @params: Channel specification |
| 3127 | * Returns: 0 on success, -1 on failure |
| 3128 | * |
| 3129 | * The function indicates to driver that it can start switching to a |
| 3130 | * different channel with a specified TDLS peer. The switching is |
| 3131 | * assumed on until canceled with tdls_disable_channel_switch(). |
| 3132 | */ |
| 3133 | int (*tdls_enable_channel_switch)( |
| 3134 | void *priv, const u8 *addr, u8 oper_class, |
| 3135 | const struct hostapd_freq_params *params); |
| 3136 | |
| 3137 | /** |
| 3138 | * Disable channel switching with TDLS peer |
| 3139 | * @priv: Private driver interface data |
| 3140 | * @addr: MAC address of the TDLS peer |
| 3141 | * Returns: 0 on success, -1 on failure |
| 3142 | * |
| 3143 | * This function indicates to the driver that it should stop switching |
| 3144 | * with a given TDLS peer. |
| 3145 | */ |
| 3146 | int (*tdls_disable_channel_switch)(void *priv, const u8 *addr); |
| 3147 | |
| 3148 | /** |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3149 | * start_dfs_cac - Listen for radar interference on the channel |
| 3150 | * @priv: Private driver interface data |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 3151 | * @freq: Channel parameters |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3152 | * Returns: 0 on success, -1 on failure |
| 3153 | */ |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 3154 | int (*start_dfs_cac)(void *priv, struct hostapd_freq_params *freq); |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3155 | |
| 3156 | /** |
| 3157 | * stop_ap - Removes beacon from AP |
| 3158 | * @priv: Private driver interface data |
| 3159 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3160 | * |
| 3161 | * This optional function can be used to disable AP mode related |
| 3162 | * configuration. Unlike deinit_ap, it does not change to station |
| 3163 | * mode. |
| 3164 | */ |
| 3165 | int (*stop_ap)(void *priv); |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 3166 | |
| 3167 | /** |
| 3168 | * get_survey - Retrieve survey data |
| 3169 | * @priv: Private driver interface data |
| 3170 | * @freq: If set, survey data for the specified frequency is only |
| 3171 | * being requested. If not set, all survey data is requested. |
| 3172 | * Returns: 0 on success, -1 on failure |
| 3173 | * |
| 3174 | * Use this to retrieve: |
| 3175 | * |
| 3176 | * - the observed channel noise floor |
| 3177 | * - the amount of time we have spent on the channel |
| 3178 | * - the amount of time during which we have spent on the channel that |
| 3179 | * the radio has determined the medium is busy and we cannot |
| 3180 | * transmit |
| 3181 | * - the amount of time we have spent receiving data |
| 3182 | * - the amount of time we have spent transmitting data |
| 3183 | * |
| 3184 | * This data can be used for spectrum heuristics. One example is |
| 3185 | * Automatic Channel Selection (ACS). The channel survey data is |
| 3186 | * kept on a linked list on the channel data, one entry is added |
| 3187 | * for each survey. The min_nf of the channel is updated for each |
| 3188 | * survey. |
| 3189 | */ |
| 3190 | int (*get_survey)(void *priv, unsigned int freq); |
Dmitry Shmidt | 5605286 | 2013-10-04 10:23:25 -0700 | [diff] [blame] | 3191 | |
| 3192 | /** |
| 3193 | * status - Get driver interface status information |
| 3194 | * @priv: Private driver interface data |
| 3195 | * @buf: Buffer for printing tou the status information |
| 3196 | * @buflen: Maximum length of the buffer |
| 3197 | * Returns: Length of written status information or -1 on failure |
| 3198 | */ |
| 3199 | int (*status)(void *priv, char *buf, size_t buflen); |
Dmitry Shmidt | 5a1480c | 2014-05-12 09:46:02 -0700 | [diff] [blame] | 3200 | |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 3201 | /** |
| 3202 | * roaming - Set roaming policy for driver-based BSS selection |
| 3203 | * @priv: Private driver interface data |
| 3204 | * @allowed: Whether roaming within ESS is allowed |
| 3205 | * @bssid: Forced BSSID if roaming is disabled or %NULL if not set |
| 3206 | * Returns: Length of written status information or -1 on failure |
| 3207 | * |
| 3208 | * This optional callback can be used to update roaming policy from the |
| 3209 | * associate() command (bssid being set there indicates that the driver |
| 3210 | * should not roam before getting this roaming() call to allow roaming. |
| 3211 | * If the driver does not indicate WPA_DRIVER_FLAGS_BSS_SELECTION |
| 3212 | * capability, roaming policy is handled within wpa_supplicant and there |
| 3213 | * is no need to implement or react to this callback. |
| 3214 | */ |
| 3215 | int (*roaming)(void *priv, int allowed, const u8 *bssid); |
| 3216 | |
| 3217 | /** |
| 3218 | * set_mac_addr - Set MAC address |
| 3219 | * @priv: Private driver interface data |
| 3220 | * @addr: MAC address to use or %NULL for setting back to permanent |
| 3221 | * Returns: 0 on success, -1 on failure |
| 3222 | */ |
| 3223 | int (*set_mac_addr)(void *priv, const u8 *addr); |
| 3224 | |
Dmitry Shmidt | 5a1480c | 2014-05-12 09:46:02 -0700 | [diff] [blame] | 3225 | #ifdef CONFIG_MACSEC |
| 3226 | int (*macsec_init)(void *priv, struct macsec_init_params *params); |
| 3227 | |
| 3228 | int (*macsec_deinit)(void *priv); |
| 3229 | |
| 3230 | /** |
| 3231 | * enable_protect_frames - Set protect frames status |
| 3232 | * @priv: Private driver interface data |
| 3233 | * @enabled: TRUE = protect frames enabled |
| 3234 | * FALSE = protect frames disabled |
| 3235 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3236 | */ |
| 3237 | int (*enable_protect_frames)(void *priv, Boolean enabled); |
| 3238 | |
| 3239 | /** |
| 3240 | * set_replay_protect - Set replay protect status and window size |
| 3241 | * @priv: Private driver interface data |
| 3242 | * @enabled: TRUE = replay protect enabled |
| 3243 | * FALSE = replay protect disabled |
| 3244 | * @window: replay window size, valid only when replay protect enabled |
| 3245 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3246 | */ |
| 3247 | int (*set_replay_protect)(void *priv, Boolean enabled, u32 window); |
| 3248 | |
| 3249 | /** |
| 3250 | * set_current_cipher_suite - Set current cipher suite |
| 3251 | * @priv: Private driver interface data |
| 3252 | * @cs: EUI64 identifier |
| 3253 | * @cs_len: Length of the cs buffer in octets |
| 3254 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3255 | */ |
| 3256 | int (*set_current_cipher_suite)(void *priv, const u8 *cs, |
| 3257 | size_t cs_len); |
| 3258 | |
| 3259 | /** |
| 3260 | * enable_controlled_port - Set controlled port status |
| 3261 | * @priv: Private driver interface data |
| 3262 | * @enabled: TRUE = controlled port enabled |
| 3263 | * FALSE = controlled port disabled |
| 3264 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3265 | */ |
| 3266 | int (*enable_controlled_port)(void *priv, Boolean enabled); |
| 3267 | |
| 3268 | /** |
| 3269 | * get_receive_lowest_pn - Get receive lowest pn |
| 3270 | * @priv: Private driver interface data |
| 3271 | * @channel: secure channel |
| 3272 | * @an: association number |
| 3273 | * @lowest_pn: lowest accept pn |
| 3274 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3275 | */ |
| 3276 | int (*get_receive_lowest_pn)(void *priv, u32 channel, u8 an, |
| 3277 | u32 *lowest_pn); |
| 3278 | |
| 3279 | /** |
| 3280 | * get_transmit_next_pn - Get transmit next pn |
| 3281 | * @priv: Private driver interface data |
| 3282 | * @channel: secure channel |
| 3283 | * @an: association number |
| 3284 | * @next_pn: next pn |
| 3285 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3286 | */ |
| 3287 | int (*get_transmit_next_pn)(void *priv, u32 channel, u8 an, |
| 3288 | u32 *next_pn); |
| 3289 | |
| 3290 | /** |
| 3291 | * set_transmit_next_pn - Set transmit next pn |
| 3292 | * @priv: Private driver interface data |
| 3293 | * @channel: secure channel |
| 3294 | * @an: association number |
| 3295 | * @next_pn: next pn |
| 3296 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3297 | */ |
| 3298 | int (*set_transmit_next_pn)(void *priv, u32 channel, u8 an, |
| 3299 | u32 next_pn); |
| 3300 | |
| 3301 | /** |
| 3302 | * get_available_receive_sc - get available receive channel |
| 3303 | * @priv: Private driver interface data |
| 3304 | * @channel: secure channel |
| 3305 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3306 | */ |
| 3307 | int (*get_available_receive_sc)(void *priv, u32 *channel); |
| 3308 | |
| 3309 | /** |
| 3310 | * create_receive_sc - create secure channel for receiving |
| 3311 | * @priv: Private driver interface data |
| 3312 | * @channel: secure channel |
| 3313 | * @sci_addr: secure channel identifier - address |
| 3314 | * @sci_port: secure channel identifier - port |
| 3315 | * @conf_offset: confidentiality offset (0, 30, or 50) |
| 3316 | * @validation: frame validation policy (0 = Disabled, 1 = Checked, |
| 3317 | * 2 = Strict) |
| 3318 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3319 | */ |
| 3320 | int (*create_receive_sc)(void *priv, u32 channel, const u8 *sci_addr, |
| 3321 | u16 sci_port, unsigned int conf_offset, |
| 3322 | int validation); |
| 3323 | |
| 3324 | /** |
| 3325 | * delete_receive_sc - delete secure connection for receiving |
| 3326 | * @priv: private driver interface data from init() |
| 3327 | * @channel: secure channel |
| 3328 | * Returns: 0 on success, -1 on failure |
| 3329 | */ |
| 3330 | int (*delete_receive_sc)(void *priv, u32 channel); |
| 3331 | |
| 3332 | /** |
| 3333 | * create_receive_sa - create secure association for receive |
| 3334 | * @priv: private driver interface data from init() |
| 3335 | * @channel: secure channel |
| 3336 | * @an: association number |
| 3337 | * @lowest_pn: the lowest packet number can be received |
| 3338 | * @sak: the secure association key |
| 3339 | * Returns: 0 on success, -1 on failure |
| 3340 | */ |
| 3341 | int (*create_receive_sa)(void *priv, u32 channel, u8 an, |
| 3342 | u32 lowest_pn, const u8 *sak); |
| 3343 | |
| 3344 | /** |
| 3345 | * enable_receive_sa - enable the SA for receive |
| 3346 | * @priv: private driver interface data from init() |
| 3347 | * @channel: secure channel |
| 3348 | * @an: association number |
| 3349 | * Returns: 0 on success, -1 on failure |
| 3350 | */ |
| 3351 | int (*enable_receive_sa)(void *priv, u32 channel, u8 an); |
| 3352 | |
| 3353 | /** |
| 3354 | * disable_receive_sa - disable SA for receive |
| 3355 | * @priv: private driver interface data from init() |
| 3356 | * @channel: secure channel index |
| 3357 | * @an: association number |
| 3358 | * Returns: 0 on success, -1 on failure |
| 3359 | */ |
| 3360 | int (*disable_receive_sa)(void *priv, u32 channel, u8 an); |
| 3361 | |
| 3362 | /** |
| 3363 | * get_available_transmit_sc - get available transmit channel |
| 3364 | * @priv: Private driver interface data |
| 3365 | * @channel: secure channel |
| 3366 | * Returns: 0 on success, -1 on failure (or if not supported) |
| 3367 | */ |
| 3368 | int (*get_available_transmit_sc)(void *priv, u32 *channel); |
| 3369 | |
| 3370 | /** |
| 3371 | * create_transmit_sc - create secure connection for transmit |
| 3372 | * @priv: private driver interface data from init() |
| 3373 | * @channel: secure channel |
| 3374 | * @sci_addr: secure channel identifier - address |
| 3375 | * @sci_port: secure channel identifier - port |
| 3376 | * Returns: 0 on success, -1 on failure |
| 3377 | */ |
| 3378 | int (*create_transmit_sc)(void *priv, u32 channel, const u8 *sci_addr, |
| 3379 | u16 sci_port, unsigned int conf_offset); |
| 3380 | |
| 3381 | /** |
| 3382 | * delete_transmit_sc - delete secure connection for transmit |
| 3383 | * @priv: private driver interface data from init() |
| 3384 | * @channel: secure channel |
| 3385 | * Returns: 0 on success, -1 on failure |
| 3386 | */ |
| 3387 | int (*delete_transmit_sc)(void *priv, u32 channel); |
| 3388 | |
| 3389 | /** |
| 3390 | * create_transmit_sa - create secure association for transmit |
| 3391 | * @priv: private driver interface data from init() |
| 3392 | * @channel: secure channel index |
| 3393 | * @an: association number |
| 3394 | * @next_pn: the packet number used as next transmit packet |
| 3395 | * @confidentiality: True if the SA is to provide confidentiality |
| 3396 | * as well as integrity |
| 3397 | * @sak: the secure association key |
| 3398 | * Returns: 0 on success, -1 on failure |
| 3399 | */ |
| 3400 | int (*create_transmit_sa)(void *priv, u32 channel, u8 an, u32 next_pn, |
| 3401 | Boolean confidentiality, const u8 *sak); |
| 3402 | |
| 3403 | /** |
| 3404 | * enable_transmit_sa - enable SA for transmit |
| 3405 | * @priv: private driver interface data from init() |
| 3406 | * @channel: secure channel |
| 3407 | * @an: association number |
| 3408 | * Returns: 0 on success, -1 on failure |
| 3409 | */ |
| 3410 | int (*enable_transmit_sa)(void *priv, u32 channel, u8 an); |
| 3411 | |
| 3412 | /** |
| 3413 | * disable_transmit_sa - disable SA for transmit |
| 3414 | * @priv: private driver interface data from init() |
| 3415 | * @channel: secure channel |
| 3416 | * @an: association number |
| 3417 | * Returns: 0 on success, -1 on failure |
| 3418 | */ |
| 3419 | int (*disable_transmit_sa)(void *priv, u32 channel, u8 an); |
| 3420 | #endif /* CONFIG_MACSEC */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 3421 | |
| 3422 | /** |
| 3423 | * init_mesh - Driver specific initialization for mesh |
| 3424 | * @priv: Private driver interface data |
| 3425 | * Returns: 0 on success, -1 on failure |
| 3426 | */ |
| 3427 | int (*init_mesh)(void *priv); |
| 3428 | |
| 3429 | /** |
| 3430 | * join_mesh - Join a mesh network |
| 3431 | * @priv: Private driver interface data |
| 3432 | * @params: Mesh configuration parameters |
| 3433 | * Returns: 0 on success, -1 on failure |
| 3434 | */ |
| 3435 | int (*join_mesh)(void *priv, |
| 3436 | struct wpa_driver_mesh_join_params *params); |
| 3437 | |
| 3438 | /** |
| 3439 | * leave_mesh - Leave a mesh network |
| 3440 | * @priv: Private driver interface data |
| 3441 | * Returns 0 on success, -1 on failure |
| 3442 | */ |
| 3443 | int (*leave_mesh)(void *priv); |
| 3444 | |
| 3445 | /** |
| 3446 | * do_acs - Automatically select channel |
| 3447 | * @priv: Private driver interface data |
| 3448 | * @params: Parameters for ACS |
| 3449 | * Returns 0 on success, -1 on failure |
| 3450 | * |
| 3451 | * This command can be used to offload ACS to the driver if the driver |
| 3452 | * indicates support for such offloading (WPA_DRIVER_FLAGS_ACS_OFFLOAD). |
| 3453 | */ |
| 3454 | int (*do_acs)(void *priv, struct drv_acs_params *params); |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 3455 | |
| 3456 | /** |
| 3457 | * set_band - Notify driver of band selection |
| 3458 | * @priv: Private driver interface data |
| 3459 | * @band: The selected band(s) |
| 3460 | * Returns 0 on success, -1 on failure |
| 3461 | */ |
| 3462 | int (*set_band)(void *priv, enum set_band band); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 3463 | |
| 3464 | /** |
| 3465 | * get_pref_freq_list - Get preferred frequency list for an interface |
| 3466 | * @priv: Private driver interface data |
| 3467 | * @if_type: Interface type |
| 3468 | * @num: Number of channels |
| 3469 | * @freq_list: Preferred channel frequency list encoded in MHz values |
| 3470 | * Returns 0 on success, -1 on failure |
| 3471 | * |
| 3472 | * This command can be used to query the preferred frequency list from |
| 3473 | * the driver specific to a particular interface type. |
| 3474 | */ |
| 3475 | int (*get_pref_freq_list)(void *priv, enum wpa_driver_if_type if_type, |
| 3476 | unsigned int *num, unsigned int *freq_list); |
| 3477 | |
| 3478 | /** |
| 3479 | * set_prob_oper_freq - Indicate probable P2P operating channel |
| 3480 | * @priv: Private driver interface data |
| 3481 | * @freq: Channel frequency in MHz |
| 3482 | * Returns 0 on success, -1 on failure |
| 3483 | * |
| 3484 | * This command can be used to inform the driver of the operating |
| 3485 | * frequency that an ongoing P2P group formation is likely to come up |
| 3486 | * on. Local device is assuming P2P Client role. |
| 3487 | */ |
| 3488 | int (*set_prob_oper_freq)(void *priv, unsigned int freq); |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 3489 | |
| 3490 | /** |
| 3491 | * abort_scan - Request the driver to abort an ongoing scan |
| 3492 | * @priv: Private driver interface data |
| 3493 | * Returns 0 on success, -1 on failure |
| 3494 | */ |
| 3495 | int (*abort_scan)(void *priv); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3496 | }; |
| 3497 | |
| 3498 | |
| 3499 | /** |
| 3500 | * enum wpa_event_type - Event type for wpa_supplicant_event() calls |
| 3501 | */ |
| 3502 | enum wpa_event_type { |
| 3503 | /** |
| 3504 | * EVENT_ASSOC - Association completed |
| 3505 | * |
| 3506 | * This event needs to be delivered when the driver completes IEEE |
| 3507 | * 802.11 association or reassociation successfully. |
| 3508 | * wpa_driver_ops::get_bssid() is expected to provide the current BSSID |
| 3509 | * after this event has been generated. In addition, optional |
| 3510 | * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide |
| 3511 | * more information about the association. If the driver interface gets |
| 3512 | * both of these events at the same time, it can also include the |
| 3513 | * assoc_info data in EVENT_ASSOC call. |
| 3514 | */ |
| 3515 | EVENT_ASSOC, |
| 3516 | |
| 3517 | /** |
| 3518 | * EVENT_DISASSOC - Association lost |
| 3519 | * |
| 3520 | * This event should be called when association is lost either due to |
| 3521 | * receiving deauthenticate or disassociate frame from the AP or when |
| 3522 | * sending either of these frames to the current AP. If the driver |
| 3523 | * supports separate deauthentication event, EVENT_DISASSOC should only |
| 3524 | * be used for disassociation and EVENT_DEAUTH for deauthentication. |
| 3525 | * In AP mode, union wpa_event_data::disassoc_info is required. |
| 3526 | */ |
| 3527 | EVENT_DISASSOC, |
| 3528 | |
| 3529 | /** |
| 3530 | * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected |
| 3531 | * |
| 3532 | * This event must be delivered when a Michael MIC error is detected by |
| 3533 | * the local driver. Additional data for event processing is |
| 3534 | * provided with union wpa_event_data::michael_mic_failure. This |
| 3535 | * information is used to request new encyption key and to initiate |
| 3536 | * TKIP countermeasures if needed. |
| 3537 | */ |
| 3538 | EVENT_MICHAEL_MIC_FAILURE, |
| 3539 | |
| 3540 | /** |
| 3541 | * EVENT_SCAN_RESULTS - Scan results available |
| 3542 | * |
| 3543 | * This event must be called whenever scan results are available to be |
| 3544 | * fetched with struct wpa_driver_ops::get_scan_results(). This event |
| 3545 | * is expected to be used some time after struct wpa_driver_ops::scan() |
| 3546 | * is called. If the driver provides an unsolicited event when the scan |
| 3547 | * has been completed, this event can be used to trigger |
| 3548 | * EVENT_SCAN_RESULTS call. If such event is not available from the |
| 3549 | * driver, the driver wrapper code is expected to use a registered |
| 3550 | * timeout to generate EVENT_SCAN_RESULTS call after the time that the |
| 3551 | * scan is expected to be completed. Optional information about |
| 3552 | * completed scan can be provided with union wpa_event_data::scan_info. |
| 3553 | */ |
| 3554 | EVENT_SCAN_RESULTS, |
| 3555 | |
| 3556 | /** |
| 3557 | * EVENT_ASSOCINFO - Report optional extra information for association |
| 3558 | * |
| 3559 | * This event can be used to report extra association information for |
| 3560 | * EVENT_ASSOC processing. This extra information includes IEs from |
| 3561 | * association frames and Beacon/Probe Response frames in union |
| 3562 | * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before |
| 3563 | * EVENT_ASSOC. Alternatively, the driver interface can include |
| 3564 | * assoc_info data in the EVENT_ASSOC call if it has all the |
| 3565 | * information available at the same point. |
| 3566 | */ |
| 3567 | EVENT_ASSOCINFO, |
| 3568 | |
| 3569 | /** |
| 3570 | * EVENT_INTERFACE_STATUS - Report interface status changes |
| 3571 | * |
| 3572 | * This optional event can be used to report changes in interface |
| 3573 | * status (interface added/removed) using union |
| 3574 | * wpa_event_data::interface_status. This can be used to trigger |
| 3575 | * wpa_supplicant to stop and re-start processing for the interface, |
| 3576 | * e.g., when a cardbus card is ejected/inserted. |
| 3577 | */ |
| 3578 | EVENT_INTERFACE_STATUS, |
| 3579 | |
| 3580 | /** |
| 3581 | * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication |
| 3582 | * |
| 3583 | * This event can be used to inform wpa_supplicant about candidates for |
| 3584 | * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible |
| 3585 | * for scan request (ap_scan=2 mode), this event is required for |
| 3586 | * pre-authentication. If wpa_supplicant is performing scan request |
| 3587 | * (ap_scan=1), this event is optional since scan results can be used |
| 3588 | * to add pre-authentication candidates. union |
| 3589 | * wpa_event_data::pmkid_candidate is used to report the BSSID of the |
| 3590 | * candidate and priority of the candidate, e.g., based on the signal |
| 3591 | * strength, in order to try to pre-authenticate first with candidates |
| 3592 | * that are most likely targets for re-association. |
| 3593 | * |
| 3594 | * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates |
| 3595 | * on the candidate list. In addition, it can be called for the current |
| 3596 | * AP and APs that have existing PMKSA cache entries. wpa_supplicant |
| 3597 | * will automatically skip pre-authentication in cases where a valid |
| 3598 | * PMKSA exists. When more than one candidate exists, this event should |
| 3599 | * be generated once for each candidate. |
| 3600 | * |
| 3601 | * Driver will be notified about successful pre-authentication with |
| 3602 | * struct wpa_driver_ops::add_pmkid() calls. |
| 3603 | */ |
| 3604 | EVENT_PMKID_CANDIDATE, |
| 3605 | |
| 3606 | /** |
| 3607 | * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request) |
| 3608 | * |
| 3609 | * This event can be used to inform wpa_supplicant about desire to set |
| 3610 | * up secure direct link connection between two stations as defined in |
| 3611 | * IEEE 802.11e with a new PeerKey mechanism that replaced the original |
| 3612 | * STAKey negotiation. The caller will need to set peer address for the |
| 3613 | * event. |
| 3614 | */ |
| 3615 | EVENT_STKSTART, |
| 3616 | |
| 3617 | /** |
| 3618 | * EVENT_TDLS - Request TDLS operation |
| 3619 | * |
| 3620 | * This event can be used to request a TDLS operation to be performed. |
| 3621 | */ |
| 3622 | EVENT_TDLS, |
| 3623 | |
| 3624 | /** |
| 3625 | * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs |
| 3626 | * |
| 3627 | * The driver is expected to report the received FT IEs from |
| 3628 | * FT authentication sequence from the AP. The FT IEs are included in |
| 3629 | * the extra information in union wpa_event_data::ft_ies. |
| 3630 | */ |
| 3631 | EVENT_FT_RESPONSE, |
| 3632 | |
| 3633 | /** |
| 3634 | * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS |
| 3635 | * |
| 3636 | * The driver can use this event to inform wpa_supplicant about a STA |
| 3637 | * in an IBSS with which protected frames could be exchanged. This |
| 3638 | * event starts RSN authentication with the other STA to authenticate |
| 3639 | * the STA and set up encryption keys with it. |
| 3640 | */ |
| 3641 | EVENT_IBSS_RSN_START, |
| 3642 | |
| 3643 | /** |
| 3644 | * EVENT_AUTH - Authentication result |
| 3645 | * |
| 3646 | * This event should be called when authentication attempt has been |
| 3647 | * completed. This is only used if the driver supports separate |
| 3648 | * authentication step (struct wpa_driver_ops::authenticate). |
| 3649 | * Information about authentication result is included in |
| 3650 | * union wpa_event_data::auth. |
| 3651 | */ |
| 3652 | EVENT_AUTH, |
| 3653 | |
| 3654 | /** |
| 3655 | * EVENT_DEAUTH - Authentication lost |
| 3656 | * |
| 3657 | * This event should be called when authentication is lost either due |
| 3658 | * to receiving deauthenticate frame from the AP or when sending that |
| 3659 | * frame to the current AP. |
| 3660 | * In AP mode, union wpa_event_data::deauth_info is required. |
| 3661 | */ |
| 3662 | EVENT_DEAUTH, |
| 3663 | |
| 3664 | /** |
| 3665 | * EVENT_ASSOC_REJECT - Association rejected |
| 3666 | * |
| 3667 | * This event should be called when (re)association attempt has been |
| 3668 | * rejected by the AP. Information about the association response is |
| 3669 | * included in union wpa_event_data::assoc_reject. |
| 3670 | */ |
| 3671 | EVENT_ASSOC_REJECT, |
| 3672 | |
| 3673 | /** |
| 3674 | * EVENT_AUTH_TIMED_OUT - Authentication timed out |
| 3675 | */ |
| 3676 | EVENT_AUTH_TIMED_OUT, |
| 3677 | |
| 3678 | /** |
| 3679 | * EVENT_ASSOC_TIMED_OUT - Association timed out |
| 3680 | */ |
| 3681 | EVENT_ASSOC_TIMED_OUT, |
| 3682 | |
| 3683 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3684 | * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS |
| 3685 | */ |
| 3686 | EVENT_WPS_BUTTON_PUSHED, |
| 3687 | |
| 3688 | /** |
| 3689 | * EVENT_TX_STATUS - Report TX status |
| 3690 | */ |
| 3691 | EVENT_TX_STATUS, |
| 3692 | |
| 3693 | /** |
| 3694 | * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA |
| 3695 | */ |
| 3696 | EVENT_RX_FROM_UNKNOWN, |
| 3697 | |
| 3698 | /** |
| 3699 | * EVENT_RX_MGMT - Report RX of a management frame |
| 3700 | */ |
| 3701 | EVENT_RX_MGMT, |
| 3702 | |
| 3703 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3704 | * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started |
| 3705 | * |
| 3706 | * This event is used to indicate when the driver has started the |
| 3707 | * requested remain-on-channel duration. Information about the |
| 3708 | * operation is included in union wpa_event_data::remain_on_channel. |
| 3709 | */ |
| 3710 | EVENT_REMAIN_ON_CHANNEL, |
| 3711 | |
| 3712 | /** |
| 3713 | * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out |
| 3714 | * |
| 3715 | * This event is used to indicate when the driver has completed |
| 3716 | * remain-on-channel duration, i.e., may noot be available on the |
| 3717 | * requested channel anymore. Information about the |
| 3718 | * operation is included in union wpa_event_data::remain_on_channel. |
| 3719 | */ |
| 3720 | EVENT_CANCEL_REMAIN_ON_CHANNEL, |
| 3721 | |
| 3722 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3723 | * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame |
| 3724 | * |
| 3725 | * This event is used to indicate when a Probe Request frame has been |
| 3726 | * received. Information about the received frame is included in |
| 3727 | * union wpa_event_data::rx_probe_req. The driver is required to report |
| 3728 | * these events only after successfully completed probe_req_report() |
| 3729 | * commands to request the events (i.e., report parameter is non-zero) |
| 3730 | * in station mode. In AP mode, Probe Request frames should always be |
| 3731 | * reported. |
| 3732 | */ |
| 3733 | EVENT_RX_PROBE_REQ, |
| 3734 | |
| 3735 | /** |
| 3736 | * EVENT_NEW_STA - New wired device noticed |
| 3737 | * |
| 3738 | * This event is used to indicate that a new device has been detected |
| 3739 | * in a network that does not use association-like functionality (i.e., |
| 3740 | * mainly wired Ethernet). This can be used to start EAPOL |
| 3741 | * authenticator when receiving a frame from a device. The address of |
| 3742 | * the device is included in union wpa_event_data::new_sta. |
| 3743 | */ |
| 3744 | EVENT_NEW_STA, |
| 3745 | |
| 3746 | /** |
| 3747 | * EVENT_EAPOL_RX - Report received EAPOL frame |
| 3748 | * |
| 3749 | * When in AP mode with hostapd, this event is required to be used to |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 3750 | * deliver the receive EAPOL frames from the driver. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3751 | */ |
| 3752 | EVENT_EAPOL_RX, |
| 3753 | |
| 3754 | /** |
| 3755 | * EVENT_SIGNAL_CHANGE - Indicate change in signal strength |
| 3756 | * |
| 3757 | * This event is used to indicate changes in the signal strength |
| 3758 | * observed in frames received from the current AP if signal strength |
| 3759 | * monitoring has been enabled with signal_monitor(). |
| 3760 | */ |
| 3761 | EVENT_SIGNAL_CHANGE, |
| 3762 | |
| 3763 | /** |
| 3764 | * EVENT_INTERFACE_ENABLED - Notify that interface was enabled |
| 3765 | * |
| 3766 | * This event is used to indicate that the interface was enabled after |
| 3767 | * having been previously disabled, e.g., due to rfkill. |
| 3768 | */ |
| 3769 | EVENT_INTERFACE_ENABLED, |
| 3770 | |
| 3771 | /** |
| 3772 | * EVENT_INTERFACE_DISABLED - Notify that interface was disabled |
| 3773 | * |
| 3774 | * This event is used to indicate that the interface was disabled, |
| 3775 | * e.g., due to rfkill. |
| 3776 | */ |
| 3777 | EVENT_INTERFACE_DISABLED, |
| 3778 | |
| 3779 | /** |
| 3780 | * EVENT_CHANNEL_LIST_CHANGED - Channel list changed |
| 3781 | * |
| 3782 | * This event is used to indicate that the channel list has changed, |
| 3783 | * e.g., because of a regulatory domain change triggered by scan |
| 3784 | * results including an AP advertising a country code. |
| 3785 | */ |
| 3786 | EVENT_CHANNEL_LIST_CHANGED, |
| 3787 | |
| 3788 | /** |
| 3789 | * EVENT_INTERFACE_UNAVAILABLE - Notify that interface is unavailable |
| 3790 | * |
| 3791 | * This event is used to indicate that the driver cannot maintain this |
| 3792 | * interface in its operation mode anymore. The most likely use for |
| 3793 | * this is to indicate that AP mode operation is not available due to |
| 3794 | * operating channel would need to be changed to a DFS channel when |
| 3795 | * the driver does not support radar detection and another virtual |
| 3796 | * interfaces caused the operating channel to change. Other similar |
| 3797 | * resource conflicts could also trigger this for station mode |
Dmitry Shmidt | d30ac60 | 2014-06-30 09:54:22 -0700 | [diff] [blame] | 3798 | * interfaces. This event can be propagated when channel switching |
| 3799 | * fails. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3800 | */ |
| 3801 | EVENT_INTERFACE_UNAVAILABLE, |
| 3802 | |
| 3803 | /** |
| 3804 | * EVENT_BEST_CHANNEL |
| 3805 | * |
| 3806 | * Driver generates this event whenever it detects a better channel |
| 3807 | * (e.g., based on RSSI or channel use). This information can be used |
| 3808 | * to improve channel selection for a new AP/P2P group. |
| 3809 | */ |
| 3810 | EVENT_BEST_CHANNEL, |
| 3811 | |
| 3812 | /** |
| 3813 | * EVENT_UNPROT_DEAUTH - Unprotected Deauthentication frame received |
| 3814 | * |
| 3815 | * This event should be called when a Deauthentication frame is dropped |
| 3816 | * due to it not being protected (MFP/IEEE 802.11w). |
| 3817 | * union wpa_event_data::unprot_deauth is required to provide more |
| 3818 | * details of the frame. |
| 3819 | */ |
| 3820 | EVENT_UNPROT_DEAUTH, |
| 3821 | |
| 3822 | /** |
| 3823 | * EVENT_UNPROT_DISASSOC - Unprotected Disassociation frame received |
| 3824 | * |
| 3825 | * This event should be called when a Disassociation frame is dropped |
| 3826 | * due to it not being protected (MFP/IEEE 802.11w). |
| 3827 | * union wpa_event_data::unprot_disassoc is required to provide more |
| 3828 | * details of the frame. |
| 3829 | */ |
| 3830 | EVENT_UNPROT_DISASSOC, |
| 3831 | |
| 3832 | /** |
| 3833 | * EVENT_STATION_LOW_ACK |
| 3834 | * |
| 3835 | * Driver generates this event whenever it detected that a particular |
| 3836 | * station was lost. Detection can be through massive transmission |
| 3837 | * failures for example. |
| 3838 | */ |
| 3839 | EVENT_STATION_LOW_ACK, |
| 3840 | |
| 3841 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3842 | * EVENT_IBSS_PEER_LOST - IBSS peer not reachable anymore |
| 3843 | */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 3844 | EVENT_IBSS_PEER_LOST, |
| 3845 | |
| 3846 | /** |
| 3847 | * EVENT_DRIVER_GTK_REKEY - Device/driver did GTK rekey |
| 3848 | * |
| 3849 | * This event carries the new replay counter to notify wpa_supplicant |
| 3850 | * of the current EAPOL-Key Replay Counter in case the driver/firmware |
| 3851 | * completed Group Key Handshake while the host (including |
| 3852 | * wpa_supplicant was sleeping). |
| 3853 | */ |
| 3854 | EVENT_DRIVER_GTK_REKEY, |
| 3855 | |
| 3856 | /** |
| 3857 | * EVENT_SCHED_SCAN_STOPPED - Scheduled scan was stopped |
| 3858 | */ |
| 3859 | EVENT_SCHED_SCAN_STOPPED, |
| 3860 | |
| 3861 | /** |
| 3862 | * EVENT_DRIVER_CLIENT_POLL_OK - Station responded to poll |
| 3863 | * |
| 3864 | * This event indicates that the station responded to the poll |
| 3865 | * initiated with @poll_client. |
| 3866 | */ |
| 3867 | EVENT_DRIVER_CLIENT_POLL_OK, |
| 3868 | |
| 3869 | /** |
| 3870 | * EVENT_EAPOL_TX_STATUS - notify of EAPOL TX status |
| 3871 | */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 3872 | EVENT_EAPOL_TX_STATUS, |
| 3873 | |
| 3874 | /** |
| 3875 | * EVENT_CH_SWITCH - AP or GO decided to switch channels |
| 3876 | * |
| 3877 | * Described in wpa_event_data.ch_switch |
| 3878 | * */ |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 3879 | EVENT_CH_SWITCH, |
| 3880 | |
| 3881 | /** |
| 3882 | * EVENT_WNM - Request WNM operation |
| 3883 | * |
| 3884 | * This event can be used to request a WNM operation to be performed. |
| 3885 | */ |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 3886 | EVENT_WNM, |
| 3887 | |
| 3888 | /** |
| 3889 | * EVENT_CONNECT_FAILED_REASON - Connection failure reason in AP mode |
| 3890 | * |
| 3891 | * This event indicates that the driver reported a connection failure |
| 3892 | * with the specified client (for example, max client reached, etc.) in |
| 3893 | * AP mode. |
| 3894 | */ |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3895 | EVENT_CONNECT_FAILED_REASON, |
| 3896 | |
| 3897 | /** |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 3898 | * EVENT_DFS_RADAR_DETECTED - Notify of radar detection |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3899 | * |
| 3900 | * A radar has been detected on the supplied frequency, hostapd should |
| 3901 | * react accordingly (e.g., change channel). |
| 3902 | */ |
| 3903 | EVENT_DFS_RADAR_DETECTED, |
| 3904 | |
| 3905 | /** |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 3906 | * EVENT_DFS_CAC_FINISHED - Notify that channel availability check has been completed |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3907 | * |
| 3908 | * After a successful CAC, the channel can be marked clear and used. |
| 3909 | */ |
| 3910 | EVENT_DFS_CAC_FINISHED, |
| 3911 | |
| 3912 | /** |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 3913 | * EVENT_DFS_CAC_ABORTED - Notify that channel availability check has been aborted |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3914 | * |
| 3915 | * The CAC was not successful, and the channel remains in the previous |
| 3916 | * state. This may happen due to a radar beeing detected or other |
| 3917 | * external influences. |
| 3918 | */ |
| 3919 | EVENT_DFS_CAC_ABORTED, |
| 3920 | |
| 3921 | /** |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 3922 | * EVENT_DFS_NOP_FINISHED - Notify that non-occupancy period is over |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 3923 | * |
| 3924 | * The channel which was previously unavailable is now available again. |
| 3925 | */ |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 3926 | EVENT_DFS_NOP_FINISHED, |
| 3927 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 3928 | /** |
| 3929 | * EVENT_SURVEY - Received survey data |
| 3930 | * |
| 3931 | * This event gets triggered when a driver query is issued for survey |
| 3932 | * data and the requested data becomes available. The returned data is |
| 3933 | * stored in struct survey_results. The results provide at most one |
| 3934 | * survey entry for each frequency and at minimum will provide one |
| 3935 | * survey entry for one frequency. The survey data can be os_malloc()'d |
| 3936 | * and then os_free()'d, so the event callback must only copy data. |
| 3937 | */ |
| 3938 | EVENT_SURVEY, |
| 3939 | |
| 3940 | /** |
| 3941 | * EVENT_SCAN_STARTED - Scan started |
| 3942 | * |
| 3943 | * This indicates that driver has started a scan operation either based |
| 3944 | * on a request from wpa_supplicant/hostapd or from another application. |
| 3945 | * EVENT_SCAN_RESULTS is used to indicate when the scan has been |
| 3946 | * completed (either successfully or by getting cancelled). |
| 3947 | */ |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 3948 | EVENT_SCAN_STARTED, |
| 3949 | |
| 3950 | /** |
| 3951 | * EVENT_AVOID_FREQUENCIES - Received avoid frequency range |
| 3952 | * |
| 3953 | * This event indicates a set of frequency ranges that should be avoided |
| 3954 | * to reduce issues due to interference or internal co-existence |
| 3955 | * information in the driver. |
| 3956 | */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 3957 | EVENT_AVOID_FREQUENCIES, |
| 3958 | |
| 3959 | /** |
| 3960 | * EVENT_NEW_PEER_CANDIDATE - new (unknown) mesh peer notification |
| 3961 | */ |
| 3962 | EVENT_NEW_PEER_CANDIDATE, |
| 3963 | |
| 3964 | /** |
| 3965 | * EVENT_ACS_CHANNEL_SELECTED - Received selected channels by ACS |
| 3966 | * |
| 3967 | * Indicates a pair of primary and secondary channels chosen by ACS |
| 3968 | * in device. |
| 3969 | */ |
| 3970 | EVENT_ACS_CHANNEL_SELECTED, |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 3971 | |
| 3972 | /** |
| 3973 | * EVENT_DFS_CAC_STARTED - Notify that channel availability check has |
| 3974 | * been started. |
| 3975 | * |
| 3976 | * This event indicates that channel availability check has been started |
| 3977 | * on a DFS frequency by a driver that supports DFS Offload. |
| 3978 | */ |
| 3979 | EVENT_DFS_CAC_STARTED, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 3980 | }; |
| 3981 | |
| 3982 | |
| 3983 | /** |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 3984 | * struct freq_survey - Channel survey info |
| 3985 | * |
| 3986 | * @ifidx: Interface index in which this survey was observed |
| 3987 | * @freq: Center of frequency of the surveyed channel |
| 3988 | * @nf: Channel noise floor in dBm |
| 3989 | * @channel_time: Amount of time in ms the radio spent on the channel |
| 3990 | * @channel_time_busy: Amount of time in ms the radio detected some signal |
| 3991 | * that indicated to the radio the channel was not clear |
| 3992 | * @channel_time_rx: Amount of time the radio spent receiving data |
| 3993 | * @channel_time_tx: Amount of time the radio spent transmitting data |
| 3994 | * @filled: bitmask indicating which fields have been reported, see |
| 3995 | * SURVEY_HAS_* defines. |
| 3996 | * @list: Internal list pointers |
| 3997 | */ |
| 3998 | struct freq_survey { |
| 3999 | u32 ifidx; |
| 4000 | unsigned int freq; |
| 4001 | s8 nf; |
| 4002 | u64 channel_time; |
| 4003 | u64 channel_time_busy; |
| 4004 | u64 channel_time_rx; |
| 4005 | u64 channel_time_tx; |
| 4006 | unsigned int filled; |
| 4007 | struct dl_list list; |
| 4008 | }; |
| 4009 | |
| 4010 | #define SURVEY_HAS_NF BIT(0) |
| 4011 | #define SURVEY_HAS_CHAN_TIME BIT(1) |
| 4012 | #define SURVEY_HAS_CHAN_TIME_BUSY BIT(2) |
| 4013 | #define SURVEY_HAS_CHAN_TIME_RX BIT(3) |
| 4014 | #define SURVEY_HAS_CHAN_TIME_TX BIT(4) |
| 4015 | |
| 4016 | |
| 4017 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4018 | * union wpa_event_data - Additional data for wpa_supplicant_event() calls |
| 4019 | */ |
| 4020 | union wpa_event_data { |
| 4021 | /** |
| 4022 | * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events |
| 4023 | * |
| 4024 | * This structure is optional for EVENT_ASSOC calls and required for |
| 4025 | * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the |
| 4026 | * driver interface does not need to generate separate EVENT_ASSOCINFO |
| 4027 | * calls. |
| 4028 | */ |
| 4029 | struct assoc_info { |
| 4030 | /** |
| 4031 | * reassoc - Flag to indicate association or reassociation |
| 4032 | */ |
| 4033 | int reassoc; |
| 4034 | |
| 4035 | /** |
| 4036 | * req_ies - (Re)Association Request IEs |
| 4037 | * |
| 4038 | * If the driver generates WPA/RSN IE, this event data must be |
| 4039 | * returned for WPA handshake to have needed information. If |
| 4040 | * wpa_supplicant-generated WPA/RSN IE is used, this |
| 4041 | * information event is optional. |
| 4042 | * |
| 4043 | * This should start with the first IE (fixed fields before IEs |
| 4044 | * are not included). |
| 4045 | */ |
| 4046 | const u8 *req_ies; |
| 4047 | |
| 4048 | /** |
| 4049 | * req_ies_len - Length of req_ies in bytes |
| 4050 | */ |
| 4051 | size_t req_ies_len; |
| 4052 | |
| 4053 | /** |
| 4054 | * resp_ies - (Re)Association Response IEs |
| 4055 | * |
| 4056 | * Optional association data from the driver. This data is not |
| 4057 | * required WPA, but may be useful for some protocols and as |
| 4058 | * such, should be reported if this is available to the driver |
| 4059 | * interface. |
| 4060 | * |
| 4061 | * This should start with the first IE (fixed fields before IEs |
| 4062 | * are not included). |
| 4063 | */ |
| 4064 | const u8 *resp_ies; |
| 4065 | |
| 4066 | /** |
| 4067 | * resp_ies_len - Length of resp_ies in bytes |
| 4068 | */ |
| 4069 | size_t resp_ies_len; |
| 4070 | |
| 4071 | /** |
| 4072 | * beacon_ies - Beacon or Probe Response IEs |
| 4073 | * |
| 4074 | * Optional Beacon/ProbeResp data: IEs included in Beacon or |
| 4075 | * Probe Response frames from the current AP (i.e., the one |
| 4076 | * that the client just associated with). This information is |
| 4077 | * used to update WPA/RSN IE for the AP. If this field is not |
| 4078 | * set, the results from previous scan will be used. If no |
| 4079 | * data for the new AP is found, scan results will be requested |
| 4080 | * again (without scan request). At this point, the driver is |
| 4081 | * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is |
| 4082 | * used). |
| 4083 | * |
| 4084 | * This should start with the first IE (fixed fields before IEs |
| 4085 | * are not included). |
| 4086 | */ |
| 4087 | const u8 *beacon_ies; |
| 4088 | |
| 4089 | /** |
| 4090 | * beacon_ies_len - Length of beacon_ies */ |
| 4091 | size_t beacon_ies_len; |
| 4092 | |
| 4093 | /** |
| 4094 | * freq - Frequency of the operational channel in MHz |
| 4095 | */ |
| 4096 | unsigned int freq; |
| 4097 | |
| 4098 | /** |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 4099 | * wmm_params - WMM parameters used in this association. |
| 4100 | */ |
| 4101 | struct wmm_params wmm_params; |
| 4102 | |
| 4103 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4104 | * addr - Station address (for AP mode) |
| 4105 | */ |
| 4106 | const u8 *addr; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 4107 | |
| 4108 | /** |
| 4109 | * The following is the key management offload information |
| 4110 | * @authorized |
| 4111 | * @key_replay_ctr |
| 4112 | * @key_replay_ctr_len |
| 4113 | * @ptk_kck |
| 4114 | * @ptk_kek_len |
| 4115 | * @ptk_kek |
| 4116 | * @ptk_kek_len |
| 4117 | */ |
| 4118 | |
| 4119 | /** |
| 4120 | * authorized - Status of key management offload, |
| 4121 | * 1 = successful |
| 4122 | */ |
| 4123 | int authorized; |
| 4124 | |
| 4125 | /** |
| 4126 | * key_replay_ctr - Key replay counter value last used |
| 4127 | * in a valid EAPOL-Key frame |
| 4128 | */ |
| 4129 | const u8 *key_replay_ctr; |
| 4130 | |
| 4131 | /** |
| 4132 | * key_replay_ctr_len - The length of key_replay_ctr |
| 4133 | */ |
| 4134 | size_t key_replay_ctr_len; |
| 4135 | |
| 4136 | /** |
| 4137 | * ptk_kck - The derived PTK KCK |
| 4138 | */ |
| 4139 | const u8 *ptk_kck; |
| 4140 | |
| 4141 | /** |
| 4142 | * ptk_kek_len - The length of ptk_kck |
| 4143 | */ |
| 4144 | size_t ptk_kck_len; |
| 4145 | |
| 4146 | /** |
| 4147 | * ptk_kek - The derived PTK KEK |
| 4148 | */ |
| 4149 | const u8 *ptk_kek; |
| 4150 | |
| 4151 | /** |
| 4152 | * ptk_kek_len - The length of ptk_kek |
| 4153 | */ |
| 4154 | size_t ptk_kek_len; |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame^] | 4155 | |
| 4156 | /** |
| 4157 | * subnet_status - The subnet status: |
| 4158 | * 0 = unknown, 1 = unchanged, 2 = changed |
| 4159 | */ |
| 4160 | u8 subnet_status; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4161 | } assoc_info; |
| 4162 | |
| 4163 | /** |
| 4164 | * struct disassoc_info - Data for EVENT_DISASSOC events |
| 4165 | */ |
| 4166 | struct disassoc_info { |
| 4167 | /** |
| 4168 | * addr - Station address (for AP mode) |
| 4169 | */ |
| 4170 | const u8 *addr; |
| 4171 | |
| 4172 | /** |
| 4173 | * reason_code - Reason Code (host byte order) used in |
| 4174 | * Deauthentication frame |
| 4175 | */ |
| 4176 | u16 reason_code; |
| 4177 | |
| 4178 | /** |
| 4179 | * ie - Optional IE(s) in Disassociation frame |
| 4180 | */ |
| 4181 | const u8 *ie; |
| 4182 | |
| 4183 | /** |
| 4184 | * ie_len - Length of ie buffer in octets |
| 4185 | */ |
| 4186 | size_t ie_len; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 4187 | |
| 4188 | /** |
| 4189 | * locally_generated - Whether the frame was locally generated |
| 4190 | */ |
| 4191 | int locally_generated; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4192 | } disassoc_info; |
| 4193 | |
| 4194 | /** |
| 4195 | * struct deauth_info - Data for EVENT_DEAUTH events |
| 4196 | */ |
| 4197 | struct deauth_info { |
| 4198 | /** |
| 4199 | * addr - Station address (for AP mode) |
| 4200 | */ |
| 4201 | const u8 *addr; |
| 4202 | |
| 4203 | /** |
| 4204 | * reason_code - Reason Code (host byte order) used in |
| 4205 | * Deauthentication frame |
| 4206 | */ |
| 4207 | u16 reason_code; |
| 4208 | |
| 4209 | /** |
| 4210 | * ie - Optional IE(s) in Deauthentication frame |
| 4211 | */ |
| 4212 | const u8 *ie; |
| 4213 | |
| 4214 | /** |
| 4215 | * ie_len - Length of ie buffer in octets |
| 4216 | */ |
| 4217 | size_t ie_len; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 4218 | |
| 4219 | /** |
| 4220 | * locally_generated - Whether the frame was locally generated |
| 4221 | */ |
| 4222 | int locally_generated; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4223 | } deauth_info; |
| 4224 | |
| 4225 | /** |
| 4226 | * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE |
| 4227 | */ |
| 4228 | struct michael_mic_failure { |
| 4229 | int unicast; |
| 4230 | const u8 *src; |
| 4231 | } michael_mic_failure; |
| 4232 | |
| 4233 | /** |
| 4234 | * struct interface_status - Data for EVENT_INTERFACE_STATUS |
| 4235 | */ |
| 4236 | struct interface_status { |
| 4237 | char ifname[100]; |
| 4238 | enum { |
| 4239 | EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED |
| 4240 | } ievent; |
| 4241 | } interface_status; |
| 4242 | |
| 4243 | /** |
| 4244 | * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE |
| 4245 | */ |
| 4246 | struct pmkid_candidate { |
| 4247 | /** BSSID of the PMKID candidate */ |
| 4248 | u8 bssid[ETH_ALEN]; |
| 4249 | /** Smaller the index, higher the priority */ |
| 4250 | int index; |
| 4251 | /** Whether RSN IE includes pre-authenticate flag */ |
| 4252 | int preauth; |
| 4253 | } pmkid_candidate; |
| 4254 | |
| 4255 | /** |
| 4256 | * struct stkstart - Data for EVENT_STKSTART |
| 4257 | */ |
| 4258 | struct stkstart { |
| 4259 | u8 peer[ETH_ALEN]; |
| 4260 | } stkstart; |
| 4261 | |
| 4262 | /** |
| 4263 | * struct tdls - Data for EVENT_TDLS |
| 4264 | */ |
| 4265 | struct tdls { |
| 4266 | u8 peer[ETH_ALEN]; |
| 4267 | enum { |
| 4268 | TDLS_REQUEST_SETUP, |
Dmitry Shmidt | 4dd28dc | 2015-03-10 11:21:43 -0700 | [diff] [blame] | 4269 | TDLS_REQUEST_TEARDOWN, |
| 4270 | TDLS_REQUEST_DISCOVER, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4271 | } oper; |
| 4272 | u16 reason_code; /* for teardown */ |
| 4273 | } tdls; |
| 4274 | |
| 4275 | /** |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 4276 | * struct wnm - Data for EVENT_WNM |
| 4277 | */ |
| 4278 | struct wnm { |
| 4279 | u8 addr[ETH_ALEN]; |
| 4280 | enum { |
| 4281 | WNM_OPER_SLEEP, |
| 4282 | } oper; |
| 4283 | enum { |
| 4284 | WNM_SLEEP_ENTER, |
| 4285 | WNM_SLEEP_EXIT |
| 4286 | } sleep_action; |
| 4287 | int sleep_intval; |
| 4288 | u16 reason_code; |
| 4289 | u8 *buf; |
| 4290 | u16 buf_len; |
| 4291 | } wnm; |
| 4292 | |
| 4293 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4294 | * struct ft_ies - FT information elements (EVENT_FT_RESPONSE) |
| 4295 | * |
| 4296 | * During FT (IEEE 802.11r) authentication sequence, the driver is |
| 4297 | * expected to use this event to report received FT IEs (MDIE, FTIE, |
| 4298 | * RSN IE, TIE, possible resource request) to the supplicant. The FT |
| 4299 | * IEs for the next message will be delivered through the |
| 4300 | * struct wpa_driver_ops::update_ft_ies() callback. |
| 4301 | */ |
| 4302 | struct ft_ies { |
| 4303 | const u8 *ies; |
| 4304 | size_t ies_len; |
| 4305 | int ft_action; |
| 4306 | u8 target_ap[ETH_ALEN]; |
| 4307 | /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */ |
| 4308 | const u8 *ric_ies; |
| 4309 | /** Length of ric_ies buffer in octets */ |
| 4310 | size_t ric_ies_len; |
| 4311 | } ft_ies; |
| 4312 | |
| 4313 | /** |
| 4314 | * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START |
| 4315 | */ |
| 4316 | struct ibss_rsn_start { |
| 4317 | u8 peer[ETH_ALEN]; |
| 4318 | } ibss_rsn_start; |
| 4319 | |
| 4320 | /** |
| 4321 | * struct auth_info - Data for EVENT_AUTH events |
| 4322 | */ |
| 4323 | struct auth_info { |
| 4324 | u8 peer[ETH_ALEN]; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 4325 | u8 bssid[ETH_ALEN]; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4326 | u16 auth_type; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 4327 | u16 auth_transaction; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4328 | u16 status_code; |
| 4329 | const u8 *ies; |
| 4330 | size_t ies_len; |
| 4331 | } auth; |
| 4332 | |
| 4333 | /** |
| 4334 | * struct assoc_reject - Data for EVENT_ASSOC_REJECT events |
| 4335 | */ |
| 4336 | struct assoc_reject { |
| 4337 | /** |
| 4338 | * bssid - BSSID of the AP that rejected association |
| 4339 | */ |
| 4340 | const u8 *bssid; |
| 4341 | |
| 4342 | /** |
| 4343 | * resp_ies - (Re)Association Response IEs |
| 4344 | * |
| 4345 | * Optional association data from the driver. This data is not |
| 4346 | * required WPA, but may be useful for some protocols and as |
| 4347 | * such, should be reported if this is available to the driver |
| 4348 | * interface. |
| 4349 | * |
| 4350 | * This should start with the first IE (fixed fields before IEs |
| 4351 | * are not included). |
| 4352 | */ |
| 4353 | const u8 *resp_ies; |
| 4354 | |
| 4355 | /** |
| 4356 | * resp_ies_len - Length of resp_ies in bytes |
| 4357 | */ |
| 4358 | size_t resp_ies_len; |
| 4359 | |
| 4360 | /** |
| 4361 | * status_code - Status Code from (Re)association Response |
| 4362 | */ |
| 4363 | u16 status_code; |
| 4364 | } assoc_reject; |
| 4365 | |
| 4366 | struct timeout_event { |
| 4367 | u8 addr[ETH_ALEN]; |
| 4368 | } timeout_event; |
| 4369 | |
| 4370 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4371 | * struct tx_status - Data for EVENT_TX_STATUS events |
| 4372 | */ |
| 4373 | struct tx_status { |
| 4374 | u16 type; |
| 4375 | u16 stype; |
| 4376 | const u8 *dst; |
| 4377 | const u8 *data; |
| 4378 | size_t data_len; |
| 4379 | int ack; |
| 4380 | } tx_status; |
| 4381 | |
| 4382 | /** |
| 4383 | * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events |
| 4384 | */ |
| 4385 | struct rx_from_unknown { |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 4386 | const u8 *bssid; |
| 4387 | const u8 *addr; |
| 4388 | int wds; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4389 | } rx_from_unknown; |
| 4390 | |
| 4391 | /** |
| 4392 | * struct rx_mgmt - Data for EVENT_RX_MGMT events |
| 4393 | */ |
| 4394 | struct rx_mgmt { |
| 4395 | const u8 *frame; |
| 4396 | size_t frame_len; |
| 4397 | u32 datarate; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4398 | |
| 4399 | /** |
Dmitry Shmidt | 9866086 | 2014-03-11 17:26:21 -0700 | [diff] [blame] | 4400 | * drv_priv - Pointer to store driver private BSS information |
| 4401 | * |
| 4402 | * If not set to NULL, this is used for comparison with |
| 4403 | * hostapd_data->drv_priv to determine which BSS should process |
| 4404 | * the frame. |
| 4405 | */ |
| 4406 | void *drv_priv; |
| 4407 | |
| 4408 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4409 | * freq - Frequency (in MHz) on which the frame was received |
| 4410 | */ |
| 4411 | int freq; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 4412 | |
| 4413 | /** |
| 4414 | * ssi_signal - Signal strength in dBm (or 0 if not available) |
| 4415 | */ |
| 4416 | int ssi_signal; |
| 4417 | } rx_mgmt; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4418 | |
| 4419 | /** |
| 4420 | * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events |
| 4421 | * |
| 4422 | * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events. |
| 4423 | */ |
| 4424 | struct remain_on_channel { |
| 4425 | /** |
| 4426 | * freq - Channel frequency in MHz |
| 4427 | */ |
| 4428 | unsigned int freq; |
| 4429 | |
| 4430 | /** |
| 4431 | * duration - Duration to remain on the channel in milliseconds |
| 4432 | */ |
| 4433 | unsigned int duration; |
| 4434 | } remain_on_channel; |
| 4435 | |
| 4436 | /** |
| 4437 | * struct scan_info - Optional data for EVENT_SCAN_RESULTS events |
| 4438 | * @aborted: Whether the scan was aborted |
| 4439 | * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned) |
| 4440 | * @num_freqs: Number of entries in freqs array |
| 4441 | * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard |
| 4442 | * SSID) |
| 4443 | * @num_ssids: Number of entries in ssids array |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 4444 | * @external_scan: Whether the scan info is for an external scan |
| 4445 | * @nl_scan_event: 1 if the source of this scan event is a normal scan, |
| 4446 | * 0 if the source of the scan event is a vendor scan |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4447 | */ |
| 4448 | struct scan_info { |
| 4449 | int aborted; |
| 4450 | const int *freqs; |
| 4451 | size_t num_freqs; |
| 4452 | struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS]; |
| 4453 | size_t num_ssids; |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 4454 | int external_scan; |
| 4455 | int nl_scan_event; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4456 | } scan_info; |
| 4457 | |
| 4458 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4459 | * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events |
| 4460 | */ |
| 4461 | struct rx_probe_req { |
| 4462 | /** |
| 4463 | * sa - Source address of the received Probe Request frame |
| 4464 | */ |
| 4465 | const u8 *sa; |
| 4466 | |
| 4467 | /** |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 4468 | * da - Destination address of the received Probe Request frame |
| 4469 | * or %NULL if not available |
| 4470 | */ |
| 4471 | const u8 *da; |
| 4472 | |
| 4473 | /** |
| 4474 | * bssid - BSSID of the received Probe Request frame or %NULL |
| 4475 | * if not available |
| 4476 | */ |
| 4477 | const u8 *bssid; |
| 4478 | |
| 4479 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4480 | * ie - IEs from the Probe Request body |
| 4481 | */ |
| 4482 | const u8 *ie; |
| 4483 | |
| 4484 | /** |
| 4485 | * ie_len - Length of ie buffer in octets |
| 4486 | */ |
| 4487 | size_t ie_len; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 4488 | |
| 4489 | /** |
| 4490 | * signal - signal strength in dBm (or 0 if not available) |
| 4491 | */ |
| 4492 | int ssi_signal; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4493 | } rx_probe_req; |
| 4494 | |
| 4495 | /** |
| 4496 | * struct new_sta - Data for EVENT_NEW_STA events |
| 4497 | */ |
| 4498 | struct new_sta { |
| 4499 | const u8 *addr; |
| 4500 | } new_sta; |
| 4501 | |
| 4502 | /** |
| 4503 | * struct eapol_rx - Data for EVENT_EAPOL_RX events |
| 4504 | */ |
| 4505 | struct eapol_rx { |
| 4506 | const u8 *src; |
| 4507 | const u8 *data; |
| 4508 | size_t data_len; |
| 4509 | } eapol_rx; |
| 4510 | |
| 4511 | /** |
| 4512 | * signal_change - Data for EVENT_SIGNAL_CHANGE events |
| 4513 | */ |
| 4514 | struct wpa_signal_info signal_change; |
| 4515 | |
| 4516 | /** |
| 4517 | * struct best_channel - Data for EVENT_BEST_CHANNEL events |
| 4518 | * @freq_24: Best 2.4 GHz band channel frequency in MHz |
| 4519 | * @freq_5: Best 5 GHz band channel frequency in MHz |
| 4520 | * @freq_overall: Best channel frequency in MHz |
| 4521 | * |
| 4522 | * 0 can be used to indicate no preference in either band. |
| 4523 | */ |
| 4524 | struct best_channel { |
| 4525 | int freq_24; |
| 4526 | int freq_5; |
| 4527 | int freq_overall; |
| 4528 | } best_chan; |
| 4529 | |
| 4530 | struct unprot_deauth { |
| 4531 | const u8 *sa; |
| 4532 | const u8 *da; |
| 4533 | u16 reason_code; |
| 4534 | } unprot_deauth; |
| 4535 | |
| 4536 | struct unprot_disassoc { |
| 4537 | const u8 *sa; |
| 4538 | const u8 *da; |
| 4539 | u16 reason_code; |
| 4540 | } unprot_disassoc; |
| 4541 | |
| 4542 | /** |
| 4543 | * struct low_ack - Data for EVENT_STATION_LOW_ACK events |
| 4544 | * @addr: station address |
| 4545 | */ |
| 4546 | struct low_ack { |
| 4547 | u8 addr[ETH_ALEN]; |
| 4548 | } low_ack; |
| 4549 | |
| 4550 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4551 | * struct ibss_peer_lost - Data for EVENT_IBSS_PEER_LOST |
| 4552 | */ |
| 4553 | struct ibss_peer_lost { |
| 4554 | u8 peer[ETH_ALEN]; |
| 4555 | } ibss_peer_lost; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 4556 | |
| 4557 | /** |
| 4558 | * struct driver_gtk_rekey - Data for EVENT_DRIVER_GTK_REKEY |
| 4559 | */ |
| 4560 | struct driver_gtk_rekey { |
| 4561 | const u8 *bssid; |
| 4562 | const u8 *replay_ctr; |
| 4563 | } driver_gtk_rekey; |
| 4564 | |
| 4565 | /** |
| 4566 | * struct client_poll - Data for EVENT_DRIVER_CLIENT_POLL_OK events |
| 4567 | * @addr: station address |
| 4568 | */ |
| 4569 | struct client_poll { |
| 4570 | u8 addr[ETH_ALEN]; |
| 4571 | } client_poll; |
| 4572 | |
| 4573 | /** |
| 4574 | * struct eapol_tx_status |
| 4575 | * @dst: Original destination |
| 4576 | * @data: Data starting with IEEE 802.1X header (!) |
| 4577 | * @data_len: Length of data |
| 4578 | * @ack: Indicates ack or lost frame |
| 4579 | * |
| 4580 | * This corresponds to hapd_send_eapol if the frame sent |
| 4581 | * there isn't just reported as EVENT_TX_STATUS. |
| 4582 | */ |
| 4583 | struct eapol_tx_status { |
| 4584 | const u8 *dst; |
| 4585 | const u8 *data; |
| 4586 | int data_len; |
| 4587 | int ack; |
| 4588 | } eapol_tx_status; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 4589 | |
| 4590 | /** |
| 4591 | * struct ch_switch |
| 4592 | * @freq: Frequency of new channel in MHz |
| 4593 | * @ht_enabled: Whether this is an HT channel |
| 4594 | * @ch_offset: Secondary channel offset |
Dmitry Shmidt | 04f534e | 2013-12-09 15:50:16 -0800 | [diff] [blame] | 4595 | * @ch_width: Channel width |
| 4596 | * @cf1: Center frequency 1 |
| 4597 | * @cf2: Center frequency 2 |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 4598 | */ |
| 4599 | struct ch_switch { |
| 4600 | int freq; |
| 4601 | int ht_enabled; |
| 4602 | int ch_offset; |
Dmitry Shmidt | 04f534e | 2013-12-09 15:50:16 -0800 | [diff] [blame] | 4603 | enum chan_width ch_width; |
| 4604 | int cf1; |
| 4605 | int cf2; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 4606 | } ch_switch; |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 4607 | |
| 4608 | /** |
| 4609 | * struct connect_failed - Data for EVENT_CONNECT_FAILED_REASON |
| 4610 | * @addr: Remote client address |
| 4611 | * @code: Reason code for connection failure |
| 4612 | */ |
| 4613 | struct connect_failed_reason { |
| 4614 | u8 addr[ETH_ALEN]; |
| 4615 | enum { |
| 4616 | MAX_CLIENT_REACHED, |
| 4617 | BLOCKED_CLIENT |
| 4618 | } code; |
| 4619 | } connect_failed_reason; |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 4620 | |
| 4621 | /** |
| 4622 | * struct dfs_event - Data for radar detected events |
| 4623 | * @freq: Frequency of the channel in MHz |
| 4624 | */ |
| 4625 | struct dfs_event { |
| 4626 | int freq; |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 4627 | int ht_enabled; |
| 4628 | int chan_offset; |
| 4629 | enum chan_width chan_width; |
| 4630 | int cf1; |
| 4631 | int cf2; |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 4632 | } dfs_event; |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 4633 | |
| 4634 | /** |
| 4635 | * survey_results - Survey result data for EVENT_SURVEY |
| 4636 | * @freq_filter: Requested frequency survey filter, 0 if request |
| 4637 | * was for all survey data |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 4638 | * @survey_list: Linked list of survey data (struct freq_survey) |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 4639 | */ |
| 4640 | struct survey_results { |
| 4641 | unsigned int freq_filter; |
| 4642 | struct dl_list survey_list; /* struct freq_survey */ |
| 4643 | } survey_results; |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 4644 | |
| 4645 | /** |
| 4646 | * channel_list_changed - Data for EVENT_CHANNEL_LIST_CHANGED |
| 4647 | * @initiator: Initiator of the regulatory change |
Dmitry Shmidt | 7dba0e5 | 2014-04-14 10:49:15 -0700 | [diff] [blame] | 4648 | * @type: Regulatory change type |
| 4649 | * @alpha2: Country code (or "" if not available) |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 4650 | */ |
| 4651 | struct channel_list_changed { |
| 4652 | enum reg_change_initiator initiator; |
Dmitry Shmidt | 7dba0e5 | 2014-04-14 10:49:15 -0700 | [diff] [blame] | 4653 | enum reg_type type; |
| 4654 | char alpha2[3]; |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 4655 | } channel_list_changed; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 4656 | |
| 4657 | /** |
| 4658 | * freq_range - List of frequency ranges |
| 4659 | * |
| 4660 | * This is used as the data with EVENT_AVOID_FREQUENCIES. |
| 4661 | */ |
| 4662 | struct wpa_freq_range_list freq_range; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 4663 | |
| 4664 | /** |
| 4665 | * struct mesh_peer |
| 4666 | * |
| 4667 | * @peer: Peer address |
| 4668 | * @ies: Beacon IEs |
| 4669 | * @ie_len: Length of @ies |
| 4670 | * |
| 4671 | * Notification of new candidate mesh peer. |
| 4672 | */ |
| 4673 | struct mesh_peer { |
| 4674 | const u8 *peer; |
| 4675 | const u8 *ies; |
| 4676 | size_t ie_len; |
| 4677 | } mesh_peer; |
| 4678 | |
| 4679 | /** |
| 4680 | * struct acs_selected_channels - Data for EVENT_ACS_CHANNEL_SELECTED |
| 4681 | * @pri_channel: Selected primary channel |
| 4682 | * @sec_channel: Selected secondary channel |
Dmitry Shmidt | dda10c2 | 2015-03-24 16:05:01 -0700 | [diff] [blame] | 4683 | * @vht_seg0_center_ch: VHT mode Segment0 center channel |
| 4684 | * @vht_seg1_center_ch: VHT mode Segment1 center channel |
| 4685 | * @ch_width: Selected Channel width by driver. Driver may choose to |
| 4686 | * change hostapd configured ACS channel width due driver internal |
| 4687 | * channel restrictions. |
Dmitry Shmidt | b1e5210 | 2015-05-29 12:36:29 -0700 | [diff] [blame] | 4688 | * hw_mode: Selected band (used with hw_mode=any) |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 4689 | */ |
| 4690 | struct acs_selected_channels { |
| 4691 | u8 pri_channel; |
| 4692 | u8 sec_channel; |
Dmitry Shmidt | dda10c2 | 2015-03-24 16:05:01 -0700 | [diff] [blame] | 4693 | u8 vht_seg0_center_ch; |
| 4694 | u8 vht_seg1_center_ch; |
| 4695 | u16 ch_width; |
Dmitry Shmidt | b1e5210 | 2015-05-29 12:36:29 -0700 | [diff] [blame] | 4696 | enum hostapd_hw_mode hw_mode; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 4697 | } acs_selected_channels; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4698 | }; |
| 4699 | |
| 4700 | /** |
| 4701 | * wpa_supplicant_event - Report a driver event for wpa_supplicant |
| 4702 | * @ctx: Context pointer (wpa_s); this is the ctx variable registered |
| 4703 | * with struct wpa_driver_ops::init() |
| 4704 | * @event: event type (defined above) |
| 4705 | * @data: possible extra data for the event |
| 4706 | * |
| 4707 | * Driver wrapper code should call this function whenever an event is received |
| 4708 | * from the driver. |
| 4709 | */ |
| 4710 | void wpa_supplicant_event(void *ctx, enum wpa_event_type event, |
| 4711 | union wpa_event_data *data); |
| 4712 | |
| 4713 | |
| 4714 | /* |
| 4715 | * The following inline functions are provided for convenience to simplify |
| 4716 | * event indication for some of the common events. |
| 4717 | */ |
| 4718 | |
| 4719 | static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie, |
| 4720 | size_t ielen, int reassoc) |
| 4721 | { |
| 4722 | union wpa_event_data event; |
| 4723 | os_memset(&event, 0, sizeof(event)); |
| 4724 | event.assoc_info.reassoc = reassoc; |
| 4725 | event.assoc_info.req_ies = ie; |
| 4726 | event.assoc_info.req_ies_len = ielen; |
| 4727 | event.assoc_info.addr = addr; |
| 4728 | wpa_supplicant_event(ctx, EVENT_ASSOC, &event); |
| 4729 | } |
| 4730 | |
| 4731 | static inline void drv_event_disassoc(void *ctx, const u8 *addr) |
| 4732 | { |
| 4733 | union wpa_event_data event; |
| 4734 | os_memset(&event, 0, sizeof(event)); |
| 4735 | event.disassoc_info.addr = addr; |
| 4736 | wpa_supplicant_event(ctx, EVENT_DISASSOC, &event); |
| 4737 | } |
| 4738 | |
| 4739 | static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data, |
| 4740 | size_t data_len) |
| 4741 | { |
| 4742 | union wpa_event_data event; |
| 4743 | os_memset(&event, 0, sizeof(event)); |
| 4744 | event.eapol_rx.src = src; |
| 4745 | event.eapol_rx.data = data; |
| 4746 | event.eapol_rx.data_len = data_len; |
| 4747 | wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event); |
| 4748 | } |
| 4749 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 4750 | /* driver_common.c */ |
| 4751 | void wpa_scan_results_free(struct wpa_scan_results *res); |
| 4752 | |
| 4753 | /* Convert wpa_event_type to a string for logging */ |
| 4754 | const char * event_to_string(enum wpa_event_type event); |
| 4755 | |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 4756 | /* Convert chan_width to a string for logging and control interfaces */ |
| 4757 | const char * channel_width_to_string(enum chan_width width); |
| 4758 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 4759 | int ht_supported(const struct hostapd_hw_modes *mode); |
| 4760 | int vht_supported(const struct hostapd_hw_modes *mode); |
| 4761 | |
| 4762 | struct wowlan_triggers * |
| 4763 | wpa_get_wowlan_triggers(const char *wowlan_triggers, |
| 4764 | const struct wpa_driver_capa *capa); |
| 4765 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 4766 | /* NULL terminated array of linked in driver wrappers */ |
Dmitry Shmidt | 1d755d0 | 2015-04-28 10:34:29 -0700 | [diff] [blame] | 4767 | extern const struct wpa_driver_ops *const wpa_drivers[]; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 4768 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4769 | #endif /* DRIVER_H */ |