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