7f1f526c2e9bf9093600dbadb9a9ca6667b1e62c
[libeap.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
35 /**
36  * struct hostapd_channel_data - Channel information
37  */
38 struct hostapd_channel_data {
39         /**
40          * chan - Channel number (IEEE 802.11)
41          */
42         short chan;
43
44         /**
45          * freq - Frequency in MHz
46          */
47         short freq;
48
49         /**
50          * flag - Channel flags (HOSTAPD_CHAN_*)
51          */
52         int flag;
53
54         /**
55          * max_tx_power - maximum transmit power in dBm
56          */
57         u8 max_tx_power;
58 };
59
60 /**
61  * struct hostapd_hw_modes - Supported hardware mode information
62  */
63 struct hostapd_hw_modes {
64         /**
65          * mode - Hardware mode
66          */
67         enum hostapd_hw_mode mode;
68
69         /**
70          * num_channels - Number of entries in the channels array
71          */
72         int num_channels;
73
74         /**
75          * channels - Array of supported channels
76          */
77         struct hostapd_channel_data *channels;
78
79         /**
80          * num_rates - Number of entries in the rates array
81          */
82         int num_rates;
83
84         /**
85          * rates - Array of supported rates in 100 kbps units
86          */
87         int *rates;
88
89         /**
90          * ht_capab - HT (IEEE 802.11n) capabilities
91          */
92         u16 ht_capab;
93
94         /**
95          * mcs_set - MCS (IEEE 802.11n) rate parameters
96          */
97         u8 mcs_set[16];
98
99         /**
100          * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
101          */
102         u8 a_mpdu_params;
103 };
104
105
106 #define IEEE80211_MODE_INFRA    0
107 #define IEEE80211_MODE_IBSS     1
108 #define IEEE80211_MODE_AP       2
109
110 #define IEEE80211_CAP_ESS       0x0001
111 #define IEEE80211_CAP_IBSS      0x0002
112 #define IEEE80211_CAP_PRIVACY   0x0010
113
114 #define WPA_SCAN_QUAL_INVALID           BIT(0)
115 #define WPA_SCAN_NOISE_INVALID          BIT(1)
116 #define WPA_SCAN_LEVEL_INVALID          BIT(2)
117 #define WPA_SCAN_LEVEL_DBM              BIT(3)
118 #define WPA_SCAN_AUTHENTICATED          BIT(4)
119 #define WPA_SCAN_ASSOCIATED             BIT(5)
120
121 /**
122  * struct wpa_scan_res - Scan result for an BSS/IBSS
123  * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
124  * @bssid: BSSID
125  * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
126  * @beacon_int: beacon interval in TUs (host byte order)
127  * @caps: capability information field in host byte order
128  * @qual: signal quality
129  * @noise: noise level
130  * @level: signal level
131  * @tsf: Timestamp
132  * @age: Age of the information in milliseconds (i.e., how many milliseconds
133  * ago the last Beacon or Probe Response frame was received)
134  * @ie_len: length of the following IE field in octets
135  * @beacon_ie_len: length of the following Beacon IE field in octets
136  *
137  * This structure is used as a generic format for scan results from the
138  * driver. Each driver interface implementation is responsible for converting
139  * the driver or OS specific scan results into this format.
140  *
141  * If the driver does not support reporting all IEs, the IE data structure is
142  * constructed of the IEs that are available. This field will also need to
143  * include SSID in IE format. All drivers are encouraged to be extended to
144  * report all IEs to make it easier to support future additions.
145  */
146 struct wpa_scan_res {
147         unsigned int flags;
148         u8 bssid[ETH_ALEN];
149         int freq;
150         u16 beacon_int;
151         u16 caps;
152         int qual;
153         int noise;
154         int level;
155         u64 tsf;
156         unsigned int age;
157         size_t ie_len;
158         size_t beacon_ie_len;
159         /*
160          * Followed by ie_len octets of IEs from Probe Response frame (or if
161          * the driver does not indicate source of IEs, these may also be from
162          * Beacon frame). After the first set of IEs, another set of IEs may
163          * follow (with beacon_ie_len octets of data) if the driver provides
164          * both IE sets.
165          */
166 };
167
168 /**
169  * struct wpa_scan_results - Scan results
170  * @res: Array of pointers to allocated variable length scan result entries
171  * @num: Number of entries in the scan result array
172  */
173 struct wpa_scan_results {
174         struct wpa_scan_res **res;
175         size_t num;
176 };
177
178 /**
179  * struct wpa_interface_info - Network interface information
180  * @next: Pointer to the next interface or NULL if this is the last one
181  * @ifname: Interface name that can be used with init() or init2()
182  * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
183  *      not available
184  * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
185  *      is not an allocated copy, i.e., get_interfaces() caller will not free
186  *      this)
187  */
188 struct wpa_interface_info {
189         struct wpa_interface_info *next;
190         char *ifname;
191         char *desc;
192         const char *drv_name;
193 };
194
195 #define WPAS_MAX_SCAN_SSIDS 4
196
197 /**
198  * struct wpa_driver_scan_params - Scan parameters
199  * Data for struct wpa_driver_ops::scan2().
200  */
201 struct wpa_driver_scan_params {
202         /**
203          * ssids - SSIDs to scan for
204          */
205         struct wpa_driver_scan_ssid {
206                 /**
207                  * ssid - specific SSID to scan for (ProbeReq)
208                  * %NULL or zero-length SSID is used to indicate active scan
209                  * with wildcard SSID.
210                  */
211                 const u8 *ssid;
212                 /**
213                  * ssid_len: Length of the SSID in octets
214                  */
215                 size_t ssid_len;
216         } ssids[WPAS_MAX_SCAN_SSIDS];
217
218         /**
219          * num_ssids - Number of entries in ssids array
220          * Zero indicates a request for a passive scan.
221          */
222         size_t num_ssids;
223
224         /**
225          * extra_ies - Extra IE(s) to add into Probe Request or %NULL
226          */
227         const u8 *extra_ies;
228
229         /**
230          * extra_ies_len - Length of extra_ies in octets
231          */
232         size_t extra_ies_len;
233
234         /**
235          * freqs - Array of frequencies to scan or %NULL for all frequencies
236          *
237          * The frequency is set in MHz. The array is zero-terminated.
238          */
239         int *freqs;
240
241         /**
242          * filter_ssids - Filter for reporting SSIDs
243          *
244          * This optional parameter can be used to request the driver wrapper to
245          * filter scan results to include only the specified SSIDs. %NULL
246          * indicates that no filtering is to be done. This can be used to
247          * reduce memory needs for scan results in environments that have large
248          * number of APs with different SSIDs.
249          *
250          * The driver wrapper is allowed to take this allocated buffer into its
251          * own use by setting the pointer to %NULL. In that case, the driver
252          * wrapper is responsible for freeing the buffer with os_free() once it
253          * is not needed anymore.
254          */
255         struct wpa_driver_scan_filter {
256                 u8 ssid[32];
257                 size_t ssid_len;
258         } *filter_ssids;
259
260         /**
261          * num_filter_ssids - Number of entries in filter_ssids array
262          */
263         size_t num_filter_ssids;
264 };
265
266 /**
267  * struct wpa_driver_auth_params - Authentication parameters
268  * Data for struct wpa_driver_ops::authenticate().
269  */
270 struct wpa_driver_auth_params {
271         int freq;
272         const u8 *bssid;
273         const u8 *ssid;
274         size_t ssid_len;
275         int auth_alg;
276         const u8 *ie;
277         size_t ie_len;
278         const u8 *wep_key[4];
279         size_t wep_key_len[4];
280         int wep_tx_keyidx;
281         int local_state_change;
282 };
283
284 enum wps_mode {
285         WPS_MODE_NONE /* no WPS provisioning being used */,
286         WPS_MODE_OPEN /* WPS provisioning with AP that is in open mode */,
287         WPS_MODE_PRIVACY /* WPS provisioning with AP that is using protection
288                           */
289 };
290
291 /**
292  * struct wpa_driver_associate_params - Association parameters
293  * Data for struct wpa_driver_ops::associate().
294  */
295 struct wpa_driver_associate_params {
296         /**
297          * bssid - BSSID of the selected AP
298          * This can be %NULL, if ap_scan=2 mode is used and the driver is
299          * responsible for selecting with which BSS to associate. */
300         const u8 *bssid;
301
302         /**
303          * ssid - The selected SSID
304          */
305         const u8 *ssid;
306
307         /**
308          * ssid_len - Length of the SSID (1..32)
309          */
310         size_t ssid_len;
311
312         /**
313          * freq - Frequency of the channel the selected AP is using
314          * Frequency that the selected AP is using (in MHz as
315          * reported in the scan results)
316          */
317         int freq;
318
319         /**
320          * wpa_ie - WPA information element for (Re)Association Request
321          * WPA information element to be included in (Re)Association
322          * Request (including information element id and length). Use
323          * of this WPA IE is optional. If the driver generates the WPA
324          * IE, it can use pairwise_suite, group_suite, and
325          * key_mgmt_suite to select proper algorithms. In this case,
326          * the driver has to notify wpa_supplicant about the used WPA
327          * IE by generating an event that the interface code will
328          * convert into EVENT_ASSOCINFO data (see below).
329          *
330          * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
331          * instead. The driver can determine which version is used by
332          * looking at the first byte of the IE (0xdd for WPA, 0x30 for
333          * WPA2/RSN).
334          *
335          * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
336          */
337         const u8 *wpa_ie;
338
339         /**
340          * wpa_ie_len - length of the wpa_ie
341          */
342         size_t wpa_ie_len;
343
344         /**
345          * pairwise_suite - Selected pairwise cipher suite
346          *
347          * This is usually ignored if @wpa_ie is used.
348          */
349         enum wpa_cipher pairwise_suite;
350
351         /**
352          * group_suite - Selected group cipher suite
353          *
354          * This is usually ignored if @wpa_ie is used.
355          */
356         enum wpa_cipher group_suite;
357
358         /**
359          * key_mgmt_suite - Selected key management suite
360          *
361          * This is usually ignored if @wpa_ie is used.
362          */
363         enum wpa_key_mgmt key_mgmt_suite;
364
365         /**
366          * auth_alg - Allowed authentication algorithms
367          * Bit field of WPA_AUTH_ALG_*
368          */
369         int auth_alg;
370
371         /**
372          * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
373          */
374         int mode;
375
376         /**
377          * wep_key - WEP keys for static WEP configuration
378          */
379         const u8 *wep_key[4];
380
381         /**
382          * wep_key_len - WEP key length for static WEP configuration
383          */
384         size_t wep_key_len[4];
385
386         /**
387          * wep_tx_keyidx - WEP TX key index for static WEP configuration
388          */
389         int wep_tx_keyidx;
390
391         /**
392          * mgmt_frame_protection - IEEE 802.11w management frame protection
393          */
394         enum mfp_options mgmt_frame_protection;
395
396         /**
397          * ft_ies - IEEE 802.11r / FT information elements
398          * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
399          * for fast transition, this parameter is set to include the IEs that
400          * are to be sent in the next FT Authentication Request message.
401          * update_ft_ies() handler is called to update the IEs for further
402          * FT messages in the sequence.
403          *
404          * The driver should use these IEs only if the target AP is advertising
405          * the same mobility domain as the one included in the MDIE here.
406          *
407          * In ap_scan=2 mode, the driver can use these IEs when moving to a new
408          * AP after the initial association. These IEs can only be used if the
409          * target AP is advertising support for FT and is using the same MDIE
410          * and SSID as the current AP.
411          *
412          * The driver is responsible for reporting the FT IEs received from the
413          * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
414          * type. update_ft_ies() handler will then be called with the FT IEs to
415          * include in the next frame in the authentication sequence.
416          */
417         const u8 *ft_ies;
418
419         /**
420          * ft_ies_len - Length of ft_ies in bytes
421          */
422         size_t ft_ies_len;
423
424         /**
425          * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
426          *
427          * This value is provided to allow the driver interface easier access
428          * to the current mobility domain. This value is set to %NULL if no
429          * mobility domain is currently active.
430          */
431         const u8 *ft_md;
432
433         /**
434          * passphrase - RSN passphrase for PSK
435          *
436          * This value is made available only for WPA/WPA2-Personal (PSK) and
437          * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
438          * the 8..63 character ASCII passphrase, if available. Please note that
439          * this can be %NULL if passphrase was not used to generate the PSK. In
440          * that case, the psk field must be used to fetch the PSK.
441          */
442         const char *passphrase;
443
444         /**
445          * psk - RSN PSK (alternative for passphrase for PSK)
446          *
447          * This value is made available only for WPA/WPA2-Personal (PSK) and
448          * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
449          * the 32-octet (256-bit) PSK, if available. The driver wrapper should
450          * be prepared to handle %NULL value as an error.
451          */
452         const u8 *psk;
453
454         /**
455          * drop_unencrypted - Enable/disable unencrypted frame filtering
456          *
457          * Configure the driver to drop all non-EAPOL frames (both receive and
458          * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
459          * still be allowed for key negotiation.
460          */
461         int drop_unencrypted;
462
463         /**
464          * prev_bssid - Previously used BSSID in this ESS
465          *
466          * When not %NULL, this is a request to use reassociation instead of
467          * association.
468          */
469         const u8 *prev_bssid;
470
471         /**
472          * wps - WPS mode
473          *
474          * If the driver needs to do special configuration for WPS association,
475          * this variable provides more information on what type of association
476          * is being requested. Most drivers should not need ot use this.
477          */
478         enum wps_mode wps;
479
480         /**
481          * p2p - Whether this connection is a P2P group
482          */
483         int p2p;
484
485         /**
486          * uapsd - UAPSD parameters for the network
487          * -1 = do not change defaults
488          * AP mode: 1 = enabled, 0 = disabled
489          * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE
490          */
491         int uapsd;
492 };
493
494 /**
495  * struct wpa_driver_capa - Driver capability information
496  */
497 struct wpa_driver_capa {
498 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA            0x00000001
499 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2           0x00000002
500 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK        0x00000004
501 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK       0x00000008
502 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE       0x00000010
503 #define WPA_DRIVER_CAPA_KEY_MGMT_FT             0x00000020
504 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK         0x00000040
505         unsigned int key_mgmt;
506
507 #define WPA_DRIVER_CAPA_ENC_WEP40       0x00000001
508 #define WPA_DRIVER_CAPA_ENC_WEP104      0x00000002
509 #define WPA_DRIVER_CAPA_ENC_TKIP        0x00000004
510 #define WPA_DRIVER_CAPA_ENC_CCMP        0x00000008
511         unsigned int enc;
512
513 #define WPA_DRIVER_AUTH_OPEN            0x00000001
514 #define WPA_DRIVER_AUTH_SHARED          0x00000002
515 #define WPA_DRIVER_AUTH_LEAP            0x00000004
516         unsigned int auth;
517
518 /* Driver generated WPA/RSN IE */
519 #define WPA_DRIVER_FLAGS_DRIVER_IE      0x00000001
520 /* Driver needs static WEP key setup after association command */
521 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
522 #define WPA_DRIVER_FLAGS_USER_SPACE_MLME 0x00000004
523 /* Driver takes care of RSN 4-way handshake internally; PMK is configured with
524  * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
525 #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
526 #define WPA_DRIVER_FLAGS_WIRED          0x00000010
527 /* Driver provides separate commands for authentication and association (SME in
528  * wpa_supplicant). */
529 #define WPA_DRIVER_FLAGS_SME            0x00000020
530 /* Driver supports AP mode */
531 #define WPA_DRIVER_FLAGS_AP             0x00000040
532 /* Driver needs static WEP key setup after association has been completed */
533 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE      0x00000080
534 /* Driver takes care of P2P management operations */
535 #define WPA_DRIVER_FLAGS_P2P_MGMT       0x00000100
536 /* Driver supports concurrent P2P operations */
537 #define WPA_DRIVER_FLAGS_P2P_CONCURRENT 0x00000200
538 /*
539  * Driver uses the initial interface as a dedicated management interface, i.e.,
540  * it cannot be used for P2P group operations.
541  */
542 #define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE        0x00000400
543 /* This interface is P2P capable (P2P Device, GO, or P2P Client */
544 #define WPA_DRIVER_FLAGS_P2P_CAPABLE    0x00000800
545         unsigned int flags;
546
547         int max_scan_ssids;
548
549         /**
550          * max_remain_on_chan - Maximum remain-on-channel duration in msec
551          */
552         unsigned int max_remain_on_chan;
553 };
554
555
556 struct hostapd_data;
557
558 struct hostap_sta_driver_data {
559         unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
560         unsigned long current_tx_rate;
561         unsigned long inactive_msec;
562         unsigned long flags;
563         unsigned long num_ps_buf_frames;
564         unsigned long tx_retry_failed;
565         unsigned long tx_retry_count;
566         int last_rssi;
567         int last_ack_rssi;
568 };
569
570 struct hostapd_sta_add_params {
571         const u8 *addr;
572         u16 aid;
573         u16 capability;
574         const u8 *supp_rates;
575         size_t supp_rates_len;
576         u16 listen_interval;
577         const struct ieee80211_ht_capabilities *ht_capabilities;
578 };
579
580 struct hostapd_freq_params {
581         int mode;
582         int freq;
583         int channel;
584         int ht_enabled;
585         int sec_channel_offset; /* 0 = HT40 disabled, -1 = HT40 enabled,
586                                  * secondary channel below primary, 1 = HT40
587                                  * enabled, secondary channel above primary */
588 };
589
590 enum wpa_driver_if_type {
591         /**
592          * WPA_IF_STATION - Station mode interface
593          */
594         WPA_IF_STATION,
595
596         /**
597          * WPA_IF_AP_VLAN - AP mode VLAN interface
598          *
599          * This interface shares its address and Beacon frame with the main
600          * BSS.
601          */
602         WPA_IF_AP_VLAN,
603
604         /**
605          * WPA_IF_AP_BSS - AP mode BSS interface
606          *
607          * This interface has its own address and Beacon frame.
608          */
609         WPA_IF_AP_BSS,
610
611         /**
612          * WPA_IF_P2P_GO - P2P Group Owner
613          */
614         WPA_IF_P2P_GO,
615
616         /**
617          * WPA_IF_P2P_CLIENT - P2P Client
618          */
619         WPA_IF_P2P_CLIENT,
620
621         /**
622          * WPA_IF_P2P_GROUP - P2P Group interface (will become either
623          * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known)
624          */
625         WPA_IF_P2P_GROUP
626 };
627
628 struct wpa_init_params {
629         const u8 *bssid;
630         const char *ifname;
631         const u8 *ssid;
632         size_t ssid_len;
633         const char *test_socket;
634         int use_pae_group_addr;
635         char **bridge;
636         size_t num_bridge;
637
638         u8 *own_addr; /* buffer for writing own MAC address */
639 };
640
641
642 struct wpa_bss_params {
643         /** Interface name (for multi-SSID/VLAN support) */
644         const char *ifname;
645         /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
646         int enabled;
647
648         int wpa;
649         int ieee802_1x;
650         int wpa_group;
651         int wpa_pairwise;
652         int wpa_key_mgmt;
653         int rsn_preauth;
654 };
655
656 #define WPA_STA_AUTHORIZED BIT(0)
657 #define WPA_STA_WMM BIT(1)
658 #define WPA_STA_SHORT_PREAMBLE BIT(2)
659 #define WPA_STA_MFP BIT(3)
660
661 /**
662  * struct wpa_driver_ops - Driver interface API definition
663  *
664  * This structure defines the API that each driver interface needs to implement
665  * for core wpa_supplicant code. All driver specific functionality is captured
666  * in this wrapper.
667  */
668 struct wpa_driver_ops {
669         /** Name of the driver interface */
670         const char *name;
671         /** One line description of the driver interface */
672         const char *desc;
673
674         /**
675          * get_bssid - Get the current BSSID
676          * @priv: private driver interface data
677          * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
678          *
679          * Returns: 0 on success, -1 on failure
680          *
681          * Query kernel driver for the current BSSID and copy it to bssid.
682          * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
683          * associated.
684          */
685         int (*get_bssid)(void *priv, u8 *bssid);
686
687         /**
688          * get_ssid - Get the current SSID
689          * @priv: private driver interface data
690          * @ssid: buffer for SSID (at least 32 bytes)
691          *
692          * Returns: Length of the SSID on success, -1 on failure
693          *
694          * Query kernel driver for the current SSID and copy it to ssid.
695          * Returning zero is recommended if the STA is not associated.
696          *
697          * Note: SSID is an array of octets, i.e., it is not nul terminated and
698          * can, at least in theory, contain control characters (including nul)
699          * and as such, should be processed as binary data, not a printable
700          * string.
701          */
702         int (*get_ssid)(void *priv, u8 *ssid);
703
704         /**
705          * set_key - Configure encryption key
706          * @ifname: Interface name (for multi-SSID/VLAN support)
707          * @priv: private driver interface data
708          * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
709          *      %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
710          *      %WPA_ALG_NONE clears the key.
711          * @addr: address of the peer STA or ff:ff:ff:ff:ff:ff for
712          *      broadcast/default keys
713          * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
714          *      IGTK
715          * @set_tx: configure this key as the default Tx key (only used when
716          *      driver does not support separate unicast/individual key
717          * @seq: sequence number/packet number, seq_len octets, the next
718          *      packet number to be used for in replay protection; configured
719          *      for Rx keys (in most cases, this is only used with broadcast
720          *      keys and set to zero for unicast keys)
721          * @seq_len: length of the seq, depends on the algorithm:
722          *      TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
723          * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
724          *      8-byte Rx Mic Key
725          * @key_len: length of the key buffer in octets (WEP: 5 or 13,
726          *      TKIP: 32, CCMP: 16, IGTK: 16)
727          *
728          * Returns: 0 on success, -1 on failure
729          *
730          * Configure the given key for the kernel driver. If the driver
731          * supports separate individual keys (4 default keys + 1 individual),
732          * addr can be used to determine whether the key is default or
733          * individual. If only 4 keys are supported, the default key with key
734          * index 0 is used as the individual key. STA must be configured to use
735          * it as the default Tx key (set_tx is set) and accept Rx for all the
736          * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
737          * broadcast keys, so key index 0 is available for this kind of
738          * configuration.
739          *
740          * Please note that TKIP keys include separate TX and RX MIC keys and
741          * some drivers may expect them in different order than wpa_supplicant
742          * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
743          * will tricker Michael MIC errors. This can be fixed by changing the
744          * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
745          * in driver_*.c set_key() implementation, see driver_ndis.c for an
746          * example on how this can be done.
747          */
748         int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg,
749                        const u8 *addr, int key_idx, int set_tx,
750                        const u8 *seq, size_t seq_len,
751                        const u8 *key, size_t key_len);
752
753         /**
754          * init - Initialize driver interface
755          * @ctx: context to be used when calling wpa_supplicant functions,
756          * e.g., wpa_supplicant_event()
757          * @ifname: interface name, e.g., wlan0
758          *
759          * Returns: Pointer to private data, %NULL on failure
760          *
761          * Initialize driver interface, including event processing for kernel
762          * driver events (e.g., associated, scan results, Michael MIC failure).
763          * This function can allocate a private configuration data area for
764          * @ctx, file descriptor, interface name, etc. information that may be
765          * needed in future driver operations. If this is not used, non-NULL
766          * value will need to be returned because %NULL is used to indicate
767          * failure. The returned value will be used as 'void *priv' data for
768          * all other driver_ops functions.
769          *
770          * The main event loop (eloop.c) of wpa_supplicant can be used to
771          * register callback for read sockets (eloop_register_read_sock()).
772          *
773          * See below for more information about events and
774          * wpa_supplicant_event() function.
775          */
776         void * (*init)(void *ctx, const char *ifname);
777
778         /**
779          * deinit - Deinitialize driver interface
780          * @priv: private driver interface data from init()
781          *
782          * Shut down driver interface and processing of driver events. Free
783          * private data buffer if one was allocated in init() handler.
784          */
785         void (*deinit)(void *priv);
786
787         /**
788          * set_param - Set driver configuration parameters
789          * @priv: private driver interface data from init()
790          * @param: driver specific configuration parameters
791          *
792          * Returns: 0 on success, -1 on failure
793          *
794          * Optional handler for notifying driver interface about configuration
795          * parameters (driver_param).
796          */
797         int (*set_param)(void *priv, const char *param);
798
799         /**
800          * set_countermeasures - Enable/disable TKIP countermeasures
801          * @priv: private driver interface data
802          * @enabled: 1 = countermeasures enabled, 0 = disabled
803          *
804          * Returns: 0 on success, -1 on failure
805          *
806          * Configure TKIP countermeasures. When these are enabled, the driver
807          * should drop all received and queued frames that are using TKIP.
808          */
809         int (*set_countermeasures)(void *priv, int enabled);
810
811         /**
812          * deauthenticate - Request driver to deauthenticate
813          * @priv: private driver interface data
814          * @addr: peer address (BSSID of the AP)
815          * @reason_code: 16-bit reason code to be sent in the deauthentication
816          *      frame
817          *
818          * Returns: 0 on success, -1 on failure
819          */
820         int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
821
822         /**
823          * disassociate - Request driver to disassociate
824          * @priv: private driver interface data
825          * @addr: peer address (BSSID of the AP)
826          * @reason_code: 16-bit reason code to be sent in the disassociation
827          *      frame
828          *
829          * Returns: 0 on success, -1 on failure
830          */
831         int (*disassociate)(void *priv, const u8 *addr, int reason_code);
832
833         /**
834          * associate - Request driver to associate
835          * @priv: private driver interface data
836          * @params: association parameters
837          *
838          * Returns: 0 on success, -1 on failure
839          */
840         int (*associate)(void *priv,
841                          struct wpa_driver_associate_params *params);
842
843         /**
844          * add_pmkid - Add PMKSA cache entry to the driver
845          * @priv: private driver interface data
846          * @bssid: BSSID for the PMKSA cache entry
847          * @pmkid: PMKID for the PMKSA cache entry
848          *
849          * Returns: 0 on success, -1 on failure
850          *
851          * This function is called when a new PMK is received, as a result of
852          * either normal authentication or RSN pre-authentication.
853          *
854          * If the driver generates RSN IE, i.e., it does not use wpa_ie in
855          * associate(), add_pmkid() can be used to add new PMKSA cache entries
856          * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
857          * driver_ops function does not need to be implemented. Likewise, if
858          * the driver does not support WPA, this function is not needed.
859          */
860         int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
861
862         /**
863          * remove_pmkid - Remove PMKSA cache entry to the driver
864          * @priv: private driver interface data
865          * @bssid: BSSID for the PMKSA cache entry
866          * @pmkid: PMKID for the PMKSA cache entry
867          *
868          * Returns: 0 on success, -1 on failure
869          *
870          * This function is called when the supplicant drops a PMKSA cache
871          * entry for any reason.
872          *
873          * If the driver generates RSN IE, i.e., it does not use wpa_ie in
874          * associate(), remove_pmkid() can be used to synchronize PMKSA caches
875          * between the driver and wpa_supplicant. If the driver uses wpa_ie
876          * from wpa_supplicant, this driver_ops function does not need to be
877          * implemented. Likewise, if the driver does not support WPA, this
878          * function is not needed.
879          */
880         int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
881
882         /**
883          * flush_pmkid - Flush PMKSA cache
884          * @priv: private driver interface data
885          *
886          * Returns: 0 on success, -1 on failure
887          *
888          * This function is called when the supplicant drops all PMKSA cache
889          * entries for any reason.
890          *
891          * If the driver generates RSN IE, i.e., it does not use wpa_ie in
892          * associate(), remove_pmkid() can be used to synchronize PMKSA caches
893          * between the driver and wpa_supplicant. If the driver uses wpa_ie
894          * from wpa_supplicant, this driver_ops function does not need to be
895          * implemented. Likewise, if the driver does not support WPA, this
896          * function is not needed.
897          */
898         int (*flush_pmkid)(void *priv);
899
900         /**
901          * get_capa - Get driver capabilities
902          * @priv: private driver interface data
903          *
904          * Returns: 0 on success, -1 on failure
905          *
906          * Get driver/firmware/hardware capabilities.
907          */
908         int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
909
910         /**
911          * poll - Poll driver for association information
912          * @priv: private driver interface data
913          *
914          * This is an option callback that can be used when the driver does not
915          * provide event mechanism for association events. This is called when
916          * receiving WPA EAPOL-Key messages that require association
917          * information. The driver interface is supposed to generate associnfo
918          * event before returning from this callback function. In addition, the
919          * driver interface should generate an association event after having
920          * sent out associnfo.
921          */
922         void (*poll)(void *priv);
923
924         /**
925          * get_ifname - Get interface name
926          * @priv: private driver interface data
927          *
928          * Returns: Pointer to the interface name. This can differ from the
929          * interface name used in init() call. Init() is called first.
930          *
931          * This optional function can be used to allow the driver interface to
932          * replace the interface name with something else, e.g., based on an
933          * interface mapping from a more descriptive name.
934          */
935         const char * (*get_ifname)(void *priv);
936
937         /**
938          * get_mac_addr - Get own MAC address
939          * @priv: private driver interface data
940          *
941          * Returns: Pointer to own MAC address or %NULL on failure
942          *
943          * This optional function can be used to get the own MAC address of the
944          * device from the driver interface code. This is only needed if the
945          * l2_packet implementation for the OS does not provide easy access to
946          * a MAC address. */
947         const u8 * (*get_mac_addr)(void *priv);
948
949         /**
950          * send_eapol - Optional function for sending EAPOL packets
951          * @priv: private driver interface data
952          * @dest: Destination MAC address
953          * @proto: Ethertype
954          * @data: EAPOL packet starting with IEEE 802.1X header
955          * @data_len: Size of the EAPOL packet
956          *
957          * Returns: 0 on success, -1 on failure
958          *
959          * This optional function can be used to override l2_packet operations
960          * with driver specific functionality. If this function pointer is set,
961          * l2_packet module is not used at all and the driver interface code is
962          * responsible for receiving and sending all EAPOL packets. The
963          * received EAPOL packets are sent to core code with EVENT_EAPOL_RX
964          * event. The driver interface is required to implement get_mac_addr()
965          * handler if send_eapol() is used.
966          */
967         int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
968                           const u8 *data, size_t data_len);
969
970         /**
971          * set_operstate - Sets device operating state to DORMANT or UP
972          * @priv: private driver interface data
973          * @state: 0 = dormant, 1 = up
974          * Returns: 0 on success, -1 on failure
975          *
976          * This is an optional function that can be used on operating systems
977          * that support a concept of controlling network device state from user
978          * space applications. This function, if set, gets called with
979          * state = 1 when authentication has been completed and with state = 0
980          * when connection is lost.
981          */
982         int (*set_operstate)(void *priv, int state);
983
984         /**
985          * mlme_setprotection - MLME-SETPROTECTION.request primitive
986          * @priv: Private driver interface data
987          * @addr: Address of the station for which to set protection (may be
988          * %NULL for group keys)
989          * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
990          * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
991          * Returns: 0 on success, -1 on failure
992          *
993          * This is an optional function that can be used to set the driver to
994          * require protection for Tx and/or Rx frames. This uses the layer
995          * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
996          * (MLME-SETPROTECTION.request). Many drivers do not use explicit
997          * set protection operation; instead, they set protection implicitly
998          * based on configured keys.
999          */
1000         int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
1001                                   int key_type);
1002
1003         /**
1004          * get_hw_feature_data - Get hardware support data (channels and rates)
1005          * @priv: Private driver interface data
1006          * @num_modes: Variable for returning the number of returned modes
1007          * flags: Variable for returning hardware feature flags
1008          * Returns: Pointer to allocated hardware data on success or %NULL on
1009          * failure. Caller is responsible for freeing this.
1010          *
1011          * This function is only needed for drivers that export MLME
1012          * (management frame processing) to %wpa_supplicant or hostapd.
1013          */
1014         struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
1015                                                          u16 *num_modes,
1016                                                          u16 *flags);
1017
1018         /**
1019          * set_channel - Set channel
1020          * @priv: Private driver interface data
1021          * @phymode: HOSTAPD_MODE_IEEE80211B, ..
1022          * @chan: IEEE 802.11 channel number
1023          * @freq: Frequency of the channel in MHz
1024          * Returns: 0 on success, -1 on failure
1025          *
1026          * This function is only needed for drivers that export MLME
1027          * (management frame processing) to wpa_supplicant.
1028          */
1029         int (*set_channel)(void *priv, enum hostapd_hw_mode phymode, int chan,
1030                            int freq);
1031
1032         /**
1033          * set_ssid - Set SSID
1034          * @priv: Private driver interface data
1035          * @ssid: SSID
1036          * @ssid_len: SSID length
1037          * Returns: 0 on success, -1 on failure
1038          *
1039          * This function is only needed for drivers that export MLME
1040          * (management frame processing) to wpa_supplicant.
1041          */
1042         int (*set_ssid)(void *priv, const u8 *ssid, size_t ssid_len);
1043
1044         /**
1045          * set_bssid - Set BSSID
1046          * @priv: Private driver interface data
1047          * @bssid: BSSID
1048          * Returns: 0 on success, -1 on failure
1049          *
1050          * This function is only needed for drivers that export MLME
1051          * (management frame processing) to wpa_supplicant.
1052          */
1053         int (*set_bssid)(void *priv, const u8 *bssid);
1054
1055         /**
1056          * send_mlme - Send management frame from MLME
1057          * @priv: Private driver interface data
1058          * @data: IEEE 802.11 management frame with IEEE 802.11 header
1059          * @data_len: Size of the management frame
1060          * Returns: 0 on success, -1 on failure
1061          *
1062          * This function is only needed for drivers that export MLME
1063          * (management frame processing) to wpa_supplicant.
1064          */
1065         int (*send_mlme)(void *priv, const u8 *data, size_t data_len);
1066
1067         /**
1068          * mlme_add_sta - Add a STA entry into the driver/netstack
1069          * @priv: Private driver interface data
1070          * @addr: MAC address of the STA (e.g., BSSID of the AP)
1071          * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11
1072          * format (one octet per rate, 1 = 0.5 Mbps)
1073          * @supp_rates_len: Number of entries in supp_rates
1074          * Returns: 0 on success, -1 on failure
1075          *
1076          * This function is only needed for drivers that export MLME
1077          * (management frame processing) to wpa_supplicant. When the MLME code
1078          * completes association with an AP, this function is called to
1079          * configure the driver/netstack with a STA entry for data frame
1080          * processing (TX rate control, encryption/decryption).
1081          */
1082         int (*mlme_add_sta)(void *priv, const u8 *addr, const u8 *supp_rates,
1083                             size_t supp_rates_len);
1084
1085         /**
1086          * mlme_remove_sta - Remove a STA entry from the driver/netstack
1087          * @priv: Private driver interface data
1088          * @addr: MAC address of the STA (e.g., BSSID of the AP)
1089          * Returns: 0 on success, -1 on failure
1090          *
1091          * This function is only needed for drivers that export MLME
1092          * (management frame processing) to wpa_supplicant.
1093          */
1094         int (*mlme_remove_sta)(void *priv, const u8 *addr);
1095
1096         /**
1097          * update_ft_ies - Update FT (IEEE 802.11r) IEs
1098          * @priv: Private driver interface data
1099          * @md: Mobility domain (2 octets) (also included inside ies)
1100          * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
1101          * @ies_len: Length of FT IEs in bytes
1102          * Returns: 0 on success, -1 on failure
1103          *
1104          * The supplicant uses this callback to let the driver know that keying
1105          * material for FT is available and that the driver can use the
1106          * provided IEs in the next message in FT authentication sequence.
1107          *
1108          * This function is only needed for driver that support IEEE 802.11r
1109          * (Fast BSS Transition).
1110          */
1111         int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
1112                              size_t ies_len);
1113
1114         /**
1115          * send_ft_action - Send FT Action frame (IEEE 802.11r)
1116          * @priv: Private driver interface data
1117          * @action: Action field value
1118          * @target_ap: Target AP address
1119          * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
1120          * @ies_len: Length of FT IEs in bytes
1121          * Returns: 0 on success, -1 on failure
1122          *
1123          * The supplicant uses this callback to request the driver to transmit
1124          * an FT Action frame (action category 6) for over-the-DS fast BSS
1125          * transition.
1126          */
1127         int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
1128                               const u8 *ies, size_t ies_len);
1129
1130         /**
1131          * get_scan_results2 - Fetch the latest scan results
1132          * @priv: private driver interface data
1133          *
1134          * Returns: Allocated buffer of scan results (caller is responsible for
1135          * freeing the data structure) on success, NULL on failure
1136          */
1137          struct wpa_scan_results * (*get_scan_results2)(void *priv);
1138
1139         /**
1140          * set_country - Set country
1141          * @priv: Private driver interface data
1142          * @alpha2: country to which to switch to
1143          * Returns: 0 on success, -1 on failure
1144          *
1145          * This function is for drivers which support some form
1146          * of setting a regulatory domain.
1147          */
1148         int (*set_country)(void *priv, const char *alpha2);
1149
1150         /**
1151          * global_init - Global driver initialization
1152          * Returns: Pointer to private data (global), %NULL on failure
1153          *
1154          * This optional function is called to initialize the driver wrapper
1155          * for global data, i.e., data that applies to all interfaces. If this
1156          * function is implemented, global_deinit() will also need to be
1157          * implemented to free the private data. The driver will also likely
1158          * use init2() function instead of init() to get the pointer to global
1159          * data available to per-interface initializer.
1160          */
1161         void * (*global_init)(void);
1162
1163         /**
1164          * global_deinit - Global driver deinitialization
1165          * @priv: private driver global data from global_init()
1166          *
1167          * Terminate any global driver related functionality and free the
1168          * global data structure.
1169          */
1170         void (*global_deinit)(void *priv);
1171
1172         /**
1173          * init2 - Initialize driver interface (with global data)
1174          * @ctx: context to be used when calling wpa_supplicant functions,
1175          * e.g., wpa_supplicant_event()
1176          * @ifname: interface name, e.g., wlan0
1177          * @global_priv: private driver global data from global_init()
1178          * Returns: Pointer to private data, %NULL on failure
1179          *
1180          * This function can be used instead of init() if the driver wrapper
1181          * uses global data.
1182          */
1183         void * (*init2)(void *ctx, const char *ifname, void *global_priv);
1184
1185         /**
1186          * get_interfaces - Get information about available interfaces
1187          * @global_priv: private driver global data from global_init()
1188          * Returns: Allocated buffer of interface information (caller is
1189          * responsible for freeing the data structure) on success, NULL on
1190          * failure
1191          */
1192         struct wpa_interface_info * (*get_interfaces)(void *global_priv);
1193
1194         /**
1195          * scan2 - Request the driver to initiate scan
1196          * @priv: private driver interface data
1197          * @params: Scan parameters
1198          *
1199          * Returns: 0 on success, -1 on failure
1200          *
1201          * Once the scan results are ready, the driver should report scan
1202          * results event for wpa_supplicant which will eventually request the
1203          * results with wpa_driver_get_scan_results2().
1204          */
1205         int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
1206
1207         /**
1208          * authenticate - Request driver to authenticate
1209          * @priv: private driver interface data
1210          * @params: authentication parameters
1211          * Returns: 0 on success, -1 on failure
1212          *
1213          * This is an optional function that can be used with drivers that
1214          * support separate authentication and association steps, i.e., when
1215          * wpa_supplicant can act as the SME. If not implemented, associate()
1216          * function is expected to take care of IEEE 802.11 authentication,
1217          * too.
1218          */
1219         int (*authenticate)(void *priv,
1220                             struct wpa_driver_auth_params *params);
1221
1222         /**
1223          * set_beacon - Set Beacon frame template
1224          * @priv: Private driver interface data
1225          * @head: Beacon head from IEEE 802.11 header to IEs before TIM IE
1226          * @head_len: Length of the head buffer in octets
1227          * @tail: Beacon tail following TIM IE
1228          * @tail_len: Length of the tail buffer in octets
1229          * @dtim_period: DTIM period
1230          * @beacon_int: Beacon interval
1231          * Returns: 0 on success, -1 on failure
1232          *
1233          * This function is used to configure Beacon template for the driver in
1234          * AP mode. The driver is responsible for building the full Beacon
1235          * frame by concatenating the head part with TIM IE generated by the
1236          * driver/firmware and finishing with the tail part.
1237          */
1238         int (*set_beacon)(void *priv, const u8 *head, size_t head_len,
1239                           const u8 *tail, size_t tail_len, int dtim_period,
1240                           int beacon_int);
1241
1242         /**
1243          * hapd_init - Initialize driver interface (hostapd only)
1244          * @hapd: Pointer to hostapd context
1245          * @params: Configuration for the driver wrapper
1246          * Returns: Pointer to private data, %NULL on failure
1247          *
1248          * This function is used instead of init() or init2() when the driver
1249          * wrapper is used withh hostapd.
1250          */
1251         void * (*hapd_init)(struct hostapd_data *hapd,
1252                             struct wpa_init_params *params);
1253
1254         /**
1255          * hapd_deinit - Deinitialize driver interface (hostapd only)
1256          * @priv: Private driver interface data from hapd_init()
1257          */
1258         void (*hapd_deinit)(void *priv);
1259
1260         /**
1261          * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
1262          * @priv: Private driver interface data
1263          * @params: BSS parameters
1264          * Returns: 0 on success, -1 on failure
1265          *
1266          * This is an optional function to configure the kernel driver to
1267          * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
1268          * can be left undefined (set to %NULL) if IEEE 802.1X support is
1269          * always enabled and the driver uses set_beacon() to set WPA/RSN IE
1270          * for Beacon frames.
1271          */
1272         int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
1273
1274         /**
1275          * set_privacy - Enable/disable privacy (AP only)
1276          * @priv: Private driver interface data
1277          * @enabled: 1 = privacy enabled, 0 = disabled
1278          * Returns: 0 on success, -1 on failure
1279          *
1280          * This is an optional function to configure privacy field in the
1281          * kernel driver for Beacon frames. This can be left undefined (set to
1282          * %NULL) if the driver uses the Beacon template from set_beacon().
1283          */
1284         int (*set_privacy)(void *priv, int enabled);
1285
1286         /**
1287          * get_seqnum - Fetch the current TSC/packet number (AP only)
1288          * @ifname: The interface name (main or virtual)
1289          * @priv: Private driver interface data
1290          * @addr: MAC address of the station or %NULL for group keys
1291          * @idx: Key index
1292          * @seq: Buffer for returning the latest used TSC/packet number
1293          * Returns: 0 on success, -1 on failure
1294          *
1295          * This function is used to fetch the last used TSC/packet number for
1296          * a TKIP, CCMP, or BIP/IGTK key. It is mainly used with group keys, so
1297          * there is no strict requirement on implementing support for unicast
1298          * keys (i.e., addr != %NULL).
1299          */
1300         int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
1301                           int idx, u8 *seq);
1302
1303         /**
1304          * flush - Flush all association stations (AP only)
1305          * @priv: Private driver interface data
1306          * Returns: 0 on success, -1 on failure
1307          *
1308          * This function requests the driver to disassociate all associated
1309          * stations. This function does not need to be implemented if the
1310          * driver does not process association frames internally.
1311          */
1312         int (*flush)(void *priv);
1313
1314         /**
1315          * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
1316          * @priv: Private driver interface data
1317          * @elem: Information elements
1318          * @elem_len: Length of the elem buffer in octets
1319          * Returns: 0 on success, -1 on failure
1320          *
1321          * This is an optional function to add information elements in the
1322          * kernel driver for Beacon and Probe Response frames. This can be left
1323          * undefined (set to %NULL) if the driver uses the Beacon template from
1324          * set_beacon().
1325          */
1326         int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
1327
1328         /**
1329          * read_sta_data - Fetch station data (AP only)
1330          * @priv: Private driver interface data
1331          * @data: Buffer for returning station information
1332          * @addr: MAC address of the station
1333          * Returns: 0 on success, -1 on failure
1334          */
1335         int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
1336                              const u8 *addr);
1337
1338         /**
1339          * hapd_send_eapol - Send an EAPOL packet (AP only)
1340          * @priv: private driver interface data
1341          * @addr: Destination MAC address
1342          * @data: EAPOL packet starting with IEEE 802.1X header
1343          * @data_len: Length of the EAPOL packet in octets
1344          * @encrypt: Whether the frame should be encrypted
1345          * @own_addr: Source MAC address
1346          *
1347          * Returns: 0 on success, -1 on failure
1348          */
1349         int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
1350                                size_t data_len, int encrypt,
1351                                const u8 *own_addr);
1352
1353         /**
1354          * sta_deauth - Deauthenticate a station (AP only)
1355          * @priv: Private driver interface data
1356          * @own_addr: Source address and BSSID for the Deauthentication frame
1357          * @addr: MAC address of the station to deauthenticate
1358          * @reason: Reason code for the Deauthentiation frame
1359          * Returns: 0 on success, -1 on failure
1360          *
1361          * This function requests a specific station to be deauthenticated and
1362          * a Deauthentication frame to be sent to it.
1363          */
1364         int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
1365                           int reason);
1366
1367         /**
1368          * sta_disassoc - Disassociate a station (AP only)
1369          * @priv: Private driver interface data
1370          * @own_addr: Source address and BSSID for the Disassociation frame
1371          * @addr: MAC address of the station to disassociate
1372          * @reason: Reason code for the Disassociation frame
1373          * Returns: 0 on success, -1 on failure
1374          *
1375          * This function requests a specific station to be disassociated and
1376          * a Disassociation frame to be sent to it.
1377          */
1378         int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
1379                             int reason);
1380
1381         /**
1382          * sta_remove - Remove a station entry (AP only)
1383          * @priv: Private driver interface data
1384          * @addr: MAC address of the station to be removed
1385          * Returns: 0 on success, -1 on failure
1386          */
1387         int (*sta_remove)(void *priv, const u8 *addr);
1388
1389         /**
1390          * hapd_get_ssid - Get the current SSID (AP only)
1391          * @priv: Private driver interface data
1392          * @buf: Buffer for returning the SSID
1393          * @len: Maximum length of the buffer
1394          * Returns: Length of the SSID on success, -1 on failure
1395          *
1396          * This function need not be implemented if the driver uses Beacon
1397          * template from set_beacon() and does not reply to Probe Request
1398          * frames.
1399          */
1400         int (*hapd_get_ssid)(void *priv, u8 *buf, int len);
1401
1402         /**
1403          * hapd_set_ssid - Set SSID (AP only)
1404          * @priv: Private driver interface data
1405          * @buf: SSID
1406          * @len: Length of the SSID in octets
1407          * Returns: 0 on success, -1 on failure
1408          */
1409         int (*hapd_set_ssid)(void *priv, const u8 *buf, int len);
1410
1411         /**
1412          * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
1413          * @priv: Private driver interface data
1414          * @enabled: 1 = countermeasures enabled, 0 = disabled
1415          * Returns: 0 on success, -1 on failure
1416          *
1417          * This need not be implemented if the driver does not take care of
1418          * association processing.
1419          */
1420         int (*hapd_set_countermeasures)(void *priv, int enabled);
1421
1422         /**
1423          * sta_add - Add a station entry
1424          * @priv: Private driver interface data
1425          * @params: Station parameters
1426          * Returns: 0 on success, -1 on failure
1427          *
1428          * This function is used to add a station entry to the driver once the
1429          * station has completed association. This is only used if the driver
1430          * does not take care of association processing.
1431          */
1432         int (*sta_add)(void *priv, struct hostapd_sta_add_params *params);
1433
1434         /**
1435          * get_inact_sec - Get station inactivity duration (AP only)
1436          * @priv: Private driver interface data
1437          * @addr: Station address
1438          * Returns: Number of seconds station has been inactive, -1 on failure
1439          */
1440         int (*get_inact_sec)(void *priv, const u8 *addr);
1441
1442         /**
1443          * sta_clear_stats - Clear station statistics (AP only)
1444          * @priv: Private driver interface data
1445          * @addr: Station address
1446          * Returns: 0 on success, -1 on failure
1447          */
1448         int (*sta_clear_stats)(void *priv, const u8 *addr);
1449
1450         /**
1451          * set_freq - Set channel/frequency (AP only)
1452          * @priv: Private driver interface data
1453          * @freq: Channel parameters
1454          * Returns: 0 on success, -1 on failure
1455          */
1456         int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
1457
1458         /**
1459          * set_rts - Set RTS threshold
1460          * @priv: Private driver interface data
1461          * @rts: RTS threshold in octets
1462          * Returns: 0 on success, -1 on failure
1463          */
1464         int (*set_rts)(void *priv, int rts);
1465
1466         /**
1467          * set_frag - Set fragmentation threshold
1468          * @priv: Private driver interface data
1469          * @frag: Fragmentation threshold in octets
1470          * Returns: 0 on success, -1 on failure
1471          */
1472         int (*set_frag)(void *priv, int frag);
1473
1474         /**
1475          * sta_set_flags - Set station flags (AP only)
1476          * @priv: Private driver interface data
1477          * @addr: Station address
1478          * @total_flags: Bitmap of all WPA_STA_* flags currently set
1479          * @flags_or: Bitmap of WPA_STA_* flags to add
1480          * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
1481          * Returns: 0 on success, -1 on failure
1482          */
1483         int (*sta_set_flags)(void *priv, const u8 *addr,
1484                              int total_flags, int flags_or, int flags_and);
1485
1486         /**
1487          * set_rate_sets - Set supported and basic rate sets (AP only)
1488          * @priv: Private driver interface data
1489          * @supp_rates: -1 terminated array of supported rates in 100 kbps
1490          * @basic_rates: -1 terminated array of basic rates in 100 kbps
1491          * @mode: hardware mode (HOSTAPD_MODE_*)
1492          * Returns: 0 on success, -1 on failure
1493          */
1494         int (*set_rate_sets)(void *priv, int *supp_rates, int *basic_rates,
1495                              int mode);
1496
1497         /**
1498          * set_cts_protect - Set CTS protection mode (AP only)
1499          * @priv: Private driver interface data
1500          * @value: Whether CTS protection is enabled
1501          * Returns: 0 on success, -1 on failure
1502          */
1503         int (*set_cts_protect)(void *priv, int value);
1504
1505         /**
1506          * set_preamble - Set preamble mode (AP only)
1507          * @priv: Private driver interface data
1508          * @value: Whether short preamble is enabled
1509          * Returns: 0 on success, -1 on failure
1510          */
1511         int (*set_preamble)(void *priv, int value);
1512
1513         /**
1514          * set_short_slot_time - Set short slot time (AP only)
1515          * @priv: Private driver interface data
1516          * @value: Whether short slot time is enabled
1517          * Returns: 0 on success, -1 on failure
1518          */
1519         int (*set_short_slot_time)(void *priv, int value);
1520
1521         /**
1522          * set_tx_queue_params - Set TX queue parameters
1523          * @priv: Private driver interface data
1524          * @queue: Queue number
1525          * @aifs: AIFS
1526          * @cw_min: cwMin
1527          * @cw_max: cwMax
1528          * @burst_time: Maximum length for bursting in 0.1 msec units
1529          */
1530         int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
1531                                    int cw_max, int burst_time);
1532
1533         /**
1534          * valid_bss_mask - Validate BSSID mask
1535          * @priv: Private driver interface data
1536          * @addr: Address
1537          * @mask: Mask
1538          * Returns: 0 if mask is valid, -1 if mask is not valid, 1 if mask can
1539          * be used, but the main interface address must be the first address in
1540          * the block if mask is applied
1541          */
1542         int (*valid_bss_mask)(void *priv, const u8 *addr, const u8 *mask);
1543
1544         /**
1545          * if_add - Add a virtual interface
1546          * @priv: Private driver interface data
1547          * @type: Interface type
1548          * @ifname: Interface name for the new virtual interface
1549          * @addr: Local address to use for the interface or %NULL to use the
1550          *      parent interface address
1551          * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
1552          * @drv_priv: Pointer for overwriting the driver context or %NULL if
1553          *      not allowed (applies only to %WPA_IF_AP_BSS type)
1554          * @force_ifname: Buffer for returning an interface name that the
1555          *      driver ended up using if it differs from the requested ifname
1556          * @if_addr: Buffer for returning the allocated interface address
1557          *      (this may differ from the requested addr if the driver cannot
1558          *      change interface address)
1559          * Returns: 0 on success, -1 on failure
1560          */
1561         int (*if_add)(void *priv, enum wpa_driver_if_type type,
1562                       const char *ifname, const u8 *addr, void *bss_ctx,
1563                       void **drv_priv, char *force_ifname, u8 *if_addr);
1564
1565         /**
1566          * if_remove - Remove a virtual interface
1567          * @priv: Private driver interface data
1568          * @type: Interface type
1569          * @ifname: Interface name of the virtual interface to be removed
1570          * Returns: 0 on success, -1 on failure
1571          */
1572         int (*if_remove)(void *priv, enum wpa_driver_if_type type,
1573                          const char *ifname);
1574
1575         /**
1576          * set_sta_vlan - Bind a station into a specific interface (AP only)
1577          * @priv: Private driver interface data
1578          * @ifname: Interface (main or virtual BSS or VLAN)
1579          * @addr: MAC address of the associated station
1580          * @vlan_id: VLAN ID
1581          * Returns: 0 on success, -1 on failure
1582          *
1583          * This function is used to bind a station to a specific virtual
1584          * interface. It is only used if when virtual interfaces are supported,
1585          * e.g., to assign stations to different VLAN interfaces based on
1586          * information from a RADIUS server. This allows separate broadcast
1587          * domains to be used with a single BSS.
1588          */
1589         int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
1590                             int vlan_id);
1591
1592         /**
1593          * commit - Optional commit changes handler (AP only)
1594          * @priv: driver private data
1595          * Returns: 0 on success, -1 on failure
1596          *
1597          * This optional handler function can be registered if the driver
1598          * interface implementation needs to commit changes (e.g., by setting
1599          * network interface up) at the end of initial configuration. If set,
1600          * this handler will be called after initial setup has been completed.
1601          */
1602         int (*commit)(void *priv);
1603
1604         /**
1605          * send_ether - Send an ethernet packet (AP only)
1606          * @priv: private driver interface data
1607          * @dst: Destination MAC address
1608          * @src: Source MAC address
1609          * @proto: Ethertype
1610          * @data: EAPOL packet starting with IEEE 802.1X header
1611          * @data_len: Length of the EAPOL packet in octets
1612          * Returns: 0 on success, -1 on failure
1613          */
1614         int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
1615                           const u8 *data, size_t data_len);
1616
1617         /**
1618          * set_radius_acl_auth - Notification of RADIUS ACL change
1619          * @priv: Private driver interface data
1620          * @mac: MAC address of the station
1621          * @accepted: Whether the station was accepted
1622          * @session_timeout: Session timeout for the station
1623          * Returns: 0 on success, -1 on failure
1624          */
1625         int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted, 
1626                                    u32 session_timeout);
1627
1628         /**
1629          * set_radius_acl_expire - Notification of RADIUS ACL expiration
1630          * @priv: Private driver interface data
1631          * @mac: MAC address of the station
1632          * Returns: 0 on success, -1 on failure
1633          */
1634         int (*set_radius_acl_expire)(void *priv, const u8 *mac);
1635
1636         /**
1637          * set_ht_params - Set HT parameters (AP only)
1638          * @priv: Private driver interface data
1639          * @ht_capab: HT Capabilities IE
1640          * @ht_capab_len: Length of ht_capab in octets
1641          * @ht_oper: HT Operation IE
1642          * @ht_oper_len: Length of ht_oper in octets
1643          * Returns: 0 on success, -1 on failure
1644          */
1645         int (*set_ht_params)(void *priv,
1646                              const u8 *ht_capab, size_t ht_capab_len,
1647                              const u8 *ht_oper, size_t ht_oper_len);
1648
1649         /**
1650          * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
1651          * @priv: Private driver interface data
1652          * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
1653          * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
1654          *      extra IE(s)
1655          * Returns: 0 on success, -1 on failure
1656          *
1657          * This is an optional function to add WPS IE in the kernel driver for
1658          * Beacon and Probe Response frames. This can be left undefined (set
1659          * to %NULL) if the driver uses the Beacon template from set_beacon()
1660          * and does not process Probe Request frames.
1661          *
1662          * This will also be used to add P2P IE(s) into Beacon/Probe Response
1663          * frames when operating as a GO. The driver is responsible for adding
1664          * timing related attributes (e.g., NoA) in addition to the IEs
1665          * included here by appending them after these buffers. This call is
1666          * also used to provide Probe Response IEs for P2P Listen state
1667          * operations for drivers that generate the Probe Response frames
1668          * internally.
1669          */
1670         int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon,
1671                              const struct wpabuf *proberesp);
1672
1673         /**
1674          * set_supp_port - Set IEEE 802.1X Supplicant Port status
1675          * @priv: Private driver interface data
1676          * @authorized: Whether the port is authorized
1677          * Returns: 0 on success, -1 on failure
1678          */
1679         int (*set_supp_port)(void *priv, int authorized);
1680
1681         /**
1682          * set_wds_sta - Bind a station into a 4-address WDS (AP only)
1683          * @priv: Private driver interface data
1684          * @addr: MAC address of the associated station
1685          * @aid: Association ID
1686          * @val: 1 = bind to 4-address WDS; 0 = unbind
1687          * Returns: 0 on success, -1 on failure
1688          */
1689         int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val);
1690
1691         /**
1692          * send_action - Transmit an Action frame
1693          * @priv: Private driver interface data
1694          * @freq: Frequency (in MHz) of the channel
1695          * @dst: Destination MAC address (Address 1)
1696          * @src: Source MAC address (Address 2)
1697          * @bssid: BSSID (Address 3)
1698          * @data: Frame body
1699          * @data_len: data length in octets
1700          * Returns: 0 on success, -1 on failure
1701          *
1702          * This command can be used to request the driver to transmit an action
1703          * frame to the specified destination. If a remain-on-channel duration
1704          * is in progress, the frame is transmitted on that channel. Otherwise,
1705          * the frame is transmitted on the current operational channel if in
1706          * associated state in station mode or if operating as an AP. If none
1707          * of these conditions is in effect, send_action() cannot be used.
1708          */
1709         int (*send_action)(void *priv, unsigned int freq,
1710                            const u8 *dst, const u8 *src, const u8 *bssid,
1711                            const u8 *data, size_t data_len);
1712
1713         /**
1714          * remain_on_channel - Remain awake on a channel
1715          * @priv: Private driver interface data
1716          * @freq: Frequency (in MHz) of the channel
1717          * @duration: Duration in milliseconds
1718          * Returns: 0 on success, -1 on failure
1719          *
1720          * This command is used to request the driver to remain awake on the
1721          * specified channel for the specified duration and report received
1722          * Action frames with EVENT_RX_ACTION events. Optionally, received
1723          * Probe Request frames may also be requested to be reported by calling
1724          * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
1725          *
1726          * The driver may not be at the requested channel when this function
1727          * returns, i.e., the return code is only indicating whether the
1728          * request was accepted. The caller will need to wait until the
1729          * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
1730          * completed the channel change. This may take some time due to other
1731          * need for the radio and the caller should be prepared to timing out
1732          * its wait since there are no guarantees on when this request can be
1733          * executed.
1734          */
1735         int (*remain_on_channel)(void *priv, unsigned int freq,
1736                                  unsigned int duration);
1737
1738         /**
1739          * cancel_remain_on_channel - Cancel remain-on-channel operation
1740          * @priv: Private driver interface data
1741          *
1742          * This command can be used to cancel a remain-on-channel operation
1743          * before its originally requested duration has passed. This could be
1744          * used, e.g., when remain_on_channel() is used to request extra time
1745          * to receive a response to an Action frame and the response is
1746          * received when there is still unneeded time remaining on the
1747          * remain-on-channel operation.
1748          */
1749         int (*cancel_remain_on_channel)(void *priv);
1750
1751         /**
1752          * probe_req_report - Request Probe Request frames to be indicated
1753          * @priv: Private driver interface data
1754          * @report: Whether to report received Probe Request frames
1755          * Returns: 0 on success, -1 on failure (or if not supported)
1756          *
1757          * This command can be used to request the driver to indicate when
1758          * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
1759          * Since this operation may require extra resources, e.g., due to less
1760          * optimal hardware/firmware RX filtering, many drivers may disable
1761          * Probe Request reporting at least in station mode. This command is
1762          * used to notify the driver when the Probe Request frames need to be
1763          * reported, e.g., during remain-on-channel operations.
1764          */
1765         int (*probe_req_report)(void *priv, int report);
1766
1767         /**
1768          * disable_11b_rates - Set whether IEEE 802.11b rates are used for TX
1769          * @priv: Private driver interface data
1770          * @disabled: Whether IEEE 802.11b rates are disabled
1771          * Returns: 0 on success, -1 on failure (or if not supported)
1772          *
1773          * This command is used to disable IEEE 802.11b rates (1, 2, 5.5, and
1774          * 11 Mbps) as TX rates for data and management frames. This can be
1775          * used to optimize channel use when there is no need to support IEEE
1776          * 802.11b-only devices.
1777          */
1778         int (*disable_11b_rates)(void *priv, int disabled);
1779
1780         /**
1781          * deinit_ap - Deinitialize AP mode
1782          * @priv: Private driver interface data
1783          * Returns: 0 on success, -1 on failure (or if not supported)
1784          *
1785          * This optional function can be used to disable AP mode related
1786          * configuration and change the driver mode to station mode to allow
1787          * normal station operations like scanning to be completed.
1788          */
1789         int (*deinit_ap)(void *priv);
1790
1791         /**
1792          * suspend - Notification on system suspend/hibernate event
1793          * @priv: Private driver interface data
1794          */
1795         void (*suspend)(void *priv);
1796
1797         /**
1798          * resume - Notification on system resume/thaw event
1799          * @priv: Private driver interface data
1800          */
1801         void (*resume)(void *priv);
1802
1803         /**
1804          * signal_monitor - Set signal monitoring parameters
1805          * @priv: Private driver interface data
1806          * @threshold: Threshold value for signal change events; 0 = disabled
1807          * @hysteresis: Minimum change in signal strength before indicating a
1808          *      new event
1809          * Returns: 0 on success, -1 on failure (or if not supported)
1810          *
1811          * This function can be used to configure monitoring of signal strength
1812          * with the current AP. Whenever signal strength drops below the
1813          * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
1814          * should be generated assuming the signal strength has changed at
1815          * least %hysteresis from the previously indicated signal change event.
1816          */
1817         int (*signal_monitor)(void *priv, int threshold, int hysteresis);
1818
1819         /**
1820          * send_frame - Send IEEE 802.11 frame (testing use only)
1821          * @priv: Private driver interface data
1822          * @data: IEEE 802.11 frame with IEEE 802.11 header
1823          * @data_len: Size of the frame
1824          * @encrypt: Whether to encrypt the frame (if keys are set)
1825          * Returns: 0 on success, -1 on failure
1826          *
1827          * This function is only used for debugging purposes and is not
1828          * required to be implemented for normal operations.
1829          */
1830         int (*send_frame)(void *priv, const u8 *data, size_t data_len,
1831                           int encrypt);
1832
1833         /**
1834          * shared_freq - Get operating frequency of shared interface(s)
1835          * @priv: Private driver interface data
1836          * Returns: Operating frequency in MHz, 0 if no shared operation in
1837          * use, or -1 on failure
1838          *
1839          * This command can be used to request the current operating frequency
1840          * of any virtual interface that shares the same radio to provide
1841          * information for channel selection for other virtual interfaces.
1842          */
1843         int (*shared_freq)(void *priv);
1844
1845         /**
1846          * get_noa - Get current Notice of Absence attribute payload
1847          * @priv: Private driver interface data
1848          * @buf: Buffer for returning NoA
1849          * @buf_len: Buffer length in octets
1850          * Returns: Number of octets used in buf, 0 to indicate no NoA is being
1851          * advertized, or -1 on failure
1852          *
1853          * This function is used to fetch the current Notice of Absence
1854          * attribute value from GO.
1855          */
1856         int (*get_noa)(void *priv, u8 *buf, size_t buf_len);
1857
1858         /**
1859          * set_noa - Set Notice of Absence parameters for GO (testing)
1860          * @priv: Private driver interface data
1861          * @count: Count
1862          * @start: Start time in ms from next TBTT
1863          * @duration: Duration in ms
1864          * Returns: 0 on success or -1 on failure
1865          *
1866          * This function is used to set Notice of Absence parameters for GO. It
1867          * is used only for testing. To disable NoA, all parameters are set to
1868          * 0.
1869          */
1870         int (*set_noa)(void *priv, u8 count, int start, int duration);
1871
1872         /**
1873          * set_p2p_powersave - Set P2P power save options
1874          * @priv: Private driver interface data
1875          * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change
1876          * @opp_ps: 0 = disable, 1 = enable, -1 = no change
1877          * @ctwindow: 0.. = change (msec), -1 = no change
1878          * Returns: 0 on success or -1 on failure
1879          */
1880         int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps,
1881                                  int ctwindow);
1882 };
1883
1884
1885 /**
1886  * enum wpa_event_type - Event type for wpa_supplicant_event() calls
1887  */
1888 enum wpa_event_type {
1889         /**
1890          * EVENT_ASSOC - Association completed
1891          *
1892          * This event needs to be delivered when the driver completes IEEE
1893          * 802.11 association or reassociation successfully.
1894          * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
1895          * after this event has been generated. In addition, optional
1896          * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
1897          * more information about the association. If the driver interface gets
1898          * both of these events at the same time, it can also include the
1899          * assoc_info data in EVENT_ASSOC call.
1900          */
1901         EVENT_ASSOC,
1902
1903         /**
1904          * EVENT_DISASSOC - Association lost
1905          *
1906          * This event should be called when association is lost either due to
1907          * receiving deauthenticate or disassociate frame from the AP or when
1908          * sending either of these frames to the current AP. If the driver
1909          * supports separate deauthentication event, EVENT_DISASSOC should only
1910          * be used for disassociation and EVENT_DEAUTH for deauthentication.
1911          * In AP mode, union wpa_event_data::disassoc_info is required.
1912          */
1913         EVENT_DISASSOC,
1914
1915         /**
1916          * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
1917          *
1918          * This event must be delivered when a Michael MIC error is detected by
1919          * the local driver. Additional data for event processing is
1920          * provided with union wpa_event_data::michael_mic_failure. This
1921          * information is used to request new encyption key and to initiate
1922          * TKIP countermeasures if needed.
1923          */
1924         EVENT_MICHAEL_MIC_FAILURE,
1925
1926         /**
1927          * EVENT_SCAN_RESULTS - Scan results available
1928          *
1929          * This event must be called whenever scan results are available to be
1930          * fetched with struct wpa_driver_ops::get_scan_results(). This event
1931          * is expected to be used some time after struct wpa_driver_ops::scan()
1932          * is called. If the driver provides an unsolicited event when the scan
1933          * has been completed, this event can be used to trigger
1934          * EVENT_SCAN_RESULTS call. If such event is not available from the
1935          * driver, the driver wrapper code is expected to use a registered
1936          * timeout to generate EVENT_SCAN_RESULTS call after the time that the
1937          * scan is expected to be completed. Optional information about
1938          * completed scan can be provided with union wpa_event_data::scan_info.
1939          */
1940         EVENT_SCAN_RESULTS,
1941
1942         /**
1943          * EVENT_ASSOCINFO - Report optional extra information for association
1944          *
1945          * This event can be used to report extra association information for
1946          * EVENT_ASSOC processing. This extra information includes IEs from
1947          * association frames and Beacon/Probe Response frames in union
1948          * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
1949          * EVENT_ASSOC. Alternatively, the driver interface can include
1950          * assoc_info data in the EVENT_ASSOC call if it has all the
1951          * information available at the same point.
1952          */
1953         EVENT_ASSOCINFO,
1954
1955         /**
1956          * EVENT_INTERFACE_STATUS - Report interface status changes
1957          *
1958          * This optional event can be used to report changes in interface
1959          * status (interface added/removed) using union
1960          * wpa_event_data::interface_status. This can be used to trigger
1961          * wpa_supplicant to stop and re-start processing for the interface,
1962          * e.g., when a cardbus card is ejected/inserted.
1963          */
1964         EVENT_INTERFACE_STATUS,
1965
1966         /**
1967          * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
1968          *
1969          * This event can be used to inform wpa_supplicant about candidates for
1970          * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
1971          * for scan request (ap_scan=2 mode), this event is required for
1972          * pre-authentication. If wpa_supplicant is performing scan request
1973          * (ap_scan=1), this event is optional since scan results can be used
1974          * to add pre-authentication candidates. union
1975          * wpa_event_data::pmkid_candidate is used to report the BSSID of the
1976          * candidate and priority of the candidate, e.g., based on the signal
1977          * strength, in order to try to pre-authenticate first with candidates
1978          * that are most likely targets for re-association.
1979          *
1980          * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
1981          * on the candidate list. In addition, it can be called for the current
1982          * AP and APs that have existing PMKSA cache entries. wpa_supplicant
1983          * will automatically skip pre-authentication in cases where a valid
1984          * PMKSA exists. When more than one candidate exists, this event should
1985          * be generated once for each candidate.
1986          *
1987          * Driver will be notified about successful pre-authentication with
1988          * struct wpa_driver_ops::add_pmkid() calls.
1989          */
1990         EVENT_PMKID_CANDIDATE,
1991
1992         /**
1993          * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
1994          *
1995          * This event can be used to inform wpa_supplicant about desire to set
1996          * up secure direct link connection between two stations as defined in
1997          * IEEE 802.11e with a new PeerKey mechanism that replaced the original
1998          * STAKey negotiation. The caller will need to set peer address for the
1999          * event.
2000          */
2001         EVENT_STKSTART,
2002
2003         /**
2004          * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
2005          *
2006          * The driver is expected to report the received FT IEs from
2007          * FT authentication sequence from the AP. The FT IEs are included in
2008          * the extra information in union wpa_event_data::ft_ies.
2009          */
2010         EVENT_FT_RESPONSE,
2011
2012         /**
2013          * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
2014          *
2015          * The driver can use this event to inform wpa_supplicant about a STA
2016          * in an IBSS with which protected frames could be exchanged. This
2017          * event starts RSN authentication with the other STA to authenticate
2018          * the STA and set up encryption keys with it.
2019          */
2020         EVENT_IBSS_RSN_START,
2021
2022         /**
2023          * EVENT_AUTH - Authentication result
2024          *
2025          * This event should be called when authentication attempt has been
2026          * completed. This is only used if the driver supports separate
2027          * authentication step (struct wpa_driver_ops::authenticate).
2028          * Information about authentication result is included in
2029          * union wpa_event_data::auth.
2030          */
2031         EVENT_AUTH,
2032
2033         /**
2034          * EVENT_DEAUTH - Authentication lost
2035          *
2036          * This event should be called when authentication is lost either due
2037          * to receiving deauthenticate frame from the AP or when sending that
2038          * frame to the current AP.
2039          * In AP mode, union wpa_event_data::deauth_info is required.
2040          */
2041         EVENT_DEAUTH,
2042
2043         /**
2044          * EVENT_ASSOC_REJECT - Association rejected
2045          *
2046          * This event should be called when (re)association attempt has been
2047          * rejected by the AP. Information about authentication result is
2048          * included in union wpa_event_data::assoc_reject.
2049          */
2050         EVENT_ASSOC_REJECT,
2051
2052         /**
2053          * EVENT_AUTH_TIMED_OUT - Authentication timed out
2054          */
2055         EVENT_AUTH_TIMED_OUT,
2056
2057         /**
2058          * EVENT_ASSOC_TIMED_OUT - Association timed out
2059          */
2060         EVENT_ASSOC_TIMED_OUT,
2061
2062         /**
2063          * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
2064          */
2065         EVENT_FT_RRB_RX,
2066
2067         /**
2068          * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
2069          */
2070         EVENT_WPS_BUTTON_PUSHED,
2071
2072         /**
2073          * EVENT_TX_STATUS - Report TX status
2074          */
2075         EVENT_TX_STATUS,
2076
2077         /**
2078          * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
2079          */
2080         EVENT_RX_FROM_UNKNOWN,
2081
2082         /**
2083          * EVENT_RX_MGMT - Report RX of a management frame
2084          */
2085         EVENT_RX_MGMT,
2086
2087         /**
2088          * EVENT_RX_ACTION - Action frame received
2089          *
2090          * This event is used to indicate when an Action frame has been
2091          * received. Information about the received frame is included in
2092          * union wpa_event_data::rx_action.
2093          */
2094         EVENT_RX_ACTION,
2095
2096         /**
2097          * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
2098          *
2099          * This event is used to indicate when the driver has started the
2100          * requested remain-on-channel duration. Information about the
2101          * operation is included in union wpa_event_data::remain_on_channel.
2102          */
2103         EVENT_REMAIN_ON_CHANNEL,
2104
2105         /**
2106          * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
2107          *
2108          * This event is used to indicate when the driver has completed
2109          * remain-on-channel duration, i.e., may noot be available on the
2110          * requested channel anymore. Information about the
2111          * operation is included in union wpa_event_data::remain_on_channel.
2112          */
2113         EVENT_CANCEL_REMAIN_ON_CHANNEL,
2114
2115         /**
2116          * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
2117          *
2118          * This event is used only by driver_test.c and userspace MLME.
2119          */
2120         EVENT_MLME_RX,
2121
2122         /**
2123          * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
2124          *
2125          * This event is used to indicate when a Probe Request frame has been
2126          * received. Information about the received frame is included in
2127          * union wpa_event_data::rx_probe_req. The driver is required to report
2128          * these events only after successfully completed probe_req_report()
2129          * commands to request the events (i.e., report parameter is non-zero)
2130          * in station mode. In AP mode, Probe Request frames should always be
2131          * reported.
2132          */
2133         EVENT_RX_PROBE_REQ,
2134
2135         /**
2136          * EVENT_NEW_STA - New wired device noticed
2137          *
2138          * This event is used to indicate that a new device has been detected
2139          * in a network that does not use association-like functionality (i.e.,
2140          * mainly wired Ethernet). This can be used to start EAPOL
2141          * authenticator when receiving a frame from a device. The address of
2142          * the device is included in union wpa_event_data::new_sta.
2143          */
2144         EVENT_NEW_STA,
2145
2146         /**
2147          * EVENT_EAPOL_RX - Report received EAPOL frame
2148          *
2149          * When in AP mode with hostapd, this event is required to be used to
2150          * deliver the receive EAPOL frames from the driver. With
2151          * %wpa_supplicant, this event is used only if the send_eapol() handler
2152          * is used to override the use of l2_packet for EAPOL frame TX.
2153          */
2154         EVENT_EAPOL_RX,
2155
2156         /**
2157          * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
2158          *
2159          * This event is used to indicate changes in the signal strength
2160          * observed in frames received from the current AP if signal strength
2161          * monitoring has been enabled with signal_monitor().
2162          */
2163         EVENT_SIGNAL_CHANGE,
2164
2165         /**
2166          * EVENT_INTERFACE_ENABLED - Notify that interface was enabled
2167          *
2168          * This event is used to indicate that the interface was enabled after
2169          * having been previously disabled, e.g., due to rfkill.
2170          */
2171         EVENT_INTERFACE_ENABLED,
2172
2173         /**
2174          * EVENT_INTERFACE_DISABLED - Notify that interface was disabled
2175          *
2176          * This event is used to indicate that the interface was disabled,
2177          * e.g., due to rfkill.
2178          */
2179         EVENT_INTERFACE_DISABLED
2180 };
2181
2182
2183 /**
2184  * union wpa_event_data - Additional data for wpa_supplicant_event() calls
2185  */
2186 union wpa_event_data {
2187         /**
2188          * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
2189          *
2190          * This structure is optional for EVENT_ASSOC calls and required for
2191          * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
2192          * driver interface does not need to generate separate EVENT_ASSOCINFO
2193          * calls.
2194          */
2195         struct assoc_info {
2196                 /**
2197                  * req_ies - (Re)Association Request IEs
2198                  *
2199                  * If the driver generates WPA/RSN IE, this event data must be
2200                  * returned for WPA handshake to have needed information. If
2201                  * wpa_supplicant-generated WPA/RSN IE is used, this
2202                  * information event is optional.
2203                  *
2204                  * This should start with the first IE (fixed fields before IEs
2205                  * are not included).
2206                  */
2207                 const u8 *req_ies;
2208
2209                 /**
2210                  * req_ies_len - Length of req_ies in bytes
2211                  */
2212                 size_t req_ies_len;
2213
2214                 /**
2215                  * resp_ies - (Re)Association Response IEs
2216                  *
2217                  * Optional association data from the driver. This data is not
2218                  * required WPA, but may be useful for some protocols and as
2219                  * such, should be reported if this is available to the driver
2220                  * interface.
2221                  *
2222                  * This should start with the first IE (fixed fields before IEs
2223                  * are not included).
2224                  */
2225                 const u8 *resp_ies;
2226
2227                 /**
2228                  * resp_ies_len - Length of resp_ies in bytes
2229                  */
2230                 size_t resp_ies_len;
2231
2232                 /**
2233                  * beacon_ies - Beacon or Probe Response IEs
2234                  *
2235                  * Optional Beacon/ProbeResp data: IEs included in Beacon or
2236                  * Probe Response frames from the current AP (i.e., the one
2237                  * that the client just associated with). This information is
2238                  * used to update WPA/RSN IE for the AP. If this field is not
2239                  * set, the results from previous scan will be used. If no
2240                  * data for the new AP is found, scan results will be requested
2241                  * again (without scan request). At this point, the driver is
2242                  * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
2243                  * used).
2244                  *
2245                  * This should start with the first IE (fixed fields before IEs
2246                  * are not included).
2247                  */
2248                 const u8 *beacon_ies;
2249
2250                 /**
2251                  * beacon_ies_len - Length of beacon_ies */
2252                 size_t beacon_ies_len;
2253
2254                 /**
2255                  * freq - Frequency of the operational channel in MHz
2256                  */
2257                 unsigned int freq;
2258
2259                 /**
2260                  * addr - Station address (for AP mode)
2261                  */
2262                 const u8 *addr;
2263         } assoc_info;
2264
2265         /**
2266          * struct disassoc_info - Data for EVENT_DISASSOC events
2267          */
2268         struct disassoc_info {
2269                 /**
2270                  * addr - Station address (for AP mode)
2271                  */
2272                 const u8 *addr;
2273
2274                 /**
2275                  * reason_code - Reason Code (host byte order) used in
2276                  *      Deauthentication frame
2277                  */
2278                 u16 reason_code;
2279
2280                 /**
2281                  * ie - Optional IE(s) in Disassociation frame
2282                  */
2283                 const u8 *ie;
2284
2285                 /**
2286                  * ie_len - Length of ie buffer in octets
2287                  */
2288                 size_t ie_len;
2289         } disassoc_info;
2290
2291         /**
2292          * struct deauth_info - Data for EVENT_DEAUTH events
2293          */
2294         struct deauth_info {
2295                 /**
2296                  * addr - Station address (for AP mode)
2297                  */
2298                 const u8 *addr;
2299
2300                 /**
2301                  * reason_code - Reason Code (host byte order) used in
2302                  *      Deauthentication frame
2303                  */
2304                 u16 reason_code;
2305
2306                 /**
2307                  * ie - Optional IE(s) in Deauthentication frame
2308                  */
2309                 const u8 *ie;
2310
2311                 /**
2312                  * ie_len - Length of ie buffer in octets
2313                  */
2314                 size_t ie_len;
2315         } deauth_info;
2316
2317         /**
2318          * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
2319          */
2320         struct michael_mic_failure {
2321                 int unicast;
2322                 const u8 *src;
2323         } michael_mic_failure;
2324
2325         /**
2326          * struct interface_status - Data for EVENT_INTERFACE_STATUS
2327          */
2328         struct interface_status {
2329                 char ifname[100];
2330                 enum {
2331                         EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
2332                 } ievent;
2333         } interface_status;
2334
2335         /**
2336          * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
2337          */
2338         struct pmkid_candidate {
2339                 /** BSSID of the PMKID candidate */
2340                 u8 bssid[ETH_ALEN];
2341                 /** Smaller the index, higher the priority */
2342                 int index;
2343                 /** Whether RSN IE includes pre-authenticate flag */
2344                 int preauth;
2345         } pmkid_candidate;
2346
2347         /**
2348          * struct stkstart - Data for EVENT_STKSTART
2349          */
2350         struct stkstart {
2351                 u8 peer[ETH_ALEN];
2352         } stkstart;
2353
2354         /**
2355          * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
2356          *
2357          * During FT (IEEE 802.11r) authentication sequence, the driver is
2358          * expected to use this event to report received FT IEs (MDIE, FTIE,
2359          * RSN IE, TIE, possible resource request) to the supplicant. The FT
2360          * IEs for the next message will be delivered through the
2361          * struct wpa_driver_ops::update_ft_ies() callback.
2362          */
2363         struct ft_ies {
2364                 const u8 *ies;
2365                 size_t ies_len;
2366                 int ft_action;
2367                 u8 target_ap[ETH_ALEN];
2368                 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
2369                 const u8 *ric_ies;
2370                 /** Length of ric_ies buffer in octets */
2371                 size_t ric_ies_len;
2372         } ft_ies;
2373
2374         /**
2375          * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
2376          */
2377         struct ibss_rsn_start {
2378                 u8 peer[ETH_ALEN];
2379         } ibss_rsn_start;
2380
2381         /**
2382          * struct auth_info - Data for EVENT_AUTH events
2383          */
2384         struct auth_info {
2385                 u8 peer[ETH_ALEN];
2386                 u16 auth_type;
2387                 u16 status_code;
2388                 const u8 *ies;
2389                 size_t ies_len;
2390         } auth;
2391
2392         /**
2393          * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
2394          */
2395         struct assoc_reject {
2396                 /**
2397                  * resp_ies - (Re)Association Response IEs
2398                  *
2399                  * Optional association data from the driver. This data is not
2400                  * required WPA, but may be useful for some protocols and as
2401                  * such, should be reported if this is available to the driver
2402                  * interface.
2403                  *
2404                  * This should start with the first IE (fixed fields before IEs
2405                  * are not included).
2406                  */
2407                 u8 *resp_ies;
2408
2409                 /**
2410                  * resp_ies_len - Length of resp_ies in bytes
2411                  */
2412                 size_t resp_ies_len;
2413
2414                 /**
2415                  * status_code - Status Code from (Re)association Response
2416                  */
2417                 u16 status_code;
2418         } assoc_reject;
2419
2420         struct timeout_event {
2421                 u8 addr[ETH_ALEN];
2422         } timeout_event;
2423
2424         /**
2425          * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
2426          */
2427         struct ft_rrb_rx {
2428                 const u8 *src;
2429                 const u8 *data;
2430                 size_t data_len;
2431         } ft_rrb_rx;
2432
2433         /**
2434          * struct tx_status - Data for EVENT_TX_STATUS events
2435          */
2436         struct tx_status {
2437                 u16 type;
2438                 u16 stype;
2439                 const u8 *dst;
2440                 const u8 *data;
2441                 size_t data_len;
2442                 int ack;
2443         } tx_status;
2444
2445         /**
2446          * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
2447          */
2448         struct rx_from_unknown {
2449                 const u8 *frame;
2450                 size_t len;
2451         } rx_from_unknown;
2452
2453         /**
2454          * struct rx_mgmt - Data for EVENT_RX_MGMT events
2455          */
2456         struct rx_mgmt {
2457                 const u8 *frame;
2458                 size_t frame_len;
2459                 u32 datarate;
2460                 u32 ssi_signal;
2461         } rx_mgmt;
2462
2463         /**
2464          * struct rx_action - Data for EVENT_RX_ACTION events
2465          */
2466         struct rx_action {
2467                 /**
2468                  * da - Destination address of the received Action frame
2469                  */
2470                 const u8 *da;
2471
2472                 /**
2473                  * sa - Source address of the received Action frame
2474                  */
2475                 const u8 *sa;
2476
2477                 /**
2478                  * bssid - Address 3 of the received Action frame
2479                  */
2480                 const u8 *bssid;
2481
2482                 /**
2483                  * category - Action frame category
2484                  */
2485                 u8 category;
2486
2487                 /**
2488                  * data - Action frame body after category field
2489                  */
2490                 const u8 *data;
2491
2492                 /**
2493                  * len - Length of data in octets
2494                  */
2495                 size_t len;
2496
2497                 /**
2498                  * freq - Frequency (in MHz) on which the frame was received
2499                  */
2500                 int freq;
2501         } rx_action;
2502
2503         /**
2504          * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
2505          *
2506          * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
2507          */
2508         struct remain_on_channel {
2509                 /**
2510                  * freq - Channel frequency in MHz
2511                  */
2512                 unsigned int freq;
2513
2514                 /**
2515                  * duration - Duration to remain on the channel in milliseconds
2516                  */
2517                 unsigned int duration;
2518         } remain_on_channel;
2519
2520         /**
2521          * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
2522          * @aborted: Whether the scan was aborted
2523          * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
2524          * @num_freqs: Number of entries in freqs array
2525          * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
2526          *      SSID)
2527          * @num_ssids: Number of entries in ssids array
2528          */
2529         struct scan_info {
2530                 int aborted;
2531                 const int *freqs;
2532                 size_t num_freqs;
2533                 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
2534                 size_t num_ssids;
2535         } scan_info;
2536
2537         /**
2538          * struct mlme_rx - Data for EVENT_MLME_RX events
2539          */
2540         struct mlme_rx {
2541                 const u8 *buf;
2542                 size_t len;
2543                 int freq;
2544                 int channel;
2545                 int ssi;
2546         } mlme_rx;
2547
2548         /**
2549          * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
2550          */
2551         struct rx_probe_req {
2552                 /**
2553                  * sa - Source address of the received Probe Request frame
2554                  */
2555                 const u8 *sa;
2556
2557                 /**
2558                  * ie - IEs from the Probe Request body
2559                  */
2560                 const u8 *ie;
2561
2562                 /**
2563                  * ie_len - Length of ie buffer in octets
2564                  */
2565                 size_t ie_len;
2566         } rx_probe_req;
2567
2568         /**
2569          * struct new_sta - Data for EVENT_NEW_STA events
2570          */
2571         struct new_sta {
2572                 const u8 *addr;
2573         } new_sta;
2574
2575         /**
2576          * struct eapol_rx - Data for EVENT_EAPOL_RX events
2577          */
2578         struct eapol_rx {
2579                 const u8 *src;
2580                 const u8 *data;
2581                 size_t data_len;
2582         } eapol_rx;
2583
2584         /**
2585          * struct signal_change - Data for EVENT_SIGNAL_CHANGE events
2586          */
2587         struct signal_change {
2588                 int above_threshold;
2589                 int current_signal;
2590         } signal_change;
2591 };
2592
2593 /**
2594  * wpa_supplicant_event - Report a driver event for wpa_supplicant
2595  * @ctx: Context pointer (wpa_s); this is the ctx variable registered
2596  *      with struct wpa_driver_ops::init()
2597  * @event: event type (defined above)
2598  * @data: possible extra data for the event
2599  *
2600  * Driver wrapper code should call this function whenever an event is received
2601  * from the driver.
2602  */
2603 void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
2604                           union wpa_event_data *data);
2605
2606
2607 /*
2608  * The following inline functions are provided for convenience to simplify
2609  * event indication for some of the common events.
2610  */
2611
2612 static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie,
2613                                    size_t ielen)
2614 {
2615         union wpa_event_data event;
2616         os_memset(&event, 0, sizeof(event));
2617         event.assoc_info.req_ies = ie;
2618         event.assoc_info.req_ies_len = ielen;
2619         event.assoc_info.addr = addr;
2620         wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
2621 }
2622
2623 static inline void drv_event_disassoc(void *ctx, const u8 *addr)
2624 {
2625         union wpa_event_data event;
2626         os_memset(&event, 0, sizeof(event));
2627         event.disassoc_info.addr = addr;
2628         wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
2629 }
2630
2631 static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data,
2632                                       size_t data_len)
2633 {
2634         union wpa_event_data event;
2635         os_memset(&event, 0, sizeof(event));
2636         event.eapol_rx.src = src;
2637         event.eapol_rx.data = data;
2638         event.eapol_rx.data_len = data_len;
2639         wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
2640 }
2641
2642 #endif /* DRIVER_H */