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