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