Allow MLME frames to be sent without expecting an ACK (no retries)
[mech_eap.git] / src / drivers / driver.h
1 /*
2  * Driver interface definition
3  * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  *
14  * This file defines a driver interface used by both %wpa_supplicant and
15  * hostapd. The first part of the file defines data structures used in various
16  * driver operations. This is followed by the struct wpa_driver_ops that each
17  * driver wrapper will beed to define with callback functions for requesting
18  * driver operations. After this, there are definitions for driver event
19  * reporting with wpa_supplicant_event() and some convenience helper functions
20  * that can be used to report events.
21  */
22
23 #ifndef DRIVER_H
24 #define DRIVER_H
25
26 #define WPA_SUPPLICANT_DRIVER_VERSION 4
27
28 #include "common/defs.h"
29
30 #define HOSTAPD_CHAN_DISABLED 0x00000001
31 #define HOSTAPD_CHAN_PASSIVE_SCAN 0x00000002
32 #define HOSTAPD_CHAN_NO_IBSS 0x00000004
33 #define HOSTAPD_CHAN_RADAR 0x00000008
34 #define HOSTAPD_CHAN_HT40PLUS 0x00000010
35 #define HOSTAPD_CHAN_HT40MINUS 0x00000020
36 #define HOSTAPD_CHAN_HT40 0x00000040
37
38 /**
39  * struct hostapd_channel_data - Channel information
40  */
41 struct hostapd_channel_data {
42         /**
43          * chan - Channel number (IEEE 802.11)
44          */
45         short chan;
46
47         /**
48          * freq - Frequency in MHz
49          */
50         short freq;
51
52         /**
53          * flag - Channel flags (HOSTAPD_CHAN_*)
54          */
55         int flag;
56
57         /**
58          * max_tx_power - maximum transmit power in dBm
59          */
60         u8 max_tx_power;
61 };
62
63 #define HOSTAPD_MODE_FLAG_HT_INFO_KNOWN BIT(0)
64
65 /**
66  * struct hostapd_hw_modes - Supported hardware mode information
67  */
68 struct hostapd_hw_modes {
69         /**
70          * mode - Hardware mode
71          */
72         enum hostapd_hw_mode mode;
73
74         /**
75          * num_channels - Number of entries in the channels array
76          */
77         int num_channels;
78
79         /**
80          * channels - Array of supported channels
81          */
82         struct hostapd_channel_data *channels;
83
84         /**
85          * num_rates - Number of entries in the rates array
86          */
87         int num_rates;
88
89         /**
90          * rates - Array of supported rates in 100 kbps units
91          */
92         int *rates;
93
94         /**
95          * ht_capab - HT (IEEE 802.11n) capabilities
96          */
97         u16 ht_capab;
98
99         /**
100          * mcs_set - MCS (IEEE 802.11n) rate parameters
101          */
102         u8 mcs_set[16];
103
104         /**
105          * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
106          */
107         u8 a_mpdu_params;
108
109         unsigned int flags; /* HOSTAPD_MODE_FLAG_* */
110 };
111
112
113 #define IEEE80211_MODE_INFRA    0
114 #define IEEE80211_MODE_IBSS     1
115 #define IEEE80211_MODE_AP       2
116
117 #define IEEE80211_CAP_ESS       0x0001
118 #define IEEE80211_CAP_IBSS      0x0002
119 #define IEEE80211_CAP_PRIVACY   0x0010
120
121 #define WPA_SCAN_QUAL_INVALID           BIT(0)
122 #define WPA_SCAN_NOISE_INVALID          BIT(1)
123 #define WPA_SCAN_LEVEL_INVALID          BIT(2)
124 #define WPA_SCAN_LEVEL_DBM              BIT(3)
125 #define WPA_SCAN_AUTHENTICATED          BIT(4)
126 #define WPA_SCAN_ASSOCIATED             BIT(5)
127
128 /**
129  * struct wpa_scan_res - Scan result for an BSS/IBSS
130  * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
131  * @bssid: BSSID
132  * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
133  * @beacon_int: beacon interval in TUs (host byte order)
134  * @caps: capability information field in host byte order
135  * @qual: signal quality
136  * @noise: noise level
137  * @level: signal level
138  * @tsf: Timestamp
139  * @age: Age of the information in milliseconds (i.e., how many milliseconds
140  * ago the last Beacon or Probe Response frame was received)
141  * @ie_len: length of the following IE field in octets
142  * @beacon_ie_len: length of the following Beacon IE field in octets
143  *
144  * This structure is used as a generic format for scan results from the
145  * driver. Each driver interface implementation is responsible for converting
146  * the driver or OS specific scan results into this format.
147  *
148  * If the driver does not support reporting all IEs, the IE data structure is
149  * constructed of the IEs that are available. This field will also need to
150  * include SSID in IE format. All drivers are encouraged to be extended to
151  * report all IEs to make it easier to support future additions.
152  */
153 struct wpa_scan_res {
154         unsigned int flags;
155         u8 bssid[ETH_ALEN];
156         int freq;
157         u16 beacon_int;
158         u16 caps;
159         int qual;
160         int noise;
161         int level;
162         u64 tsf;
163         unsigned int age;
164         size_t ie_len;
165         size_t beacon_ie_len;
166         /*
167          * Followed by ie_len octets of IEs from Probe Response frame (or if
168          * the driver does not indicate source of IEs, these may also be from
169          * Beacon frame). After the first set of IEs, another set of IEs may
170          * follow (with beacon_ie_len octets of data) if the driver provides
171          * both IE sets.
172          */
173 };
174
175 /**
176  * struct wpa_scan_results - Scan results
177  * @res: Array of pointers to allocated variable length scan result entries
178  * @num: Number of entries in the scan result array
179  */
180 struct wpa_scan_results {
181         struct wpa_scan_res **res;
182         size_t num;
183 };
184
185 /**
186  * struct wpa_interface_info - Network interface information
187  * @next: Pointer to the next interface or NULL if this is the last one
188  * @ifname: Interface name that can be used with init() or init2()
189  * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
190  *      not available
191  * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
192  *      is not an allocated copy, i.e., get_interfaces() caller will not free
193  *      this)
194  */
195 struct wpa_interface_info {
196         struct wpa_interface_info *next;
197         char *ifname;
198         char *desc;
199         const char *drv_name;
200 };
201
202 #define WPAS_MAX_SCAN_SSIDS 16
203
204 /**
205  * struct wpa_driver_scan_params - Scan parameters
206  * Data for struct wpa_driver_ops::scan2().
207  */
208 struct wpa_driver_scan_params {
209         /**
210          * ssids - SSIDs to scan for
211          */
212         struct wpa_driver_scan_ssid {
213                 /**
214                  * ssid - specific SSID to scan for (ProbeReq)
215                  * %NULL or zero-length SSID is used to indicate active scan
216                  * with wildcard SSID.
217                  */
218                 const u8 *ssid;
219                 /**
220                  * ssid_len: Length of the SSID in octets
221                  */
222                 size_t ssid_len;
223         } ssids[WPAS_MAX_SCAN_SSIDS];
224
225         /**
226          * num_ssids - Number of entries in ssids array
227          * Zero indicates a request for a passive scan.
228          */
229         size_t num_ssids;
230
231         /**
232          * extra_ies - Extra IE(s) to add into Probe Request or %NULL
233          */
234         const u8 *extra_ies;
235
236         /**
237          * extra_ies_len - Length of extra_ies in octets
238          */
239         size_t extra_ies_len;
240
241         /**
242          * freqs - Array of frequencies to scan or %NULL for all frequencies
243          *
244          * The frequency is set in MHz. The array is zero-terminated.
245          */
246         int *freqs;
247
248         /**
249          * filter_ssids - Filter for reporting SSIDs
250          *
251          * This optional parameter can be used to request the driver wrapper to
252          * filter scan results to include only the specified SSIDs. %NULL
253          * indicates that no filtering is to be done. This can be used to
254          * reduce memory needs for scan results in environments that have large
255          * number of APs with different SSIDs.
256          *
257          * The driver wrapper is allowed to take this allocated buffer into its
258          * own use by setting the pointer to %NULL. In that case, the driver
259          * wrapper is responsible for freeing the buffer with os_free() once it
260          * is not needed anymore.
261          */
262         struct wpa_driver_scan_filter {
263                 u8 ssid[32];
264                 size_t ssid_len;
265         } *filter_ssids;
266
267         /**
268          * num_filter_ssids - Number of entries in filter_ssids array
269          */
270         size_t num_filter_ssids;
271
272         /**
273          * p2p_probe - Used to disable CCK (802.11b) rates for P2P probes
274          *
275          * When set, the driver is expected to remove rates 1, 2, 5.5, and 11
276          * Mbps from the support rates element(s) in the Probe Request frames
277          * and not to transmit the frames at any of those rates.
278          */
279         u8 p2p_probe;
280 };
281
282 /**
283  * struct wpa_driver_auth_params - Authentication parameters
284  * Data for struct wpa_driver_ops::authenticate().
285  */
286 struct wpa_driver_auth_params {
287         int freq;
288         const u8 *bssid;
289         const u8 *ssid;
290         size_t ssid_len;
291         int auth_alg;
292         const u8 *ie;
293         size_t ie_len;
294         const u8 *wep_key[4];
295         size_t wep_key_len[4];
296         int wep_tx_keyidx;
297         int local_state_change;
298
299         /**
300          * p2p - Whether this connection is a P2P group
301          */
302         int p2p;
303
304 };
305
306 enum wps_mode {
307         WPS_MODE_NONE /* no WPS provisioning being used */,
308         WPS_MODE_OPEN /* WPS provisioning with AP that is in open mode */,
309         WPS_MODE_PRIVACY /* WPS provisioning with AP that is using protection
310                           */
311 };
312
313 /**
314  * struct wpa_driver_associate_params - Association parameters
315  * Data for struct wpa_driver_ops::associate().
316  */
317 struct wpa_driver_associate_params {
318         /**
319          * bssid - BSSID of the selected AP
320          * This can be %NULL, if ap_scan=2 mode is used and the driver is
321          * responsible for selecting with which BSS to associate. */
322         const u8 *bssid;
323
324         /**
325          * ssid - The selected SSID
326          */
327         const u8 *ssid;
328
329         /**
330          * ssid_len - Length of the SSID (1..32)
331          */
332         size_t ssid_len;
333
334         /**
335          * freq - Frequency of the channel the selected AP is using
336          * Frequency that the selected AP is using (in MHz as
337          * reported in the scan results)
338          */
339         int freq;
340
341         /**
342          * wpa_ie - WPA information element for (Re)Association Request
343          * WPA information element to be included in (Re)Association
344          * Request (including information element id and length). Use
345          * of this WPA IE is optional. If the driver generates the WPA
346          * IE, it can use pairwise_suite, group_suite, and
347          * key_mgmt_suite to select proper algorithms. In this case,
348          * the driver has to notify wpa_supplicant about the used WPA
349          * IE by generating an event that the interface code will
350          * convert into EVENT_ASSOCINFO data (see below).
351          *
352          * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
353          * instead. The driver can determine which version is used by
354          * looking at the first byte of the IE (0xdd for WPA, 0x30 for
355          * WPA2/RSN).
356          *
357          * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
358          */
359         const u8 *wpa_ie;
360
361         /**
362          * wpa_ie_len - length of the wpa_ie
363          */
364         size_t wpa_ie_len;
365
366         /**
367          * wpa_proto - Bitfield of WPA_PROTO_* values to indicate WPA/WPA2
368          */
369         unsigned int wpa_proto;
370
371         /**
372          * pairwise_suite - Selected pairwise cipher suite
373          *
374          * This is usually ignored if @wpa_ie is used.
375          */
376         enum wpa_cipher pairwise_suite;
377
378         /**
379          * group_suite - Selected group cipher suite
380          *
381          * This is usually ignored if @wpa_ie is used.
382          */
383         enum wpa_cipher group_suite;
384
385         /**
386          * key_mgmt_suite - Selected key management suite
387          *
388          * This is usually ignored if @wpa_ie is used.
389          */
390         enum wpa_key_mgmt key_mgmt_suite;
391
392         /**
393          * auth_alg - Allowed authentication algorithms
394          * Bit field of WPA_AUTH_ALG_*
395          */
396         int auth_alg;
397
398         /**
399          * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
400          */
401         int mode;
402
403         /**
404          * wep_key - WEP keys for static WEP configuration
405          */
406         const u8 *wep_key[4];
407
408         /**
409          * wep_key_len - WEP key length for static WEP configuration
410          */
411         size_t wep_key_len[4];
412
413         /**
414          * wep_tx_keyidx - WEP TX key index for static WEP configuration
415          */
416         int wep_tx_keyidx;
417
418         /**
419          * mgmt_frame_protection - IEEE 802.11w management frame protection
420          */
421         enum mfp_options mgmt_frame_protection;
422
423         /**
424          * ft_ies - IEEE 802.11r / FT information elements
425          * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
426          * for fast transition, this parameter is set to include the IEs that
427          * are to be sent in the next FT Authentication Request message.
428          * update_ft_ies() handler is called to update the IEs for further
429          * FT messages in the sequence.
430          *
431          * The driver should use these IEs only if the target AP is advertising
432          * the same mobility domain as the one included in the MDIE here.
433          *
434          * In ap_scan=2 mode, the driver can use these IEs when moving to a new
435          * AP after the initial association. These IEs can only be used if the
436          * target AP is advertising support for FT and is using the same MDIE
437          * and SSID as the current AP.
438          *
439          * The driver is responsible for reporting the FT IEs received from the
440          * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
441          * type. update_ft_ies() handler will then be called with the FT IEs to
442          * include in the next frame in the authentication sequence.
443          */
444         const u8 *ft_ies;
445
446         /**
447          * ft_ies_len - Length of ft_ies in bytes
448          */
449         size_t ft_ies_len;
450
451         /**
452          * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
453          *
454          * This value is provided to allow the driver interface easier access
455          * to the current mobility domain. This value is set to %NULL if no
456          * mobility domain is currently active.
457          */
458         const u8 *ft_md;
459
460         /**
461          * passphrase - RSN passphrase for PSK
462          *
463          * This value is made available only for WPA/WPA2-Personal (PSK) and
464          * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
465          * the 8..63 character ASCII passphrase, if available. Please note that
466          * this can be %NULL if passphrase was not used to generate the PSK. In
467          * that case, the psk field must be used to fetch the PSK.
468          */
469         const char *passphrase;
470
471         /**
472          * psk - RSN PSK (alternative for passphrase for PSK)
473          *
474          * This value is made available only for WPA/WPA2-Personal (PSK) and
475          * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
476          * the 32-octet (256-bit) PSK, if available. The driver wrapper should
477          * be prepared to handle %NULL value as an error.
478          */
479         const u8 *psk;
480
481         /**
482          * drop_unencrypted - Enable/disable unencrypted frame filtering
483          *
484          * Configure the driver to drop all non-EAPOL frames (both receive and
485          * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
486          * still be allowed for key negotiation.
487          */
488         int drop_unencrypted;
489
490         /**
491          * prev_bssid - Previously used BSSID in this ESS
492          *
493          * When not %NULL, this is a request to use reassociation instead of
494          * association.
495          */
496         const u8 *prev_bssid;
497
498         /**
499          * wps - WPS mode
500          *
501          * If the driver needs to do special configuration for WPS association,
502          * this variable provides more information on what type of association
503          * is being requested. Most drivers should not need ot use this.
504          */
505         enum wps_mode wps;
506
507         /**
508          * p2p - Whether this connection is a P2P group
509          */
510         int p2p;
511
512         /**
513          * uapsd - UAPSD parameters for the network
514          * -1 = do not change defaults
515          * AP mode: 1 = enabled, 0 = disabled
516          * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE
517          */
518         int uapsd;
519 };
520
521 enum hide_ssid {
522         NO_SSID_HIDING,
523         HIDDEN_SSID_ZERO_LEN,
524         HIDDEN_SSID_ZERO_CONTENTS
525 };
526
527 struct wpa_driver_ap_params {
528         /**
529          * head - Beacon head from IEEE 802.11 header to IEs before TIM IE
530          */
531         const u8 *head;
532
533         /**
534          * head_len - Length of the head buffer in octets
535          */
536         size_t head_len;
537
538         /**
539          * tail - Beacon tail following TIM IE
540          */
541         const u8 *tail;
542
543         /**
544          * tail_len - Length of the tail buffer in octets
545          */
546         size_t tail_len;
547
548         /**
549          * dtim_period - DTIM period
550          */
551         int dtim_period;
552
553         /**
554          * beacon_int - Beacon interval
555          */
556         int beacon_int;
557
558         /**
559          * ssid - The SSID to use in Beacon/Probe Response frames
560          */
561         const u8 *ssid;
562
563         /**
564          * ssid_len - Length of the SSID (1..32)
565          */
566         size_t ssid_len;
567
568         /**
569          * hide_ssid - Whether to hide the SSID
570          */
571         enum hide_ssid hide_ssid;
572
573         /**
574          * pairwise_ciphers - WPA_CIPHER_* bitfield
575          */
576         unsigned int pairwise_ciphers;
577
578         /**
579          * group_cipher - WPA_CIPHER_*
580          */
581         unsigned int group_cipher;
582
583         /**
584          * key_mgmt_suites - WPA_KEY_MGMT_* bitfield
585          */
586         unsigned int key_mgmt_suites;
587
588         /**
589          * auth_algs - WPA_AUTH_ALG_* bitfield
590          */
591         unsigned int auth_algs;
592
593         /**
594          * wpa_version - WPA_PROTO_* bitfield
595          */
596         unsigned int wpa_version;
597
598         /**
599          * privacy - Whether privacy is used in the BSS
600          */
601         int privacy;
602
603         /**
604          * beacon_ies - WPS/P2P IE(s) for Beacon frames
605          *
606          * This is used to add IEs like WPS IE and P2P IE by drivers that do
607          * not use the full Beacon template.
608          */
609         const struct wpabuf *beacon_ies;
610
611         /**
612          * proberesp_ies - P2P/WPS IE(s) for Probe Response frames
613          *
614          * This is used to add IEs like WPS IE and P2P IE by drivers that
615          * reply to Probe Request frames internally.
616          */
617         const struct wpabuf *proberesp_ies;
618
619         /**
620          * assocresp_ies - WPS IE(s) for (Re)Association Response frames
621          *
622          * This is used to add IEs like WPS IE by drivers that reply to
623          * (Re)Association Request frames internally.
624          */
625         const struct wpabuf *assocresp_ies;
626
627         /**
628          * isolate - Whether to isolate frames between associated stations
629          *
630          * If this is non-zero, the AP is requested to disable forwarding of
631          * frames between association stations.
632          */
633         int isolate;
634
635         /**
636          * cts_protect - Whether CTS protection is enabled
637          */
638         int cts_protect;
639
640         /**
641          * preamble - Whether short preamble is enabled
642          */
643         int preamble;
644
645         /**
646          * short_slot_time - Whether short slot time is enabled
647          *
648          * 0 = short slot time disable, 1 = short slot time enabled, -1 = do
649          * not set (e.g., when 802.11g mode is not in use)
650          */
651         int short_slot_time;
652
653         /**
654          * ht_opmode - HT operation mode or -1 if HT not in use
655          */
656         int ht_opmode;
657
658         /**
659          * interworking - Whether Interworking is enabled
660          */
661         int interworking;
662
663         /**
664          * hessid - Homogeneous ESS identifier or %NULL if not set
665          */
666         const u8 *hessid;
667
668         /**
669          * access_network_type - Access Network Type (0..15)
670          *
671          * This is used for filtering Probe Request frames when Interworking is
672          * enabled.
673          */
674         u8 access_network_type;
675 };
676
677 /**
678  * struct wpa_driver_capa - Driver capability information
679  */
680 struct wpa_driver_capa {
681 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA            0x00000001
682 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2           0x00000002
683 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK        0x00000004
684 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK       0x00000008
685 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE       0x00000010
686 #define WPA_DRIVER_CAPA_KEY_MGMT_FT             0x00000020
687 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK         0x00000040
688         unsigned int key_mgmt;
689
690 #define WPA_DRIVER_CAPA_ENC_WEP40       0x00000001
691 #define WPA_DRIVER_CAPA_ENC_WEP104      0x00000002
692 #define WPA_DRIVER_CAPA_ENC_TKIP        0x00000004
693 #define WPA_DRIVER_CAPA_ENC_CCMP        0x00000008
694         unsigned int enc;
695
696 #define WPA_DRIVER_AUTH_OPEN            0x00000001
697 #define WPA_DRIVER_AUTH_SHARED          0x00000002
698 #define WPA_DRIVER_AUTH_LEAP            0x00000004
699         unsigned int auth;
700
701 /* Driver generated WPA/RSN IE */
702 #define WPA_DRIVER_FLAGS_DRIVER_IE      0x00000001
703 /* Driver needs static WEP key setup after association command */
704 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
705 /* unused: 0x00000004 */
706 /* Driver takes care of RSN 4-way handshake internally; PMK is configured with
707  * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
708 #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
709 #define WPA_DRIVER_FLAGS_WIRED          0x00000010
710 /* Driver provides separate commands for authentication and association (SME in
711  * wpa_supplicant). */
712 #define WPA_DRIVER_FLAGS_SME            0x00000020
713 /* Driver supports AP mode */
714 #define WPA_DRIVER_FLAGS_AP             0x00000040
715 /* Driver needs static WEP key setup after association has been completed */
716 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE      0x00000080
717 /* Driver takes care of P2P management operations */
718 #define WPA_DRIVER_FLAGS_P2P_MGMT       0x00000100
719 /* Driver supports concurrent P2P operations */
720 #define WPA_DRIVER_FLAGS_P2P_CONCURRENT 0x00000200
721 /*
722  * Driver uses the initial interface as a dedicated management interface, i.e.,
723  * it cannot be used for P2P group operations or non-P2P purposes.
724  */
725 #define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE        0x00000400
726 /* This interface is P2P capable (P2P Device, GO, or P2P Client */
727 #define WPA_DRIVER_FLAGS_P2P_CAPABLE    0x00000800
728 /* Driver supports concurrent operations on multiple channels */
729 #define WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT       0x00001000
730 /*
731  * Driver uses the initial interface for P2P management interface and non-P2P
732  * purposes (e.g., connect to infra AP), but this interface cannot be used for
733  * P2P group operations.
734  */
735 #define WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P           0x00002000
736 /*
737  * Driver is known to use sane error codes, i.e., when it indicates that
738  * something (e.g., association) fails, there was indeed a failure and the
739  * operation does not end up getting completed successfully later.
740  */
741 #define WPA_DRIVER_FLAGS_SANE_ERROR_CODES               0x00004000
742 /* Driver supports off-channel TX */
743 #define WPA_DRIVER_FLAGS_OFFCHANNEL_TX                  0x00008000
744 /* Driver indicates TX status events for EAPOL Data frames */
745 #define WPA_DRIVER_FLAGS_EAPOL_TX_STATUS                0x00010000
746 /* Driver indicates TX status events for Deauth/Disassoc frames */
747 #define WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS               0x00020000
748 /* Driver supports roaming (BSS selection) in firmware */
749 #define WPA_DRIVER_FLAGS_BSS_SELECTION                  0x00040000
750 /* Driver supports operating as a TDLS peer */
751 #define WPA_DRIVER_FLAGS_TDLS_SUPPORT                   0x00080000
752 /* Driver requires external TDLS setup/teardown/discovery */
753 #define WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP            0x00100000
754         unsigned int flags;
755
756         int max_scan_ssids;
757         int max_sched_scan_ssids;
758         int sched_scan_supported;
759         int max_match_sets;
760
761         /**
762          * max_remain_on_chan - Maximum remain-on-channel duration in msec
763          */
764         unsigned int max_remain_on_chan;
765
766         /**
767          * max_stations - Maximum number of associated stations the driver
768          * supports in AP mode
769          */
770         unsigned int max_stations;
771 };
772
773
774 struct hostapd_data;
775
776 struct hostap_sta_driver_data {
777         unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
778         unsigned long current_tx_rate;
779         unsigned long inactive_msec;
780         unsigned long flags;
781         unsigned long num_ps_buf_frames;
782         unsigned long tx_retry_failed;
783         unsigned long tx_retry_count;
784         int last_rssi;
785         int last_ack_rssi;
786 };
787
788 struct hostapd_sta_add_params {
789         const u8 *addr;
790         u16 aid;
791         u16 capability;
792         const u8 *supp_rates;
793         size_t supp_rates_len;
794         u16 listen_interval;
795         const struct ieee80211_ht_capabilities *ht_capabilities;
796         u32 flags; /* bitmask of WPA_STA_* flags */
797         int set; /* Set STA parameters instead of add */
798 };
799
800 struct hostapd_freq_params {
801         int mode;
802         int freq;
803         int channel;
804         int ht_enabled;
805         int sec_channel_offset; /* 0 = HT40 disabled, -1 = HT40 enabled,
806                                  * secondary channel below primary, 1 = HT40
807                                  * enabled, secondary channel above primary */
808 };
809
810 enum wpa_driver_if_type {
811         /**
812          * WPA_IF_STATION - Station mode interface
813          */
814         WPA_IF_STATION,
815
816         /**
817          * WPA_IF_AP_VLAN - AP mode VLAN interface
818          *
819          * This interface shares its address and Beacon frame with the main
820          * BSS.
821          */
822         WPA_IF_AP_VLAN,
823
824         /**
825          * WPA_IF_AP_BSS - AP mode BSS interface
826          *
827          * This interface has its own address and Beacon frame.
828          */
829         WPA_IF_AP_BSS,
830
831         /**
832          * WPA_IF_P2P_GO - P2P Group Owner
833          */
834         WPA_IF_P2P_GO,
835
836         /**
837          * WPA_IF_P2P_CLIENT - P2P Client
838          */
839         WPA_IF_P2P_CLIENT,
840
841         /**
842          * WPA_IF_P2P_GROUP - P2P Group interface (will become either
843          * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known)
844          */
845         WPA_IF_P2P_GROUP
846 };
847
848 struct wpa_init_params {
849         void *global_priv;
850         const u8 *bssid;
851         const char *ifname;
852         const u8 *ssid;
853         size_t ssid_len;
854         const char *test_socket;
855         int use_pae_group_addr;
856         char **bridge;
857         size_t num_bridge;
858
859         u8 *own_addr; /* buffer for writing own MAC address */
860 };
861
862
863 struct wpa_bss_params {
864         /** Interface name (for multi-SSID/VLAN support) */
865         const char *ifname;
866         /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
867         int enabled;
868
869         int wpa;
870         int ieee802_1x;
871         int wpa_group;
872         int wpa_pairwise;
873         int wpa_key_mgmt;
874         int rsn_preauth;
875         enum mfp_options ieee80211w;
876 };
877
878 #define WPA_STA_AUTHORIZED BIT(0)
879 #define WPA_STA_WMM BIT(1)
880 #define WPA_STA_SHORT_PREAMBLE BIT(2)
881 #define WPA_STA_MFP BIT(3)
882 #define WPA_STA_TDLS_PEER BIT(4)
883
884 /**
885  * struct p2p_params - P2P parameters for driver-based P2P management
886  */
887 struct p2p_params {
888         const char *dev_name;
889         u8 pri_dev_type[8];
890 #define DRV_MAX_SEC_DEV_TYPES 5
891         u8 sec_dev_type[DRV_MAX_SEC_DEV_TYPES][8];
892         size_t num_sec_dev_types;
893 };
894
895 enum tdls_oper {
896         TDLS_DISCOVERY_REQ,
897         TDLS_SETUP,
898         TDLS_TEARDOWN,
899         TDLS_ENABLE_LINK,
900         TDLS_DISABLE_LINK,
901         TDLS_ENABLE,
902         TDLS_DISABLE
903 };
904
905 /**
906  * struct wpa_signal_info - Information about channel signal quality
907  */
908 struct wpa_signal_info {
909         u32 frequency;
910         int above_threshold;
911         int current_signal;
912         int current_noise;
913         int current_txrate;
914 };
915
916 /**
917  * struct wpa_driver_ops - Driver interface API definition
918  *
919  * This structure defines the API that each driver interface needs to implement
920  * for core wpa_supplicant code. All driver specific functionality is captured
921  * in this wrapper.
922  */
923 struct wpa_driver_ops {
924         /** Name of the driver interface */
925         const char *name;
926         /** One line description of the driver interface */
927         const char *desc;
928
929         /**
930          * get_bssid - Get the current BSSID
931          * @priv: private driver interface data
932          * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
933          *
934          * Returns: 0 on success, -1 on failure
935          *
936          * Query kernel driver for the current BSSID and copy it to bssid.
937          * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
938          * associated.
939          */
940         int (*get_bssid)(void *priv, u8 *bssid);
941
942         /**
943          * get_ssid - Get the current SSID
944          * @priv: private driver interface data
945          * @ssid: buffer for SSID (at least 32 bytes)
946          *
947          * Returns: Length of the SSID on success, -1 on failure
948          *
949          * Query kernel driver for the current SSID and copy it to ssid.
950          * Returning zero is recommended if the STA is not associated.
951          *
952          * Note: SSID is an array of octets, i.e., it is not nul terminated and
953          * can, at least in theory, contain control characters (including nul)
954          * and as such, should be processed as binary data, not a printable
955          * string.
956          */
957         int (*get_ssid)(void *priv, u8 *ssid);
958
959         /**
960          * set_key - Configure encryption key
961          * @ifname: Interface name (for multi-SSID/VLAN support)
962          * @priv: private driver interface data
963          * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
964          *      %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
965          *      %WPA_ALG_NONE clears the key.
966          * @addr: Address of the peer STA (BSSID of the current AP when setting
967          *      pairwise key in station mode), ff:ff:ff:ff:ff:ff for
968          *      broadcast keys, %NULL for default keys that are used both for
969          *      broadcast and unicast; when clearing keys, %NULL is used to
970          *      indicate that both the broadcast-only and default key of the
971          *      specified key index is to be cleared
972          * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
973          *      IGTK
974          * @set_tx: configure this key as the default Tx key (only used when
975          *      driver does not support separate unicast/individual key
976          * @seq: sequence number/packet number, seq_len octets, the next
977          *      packet number to be used for in replay protection; configured
978          *      for Rx keys (in most cases, this is only used with broadcast
979          *      keys and set to zero for unicast keys); %NULL if not set
980          * @seq_len: length of the seq, depends on the algorithm:
981          *      TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
982          * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
983          *      8-byte Rx Mic Key
984          * @key_len: length of the key buffer in octets (WEP: 5 or 13,
985          *      TKIP: 32, CCMP: 16, IGTK: 16)
986          *
987          * Returns: 0 on success, -1 on failure
988          *
989          * Configure the given key for the kernel driver. If the driver
990          * supports separate individual keys (4 default keys + 1 individual),
991          * addr can be used to determine whether the key is default or
992          * individual. If only 4 keys are supported, the default key with key
993          * index 0 is used as the individual key. STA must be configured to use
994          * it as the default Tx key (set_tx is set) and accept Rx for all the
995          * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
996          * broadcast keys, so key index 0 is available for this kind of
997          * configuration.
998          *
999          * Please note that TKIP keys include separate TX and RX MIC keys and
1000          * some drivers may expect them in different order than wpa_supplicant
1001          * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
1002          * will trigger Michael MIC errors. This can be fixed by changing the
1003          * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
1004          * in driver_*.c set_key() implementation, see driver_ndis.c for an
1005          * example on how this can be done.
1006          */
1007         int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg,
1008                        const u8 *addr, int key_idx, int set_tx,
1009                        const u8 *seq, size_t seq_len,
1010                        const u8 *key, size_t key_len);
1011
1012         /**
1013          * init - Initialize driver interface
1014          * @ctx: context to be used when calling wpa_supplicant functions,
1015          * e.g., wpa_supplicant_event()
1016          * @ifname: interface name, e.g., wlan0
1017          *
1018          * Returns: Pointer to private data, %NULL on failure
1019          *
1020          * Initialize driver interface, including event processing for kernel
1021          * driver events (e.g., associated, scan results, Michael MIC failure).
1022          * This function can allocate a private configuration data area for
1023          * @ctx, file descriptor, interface name, etc. information that may be
1024          * needed in future driver operations. If this is not used, non-NULL
1025          * value will need to be returned because %NULL is used to indicate
1026          * failure. The returned value will be used as 'void *priv' data for
1027          * all other driver_ops functions.
1028          *
1029          * The main event loop (eloop.c) of wpa_supplicant can be used to
1030          * register callback for read sockets (eloop_register_read_sock()).
1031          *
1032          * See below for more information about events and
1033          * wpa_supplicant_event() function.
1034          */
1035         void * (*init)(void *ctx, const char *ifname);
1036
1037         /**
1038          * deinit - Deinitialize driver interface
1039          * @priv: private driver interface data from init()
1040          *
1041          * Shut down driver interface and processing of driver events. Free
1042          * private data buffer if one was allocated in init() handler.
1043          */
1044         void (*deinit)(void *priv);
1045
1046         /**
1047          * set_param - Set driver configuration parameters
1048          * @priv: private driver interface data from init()
1049          * @param: driver specific configuration parameters
1050          *
1051          * Returns: 0 on success, -1 on failure
1052          *
1053          * Optional handler for notifying driver interface about configuration
1054          * parameters (driver_param).
1055          */
1056         int (*set_param)(void *priv, const char *param);
1057
1058         /**
1059          * set_countermeasures - Enable/disable TKIP countermeasures
1060          * @priv: private driver interface data
1061          * @enabled: 1 = countermeasures enabled, 0 = disabled
1062          *
1063          * Returns: 0 on success, -1 on failure
1064          *
1065          * Configure TKIP countermeasures. When these are enabled, the driver
1066          * should drop all received and queued frames that are using TKIP.
1067          */
1068         int (*set_countermeasures)(void *priv, int enabled);
1069
1070         /**
1071          * deauthenticate - Request driver to deauthenticate
1072          * @priv: private driver interface data
1073          * @addr: peer address (BSSID of the AP)
1074          * @reason_code: 16-bit reason code to be sent in the deauthentication
1075          *      frame
1076          *
1077          * Returns: 0 on success, -1 on failure
1078          */
1079         int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
1080
1081         /**
1082          * disassociate - Request driver to disassociate
1083          * @priv: private driver interface data
1084          * @addr: peer address (BSSID of the AP)
1085          * @reason_code: 16-bit reason code to be sent in the disassociation
1086          *      frame
1087          *
1088          * Returns: 0 on success, -1 on failure
1089          */
1090         int (*disassociate)(void *priv, const u8 *addr, int reason_code);
1091
1092         /**
1093          * associate - Request driver to associate
1094          * @priv: private driver interface data
1095          * @params: association parameters
1096          *
1097          * Returns: 0 on success, -1 on failure
1098          */
1099         int (*associate)(void *priv,
1100                          struct wpa_driver_associate_params *params);
1101
1102         /**
1103          * add_pmkid - Add PMKSA cache entry to the driver
1104          * @priv: private driver interface data
1105          * @bssid: BSSID for the PMKSA cache entry
1106          * @pmkid: PMKID for the PMKSA cache entry
1107          *
1108          * Returns: 0 on success, -1 on failure
1109          *
1110          * This function is called when a new PMK is received, as a result of
1111          * either normal authentication or RSN pre-authentication.
1112          *
1113          * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1114          * associate(), add_pmkid() can be used to add new PMKSA cache entries
1115          * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
1116          * driver_ops function does not need to be implemented. Likewise, if
1117          * the driver does not support WPA, this function is not needed.
1118          */
1119         int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
1120
1121         /**
1122          * remove_pmkid - Remove PMKSA cache entry to the driver
1123          * @priv: private driver interface data
1124          * @bssid: BSSID for the PMKSA cache entry
1125          * @pmkid: PMKID for the PMKSA cache entry
1126          *
1127          * Returns: 0 on success, -1 on failure
1128          *
1129          * This function is called when the supplicant drops a PMKSA cache
1130          * entry for any reason.
1131          *
1132          * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1133          * associate(), remove_pmkid() can be used to synchronize PMKSA caches
1134          * between the driver and wpa_supplicant. If the driver uses wpa_ie
1135          * from wpa_supplicant, this driver_ops function does not need to be
1136          * implemented. Likewise, if the driver does not support WPA, this
1137          * function is not needed.
1138          */
1139         int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
1140
1141         /**
1142          * flush_pmkid - Flush PMKSA cache
1143          * @priv: private driver interface data
1144          *
1145          * Returns: 0 on success, -1 on failure
1146          *
1147          * This function is called when the supplicant drops all PMKSA cache
1148          * entries for any reason.
1149          *
1150          * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1151          * associate(), remove_pmkid() can be used to synchronize PMKSA caches
1152          * between the driver and wpa_supplicant. If the driver uses wpa_ie
1153          * from wpa_supplicant, this driver_ops function does not need to be
1154          * implemented. Likewise, if the driver does not support WPA, this
1155          * function is not needed.
1156          */
1157         int (*flush_pmkid)(void *priv);
1158
1159         /**
1160          * get_capa - Get driver capabilities
1161          * @priv: private driver interface data
1162          *
1163          * Returns: 0 on success, -1 on failure
1164          *
1165          * Get driver/firmware/hardware capabilities.
1166          */
1167         int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
1168
1169         /**
1170          * poll - Poll driver for association information
1171          * @priv: private driver interface data
1172          *
1173          * This is an option callback that can be used when the driver does not
1174          * provide event mechanism for association events. This is called when
1175          * receiving WPA EAPOL-Key messages that require association
1176          * information. The driver interface is supposed to generate associnfo
1177          * event before returning from this callback function. In addition, the
1178          * driver interface should generate an association event after having
1179          * sent out associnfo.
1180          */
1181         void (*poll)(void *priv);
1182
1183         /**
1184          * get_ifname - Get interface name
1185          * @priv: private driver interface data
1186          *
1187          * Returns: Pointer to the interface name. This can differ from the
1188          * interface name used in init() call. Init() is called first.
1189          *
1190          * This optional function can be used to allow the driver interface to
1191          * replace the interface name with something else, e.g., based on an
1192          * interface mapping from a more descriptive name.
1193          */
1194         const char * (*get_ifname)(void *priv);
1195
1196         /**
1197          * get_mac_addr - Get own MAC address
1198          * @priv: private driver interface data
1199          *
1200          * Returns: Pointer to own MAC address or %NULL on failure
1201          *
1202          * This optional function can be used to get the own MAC address of the
1203          * device from the driver interface code. This is only needed if the
1204          * l2_packet implementation for the OS does not provide easy access to
1205          * a MAC address. */
1206         const u8 * (*get_mac_addr)(void *priv);
1207
1208         /**
1209          * send_eapol - Optional function for sending EAPOL packets
1210          * @priv: private driver interface data
1211          * @dest: Destination MAC address
1212          * @proto: Ethertype
1213          * @data: EAPOL packet starting with IEEE 802.1X header
1214          * @data_len: Size of the EAPOL packet
1215          *
1216          * Returns: 0 on success, -1 on failure
1217          *
1218          * This optional function can be used to override l2_packet operations
1219          * with driver specific functionality. If this function pointer is set,
1220          * l2_packet module is not used at all and the driver interface code is
1221          * responsible for receiving and sending all EAPOL packets. The
1222          * received EAPOL packets are sent to core code with EVENT_EAPOL_RX
1223          * event. The driver interface is required to implement get_mac_addr()
1224          * handler if send_eapol() is used.
1225          */
1226         int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
1227                           const u8 *data, size_t data_len);
1228
1229         /**
1230          * set_operstate - Sets device operating state to DORMANT or UP
1231          * @priv: private driver interface data
1232          * @state: 0 = dormant, 1 = up
1233          * Returns: 0 on success, -1 on failure
1234          *
1235          * This is an optional function that can be used on operating systems
1236          * that support a concept of controlling network device state from user
1237          * space applications. This function, if set, gets called with
1238          * state = 1 when authentication has been completed and with state = 0
1239          * when connection is lost.
1240          */
1241         int (*set_operstate)(void *priv, int state);
1242
1243         /**
1244          * mlme_setprotection - MLME-SETPROTECTION.request primitive
1245          * @priv: Private driver interface data
1246          * @addr: Address of the station for which to set protection (may be
1247          * %NULL for group keys)
1248          * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
1249          * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
1250          * Returns: 0 on success, -1 on failure
1251          *
1252          * This is an optional function that can be used to set the driver to
1253          * require protection for Tx and/or Rx frames. This uses the layer
1254          * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
1255          * (MLME-SETPROTECTION.request). Many drivers do not use explicit
1256          * set protection operation; instead, they set protection implicitly
1257          * based on configured keys.
1258          */
1259         int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
1260                                   int key_type);
1261
1262         /**
1263          * get_hw_feature_data - Get hardware support data (channels and rates)
1264          * @priv: Private driver interface data
1265          * @num_modes: Variable for returning the number of returned modes
1266          * flags: Variable for returning hardware feature flags
1267          * Returns: Pointer to allocated hardware data on success or %NULL on
1268          * failure. Caller is responsible for freeing this.
1269          */
1270         struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
1271                                                          u16 *num_modes,
1272                                                          u16 *flags);
1273
1274         /**
1275          * send_mlme - Send management frame from MLME
1276          * @priv: Private driver interface data
1277          * @data: IEEE 802.11 management frame with IEEE 802.11 header
1278          * @data_len: Size of the management frame
1279          * @noack: Do not wait for this frame to be acked (disable retries)
1280          * Returns: 0 on success, -1 on failure
1281          */
1282         int (*send_mlme)(void *priv, const u8 *data, size_t data_len,
1283                          int noack);
1284
1285         /**
1286          * update_ft_ies - Update FT (IEEE 802.11r) IEs
1287          * @priv: Private driver interface data
1288          * @md: Mobility domain (2 octets) (also included inside ies)
1289          * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
1290          * @ies_len: Length of FT IEs in bytes
1291          * Returns: 0 on success, -1 on failure
1292          *
1293          * The supplicant uses this callback to let the driver know that keying
1294          * material for FT is available and that the driver can use the
1295          * provided IEs in the next message in FT authentication sequence.
1296          *
1297          * This function is only needed for driver that support IEEE 802.11r
1298          * (Fast BSS Transition).
1299          */
1300         int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
1301                              size_t ies_len);
1302
1303         /**
1304          * send_ft_action - Send FT Action frame (IEEE 802.11r)
1305          * @priv: Private driver interface data
1306          * @action: Action field value
1307          * @target_ap: Target AP address
1308          * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
1309          * @ies_len: Length of FT IEs in bytes
1310          * Returns: 0 on success, -1 on failure
1311          *
1312          * The supplicant uses this callback to request the driver to transmit
1313          * an FT Action frame (action category 6) for over-the-DS fast BSS
1314          * transition.
1315          */
1316         int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
1317                               const u8 *ies, size_t ies_len);
1318
1319         /**
1320          * get_scan_results2 - Fetch the latest scan results
1321          * @priv: private driver interface data
1322          *
1323          * Returns: Allocated buffer of scan results (caller is responsible for
1324          * freeing the data structure) on success, NULL on failure
1325          */
1326          struct wpa_scan_results * (*get_scan_results2)(void *priv);
1327
1328         /**
1329          * set_country - Set country
1330          * @priv: Private driver interface data
1331          * @alpha2: country to which to switch to
1332          * Returns: 0 on success, -1 on failure
1333          *
1334          * This function is for drivers which support some form
1335          * of setting a regulatory domain.
1336          */
1337         int (*set_country)(void *priv, const char *alpha2);
1338
1339         /**
1340          * global_init - Global driver initialization
1341          * Returns: Pointer to private data (global), %NULL on failure
1342          *
1343          * This optional function is called to initialize the driver wrapper
1344          * for global data, i.e., data that applies to all interfaces. If this
1345          * function is implemented, global_deinit() will also need to be
1346          * implemented to free the private data. The driver will also likely
1347          * use init2() function instead of init() to get the pointer to global
1348          * data available to per-interface initializer.
1349          */
1350         void * (*global_init)(void);
1351
1352         /**
1353          * global_deinit - Global driver deinitialization
1354          * @priv: private driver global data from global_init()
1355          *
1356          * Terminate any global driver related functionality and free the
1357          * global data structure.
1358          */
1359         void (*global_deinit)(void *priv);
1360
1361         /**
1362          * init2 - Initialize driver interface (with global data)
1363          * @ctx: context to be used when calling wpa_supplicant functions,
1364          * e.g., wpa_supplicant_event()
1365          * @ifname: interface name, e.g., wlan0
1366          * @global_priv: private driver global data from global_init()
1367          * Returns: Pointer to private data, %NULL on failure
1368          *
1369          * This function can be used instead of init() if the driver wrapper
1370          * uses global data.
1371          */
1372         void * (*init2)(void *ctx, const char *ifname, void *global_priv);
1373
1374         /**
1375          * get_interfaces - Get information about available interfaces
1376          * @global_priv: private driver global data from global_init()
1377          * Returns: Allocated buffer of interface information (caller is
1378          * responsible for freeing the data structure) on success, NULL on
1379          * failure
1380          */
1381         struct wpa_interface_info * (*get_interfaces)(void *global_priv);
1382
1383         /**
1384          * scan2 - Request the driver to initiate scan
1385          * @priv: private driver interface data
1386          * @params: Scan parameters
1387          *
1388          * Returns: 0 on success, -1 on failure
1389          *
1390          * Once the scan results are ready, the driver should report scan
1391          * results event for wpa_supplicant which will eventually request the
1392          * results with wpa_driver_get_scan_results2().
1393          */
1394         int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
1395
1396         /**
1397          * authenticate - Request driver to authenticate
1398          * @priv: private driver interface data
1399          * @params: authentication parameters
1400          * Returns: 0 on success, -1 on failure
1401          *
1402          * This is an optional function that can be used with drivers that
1403          * support separate authentication and association steps, i.e., when
1404          * wpa_supplicant can act as the SME. If not implemented, associate()
1405          * function is expected to take care of IEEE 802.11 authentication,
1406          * too.
1407          */
1408         int (*authenticate)(void *priv,
1409                             struct wpa_driver_auth_params *params);
1410
1411         /**
1412          * set_ap - Set Beacon and Probe Response information for AP mode
1413          * @priv: Private driver interface data
1414          * @params: Parameters to use in AP mode
1415          *
1416          * This function is used to configure Beacon template and/or extra IEs
1417          * to add for Beacon and Probe Response frames for the driver in
1418          * AP mode. The driver is responsible for building the full Beacon
1419          * frame by concatenating the head part with TIM IE generated by the
1420          * driver/firmware and finishing with the tail part. Depending on the
1421          * driver architectue, this can be done either by using the full
1422          * template or the set of additional IEs (e.g., WPS and P2P IE).
1423          * Similarly, Probe Response processing depends on the driver design.
1424          * If the driver (or firmware) takes care of replying to Probe Request
1425          * frames, the extra IEs provided here needs to be added to the Probe
1426          * Response frames.
1427          *
1428          * Returns: 0 on success, -1 on failure
1429          */
1430         int (*set_ap)(void *priv, struct wpa_driver_ap_params *params);
1431
1432         /**
1433          * hapd_init - Initialize driver interface (hostapd only)
1434          * @hapd: Pointer to hostapd context
1435          * @params: Configuration for the driver wrapper
1436          * Returns: Pointer to private data, %NULL on failure
1437          *
1438          * This function is used instead of init() or init2() when the driver
1439          * wrapper is used with hostapd.
1440          */
1441         void * (*hapd_init)(struct hostapd_data *hapd,
1442                             struct wpa_init_params *params);
1443
1444         /**
1445          * hapd_deinit - Deinitialize driver interface (hostapd only)
1446          * @priv: Private driver interface data from hapd_init()
1447          */
1448         void (*hapd_deinit)(void *priv);
1449
1450         /**
1451          * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
1452          * @priv: Private driver interface data
1453          * @params: BSS parameters
1454          * Returns: 0 on success, -1 on failure
1455          *
1456          * This is an optional function to configure the kernel driver to
1457          * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
1458          * can be left undefined (set to %NULL) if IEEE 802.1X support is
1459          * always enabled and the driver uses set_ap() to set WPA/RSN IE
1460          * for Beacon frames.
1461          *
1462          * DEPRECATED - use set_ap() instead
1463          */
1464         int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
1465
1466         /**
1467          * set_privacy - Enable/disable privacy (AP only)
1468          * @priv: Private driver interface data
1469          * @enabled: 1 = privacy enabled, 0 = disabled
1470          * Returns: 0 on success, -1 on failure
1471          *
1472          * This is an optional function to configure privacy field in the
1473          * kernel driver for Beacon frames. This can be left undefined (set to
1474          * %NULL) if the driver uses the Beacon template from set_ap().
1475          *
1476          * DEPRECATED - use set_ap() instead
1477          */
1478         int (*set_privacy)(void *priv, int enabled);
1479
1480         /**
1481          * get_seqnum - Fetch the current TSC/packet number (AP only)
1482          * @ifname: The interface name (main or virtual)
1483          * @priv: Private driver interface data
1484          * @addr: MAC address of the station or %NULL for group keys
1485          * @idx: Key index
1486          * @seq: Buffer for returning the latest used TSC/packet number
1487          * Returns: 0 on success, -1 on failure
1488          *
1489          * This function is used to fetch the last used TSC/packet number for
1490          * a TKIP, CCMP, or BIP/IGTK key. It is mainly used with group keys, so
1491          * there is no strict requirement on implementing support for unicast
1492          * keys (i.e., addr != %NULL).
1493          */
1494         int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
1495                           int idx, u8 *seq);
1496
1497         /**
1498          * flush - Flush all association stations (AP only)
1499          * @priv: Private driver interface data
1500          * Returns: 0 on success, -1 on failure
1501          *
1502          * This function requests the driver to disassociate all associated
1503          * stations. This function does not need to be implemented if the
1504          * driver does not process association frames internally.
1505          */
1506         int (*flush)(void *priv);
1507
1508         /**
1509          * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
1510          * @priv: Private driver interface data
1511          * @elem: Information elements
1512          * @elem_len: Length of the elem buffer in octets
1513          * Returns: 0 on success, -1 on failure
1514          *
1515          * This is an optional function to add information elements in the
1516          * kernel driver for Beacon and Probe Response frames. This can be left
1517          * undefined (set to %NULL) if the driver uses the Beacon template from
1518          * set_ap().
1519          *
1520          * DEPRECATED - use set_ap() instead
1521          */
1522         int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
1523
1524         /**
1525          * read_sta_data - Fetch station data (AP only)
1526          * @priv: Private driver interface data
1527          * @data: Buffer for returning station information
1528          * @addr: MAC address of the station
1529          * Returns: 0 on success, -1 on failure
1530          */
1531         int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
1532                              const u8 *addr);
1533
1534         /**
1535          * hapd_send_eapol - Send an EAPOL packet (AP only)
1536          * @priv: private driver interface data
1537          * @addr: Destination MAC address
1538          * @data: EAPOL packet starting with IEEE 802.1X header
1539          * @data_len: Length of the EAPOL packet in octets
1540          * @encrypt: Whether the frame should be encrypted
1541          * @own_addr: Source MAC address
1542          * @flags: WPA_STA_* flags for the destination station
1543          *
1544          * Returns: 0 on success, -1 on failure
1545          */
1546         int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
1547                                size_t data_len, int encrypt,
1548                                const u8 *own_addr, u32 flags);
1549
1550         /**
1551          * sta_deauth - Deauthenticate a station (AP only)
1552          * @priv: Private driver interface data
1553          * @own_addr: Source address and BSSID for the Deauthentication frame
1554          * @addr: MAC address of the station to deauthenticate
1555          * @reason: Reason code for the Deauthentiation frame
1556          * Returns: 0 on success, -1 on failure
1557          *
1558          * This function requests a specific station to be deauthenticated and
1559          * a Deauthentication frame to be sent to it.
1560          */
1561         int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
1562                           int reason);
1563
1564         /**
1565          * sta_disassoc - Disassociate a station (AP only)
1566          * @priv: Private driver interface data
1567          * @own_addr: Source address and BSSID for the Disassociation frame
1568          * @addr: MAC address of the station to disassociate
1569          * @reason: Reason code for the Disassociation frame
1570          * Returns: 0 on success, -1 on failure
1571          *
1572          * This function requests a specific station to be disassociated and
1573          * a Disassociation frame to be sent to it.
1574          */
1575         int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
1576                             int reason);
1577
1578         /**
1579          * sta_remove - Remove a station entry (AP only)
1580          * @priv: Private driver interface data
1581          * @addr: MAC address of the station to be removed
1582          * Returns: 0 on success, -1 on failure
1583          */
1584         int (*sta_remove)(void *priv, const u8 *addr);
1585
1586         /**
1587          * hapd_get_ssid - Get the current SSID (AP only)
1588          * @priv: Private driver interface data
1589          * @buf: Buffer for returning the SSID
1590          * @len: Maximum length of the buffer
1591          * Returns: Length of the SSID on success, -1 on failure
1592          *
1593          * This function need not be implemented if the driver uses Beacon
1594          * template from set_ap() and does not reply to Probe Request frames.
1595          */
1596         int (*hapd_get_ssid)(void *priv, u8 *buf, int len);
1597
1598         /**
1599          * hapd_set_ssid - Set SSID (AP only)
1600          * @priv: Private driver interface data
1601          * @buf: SSID
1602          * @len: Length of the SSID in octets
1603          * Returns: 0 on success, -1 on failure
1604          *
1605          * DEPRECATED - use set_ap() instead
1606          */
1607         int (*hapd_set_ssid)(void *priv, const u8 *buf, int len);
1608
1609         /**
1610          * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
1611          * @priv: Private driver interface data
1612          * @enabled: 1 = countermeasures enabled, 0 = disabled
1613          * Returns: 0 on success, -1 on failure
1614          *
1615          * This need not be implemented if the driver does not take care of
1616          * association processing.
1617          */
1618         int (*hapd_set_countermeasures)(void *priv, int enabled);
1619
1620         /**
1621          * sta_add - Add a station entry
1622          * @priv: Private driver interface data
1623          * @params: Station parameters
1624          * Returns: 0 on success, -1 on failure
1625          *
1626          * This function is used to add a station entry to the driver once the
1627          * station has completed association. This is only used if the driver
1628          * does not take care of association processing.
1629          *
1630          * With TDLS, this function is also used to add or set (params->set 1)
1631          * TDLS peer entries.
1632          */
1633         int (*sta_add)(void *priv, struct hostapd_sta_add_params *params);
1634
1635         /**
1636          * get_inact_sec - Get station inactivity duration (AP only)
1637          * @priv: Private driver interface data
1638          * @addr: Station address
1639          * Returns: Number of seconds station has been inactive, -1 on failure
1640          */
1641         int (*get_inact_sec)(void *priv, const u8 *addr);
1642
1643         /**
1644          * sta_clear_stats - Clear station statistics (AP only)
1645          * @priv: Private driver interface data
1646          * @addr: Station address
1647          * Returns: 0 on success, -1 on failure
1648          */
1649         int (*sta_clear_stats)(void *priv, const u8 *addr);
1650
1651         /**
1652          * set_freq - Set channel/frequency (AP only)
1653          * @priv: Private driver interface data
1654          * @freq: Channel parameters
1655          * Returns: 0 on success, -1 on failure
1656          */
1657         int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
1658
1659         /**
1660          * set_rts - Set RTS threshold
1661          * @priv: Private driver interface data
1662          * @rts: RTS threshold in octets
1663          * Returns: 0 on success, -1 on failure
1664          */
1665         int (*set_rts)(void *priv, int rts);
1666
1667         /**
1668          * set_frag - Set fragmentation threshold
1669          * @priv: Private driver interface data
1670          * @frag: Fragmentation threshold in octets
1671          * Returns: 0 on success, -1 on failure
1672          */
1673         int (*set_frag)(void *priv, int frag);
1674
1675         /**
1676          * sta_set_flags - Set station flags (AP only)
1677          * @priv: Private driver interface data
1678          * @addr: Station address
1679          * @total_flags: Bitmap of all WPA_STA_* flags currently set
1680          * @flags_or: Bitmap of WPA_STA_* flags to add
1681          * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
1682          * Returns: 0 on success, -1 on failure
1683          */
1684         int (*sta_set_flags)(void *priv, const u8 *addr,
1685                              int total_flags, int flags_or, int flags_and);
1686
1687         /**
1688          * set_rate_sets - Set supported and basic rate sets (AP only)
1689          * @priv: Private driver interface data
1690          * @supp_rates: -1 terminated array of supported rates in 100 kbps
1691          * @basic_rates: -1 terminated array of basic rates in 100 kbps
1692          * @mode: hardware mode (HOSTAPD_MODE_*)
1693          * Returns: 0 on success, -1 on failure
1694          */
1695         int (*set_rate_sets)(void *priv, int *supp_rates, int *basic_rates,
1696                              int mode);
1697
1698         /**
1699          * set_tx_queue_params - Set TX queue parameters
1700          * @priv: Private driver interface data
1701          * @queue: Queue number (0 = VO, 1 = VI, 2 = BE, 3 = BK)
1702          * @aifs: AIFS
1703          * @cw_min: cwMin
1704          * @cw_max: cwMax
1705          * @burst_time: Maximum length for bursting in 0.1 msec units
1706          */
1707         int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
1708                                    int cw_max, int burst_time);
1709
1710         /**
1711          * if_add - Add a virtual interface
1712          * @priv: Private driver interface data
1713          * @type: Interface type
1714          * @ifname: Interface name for the new virtual interface
1715          * @addr: Local address to use for the interface or %NULL to use the
1716          *      parent interface address
1717          * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
1718          * @drv_priv: Pointer for overwriting the driver context or %NULL if
1719          *      not allowed (applies only to %WPA_IF_AP_BSS type)
1720          * @force_ifname: Buffer for returning an interface name that the
1721          *      driver ended up using if it differs from the requested ifname
1722          * @if_addr: Buffer for returning the allocated interface address
1723          *      (this may differ from the requested addr if the driver cannot
1724          *      change interface address)
1725          * @bridge: Bridge interface to use or %NULL if no bridge configured
1726          * Returns: 0 on success, -1 on failure
1727          */
1728         int (*if_add)(void *priv, enum wpa_driver_if_type type,
1729                       const char *ifname, const u8 *addr, void *bss_ctx,
1730                       void **drv_priv, char *force_ifname, u8 *if_addr,
1731                       const char *bridge);
1732
1733         /**
1734          * if_remove - Remove a virtual interface
1735          * @priv: Private driver interface data
1736          * @type: Interface type
1737          * @ifname: Interface name of the virtual interface to be removed
1738          * Returns: 0 on success, -1 on failure
1739          */
1740         int (*if_remove)(void *priv, enum wpa_driver_if_type type,
1741                          const char *ifname);
1742
1743         /**
1744          * set_sta_vlan - Bind a station into a specific interface (AP only)
1745          * @priv: Private driver interface data
1746          * @ifname: Interface (main or virtual BSS or VLAN)
1747          * @addr: MAC address of the associated station
1748          * @vlan_id: VLAN ID
1749          * Returns: 0 on success, -1 on failure
1750          *
1751          * This function is used to bind a station to a specific virtual
1752          * interface. It is only used if when virtual interfaces are supported,
1753          * e.g., to assign stations to different VLAN interfaces based on
1754          * information from a RADIUS server. This allows separate broadcast
1755          * domains to be used with a single BSS.
1756          */
1757         int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
1758                             int vlan_id);
1759
1760         /**
1761          * commit - Optional commit changes handler (AP only)
1762          * @priv: driver private data
1763          * Returns: 0 on success, -1 on failure
1764          *
1765          * This optional handler function can be registered if the driver
1766          * interface implementation needs to commit changes (e.g., by setting
1767          * network interface up) at the end of initial configuration. If set,
1768          * this handler will be called after initial setup has been completed.
1769          */
1770         int (*commit)(void *priv);
1771
1772         /**
1773          * send_ether - Send an ethernet packet (AP only)
1774          * @priv: private driver interface data
1775          * @dst: Destination MAC address
1776          * @src: Source MAC address
1777          * @proto: Ethertype
1778          * @data: EAPOL packet starting with IEEE 802.1X header
1779          * @data_len: Length of the EAPOL packet in octets
1780          * Returns: 0 on success, -1 on failure
1781          */
1782         int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
1783                           const u8 *data, size_t data_len);
1784
1785         /**
1786          * set_radius_acl_auth - Notification of RADIUS ACL change
1787          * @priv: Private driver interface data
1788          * @mac: MAC address of the station
1789          * @accepted: Whether the station was accepted
1790          * @session_timeout: Session timeout for the station
1791          * Returns: 0 on success, -1 on failure
1792          */
1793         int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted, 
1794                                    u32 session_timeout);
1795
1796         /**
1797          * set_radius_acl_expire - Notification of RADIUS ACL expiration
1798          * @priv: Private driver interface data
1799          * @mac: MAC address of the station
1800          * Returns: 0 on success, -1 on failure
1801          */
1802         int (*set_radius_acl_expire)(void *priv, const u8 *mac);
1803
1804         /**
1805          * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
1806          * @priv: Private driver interface data
1807          * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
1808          * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
1809          *      extra IE(s)
1810          * @assocresp: WPS IE(s) for (Re)Association Response frames or %NULL
1811          *      to remove extra IE(s)
1812          * Returns: 0 on success, -1 on failure
1813          *
1814          * This is an optional function to add WPS IE in the kernel driver for
1815          * Beacon and Probe Response frames. This can be left undefined (set
1816          * to %NULL) if the driver uses the Beacon template from set_ap()
1817          * and does not process Probe Request frames. If the driver takes care
1818          * of (Re)Association frame processing, the assocresp buffer includes
1819          * WPS IE(s) that need to be added to (Re)Association Response frames
1820          * whenever a (Re)Association Request frame indicated use of WPS.
1821          *
1822          * This will also be used to add P2P IE(s) into Beacon/Probe Response
1823          * frames when operating as a GO. The driver is responsible for adding
1824          * timing related attributes (e.g., NoA) in addition to the IEs
1825          * included here by appending them after these buffers. This call is
1826          * also used to provide Probe Response IEs for P2P Listen state
1827          * operations for drivers that generate the Probe Response frames
1828          * internally.
1829          *
1830          * DEPRECATED - use set_ap() instead
1831          */
1832         int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon,
1833                              const struct wpabuf *proberesp,
1834                              const struct wpabuf *assocresp);
1835
1836         /**
1837          * set_supp_port - Set IEEE 802.1X Supplicant Port status
1838          * @priv: Private driver interface data
1839          * @authorized: Whether the port is authorized
1840          * Returns: 0 on success, -1 on failure
1841          */
1842         int (*set_supp_port)(void *priv, int authorized);
1843
1844         /**
1845          * set_wds_sta - Bind a station into a 4-address WDS (AP only)
1846          * @priv: Private driver interface data
1847          * @addr: MAC address of the associated station
1848          * @aid: Association ID
1849          * @val: 1 = bind to 4-address WDS; 0 = unbind
1850          * @bridge_ifname: Bridge interface to use for the WDS station or %NULL
1851          *      to indicate that bridge is not to be used
1852          * Returns: 0 on success, -1 on failure
1853          */
1854         int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val,
1855                            const char *bridge_ifname);
1856
1857         /**
1858          * send_action - Transmit an Action frame
1859          * @priv: Private driver interface data
1860          * @freq: Frequency (in MHz) of the channel
1861          * @wait: Time to wait off-channel for a response (in ms), or zero
1862          * @dst: Destination MAC address (Address 1)
1863          * @src: Source MAC address (Address 2)
1864          * @bssid: BSSID (Address 3)
1865          * @data: Frame body
1866          * @data_len: data length in octets
1867          @ @no_cck: Whether CCK rates must not be used to transmit this frame
1868          * Returns: 0 on success, -1 on failure
1869          *
1870          * This command can be used to request the driver to transmit an action
1871          * frame to the specified destination.
1872          *
1873          * If the %WPA_DRIVER_FLAGS_OFFCHANNEL_TX flag is set, the frame will
1874          * be transmitted on the given channel and the device will wait for a
1875          * response on that channel for the given wait time.
1876          *
1877          * If the flag is not set, the wait time will be ignored. In this case,
1878          * if a remain-on-channel duration is in progress, the frame must be
1879          * transmitted on that channel; alternatively the frame may be sent on
1880          * the current operational channel (if in associated state in station
1881          * mode or while operating as an AP.)
1882          */
1883         int (*send_action)(void *priv, unsigned int freq, unsigned int wait,
1884                            const u8 *dst, const u8 *src, const u8 *bssid,
1885                            const u8 *data, size_t data_len, int no_cck);
1886
1887         /**
1888          * send_action_cancel_wait - Cancel action frame TX wait
1889          * @priv: Private driver interface data
1890          *
1891          * This command cancels the wait time associated with sending an action
1892          * frame. It is only available when %WPA_DRIVER_FLAGS_OFFCHANNEL_TX is
1893          * set in the driver flags.
1894          */
1895         void (*send_action_cancel_wait)(void *priv);
1896
1897         /**
1898          * remain_on_channel - Remain awake on a channel
1899          * @priv: Private driver interface data
1900          * @freq: Frequency (in MHz) of the channel
1901          * @duration: Duration in milliseconds
1902          * Returns: 0 on success, -1 on failure
1903          *
1904          * This command is used to request the driver to remain awake on the
1905          * specified channel for the specified duration and report received
1906          * Action frames with EVENT_RX_ACTION events. Optionally, received
1907          * Probe Request frames may also be requested to be reported by calling
1908          * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
1909          *
1910          * The driver may not be at the requested channel when this function
1911          * returns, i.e., the return code is only indicating whether the
1912          * request was accepted. The caller will need to wait until the
1913          * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
1914          * completed the channel change. This may take some time due to other
1915          * need for the radio and the caller should be prepared to timing out
1916          * its wait since there are no guarantees on when this request can be
1917          * executed.
1918          */
1919         int (*remain_on_channel)(void *priv, unsigned int freq,
1920                                  unsigned int duration);
1921
1922         /**
1923          * cancel_remain_on_channel - Cancel remain-on-channel operation
1924          * @priv: Private driver interface data
1925          *
1926          * This command can be used to cancel a remain-on-channel operation
1927          * before its originally requested duration has passed. This could be
1928          * used, e.g., when remain_on_channel() is used to request extra time
1929          * to receive a response to an Action frame and the response is
1930          * received when there is still unneeded time remaining on the
1931          * remain-on-channel operation.
1932          */
1933         int (*cancel_remain_on_channel)(void *priv);
1934
1935         /**
1936          * probe_req_report - Request Probe Request frames to be indicated
1937          * @priv: Private driver interface data
1938          * @report: Whether to report received Probe Request frames
1939          * Returns: 0 on success, -1 on failure (or if not supported)
1940          *
1941          * This command can be used to request the driver to indicate when
1942          * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
1943          * Since this operation may require extra resources, e.g., due to less
1944          * optimal hardware/firmware RX filtering, many drivers may disable
1945          * Probe Request reporting at least in station mode. This command is
1946          * used to notify the driver when the Probe Request frames need to be
1947          * reported, e.g., during remain-on-channel operations.
1948          */
1949         int (*probe_req_report)(void *priv, int report);
1950
1951         /**
1952          * deinit_ap - Deinitialize AP mode
1953          * @priv: Private driver interface data
1954          * Returns: 0 on success, -1 on failure (or if not supported)
1955          *
1956          * This optional function can be used to disable AP mode related
1957          * configuration and change the driver mode to station mode to allow
1958          * normal station operations like scanning to be completed.
1959          */
1960         int (*deinit_ap)(void *priv);
1961
1962         /**
1963          * suspend - Notification on system suspend/hibernate event
1964          * @priv: Private driver interface data
1965          */
1966         void (*suspend)(void *priv);
1967
1968         /**
1969          * resume - Notification on system resume/thaw event
1970          * @priv: Private driver interface data
1971          */
1972         void (*resume)(void *priv);
1973
1974         /**
1975          * signal_monitor - Set signal monitoring parameters
1976          * @priv: Private driver interface data
1977          * @threshold: Threshold value for signal change events; 0 = disabled
1978          * @hysteresis: Minimum change in signal strength before indicating a
1979          *      new event
1980          * Returns: 0 on success, -1 on failure (or if not supported)
1981          *
1982          * This function can be used to configure monitoring of signal strength
1983          * with the current AP. Whenever signal strength drops below the
1984          * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
1985          * should be generated assuming the signal strength has changed at
1986          * least %hysteresis from the previously indicated signal change event.
1987          */
1988         int (*signal_monitor)(void *priv, int threshold, int hysteresis);
1989
1990         /**
1991          * send_frame - Send IEEE 802.11 frame (testing use only)
1992          * @priv: Private driver interface data
1993          * @data: IEEE 802.11 frame with IEEE 802.11 header
1994          * @data_len: Size of the frame
1995          * @encrypt: Whether to encrypt the frame (if keys are set)
1996          * Returns: 0 on success, -1 on failure
1997          *
1998          * This function is only used for debugging purposes and is not
1999          * required to be implemented for normal operations.
2000          */
2001         int (*send_frame)(void *priv, const u8 *data, size_t data_len,
2002                           int encrypt);
2003
2004         /**
2005          * shared_freq - Get operating frequency of shared interface(s)
2006          * @priv: Private driver interface data
2007          * Returns: Operating frequency in MHz, 0 if no shared operation in
2008          * use, or -1 on failure
2009          *
2010          * This command can be used to request the current operating frequency
2011          * of any virtual interface that shares the same radio to provide
2012          * information for channel selection for other virtual interfaces.
2013          */
2014         int (*shared_freq)(void *priv);
2015
2016         /**
2017          * get_noa - Get current Notice of Absence attribute payload
2018          * @priv: Private driver interface data
2019          * @buf: Buffer for returning NoA
2020          * @buf_len: Buffer length in octets
2021          * Returns: Number of octets used in buf, 0 to indicate no NoA is being
2022          * advertized, or -1 on failure
2023          *
2024          * This function is used to fetch the current Notice of Absence
2025          * attribute value from GO.
2026          */
2027         int (*get_noa)(void *priv, u8 *buf, size_t buf_len);
2028
2029         /**
2030          * set_noa - Set Notice of Absence parameters for GO (testing)
2031          * @priv: Private driver interface data
2032          * @count: Count
2033          * @start: Start time in ms from next TBTT
2034          * @duration: Duration in ms
2035          * Returns: 0 on success or -1 on failure
2036          *
2037          * This function is used to set Notice of Absence parameters for GO. It
2038          * is used only for testing. To disable NoA, all parameters are set to
2039          * 0.
2040          */
2041         int (*set_noa)(void *priv, u8 count, int start, int duration);
2042
2043         /**
2044          * set_p2p_powersave - Set P2P power save options
2045          * @priv: Private driver interface data
2046          * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change
2047          * @opp_ps: 0 = disable, 1 = enable, -1 = no change
2048          * @ctwindow: 0.. = change (msec), -1 = no change
2049          * Returns: 0 on success or -1 on failure
2050          */
2051         int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps,
2052                                  int ctwindow);
2053
2054         /**
2055          * ampdu - Enable/disable aggregation
2056          * @priv: Private driver interface data
2057          * @ampdu: 1/0 = enable/disable A-MPDU aggregation
2058          * Returns: 0 on success or -1 on failure
2059          */
2060         int (*ampdu)(void *priv, int ampdu);
2061
2062         /**
2063          * get_radio_name - Get physical radio name for the device
2064          * @priv: Private driver interface data
2065          * Returns: Radio name or %NULL if not known
2066          *
2067          * The returned data must not be modified by the caller. It is assumed
2068          * that any interface that has the same radio name as another is
2069          * sharing the same physical radio. This information can be used to
2070          * share scan results etc. information between the virtual interfaces
2071          * to speed up various operations.
2072          */
2073         const char * (*get_radio_name)(void *priv);
2074
2075         /**
2076          * p2p_find - Start P2P Device Discovery
2077          * @priv: Private driver interface data
2078          * @timeout: Timeout for find operation in seconds or 0 for no timeout
2079          * @type: Device Discovery type (enum p2p_discovery_type)
2080          * Returns: 0 on success, -1 on failure
2081          *
2082          * This function is only used if the driver implements P2P management,
2083          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2084          * struct wpa_driver_capa.
2085          */
2086         int (*p2p_find)(void *priv, unsigned int timeout, int type);
2087
2088         /**
2089          * p2p_stop_find - Stop P2P Device Discovery
2090          * @priv: Private driver interface data
2091          * Returns: 0 on success, -1 on failure
2092          *
2093          * This function is only used if the driver implements P2P management,
2094          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2095          * struct wpa_driver_capa.
2096          */
2097         int (*p2p_stop_find)(void *priv);
2098
2099         /**
2100          * p2p_listen - Start P2P Listen state for specified duration
2101          * @priv: Private driver interface data
2102          * @timeout: Listen state duration in milliseconds
2103          * Returns: 0 on success, -1 on failure
2104          *
2105          * This function can be used to request the P2P module to keep the
2106          * device discoverable on the listen channel for an extended set of
2107          * time. At least in its current form, this is mainly used for testing
2108          * purposes and may not be of much use for normal P2P operations.
2109          *
2110          * This function is only used if the driver implements P2P management,
2111          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2112          * struct wpa_driver_capa.
2113          */
2114         int (*p2p_listen)(void *priv, unsigned int timeout);
2115
2116         /**
2117          * p2p_connect - Start P2P group formation (GO negotiation)
2118          * @priv: Private driver interface data
2119          * @peer_addr: MAC address of the peer P2P client
2120          * @wps_method: enum p2p_wps_method value indicating config method
2121          * @go_intent: Local GO intent value (1..15)
2122          * @own_interface_addr: Intended interface address to use with the
2123          *      group
2124          * @force_freq: The only allowed channel frequency in MHz or 0
2125          * @persistent_group: Whether to create persistent group
2126          * Returns: 0 on success, -1 on failure
2127          *
2128          * This function is only used if the driver implements P2P management,
2129          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2130          * struct wpa_driver_capa.
2131          */
2132         int (*p2p_connect)(void *priv, const u8 *peer_addr, int wps_method,
2133                            int go_intent, const u8 *own_interface_addr,
2134                            unsigned int force_freq, int persistent_group);
2135
2136         /**
2137          * wps_success_cb - Report successfully completed WPS provisioning
2138          * @priv: Private driver interface data
2139          * @peer_addr: Peer address
2140          * Returns: 0 on success, -1 on failure
2141          *
2142          * This function is used to report successfully completed WPS
2143          * provisioning during group formation in both GO/Registrar and
2144          * client/Enrollee roles.
2145          *
2146          * This function is only used if the driver implements P2P management,
2147          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2148          * struct wpa_driver_capa.
2149          */
2150         int (*wps_success_cb)(void *priv, const u8 *peer_addr);
2151
2152         /**
2153          * p2p_group_formation_failed - Report failed WPS provisioning
2154          * @priv: Private driver interface data
2155          * Returns: 0 on success, -1 on failure
2156          *
2157          * This function is used to report failed group formation. This can
2158          * happen either due to failed WPS provisioning or due to 15 second
2159          * timeout during the provisioning phase.
2160          *
2161          * This function is only used if the driver implements P2P management,
2162          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2163          * struct wpa_driver_capa.
2164          */
2165         int (*p2p_group_formation_failed)(void *priv);
2166
2167         /**
2168          * p2p_set_params - Set P2P parameters
2169          * @priv: Private driver interface data
2170          * @params: P2P parameters
2171          * Returns: 0 on success, -1 on failure
2172          *
2173          * This function is only used if the driver implements P2P management,
2174          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2175          * struct wpa_driver_capa.
2176          */
2177         int (*p2p_set_params)(void *priv, const struct p2p_params *params);
2178
2179         /**
2180          * p2p_prov_disc_req - Send Provision Discovery Request
2181          * @priv: Private driver interface data
2182          * @peer_addr: MAC address of the peer P2P client
2183          * @config_methods: WPS Config Methods value (only one bit set)
2184          * Returns: 0 on success, -1 on failure
2185          *
2186          * This function can be used to request a discovered P2P peer to
2187          * display a PIN (config_methods = WPS_CONFIG_DISPLAY) or be prepared
2188          * to enter a PIN from us (config_methods = WPS_CONFIG_KEYPAD). The
2189          * Provision Discovery Request frame is transmitted once immediately
2190          * and if no response is received, the frame will be sent again
2191          * whenever the target device is discovered during device dsicovery
2192          * (start with a p2p_find() call). Response from the peer is indicated
2193          * with the EVENT_P2P_PROV_DISC_RESPONSE event.
2194          *
2195          * This function is only used if the driver implements P2P management,
2196          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2197          * struct wpa_driver_capa.
2198          */
2199         int (*p2p_prov_disc_req)(void *priv, const u8 *peer_addr,
2200                                  u16 config_methods);
2201
2202         /**
2203          * p2p_sd_request - Schedule a service discovery query
2204          * @priv: Private driver interface data
2205          * @dst: Destination peer or %NULL to apply for all peers
2206          * @tlvs: P2P Service Query TLV(s)
2207          * Returns: Reference to the query or 0 on failure
2208          *
2209          * Response to the query is indicated with the
2210          * EVENT_P2P_SD_RESPONSE driver event.
2211          *
2212          * This function is only used if the driver implements P2P management,
2213          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2214          * struct wpa_driver_capa.
2215          */
2216         u64 (*p2p_sd_request)(void *priv, const u8 *dst,
2217                               const struct wpabuf *tlvs);
2218
2219         /**
2220          * p2p_sd_cancel_request - Cancel a pending service discovery query
2221          * @priv: Private driver interface data
2222          * @req: Query reference from p2p_sd_request()
2223          * Returns: 0 on success, -1 on failure
2224          *
2225          * This function is only used if the driver implements P2P management,
2226          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2227          * struct wpa_driver_capa.
2228          */
2229         int (*p2p_sd_cancel_request)(void *priv, u64 req);
2230
2231         /**
2232          * p2p_sd_response - Send response to a service discovery query
2233          * @priv: Private driver interface data
2234          * @freq: Frequency from EVENT_P2P_SD_REQUEST event
2235          * @dst: Destination address from EVENT_P2P_SD_REQUEST event
2236          * @dialog_token: Dialog token from EVENT_P2P_SD_REQUEST event
2237          * @resp_tlvs: P2P Service Response TLV(s)
2238          * Returns: 0 on success, -1 on failure
2239          *
2240          * This function is called as a response to the request indicated with
2241          * the EVENT_P2P_SD_REQUEST driver event.
2242          *
2243          * This function is only used if the driver implements P2P management,
2244          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2245          * struct wpa_driver_capa.
2246          */
2247         int (*p2p_sd_response)(void *priv, int freq, const u8 *dst,
2248                                u8 dialog_token,
2249                                const struct wpabuf *resp_tlvs);
2250
2251         /**
2252          * p2p_service_update - Indicate a change in local services
2253          * @priv: Private driver interface data
2254          * Returns: 0 on success, -1 on failure
2255          *
2256          * This function needs to be called whenever there is a change in
2257          * availability of the local services. This will increment the
2258          * Service Update Indicator value which will be used in SD Request and
2259          * Response frames.
2260          *
2261          * This function is only used if the driver implements P2P management,
2262          * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2263          * struct wpa_driver_capa.
2264          */
2265         int (*p2p_service_update)(void *priv);
2266
2267         /**
2268          * p2p_reject - Reject peer device (explicitly block connections)
2269          * @priv: Private driver interface data
2270          * @addr: MAC address of the peer
2271          * Returns: 0 on success, -1 on failure
2272          */
2273         int (*p2p_reject)(void *priv, const u8 *addr);
2274
2275         /**
2276          * p2p_invite - Invite a P2P Device into a group
2277          * @priv: Private driver interface data
2278          * @peer: Device Address of the peer P2P Device
2279          * @role: Local role in the group
2280          * @bssid: Group BSSID or %NULL if not known
2281          * @ssid: Group SSID
2282          * @ssid_len: Length of ssid in octets
2283          * @go_dev_addr: Forced GO Device Address or %NULL if none
2284          * @persistent_group: Whether this is to reinvoke a persistent group
2285          * Returns: 0 on success, -1 on failure
2286          */
2287         int (*p2p_invite)(void *priv, const u8 *peer, int role,
2288                           const u8 *bssid, const u8 *ssid, size_t ssid_len,
2289                           const u8 *go_dev_addr, int persistent_group);
2290
2291         /**
2292          * send_tdls_mgmt - for sending TDLS management packets
2293          * @priv: private driver interface data
2294          * @dst: Destination (peer) MAC address
2295          * @action_code: TDLS action code for the mssage
2296          * @dialog_token: Dialog Token to use in the message (if needed)
2297          * @status_code: Status Code or Reason Code to use (if needed)
2298          * @buf: TDLS IEs to add to the message
2299          * @len: Length of buf in octets
2300          * Returns: 0 on success, negative (<0) on failure
2301          *
2302          * This optional function can be used to send packet to driver which is
2303          * responsible for receiving and sending all TDLS packets.
2304          */
2305         int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code,
2306                               u8 dialog_token, u16 status_code,
2307                               const u8 *buf, size_t len);
2308
2309         /**
2310          * tdls_oper - Ask the driver to perform high-level TDLS operations
2311          * @priv: Private driver interface data
2312          * @oper: TDLS high-level operation. See %enum tdls_oper
2313          * @peer: Destination (peer) MAC address
2314          * Returns: 0 on success, negative (<0) on failure
2315          *
2316          * This optional function can be used to send high-level TDLS commands
2317          * to the driver.
2318          */
2319         int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer);
2320
2321         /**
2322          * signal_poll - Get current connection information
2323          * @priv: Private driver interface data
2324          * @signal_info: Connection info structure
2325          */
2326         int (*signal_poll)(void *priv, struct wpa_signal_info *signal_info);
2327
2328         /**
2329          * set_authmode - Set authentication algorithm(s) for static WEP
2330          * @priv: Private driver interface data
2331          * @authmode: 1=Open System, 2=Shared Key, 3=both
2332          * Returns: 0 on success, -1 on failure
2333          *
2334          * This function can be used to set authentication algorithms for AP
2335          * mode when static WEP is used. If the driver uses user space MLME/SME
2336          * implementation, there is no need to implement this function.
2337          *
2338          * DEPRECATED - use set_ap() instead
2339          */
2340         int (*set_authmode)(void *priv, int authmode);
2341
2342         /**
2343          * set_rekey_info - Set rekey information
2344          * @priv: Private driver interface data
2345          * @kek: Current KEK
2346          * @kck: Current KCK
2347          * @replay_ctr: Current EAPOL-Key Replay Counter
2348          *
2349          * This optional function can be used to provide information for the
2350          * driver/firmware to process EAPOL-Key frames in Group Key Handshake
2351          * while the host (including wpa_supplicant) is sleeping.
2352          */
2353         void (*set_rekey_info)(void *priv, const u8 *kek, const u8 *kck,
2354                                const u8 *replay_ctr);
2355
2356         /**
2357          * sta_assoc - Station association indication
2358          * @priv: Private driver interface data
2359          * @own_addr: Source address and BSSID for association frame
2360          * @addr: MAC address of the station to associate
2361          * @reassoc: flag to indicate re-association
2362          * @status: association response status code
2363          * @ie: assoc response ie buffer
2364          * @len: ie buffer length
2365          * Returns: 0 on success, -1 on failure
2366          *
2367          * This function indicates the driver to send (Re)Association
2368          * Response frame to the station.
2369          */
2370          int (*sta_assoc)(void *priv, const u8 *own_addr, const u8 *addr,
2371                           int reassoc, u16 status, const u8 *ie, size_t len);
2372
2373         /**
2374          * sta_auth - Station authentication indication
2375          * @priv: Private driver interface data
2376          * @own_addr: Source address and BSSID for authentication frame
2377          * @addr: MAC address of the station to associate
2378          * @seq: authentication sequence number
2379          * @status: authentication response status code
2380          * @ie: authentication frame ie buffer
2381          * @len: ie buffer length
2382          *
2383          * This function indicates the driver to send Authentication frame
2384          * to the station.
2385          */
2386          int (*sta_auth)(void *priv, const u8 *own_addr, const u8 *addr,
2387                          u16 seq, u16 status, const u8 *ie, size_t len);
2388
2389         /**
2390          * add_tspec - Add traffic stream
2391          * @priv: Private driver interface data
2392          * @addr: MAC address of the station to associate
2393          * @tspec_ie: tspec ie buffer
2394          * @tspec_ielen: tspec ie length
2395          * Returns: 0 on success, -1 on failure
2396          *
2397          * This function adds the traffic steam for the station
2398          * and fills the medium_time in tspec_ie.
2399          */
2400          int (*add_tspec)(void *priv, const u8 *addr, u8 *tspec_ie,
2401                           size_t tspec_ielen);
2402
2403         /**
2404          * add_sta_node - Add a station node in the driver
2405          * @priv: Private driver interface data
2406          * @addr: MAC address of the station to add
2407          * @auth_alg: authentication algorithm used by the station
2408          * Returns: 0 on success, -1 on failure
2409          *
2410          * This function adds the station node in the driver, when
2411          * the station gets added by FT-over-DS.
2412          */
2413         int (*add_sta_node)(void *priv, const u8 *addr, u16 auth_alg);
2414
2415         /**
2416          * sched_scan - Request the driver to initiate scheduled scan
2417          * @priv: Private driver interface data
2418          * @params: Scan parameters
2419          * @interval: Interval between scan cycles in milliseconds
2420          * Returns: 0 on success, -1 on failure
2421          *
2422          * This operation should be used for scheduled scan offload to
2423          * the hardware. Every time scan results are available, the
2424          * driver should report scan results event for wpa_supplicant
2425          * which will eventually request the results with
2426          * wpa_driver_get_scan_results2(). This operation is optional
2427          * and if not provided or if it returns -1, we fall back to
2428          * normal host-scheduled scans.
2429          */
2430         int (*sched_scan)(void *priv, struct wpa_driver_scan_params *params,
2431                           u32 interval);
2432
2433         /**
2434          * stop_sched_scan - Request the driver to stop a scheduled scan
2435          * @priv: Private driver interface data
2436          * Returns: 0 on success, -1 on failure
2437          *
2438          * This should cause the scheduled scan to be stopped and
2439          * results should stop being sent. Must be supported if
2440          * sched_scan is supported.
2441          */
2442         int (*stop_sched_scan)(void *priv);
2443
2444         /**
2445          * poll_client - Probe (null data or such) the given station
2446          * @priv: Private driver interface data
2447          * @own_addr: MAC address of sending interface
2448          * @addr: MAC address of the station to probe
2449          * @qos: Indicates whether station is QoS station
2450          *
2451          * This function is used to verify whether an associated station is
2452          * still present. This function does not need to be implemented if the
2453          * driver provides such inactivity polling mechanism.
2454          */
2455         void (*poll_client)(void *priv, const u8 *own_addr,
2456                             const u8 *addr, int qos);
2457 };
2458
2459
2460 /**
2461  * enum wpa_event_type - Event type for wpa_supplicant_event() calls
2462  */
2463 enum wpa_event_type {
2464         /**
2465          * EVENT_ASSOC - Association completed
2466          *
2467          * This event needs to be delivered when the driver completes IEEE
2468          * 802.11 association or reassociation successfully.
2469          * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
2470          * after this event has been generated. In addition, optional
2471          * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
2472          * more information about the association. If the driver interface gets
2473          * both of these events at the same time, it can also include the
2474          * assoc_info data in EVENT_ASSOC call.
2475          */
2476         EVENT_ASSOC,
2477
2478         /**
2479          * EVENT_DISASSOC - Association lost
2480          *
2481          * This event should be called when association is lost either due to
2482          * receiving deauthenticate or disassociate frame from the AP or when
2483          * sending either of these frames to the current AP. If the driver
2484          * supports separate deauthentication event, EVENT_DISASSOC should only
2485          * be used for disassociation and EVENT_DEAUTH for deauthentication.
2486          * In AP mode, union wpa_event_data::disassoc_info is required.
2487          */
2488         EVENT_DISASSOC,
2489
2490         /**
2491          * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
2492          *
2493          * This event must be delivered when a Michael MIC error is detected by
2494          * the local driver. Additional data for event processing is
2495          * provided with union wpa_event_data::michael_mic_failure. This
2496          * information is used to request new encyption key and to initiate
2497          * TKIP countermeasures if needed.
2498          */
2499         EVENT_MICHAEL_MIC_FAILURE,
2500
2501         /**
2502          * EVENT_SCAN_RESULTS - Scan results available
2503          *
2504          * This event must be called whenever scan results are available to be
2505          * fetched with struct wpa_driver_ops::get_scan_results(). This event
2506          * is expected to be used some time after struct wpa_driver_ops::scan()
2507          * is called. If the driver provides an unsolicited event when the scan
2508          * has been completed, this event can be used to trigger
2509          * EVENT_SCAN_RESULTS call. If such event is not available from the
2510          * driver, the driver wrapper code is expected to use a registered
2511          * timeout to generate EVENT_SCAN_RESULTS call after the time that the
2512          * scan is expected to be completed. Optional information about
2513          * completed scan can be provided with union wpa_event_data::scan_info.
2514          */
2515         EVENT_SCAN_RESULTS,
2516
2517         /**
2518          * EVENT_ASSOCINFO - Report optional extra information for association
2519          *
2520          * This event can be used to report extra association information for
2521          * EVENT_ASSOC processing. This extra information includes IEs from
2522          * association frames and Beacon/Probe Response frames in union
2523          * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
2524          * EVENT_ASSOC. Alternatively, the driver interface can include
2525          * assoc_info data in the EVENT_ASSOC call if it has all the
2526          * information available at the same point.
2527          */
2528         EVENT_ASSOCINFO,
2529
2530         /**
2531          * EVENT_INTERFACE_STATUS - Report interface status changes
2532          *
2533          * This optional event can be used to report changes in interface
2534          * status (interface added/removed) using union
2535          * wpa_event_data::interface_status. This can be used to trigger
2536          * wpa_supplicant to stop and re-start processing for the interface,
2537          * e.g., when a cardbus card is ejected/inserted.
2538          */
2539         EVENT_INTERFACE_STATUS,
2540
2541         /**
2542          * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
2543          *
2544          * This event can be used to inform wpa_supplicant about candidates for
2545          * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
2546          * for scan request (ap_scan=2 mode), this event is required for
2547          * pre-authentication. If wpa_supplicant is performing scan request
2548          * (ap_scan=1), this event is optional since scan results can be used
2549          * to add pre-authentication candidates. union
2550          * wpa_event_data::pmkid_candidate is used to report the BSSID of the
2551          * candidate and priority of the candidate, e.g., based on the signal
2552          * strength, in order to try to pre-authenticate first with candidates
2553          * that are most likely targets for re-association.
2554          *
2555          * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
2556          * on the candidate list. In addition, it can be called for the current
2557          * AP and APs that have existing PMKSA cache entries. wpa_supplicant
2558          * will automatically skip pre-authentication in cases where a valid
2559          * PMKSA exists. When more than one candidate exists, this event should
2560          * be generated once for each candidate.
2561          *
2562          * Driver will be notified about successful pre-authentication with
2563          * struct wpa_driver_ops::add_pmkid() calls.
2564          */
2565         EVENT_PMKID_CANDIDATE,
2566
2567         /**
2568          * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
2569          *
2570          * This event can be used to inform wpa_supplicant about desire to set
2571          * up secure direct link connection between two stations as defined in
2572          * IEEE 802.11e with a new PeerKey mechanism that replaced the original
2573          * STAKey negotiation. The caller will need to set peer address for the
2574          * event.
2575          */
2576         EVENT_STKSTART,
2577
2578         /**
2579          * EVENT_TDLS - Request TDLS operation
2580          *
2581          * This event can be used to request a TDLS operation to be performed.
2582          */
2583         EVENT_TDLS,
2584
2585         /**
2586          * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
2587          *
2588          * The driver is expected to report the received FT IEs from
2589          * FT authentication sequence from the AP. The FT IEs are included in
2590          * the extra information in union wpa_event_data::ft_ies.
2591          */
2592         EVENT_FT_RESPONSE,
2593
2594         /**
2595          * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
2596          *
2597          * The driver can use this event to inform wpa_supplicant about a STA
2598          * in an IBSS with which protected frames could be exchanged. This
2599          * event starts RSN authentication with the other STA to authenticate
2600          * the STA and set up encryption keys with it.
2601          */
2602         EVENT_IBSS_RSN_START,
2603
2604         /**
2605          * EVENT_AUTH - Authentication result
2606          *
2607          * This event should be called when authentication attempt has been
2608          * completed. This is only used if the driver supports separate
2609          * authentication step (struct wpa_driver_ops::authenticate).
2610          * Information about authentication result is included in
2611          * union wpa_event_data::auth.
2612          */
2613         EVENT_AUTH,
2614
2615         /**
2616          * EVENT_DEAUTH - Authentication lost
2617          *
2618          * This event should be called when authentication is lost either due
2619          * to receiving deauthenticate frame from the AP or when sending that
2620          * frame to the current AP.
2621          * In AP mode, union wpa_event_data::deauth_info is required.
2622          */
2623         EVENT_DEAUTH,
2624
2625         /**
2626          * EVENT_ASSOC_REJECT - Association rejected
2627          *
2628          * This event should be called when (re)association attempt has been
2629          * rejected by the AP. Information about the association response is
2630          * included in union wpa_event_data::assoc_reject.
2631          */
2632         EVENT_ASSOC_REJECT,
2633
2634         /**
2635          * EVENT_AUTH_TIMED_OUT - Authentication timed out
2636          */
2637         EVENT_AUTH_TIMED_OUT,
2638
2639         /**
2640          * EVENT_ASSOC_TIMED_OUT - Association timed out
2641          */
2642         EVENT_ASSOC_TIMED_OUT,
2643
2644         /**
2645          * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
2646          */
2647         EVENT_FT_RRB_RX,
2648
2649         /**
2650          * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
2651          */
2652         EVENT_WPS_BUTTON_PUSHED,
2653
2654         /**
2655          * EVENT_TX_STATUS - Report TX status
2656          */
2657         EVENT_TX_STATUS,
2658
2659         /**
2660          * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
2661          */
2662         EVENT_RX_FROM_UNKNOWN,
2663
2664         /**
2665          * EVENT_RX_MGMT - Report RX of a management frame
2666          */
2667         EVENT_RX_MGMT,
2668
2669         /**
2670          * EVENT_RX_ACTION - Action frame received
2671          *
2672          * This event is used to indicate when an Action frame has been
2673          * received. Information about the received frame is included in
2674          * union wpa_event_data::rx_action.
2675          */
2676         EVENT_RX_ACTION,
2677
2678         /**
2679          * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
2680          *
2681          * This event is used to indicate when the driver has started the
2682          * requested remain-on-channel duration. Information about the
2683          * operation is included in union wpa_event_data::remain_on_channel.
2684          */
2685         EVENT_REMAIN_ON_CHANNEL,
2686
2687         /**
2688          * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
2689          *
2690          * This event is used to indicate when the driver has completed
2691          * remain-on-channel duration, i.e., may noot be available on the
2692          * requested channel anymore. Information about the
2693          * operation is included in union wpa_event_data::remain_on_channel.
2694          */
2695         EVENT_CANCEL_REMAIN_ON_CHANNEL,
2696
2697         /**
2698          * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
2699          *
2700          * This event is used only by driver_test.c and userspace MLME.
2701          */
2702         EVENT_MLME_RX,
2703
2704         /**
2705          * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
2706          *
2707          * This event is used to indicate when a Probe Request frame has been
2708          * received. Information about the received frame is included in
2709          * union wpa_event_data::rx_probe_req. The driver is required to report
2710          * these events only after successfully completed probe_req_report()
2711          * commands to request the events (i.e., report parameter is non-zero)
2712          * in station mode. In AP mode, Probe Request frames should always be
2713          * reported.
2714          */
2715         EVENT_RX_PROBE_REQ,
2716
2717         /**
2718          * EVENT_NEW_STA - New wired device noticed
2719          *
2720          * This event is used to indicate that a new device has been detected
2721          * in a network that does not use association-like functionality (i.e.,
2722          * mainly wired Ethernet). This can be used to start EAPOL
2723          * authenticator when receiving a frame from a device. The address of
2724          * the device is included in union wpa_event_data::new_sta.
2725          */
2726         EVENT_NEW_STA,
2727
2728         /**
2729          * EVENT_EAPOL_RX - Report received EAPOL frame
2730          *
2731          * When in AP mode with hostapd, this event is required to be used to
2732          * deliver the receive EAPOL frames from the driver. With
2733          * %wpa_supplicant, this event is used only if the send_eapol() handler
2734          * is used to override the use of l2_packet for EAPOL frame TX.
2735          */
2736         EVENT_EAPOL_RX,
2737
2738         /**
2739          * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
2740          *
2741          * This event is used to indicate changes in the signal strength
2742          * observed in frames received from the current AP if signal strength
2743          * monitoring has been enabled with signal_monitor().
2744          */
2745         EVENT_SIGNAL_CHANGE,
2746
2747         /**
2748          * EVENT_INTERFACE_ENABLED - Notify that interface was enabled
2749          *
2750          * This event is used to indicate that the interface was enabled after
2751          * having been previously disabled, e.g., due to rfkill.
2752          */
2753         EVENT_INTERFACE_ENABLED,
2754
2755         /**
2756          * EVENT_INTERFACE_DISABLED - Notify that interface was disabled
2757          *
2758          * This event is used to indicate that the interface was disabled,
2759          * e.g., due to rfkill.
2760          */
2761         EVENT_INTERFACE_DISABLED,
2762
2763         /**
2764          * EVENT_CHANNEL_LIST_CHANGED - Channel list changed
2765          *
2766          * This event is used to indicate that the channel list has changed,
2767          * e.g., because of a regulatory domain change triggered by scan
2768          * results including an AP advertising a country code.
2769          */
2770         EVENT_CHANNEL_LIST_CHANGED,
2771
2772         /**
2773          * EVENT_INTERFACE_UNAVAILABLE - Notify that interface is unavailable
2774          *
2775          * This event is used to indicate that the driver cannot maintain this
2776          * interface in its operation mode anymore. The most likely use for
2777          * this is to indicate that AP mode operation is not available due to
2778          * operating channel would need to be changed to a DFS channel when
2779          * the driver does not support radar detection and another virtual
2780          * interfaces caused the operating channel to change. Other similar
2781          * resource conflicts could also trigger this for station mode
2782          * interfaces.
2783          */
2784         EVENT_INTERFACE_UNAVAILABLE,
2785
2786         /**
2787          * EVENT_BEST_CHANNEL
2788          *
2789          * Driver generates this event whenever it detects a better channel
2790          * (e.g., based on RSSI or channel use). This information can be used
2791          * to improve channel selection for a new AP/P2P group.
2792          */
2793         EVENT_BEST_CHANNEL,
2794
2795         /**
2796          * EVENT_UNPROT_DEAUTH - Unprotected Deauthentication frame received
2797          *
2798          * This event should be called when a Deauthentication frame is dropped
2799          * due to it not being protected (MFP/IEEE 802.11w).
2800          * union wpa_event_data::unprot_deauth is required to provide more
2801          * details of the frame.
2802          */
2803         EVENT_UNPROT_DEAUTH,
2804
2805         /**
2806          * EVENT_UNPROT_DISASSOC - Unprotected Disassociation frame received
2807          *
2808          * This event should be called when a Disassociation frame is dropped
2809          * due to it not being protected (MFP/IEEE 802.11w).
2810          * union wpa_event_data::unprot_disassoc is required to provide more
2811          * details of the frame.
2812          */
2813         EVENT_UNPROT_DISASSOC,
2814
2815         /**
2816          * EVENT_STATION_LOW_ACK
2817          *
2818          * Driver generates this event whenever it detected that a particular
2819          * station was lost. Detection can be through massive transmission
2820          * failures for example.
2821          */
2822         EVENT_STATION_LOW_ACK,
2823
2824         /**
2825          * EVENT_P2P_DEV_FOUND - Report a discovered P2P device
2826          *
2827          * This event is used only if the driver implements P2P management
2828          * internally. Event data is stored in
2829          * union wpa_event_data::p2p_dev_found.
2830          */
2831         EVENT_P2P_DEV_FOUND,
2832
2833         /**
2834          * EVENT_P2P_GO_NEG_REQ_RX - Report reception of GO Negotiation Request
2835          *
2836          * This event is used only if the driver implements P2P management
2837          * internally. Event data is stored in
2838          * union wpa_event_data::p2p_go_neg_req_rx.
2839          */
2840         EVENT_P2P_GO_NEG_REQ_RX,
2841
2842         /**
2843          * EVENT_P2P_GO_NEG_COMPLETED - Report completion of GO Negotiation
2844          *
2845          * This event is used only if the driver implements P2P management
2846          * internally. Event data is stored in
2847          * union wpa_event_data::p2p_go_neg_completed.
2848          */
2849         EVENT_P2P_GO_NEG_COMPLETED,
2850
2851         EVENT_P2P_PROV_DISC_REQUEST,
2852         EVENT_P2P_PROV_DISC_RESPONSE,
2853         EVENT_P2P_SD_REQUEST,
2854         EVENT_P2P_SD_RESPONSE,
2855
2856         /**
2857          * EVENT_IBSS_PEER_LOST - IBSS peer not reachable anymore
2858          */
2859         EVENT_IBSS_PEER_LOST,
2860
2861         /**
2862          * EVENT_DRIVER_GTK_REKEY - Device/driver did GTK rekey
2863          *
2864          * This event carries the new replay counter to notify wpa_supplicant
2865          * of the current EAPOL-Key Replay Counter in case the driver/firmware
2866          * completed Group Key Handshake while the host (including
2867          * wpa_supplicant was sleeping).
2868          */
2869         EVENT_DRIVER_GTK_REKEY,
2870
2871         /**
2872          * EVENT_SCHED_SCAN_STOPPED - Scheduled scan was stopped
2873          */
2874         EVENT_SCHED_SCAN_STOPPED,
2875
2876         /**
2877          * EVENT_DRIVER_CLIENT_POLL_OK - Station responded to poll
2878          *
2879          * This event indicates that the station responded to the poll
2880          * initiated with @poll_client.
2881          */
2882         EVENT_DRIVER_CLIENT_POLL_OK,
2883
2884         /**
2885          * EVENT_EAPOL_TX_STATUS - notify of EAPOL TX status
2886          */
2887         EVENT_EAPOL_TX_STATUS
2888 };
2889
2890
2891 /**
2892  * union wpa_event_data - Additional data for wpa_supplicant_event() calls
2893  */
2894 union wpa_event_data {
2895         /**
2896          * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
2897          *
2898          * This structure is optional for EVENT_ASSOC calls and required for
2899          * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
2900          * driver interface does not need to generate separate EVENT_ASSOCINFO
2901          * calls.
2902          */
2903         struct assoc_info {
2904                 /**
2905                  * reassoc - Flag to indicate association or reassociation
2906                  */
2907                 int reassoc;
2908
2909                 /**
2910                  * req_ies - (Re)Association Request IEs
2911                  *
2912                  * If the driver generates WPA/RSN IE, this event data must be
2913                  * returned for WPA handshake to have needed information. If
2914                  * wpa_supplicant-generated WPA/RSN IE is used, this
2915                  * information event is optional.
2916                  *
2917                  * This should start with the first IE (fixed fields before IEs
2918                  * are not included).
2919                  */
2920                 const u8 *req_ies;
2921
2922                 /**
2923                  * req_ies_len - Length of req_ies in bytes
2924                  */
2925                 size_t req_ies_len;
2926
2927                 /**
2928                  * resp_ies - (Re)Association Response IEs
2929                  *
2930                  * Optional association data from the driver. This data is not
2931                  * required WPA, but may be useful for some protocols and as
2932                  * such, should be reported if this is available to the driver
2933                  * interface.
2934                  *
2935                  * This should start with the first IE (fixed fields before IEs
2936                  * are not included).
2937                  */
2938                 const u8 *resp_ies;
2939
2940                 /**
2941                  * resp_ies_len - Length of resp_ies in bytes
2942                  */
2943                 size_t resp_ies_len;
2944
2945                 /**
2946                  * beacon_ies - Beacon or Probe Response IEs
2947                  *
2948                  * Optional Beacon/ProbeResp data: IEs included in Beacon or
2949                  * Probe Response frames from the current AP (i.e., the one
2950                  * that the client just associated with). This information is
2951                  * used to update WPA/RSN IE for the AP. If this field is not
2952                  * set, the results from previous scan will be used. If no
2953                  * data for the new AP is found, scan results will be requested
2954                  * again (without scan request). At this point, the driver is
2955                  * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
2956                  * used).
2957                  *
2958                  * This should start with the first IE (fixed fields before IEs
2959                  * are not included).
2960                  */
2961                 const u8 *beacon_ies;
2962
2963                 /**
2964                  * beacon_ies_len - Length of beacon_ies */
2965                 size_t beacon_ies_len;
2966
2967                 /**
2968                  * freq - Frequency of the operational channel in MHz
2969                  */
2970                 unsigned int freq;
2971
2972                 /**
2973                  * addr - Station address (for AP mode)
2974                  */
2975                 const u8 *addr;
2976         } assoc_info;
2977
2978         /**
2979          * struct disassoc_info - Data for EVENT_DISASSOC events
2980          */
2981         struct disassoc_info {
2982                 /**
2983                  * addr - Station address (for AP mode)
2984                  */
2985                 const u8 *addr;
2986
2987                 /**
2988                  * reason_code - Reason Code (host byte order) used in
2989                  *      Deauthentication frame
2990                  */
2991                 u16 reason_code;
2992
2993                 /**
2994                  * ie - Optional IE(s) in Disassociation frame
2995                  */
2996                 const u8 *ie;
2997
2998                 /**
2999                  * ie_len - Length of ie buffer in octets
3000                  */
3001                 size_t ie_len;
3002         } disassoc_info;
3003
3004         /**
3005          * struct deauth_info - Data for EVENT_DEAUTH events
3006          */
3007         struct deauth_info {
3008                 /**
3009                  * addr - Station address (for AP mode)
3010                  */
3011                 const u8 *addr;
3012
3013                 /**
3014                  * reason_code - Reason Code (host byte order) used in
3015                  *      Deauthentication frame
3016                  */
3017                 u16 reason_code;
3018
3019                 /**
3020                  * ie - Optional IE(s) in Deauthentication frame
3021                  */
3022                 const u8 *ie;
3023
3024                 /**
3025                  * ie_len - Length of ie buffer in octets
3026                  */
3027                 size_t ie_len;
3028         } deauth_info;
3029
3030         /**
3031          * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
3032          */
3033         struct michael_mic_failure {
3034                 int unicast;
3035                 const u8 *src;
3036         } michael_mic_failure;
3037
3038         /**
3039          * struct interface_status - Data for EVENT_INTERFACE_STATUS
3040          */
3041         struct interface_status {
3042                 char ifname[100];
3043                 enum {
3044                         EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
3045                 } ievent;
3046         } interface_status;
3047
3048         /**
3049          * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
3050          */
3051         struct pmkid_candidate {
3052                 /** BSSID of the PMKID candidate */
3053                 u8 bssid[ETH_ALEN];
3054                 /** Smaller the index, higher the priority */
3055                 int index;
3056                 /** Whether RSN IE includes pre-authenticate flag */
3057                 int preauth;
3058         } pmkid_candidate;
3059
3060         /**
3061          * struct stkstart - Data for EVENT_STKSTART
3062          */
3063         struct stkstart {
3064                 u8 peer[ETH_ALEN];
3065         } stkstart;
3066
3067         /**
3068          * struct tdls - Data for EVENT_TDLS
3069          */
3070         struct tdls {
3071                 u8 peer[ETH_ALEN];
3072                 enum {
3073                         TDLS_REQUEST_SETUP,
3074                         TDLS_REQUEST_TEARDOWN
3075                 } oper;
3076                 u16 reason_code; /* for teardown */
3077         } tdls;
3078
3079         /**
3080          * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
3081          *
3082          * During FT (IEEE 802.11r) authentication sequence, the driver is
3083          * expected to use this event to report received FT IEs (MDIE, FTIE,
3084          * RSN IE, TIE, possible resource request) to the supplicant. The FT
3085          * IEs for the next message will be delivered through the
3086          * struct wpa_driver_ops::update_ft_ies() callback.
3087          */
3088         struct ft_ies {
3089                 const u8 *ies;
3090                 size_t ies_len;
3091                 int ft_action;
3092                 u8 target_ap[ETH_ALEN];
3093                 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
3094                 const u8 *ric_ies;
3095                 /** Length of ric_ies buffer in octets */
3096                 size_t ric_ies_len;
3097         } ft_ies;
3098
3099         /**
3100          * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
3101          */
3102         struct ibss_rsn_start {
3103                 u8 peer[ETH_ALEN];
3104         } ibss_rsn_start;
3105
3106         /**
3107          * struct auth_info - Data for EVENT_AUTH events
3108          */
3109         struct auth_info {
3110                 u8 peer[ETH_ALEN];
3111                 u8 bssid[ETH_ALEN];
3112                 u16 auth_type;
3113                 u16 auth_transaction;
3114                 u16 status_code;
3115                 const u8 *ies;
3116                 size_t ies_len;
3117         } auth;
3118
3119         /**
3120          * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
3121          */
3122         struct assoc_reject {
3123                 /**
3124                  * bssid - BSSID of the AP that rejected association
3125                  */
3126                 const u8 *bssid;
3127
3128                 /**
3129                  * resp_ies - (Re)Association Response IEs
3130                  *
3131                  * Optional association data from the driver. This data is not
3132                  * required WPA, but may be useful for some protocols and as
3133                  * such, should be reported if this is available to the driver
3134                  * interface.
3135                  *
3136                  * This should start with the first IE (fixed fields before IEs
3137                  * are not included).
3138                  */
3139                 const u8 *resp_ies;
3140
3141                 /**
3142                  * resp_ies_len - Length of resp_ies in bytes
3143                  */
3144                 size_t resp_ies_len;
3145
3146                 /**
3147                  * status_code - Status Code from (Re)association Response
3148                  */
3149                 u16 status_code;
3150         } assoc_reject;
3151
3152         struct timeout_event {
3153                 u8 addr[ETH_ALEN];
3154         } timeout_event;
3155
3156         /**
3157          * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
3158          */
3159         struct ft_rrb_rx {
3160                 const u8 *src;
3161                 const u8 *data;
3162                 size_t data_len;
3163         } ft_rrb_rx;
3164
3165         /**
3166          * struct tx_status - Data for EVENT_TX_STATUS events
3167          */
3168         struct tx_status {
3169                 u16 type;
3170                 u16 stype;
3171                 const u8 *dst;
3172                 const u8 *data;
3173                 size_t data_len;
3174                 int ack;
3175         } tx_status;
3176
3177         /**
3178          * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
3179          */
3180         struct rx_from_unknown {
3181                 const u8 *bssid;
3182                 const u8 *addr;
3183                 int wds;
3184         } rx_from_unknown;
3185
3186         /**
3187          * struct rx_mgmt - Data for EVENT_RX_MGMT events
3188          */
3189         struct rx_mgmt {
3190                 const u8 *frame;
3191                 size_t frame_len;
3192                 u32 datarate;
3193                 u32 ssi_signal;
3194         } rx_mgmt;
3195
3196         /**
3197          * struct rx_action - Data for EVENT_RX_ACTION events
3198          */
3199         struct rx_action {
3200                 /**
3201                  * da - Destination address of the received Action frame
3202                  */
3203                 const u8 *da;
3204
3205                 /**
3206                  * sa - Source address of the received Action frame
3207                  */
3208                 const u8 *sa;
3209
3210                 /**
3211                  * bssid - Address 3 of the received Action frame
3212                  */
3213                 const u8 *bssid;
3214
3215                 /**
3216                  * category - Action frame category
3217                  */
3218                 u8 category;
3219
3220                 /**
3221                  * data - Action frame body after category field
3222                  */
3223                 const u8 *data;
3224
3225                 /**
3226                  * len - Length of data in octets
3227                  */
3228                 size_t len;
3229
3230                 /**
3231                  * freq - Frequency (in MHz) on which the frame was received
3232                  */
3233                 int freq;
3234         } rx_action;
3235
3236         /**
3237          * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
3238          *
3239          * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
3240          */
3241         struct remain_on_channel {
3242                 /**
3243                  * freq - Channel frequency in MHz
3244                  */
3245                 unsigned int freq;
3246
3247                 /**
3248                  * duration - Duration to remain on the channel in milliseconds
3249                  */
3250                 unsigned int duration;
3251         } remain_on_channel;
3252
3253         /**
3254          * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
3255          * @aborted: Whether the scan was aborted
3256          * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
3257          * @num_freqs: Number of entries in freqs array
3258          * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
3259          *      SSID)
3260          * @num_ssids: Number of entries in ssids array
3261          */
3262         struct scan_info {
3263                 int aborted;
3264                 const int *freqs;
3265                 size_t num_freqs;
3266                 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
3267                 size_t num_ssids;
3268         } scan_info;
3269
3270         /**
3271          * struct mlme_rx - Data for EVENT_MLME_RX events
3272          */
3273         struct mlme_rx {
3274                 const u8 *buf;
3275                 size_t len;
3276                 int freq;
3277                 int channel;
3278                 int ssi;
3279         } mlme_rx;
3280
3281         /**
3282          * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
3283          */
3284         struct rx_probe_req {
3285                 /**
3286                  * sa - Source address of the received Probe Request frame
3287                  */
3288                 const u8 *sa;
3289
3290                 /**
3291                  * da - Destination address of the received Probe Request frame
3292                  *      or %NULL if not available
3293                  */
3294                 const u8 *da;
3295
3296                 /**
3297                  * bssid - BSSID of the received Probe Request frame or %NULL
3298                  *      if not available
3299                  */
3300                 const u8 *bssid;
3301
3302                 /**
3303                  * ie - IEs from the Probe Request body
3304                  */
3305                 const u8 *ie;
3306
3307                 /**
3308                  * ie_len - Length of ie buffer in octets
3309                  */
3310                 size_t ie_len;
3311         } rx_probe_req;
3312
3313         /**
3314          * struct new_sta - Data for EVENT_NEW_STA events
3315          */
3316         struct new_sta {
3317                 const u8 *addr;
3318         } new_sta;
3319
3320         /**
3321          * struct eapol_rx - Data for EVENT_EAPOL_RX events
3322          */
3323         struct eapol_rx {
3324                 const u8 *src;
3325                 const u8 *data;
3326                 size_t data_len;
3327         } eapol_rx;
3328
3329         /**
3330          * signal_change - Data for EVENT_SIGNAL_CHANGE events
3331          */
3332         struct wpa_signal_info signal_change;
3333
3334         /**
3335          * struct best_channel - Data for EVENT_BEST_CHANNEL events
3336          * @freq_24: Best 2.4 GHz band channel frequency in MHz
3337          * @freq_5: Best 5 GHz band channel frequency in MHz
3338          * @freq_overall: Best channel frequency in MHz
3339          *
3340          * 0 can be used to indicate no preference in either band.
3341          */
3342         struct best_channel {
3343                 int freq_24;
3344                 int freq_5;
3345                 int freq_overall;
3346         } best_chan;
3347
3348         struct unprot_deauth {
3349                 const u8 *sa;
3350                 const u8 *da;
3351                 u16 reason_code;
3352         } unprot_deauth;
3353
3354         struct unprot_disassoc {
3355                 const u8 *sa;
3356                 const u8 *da;
3357                 u16 reason_code;
3358         } unprot_disassoc;
3359
3360         /**
3361          * struct low_ack - Data for EVENT_STATION_LOW_ACK events
3362          * @addr: station address
3363          */
3364         struct low_ack {
3365                 u8 addr[ETH_ALEN];
3366         } low_ack;
3367
3368         /**
3369          * struct p2p_dev_found - Data for EVENT_P2P_DEV_FOUND
3370          */
3371         struct p2p_dev_found {
3372                 const u8 *addr;
3373                 const u8 *dev_addr;
3374                 const u8 *pri_dev_type;
3375                 const char *dev_name;
3376                 u16 config_methods;
3377                 u8 dev_capab;
3378                 u8 group_capab;
3379         } p2p_dev_found;
3380
3381         /**
3382          * struct p2p_go_neg_req_rx - Data for EVENT_P2P_GO_NEG_REQ_RX
3383          */
3384         struct p2p_go_neg_req_rx {
3385                 const u8 *src;
3386                 u16 dev_passwd_id;
3387         } p2p_go_neg_req_rx;
3388
3389         /**
3390          * struct p2p_go_neg_completed - Data for EVENT_P2P_GO_NEG_COMPLETED
3391          */
3392         struct p2p_go_neg_completed {
3393                 struct p2p_go_neg_results *res;
3394         } p2p_go_neg_completed;
3395
3396         struct p2p_prov_disc_req {
3397                 const u8 *peer;
3398                 u16 config_methods;
3399                 const u8 *dev_addr;
3400                 const u8 *pri_dev_type;
3401                 const char *dev_name;
3402                 u16 supp_config_methods;
3403                 u8 dev_capab;
3404                 u8 group_capab;
3405         } p2p_prov_disc_req;
3406
3407         struct p2p_prov_disc_resp {
3408                 const u8 *peer;
3409                 u16 config_methods;
3410         } p2p_prov_disc_resp;
3411
3412         struct p2p_sd_req {
3413                 int freq;
3414                 const u8 *sa;
3415                 u8 dialog_token;
3416                 u16 update_indic;
3417                 const u8 *tlvs;
3418                 size_t tlvs_len;
3419         } p2p_sd_req;
3420
3421         struct p2p_sd_resp {
3422                 const u8 *sa;
3423                 u16 update_indic;
3424                 const u8 *tlvs;
3425                 size_t tlvs_len;
3426         } p2p_sd_resp;
3427
3428         /**
3429          * struct ibss_peer_lost - Data for EVENT_IBSS_PEER_LOST
3430          */
3431         struct ibss_peer_lost {
3432                 u8 peer[ETH_ALEN];
3433         } ibss_peer_lost;
3434
3435         /**
3436          * struct driver_gtk_rekey - Data for EVENT_DRIVER_GTK_REKEY
3437          */
3438         struct driver_gtk_rekey {
3439                 const u8 *bssid;
3440                 const u8 *replay_ctr;
3441         } driver_gtk_rekey;
3442
3443         /**
3444          * struct client_poll - Data for EVENT_DRIVER_CLIENT_POLL_OK events
3445          * @addr: station address
3446          */
3447         struct client_poll {
3448                 u8 addr[ETH_ALEN];
3449         } client_poll;
3450
3451         /**
3452          * struct eapol_tx_status
3453          * @dst: Original destination
3454          * @data: Data starting with IEEE 802.1X header (!)
3455          * @data_len: Length of data
3456          * @ack: Indicates ack or lost frame
3457          *
3458          * This corresponds to hapd_send_eapol if the frame sent
3459          * there isn't just reported as EVENT_TX_STATUS.
3460          */
3461         struct eapol_tx_status {
3462                 const u8 *dst;
3463                 const u8 *data;
3464                 int data_len;
3465                 int ack;
3466         } eapol_tx_status;
3467 };
3468
3469 /**
3470  * wpa_supplicant_event - Report a driver event for wpa_supplicant
3471  * @ctx: Context pointer (wpa_s); this is the ctx variable registered
3472  *      with struct wpa_driver_ops::init()
3473  * @event: event type (defined above)
3474  * @data: possible extra data for the event
3475  *
3476  * Driver wrapper code should call this function whenever an event is received
3477  * from the driver.
3478  */
3479 void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
3480                           union wpa_event_data *data);
3481
3482
3483 /*
3484  * The following inline functions are provided for convenience to simplify
3485  * event indication for some of the common events.
3486  */
3487
3488 static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie,
3489                                    size_t ielen, int reassoc)
3490 {
3491         union wpa_event_data event;
3492         os_memset(&event, 0, sizeof(event));
3493         event.assoc_info.reassoc = reassoc;
3494         event.assoc_info.req_ies = ie;
3495         event.assoc_info.req_ies_len = ielen;
3496         event.assoc_info.addr = addr;
3497         wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
3498 }
3499
3500 static inline void drv_event_disassoc(void *ctx, const u8 *addr)
3501 {
3502         union wpa_event_data event;
3503         os_memset(&event, 0, sizeof(event));
3504         event.disassoc_info.addr = addr;
3505         wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
3506 }
3507
3508 static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data,
3509                                       size_t data_len)
3510 {
3511         union wpa_event_data event;
3512         os_memset(&event, 0, sizeof(event));
3513         event.eapol_rx.src = src;
3514         event.eapol_rx.data = data;
3515         event.eapol_rx.data_len = data_len;
3516         wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
3517 }
3518
3519 /* driver_common.c */
3520 void wpa_scan_results_free(struct wpa_scan_results *res);
3521
3522 /* Convert wpa_event_type to a string for logging */
3523 const char * event_to_string(enum wpa_event_type event);
3524
3525 #endif /* DRIVER_H */