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