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