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