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