2 * Driver interface definition
3 * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
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.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
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.
26 #define WPA_SUPPLICANT_DRIVER_VERSION 4
28 #include "common/defs.h"
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
36 * struct hostapd_channel_data - Channel information
38 struct hostapd_channel_data
{
40 * chan - Channel number (IEEE 802.11)
45 * freq - Frequency in MHz
50 * flag - Channel flags (HOSTAPD_CHAN_*)
55 * max_tx_power - maximum transmit power in dBm
61 * struct hostapd_hw_modes - Supported hardware mode information
63 struct hostapd_hw_modes
{
65 * mode - Hardware mode
67 enum hostapd_hw_mode mode
;
70 * num_channels - Number of entries in the channels array
75 * channels - Array of supported channels
77 struct hostapd_channel_data
*channels
;
80 * num_rates - Number of entries in the rates array
85 * rates - Array of supported rates in 100 kbps units
90 * ht_capab - HT (IEEE 802.11n) capabilities
95 * mcs_set - MCS (IEEE 802.11n) rate parameters
100 * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
106 #define IEEE80211_MODE_INFRA 0
107 #define IEEE80211_MODE_IBSS 1
108 #define IEEE80211_MODE_AP 2
110 #define IEEE80211_CAP_ESS 0x0001
111 #define IEEE80211_CAP_IBSS 0x0002
112 #define IEEE80211_CAP_PRIVACY 0x0010
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)
122 * struct wpa_scan_res - Scan result for a BSS/IBSS
123 * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
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
132 * @age: Age of the information in milliseconds (i.e., how many milliseconds
133 * ago the last Beacon or Probe Response frame was received)
134 * @ie_len: length of the following IE field in octets
135 * @beacon_ie_len: length of the following Beacon IE field in octets
137 * This structure is used as a generic format for scan results from the
138 * driver. Each driver interface implementation is responsible for converting
139 * the driver or OS specific scan results into this format.
141 * If the driver does not support reporting all IEs, the IE data structure is
142 * constructed of the IEs that are available. This field will also need to
143 * include SSID in IE format. All drivers are encouraged to be extended to
144 * report all IEs to make it easier to support future additions.
146 struct wpa_scan_res
{
158 size_t beacon_ie_len
;
160 * Followed by ie_len octets of IEs from Probe Response frame (or if
161 * the driver does not indicate source of IEs, these may also be from
162 * Beacon frame). After the first set of IEs, another set of IEs may
163 * follow (with beacon_ie_len octets of data) if the driver provides
169 * struct wpa_scan_results - Scan results
170 * @res: Array of pointers to allocated variable length scan result entries
171 * @num: Number of entries in the scan result array
173 struct wpa_scan_results
{
174 struct wpa_scan_res
**res
;
179 * struct wpa_interface_info - Network interface information
180 * @next: Pointer to the next interface or NULL if this is the last one
181 * @ifname: Interface name that can be used with init() or init2()
182 * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
184 * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
185 * is not an allocated copy, i.e., get_interfaces() caller will not free
188 struct wpa_interface_info
{
189 struct wpa_interface_info
*next
;
192 const char *drv_name
;
195 #define WPAS_MAX_SCAN_SSIDS 4
198 * struct wpa_driver_scan_params - Scan parameters
199 * Data for struct wpa_driver_ops::scan2().
201 struct wpa_driver_scan_params
{
203 * ssids - SSIDs to scan for
205 struct wpa_driver_scan_ssid
{
207 * ssid - specific SSID to scan for (ProbeReq)
208 * %NULL or zero-length SSID is used to indicate active scan
209 * with wildcard SSID.
213 * ssid_len: Length of the SSID in octets
216 } ssids
[WPAS_MAX_SCAN_SSIDS
];
219 * num_ssids - Number of entries in ssids array
220 * Zero indicates a request for a passive scan.
225 * extra_ies - Extra IE(s) to add into Probe Request or %NULL
230 * extra_ies_len - Length of extra_ies in octets
232 size_t extra_ies_len
;
235 * freqs - Array of frequencies to scan or %NULL for all frequencies
237 * The frequency is set in MHz. The array is zero-terminated.
242 * filter_ssids - Filter for reporting SSIDs
244 * This optional parameter can be used to request the driver wrapper to
245 * filter scan results to include only the specified SSIDs. %NULL
246 * indicates that no filtering is to be done. This can be used to
247 * reduce memory needs for scan results in environments that have large
248 * number of APs with different SSIDs.
250 * The driver wrapper is allowed to take this allocated buffer into its
251 * own use by setting the pointer to %NULL. In that case, the driver
252 * wrapper is responsible for freeing the buffer with os_free() once it
253 * is not needed anymore.
255 struct wpa_driver_scan_filter
{
261 * num_filter_ssids - Number of entries in filter_ssids array
263 size_t num_filter_ssids
;
267 * struct wpa_driver_auth_params - Authentication parameters
268 * Data for struct wpa_driver_ops::authenticate().
270 struct wpa_driver_auth_params
{
278 const u8
*wep_key
[4];
279 size_t wep_key_len
[4];
281 int local_state_change
;
285 * struct wpa_driver_associate_params - Association parameters
286 * Data for struct wpa_driver_ops::associate().
288 struct wpa_driver_associate_params
{
290 * bssid - BSSID of the selected AP
291 * This can be %NULL, if ap_scan=2 mode is used and the driver is
292 * responsible for selecting with which BSS to associate. */
296 * ssid - The selected SSID
301 * ssid_len - Length of the SSID (1..32)
306 * freq - Frequency of the channel the selected AP is using
307 * Frequency that the selected AP is using (in MHz as
308 * reported in the scan results)
313 * wpa_ie - WPA information element for (Re)Association Request
314 * WPA information element to be included in (Re)Association
315 * Request (including information element id and length). Use
316 * of this WPA IE is optional. If the driver generates the WPA
317 * IE, it can use pairwise_suite, group_suite, and
318 * key_mgmt_suite to select proper algorithms. In this case,
319 * the driver has to notify wpa_supplicant about the used WPA
320 * IE by generating an event that the interface code will
321 * convert into EVENT_ASSOCINFO data (see below).
323 * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
324 * instead. The driver can determine which version is used by
325 * looking at the first byte of the IE (0xdd for WPA, 0x30 for
328 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
333 * wpa_ie_len - length of the wpa_ie
338 * pairwise_suite - Selected pairwise cipher suite
340 * This is usually ignored if @wpa_ie is used.
342 enum wpa_cipher pairwise_suite
;
345 * group_suite - Selected group cipher suite
347 * This is usually ignored if @wpa_ie is used.
349 enum wpa_cipher group_suite
;
352 * key_mgmt_suite - Selected key management suite
354 * This is usually ignored if @wpa_ie is used.
356 enum wpa_key_mgmt key_mgmt_suite
;
359 * auth_alg - Allowed authentication algorithms
360 * Bit field of WPA_AUTH_ALG_*
365 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
370 * wep_key - WEP keys for static WEP configuration
372 const u8
*wep_key
[4];
375 * wep_key_len - WEP key length for static WEP configuration
377 size_t wep_key_len
[4];
380 * wep_tx_keyidx - WEP TX key index for static WEP configuration
385 * mgmt_frame_protection - IEEE 802.11w management frame protection
387 enum mfp_options mgmt_frame_protection
;
390 * ft_ies - IEEE 802.11r / FT information elements
391 * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
392 * for fast transition, this parameter is set to include the IEs that
393 * are to be sent in the next FT Authentication Request message.
394 * update_ft_ies() handler is called to update the IEs for further
395 * FT messages in the sequence.
397 * The driver should use these IEs only if the target AP is advertising
398 * the same mobility domain as the one included in the MDIE here.
400 * In ap_scan=2 mode, the driver can use these IEs when moving to a new
401 * AP after the initial association. These IEs can only be used if the
402 * target AP is advertising support for FT and is using the same MDIE
403 * and SSID as the current AP.
405 * The driver is responsible for reporting the FT IEs received from the
406 * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
407 * type. update_ft_ies() handler will then be called with the FT IEs to
408 * include in the next frame in the authentication sequence.
413 * ft_ies_len - Length of ft_ies in bytes
418 * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
420 * This value is provided to allow the driver interface easier access
421 * to the current mobility domain. This value is set to %NULL if no
422 * mobility domain is currently active.
427 * passphrase - RSN passphrase for PSK
429 * This value is made available only for WPA/WPA2-Personal (PSK) and
430 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
431 * the 8..63 character ASCII passphrase, if available. Please note that
432 * this can be %NULL if passphrase was not used to generate the PSK. In
433 * that case, the psk field must be used to fetch the PSK.
435 const char *passphrase
;
438 * psk - RSN PSK (alternative for passphrase for PSK)
440 * This value is made available only for WPA/WPA2-Personal (PSK) and
441 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
442 * the 32-octet (256-bit) PSK, if available. The driver wrapper should
443 * be prepared to handle %NULL value as an error.
448 * drop_unencrypted - Enable/disable unencrypted frame filtering
450 * Configure the driver to drop all non-EAPOL frames (both receive and
451 * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
452 * still be allowed for key negotiation.
454 int drop_unencrypted
;
457 * prev_bssid - Previously used BSSID in this ESS
459 * When not %NULL, this is a request to use reassociation instead of
462 const u8
*prev_bssid
;
466 * struct wpa_driver_capa - Driver capability information
468 struct wpa_driver_capa
{
469 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
470 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
471 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
472 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
473 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
474 #define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
475 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
476 unsigned int key_mgmt
;
478 #define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
479 #define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
480 #define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
481 #define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
484 #define WPA_DRIVER_AUTH_OPEN 0x00000001
485 #define WPA_DRIVER_AUTH_SHARED 0x00000002
486 #define WPA_DRIVER_AUTH_LEAP 0x00000004
489 /* Driver generated WPA/RSN IE */
490 #define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
491 /* Driver needs static WEP key setup after association command */
492 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
493 #define WPA_DRIVER_FLAGS_USER_SPACE_MLME 0x00000004
494 /* Driver takes care of RSN 4-way handshake internally; PMK is configured with
495 * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
496 #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
497 #define WPA_DRIVER_FLAGS_WIRED 0x00000010
498 /* Driver provides separate commands for authentication and association (SME in
499 * wpa_supplicant). */
500 #define WPA_DRIVER_FLAGS_SME 0x00000020
501 /* Driver supports AP mode */
502 #define WPA_DRIVER_FLAGS_AP 0x00000040
503 /* Driver needs static WEP key setup after association has been completed */
504 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080
510 * max_remain_on_chan - Maximum remain-on-channel duration in msec
512 unsigned int max_remain_on_chan
;
518 struct hostap_sta_driver_data
{
519 unsigned long rx_packets
, tx_packets
, rx_bytes
, tx_bytes
;
520 unsigned long current_tx_rate
;
521 unsigned long inactive_msec
;
523 unsigned long num_ps_buf_frames
;
524 unsigned long tx_retry_failed
;
525 unsigned long tx_retry_count
;
530 struct hostapd_sta_add_params
{
534 const u8
*supp_rates
;
535 size_t supp_rates_len
;
537 const struct ieee80211_ht_capabilities
*ht_capabilities
;
540 struct hostapd_freq_params
{
545 int sec_channel_offset
; /* 0 = HT40 disabled, -1 = HT40 enabled,
546 * secondary channel below primary, 1 = HT40
547 * enabled, secondary channel above primary */
550 enum wpa_driver_if_type
{
552 * WPA_IF_STATION - Station mode interface
557 * WPA_IF_AP_VLAN - AP mode VLAN interface
559 * This interface shares its address and Beacon frame with the main
565 * WPA_IF_AP_BSS - AP mode BSS interface
567 * This interface has its own address and Beacon frame.
572 struct wpa_init_params
{
577 const char *test_socket
;
578 int use_pae_group_addr
;
582 u8
*own_addr
; /* buffer for writing own MAC address */
586 struct wpa_bss_params
{
587 /** Interface name (for multi-SSID/VLAN support) */
589 /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
600 #define WPA_STA_AUTHORIZED BIT(0)
601 #define WPA_STA_WMM BIT(1)
602 #define WPA_STA_SHORT_PREAMBLE BIT(2)
603 #define WPA_STA_MFP BIT(3)
606 * struct wpa_driver_ops - Driver interface API definition
608 * This structure defines the API that each driver interface needs to implement
609 * for core wpa_supplicant code. All driver specific functionality is captured
612 struct wpa_driver_ops
{
613 /** Name of the driver interface */
615 /** One line description of the driver interface */
619 * get_bssid - Get the current BSSID
620 * @priv: private driver interface data
621 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
623 * Returns: 0 on success, -1 on failure
625 * Query kernel driver for the current BSSID and copy it to bssid.
626 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
629 int (*get_bssid
)(void *priv
, u8
*bssid
);
632 * get_ssid - Get the current SSID
633 * @priv: private driver interface data
634 * @ssid: buffer for SSID (at least 32 bytes)
636 * Returns: Length of the SSID on success, -1 on failure
638 * Query kernel driver for the current SSID and copy it to ssid.
639 * Returning zero is recommended if the STA is not associated.
641 * Note: SSID is an array of octets, i.e., it is not nul terminated and
642 * can, at least in theory, contain control characters (including nul)
643 * and as such, should be processed as binary data, not a printable
646 int (*get_ssid
)(void *priv
, u8
*ssid
);
649 * set_key - Configure encryption key
650 * @ifname: Interface name (for multi-SSID/VLAN support)
651 * @priv: private driver interface data
652 * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
653 * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
654 * %WPA_ALG_NONE clears the key.
655 * @addr: address of the peer STA or ff:ff:ff:ff:ff:ff for
656 * broadcast/default keys
657 * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
659 * @set_tx: configure this key as the default Tx key (only used when
660 * driver does not support separate unicast/individual key)
661 * @seq: sequence number/packet number, seq_len octets, the next
662 * packet number to be used for in replay protection; configured
663 * for Rx keys (in most cases, this is only used with broadcast
664 * keys and set to zero for unicast keys)
665 * @seq_len: length of the seq, depends on the algorithm:
666 * TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
667 * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
669 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
670 * TKIP: 32, CCMP: 16, IGTK: 16)
672 * Returns: 0 on success, -1 on failure
674 * Configure the given key for the kernel driver. If the driver
675 * supports separate individual keys (4 default keys + 1 individual),
676 * addr can be used to determine whether the key is default or
677 * individual. If only 4 keys are supported, the default key with key
678 * index 0 is used as the individual key. STA must be configured to use
679 * it as the default Tx key (set_tx is set) and accept Rx for all the
680 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
681 * broadcast keys, so key index 0 is available for this kind of
684 * Please note that TKIP keys include separate TX and RX MIC keys and
685 * some drivers may expect them in different order than wpa_supplicant
686 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
687 * will trigger Michael MIC errors. This can be fixed by changing the
688 * order of MIC keys by swapping bytes 16..23 and 24..31 of the key
689 * in driver_*.c set_key() implementation; see driver_ndis.c for an
690 * example of how this can be done.
692 int (*set_key
)(const char *ifname
, void *priv
, enum wpa_alg alg
,
693 const u8
*addr
, int key_idx
, int set_tx
,
694 const u8
*seq
, size_t seq_len
,
695 const u8
*key
, size_t key_len
);
698 * init - Initialize driver interface
699 * @ctx: context to be used when calling wpa_supplicant functions,
700 * e.g., wpa_supplicant_event()
701 * @ifname: interface name, e.g., wlan0
703 * Returns: Pointer to private data, %NULL on failure
705 * Initialize driver interface, including event processing for kernel
706 * driver events (e.g., associated, scan results, Michael MIC failure).
707 * This function can allocate a private configuration data area for
708 * @ctx, file descriptor, interface name, etc. information that may be
709 * needed in future driver operations. If this is not used, non-NULL
710 * value will need to be returned because %NULL is used to indicate
711 * failure. The returned value will be used as 'void *priv' data for
712 * all other driver_ops functions.
714 * The main event loop (eloop.c) of wpa_supplicant can be used to
715 * register callback for read sockets (eloop_register_read_sock()).
717 * See below for more information about events and
718 * wpa_supplicant_event() function.
720 void * (*init
)(void *ctx
, const char *ifname
);
723 * deinit - Deinitialize driver interface
724 * @priv: private driver interface data from init()
726 * Shut down driver interface and processing of driver events. Free
727 * private data buffer if one was allocated in init() handler.
729 void (*deinit
)(void *priv
);
732 * set_param - Set driver configuration parameters
733 * @priv: private driver interface data from init()
734 * @param: driver specific configuration parameters
736 * Returns: 0 on success, -1 on failure
738 * Optional handler for notifying driver interface about configuration
739 * parameters (driver_param).
741 int (*set_param
)(void *priv
, const char *param
);
744 * set_countermeasures - Enable/disable TKIP countermeasures
745 * @priv: private driver interface data
746 * @enabled: 1 = countermeasures enabled, 0 = disabled
748 * Returns: 0 on success, -1 on failure
750 * Configure TKIP countermeasures. When these are enabled, the driver
751 * should drop all received and queued frames that are using TKIP.
753 int (*set_countermeasures
)(void *priv
, int enabled
);
756 * deauthenticate - Request driver to deauthenticate
757 * @priv: private driver interface data
758 * @addr: peer address (BSSID of the AP)
759 * @reason_code: 16-bit reason code to be sent in the deauthentication
762 * Returns: 0 on success, -1 on failure
764 int (*deauthenticate
)(void *priv
, const u8
*addr
, int reason_code
);
767 * disassociate - Request driver to disassociate
768 * @priv: private driver interface data
769 * @addr: peer address (BSSID of the AP)
770 * @reason_code: 16-bit reason code to be sent in the disassociation
773 * Returns: 0 on success, -1 on failure
775 int (*disassociate
)(void *priv
, const u8
*addr
, int reason_code
);
778 * associate - Request driver to associate
779 * @priv: private driver interface data
780 * @params: association parameters
782 * Returns: 0 on success, -1 on failure
784 int (*associate
)(void *priv
,
785 struct wpa_driver_associate_params
*params
);
788 * add_pmkid - Add PMKSA cache entry to the driver
789 * @priv: private driver interface data
790 * @bssid: BSSID for the PMKSA cache entry
791 * @pmkid: PMKID for the PMKSA cache entry
793 * Returns: 0 on success, -1 on failure
795 * This function is called when a new PMK is received, as a result of
796 * either normal authentication or RSN pre-authentication.
798 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
799 * associate(), add_pmkid() can be used to add new PMKSA cache entries
800 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
801 * driver_ops function does not need to be implemented. Likewise, if
802 * the driver does not support WPA, this function is not needed.
804 int (*add_pmkid
)(void *priv
, const u8
*bssid
, const u8
*pmkid
);
807 * remove_pmkid - Remove PMKSA cache entry to the driver
808 * @priv: private driver interface data
809 * @bssid: BSSID for the PMKSA cache entry
810 * @pmkid: PMKID for the PMKSA cache entry
812 * Returns: 0 on success, -1 on failure
814 * This function is called when the supplicant drops a PMKSA cache
815 * entry for any reason.
817 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
818 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
819 * between the driver and wpa_supplicant. If the driver uses wpa_ie
820 * from wpa_supplicant, this driver_ops function does not need to be
821 * implemented. Likewise, if the driver does not support WPA, this
822 * function is not needed.
824 int (*remove_pmkid
)(void *priv
, const u8
*bssid
, const u8
*pmkid
);
827 * flush_pmkid - Flush PMKSA cache
828 * @priv: private driver interface data
830 * Returns: 0 on success, -1 on failure
832 * This function is called when the supplicant drops all PMKSA cache
833 * entries for any reason.
835 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
836 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
837 * between the driver and wpa_supplicant. If the driver uses wpa_ie
838 * from wpa_supplicant, this driver_ops function does not need to be
839 * implemented. Likewise, if the driver does not support WPA, this
840 * function is not needed.
842 int (*flush_pmkid
)(void *priv
);
845 * get_capa - Get driver capabilities
846 * @priv: private driver interface data
848 * Returns: 0 on success, -1 on failure
850 * Get driver/firmware/hardware capabilities.
852 int (*get_capa
)(void *priv
, struct wpa_driver_capa
*capa
);
855 * poll - Poll driver for association information
856 * @priv: private driver interface data
858 * This is an option callback that can be used when the driver does not
859 * provide event mechanism for association events. This is called when
860 * receiving WPA EAPOL-Key messages that require association
861 * information. The driver interface is supposed to generate associnfo
862 * event before returning from this callback function. In addition, the
863 * driver interface should generate an association event after having
864 * sent out associnfo.
866 void (*poll
)(void *priv
);
869 * get_ifname - Get interface name
870 * @priv: private driver interface data
872 * Returns: Pointer to the interface name. This can differ from the
873 * interface name used in init() call. Init() is called first.
875 * This optional function can be used to allow the driver interface to
876 * replace the interface name with something else, e.g., based on an
877 * interface mapping from a more descriptive name.
879 const char * (*get_ifname
)(void *priv
);
882 * get_mac_addr - Get own MAC address
883 * @priv: private driver interface data
885 * Returns: Pointer to own MAC address or %NULL on failure
887 * This optional function can be used to get the own MAC address of the
888 * device from the driver interface code. This is only needed if the
889 * l2_packet implementation for the OS does not provide easy access to
891 const u8
* (*get_mac_addr
)(void *priv
);
894 * send_eapol - Optional function for sending EAPOL packets
895 * @priv: private driver interface data
896 * @dest: Destination MAC address
898 * @data: EAPOL packet starting with IEEE 802.1X header
899 * @data_len: Size of the EAPOL packet
901 * Returns: 0 on success, -1 on failure
903 * This optional function can be used to override l2_packet operations
904 * with driver specific functionality. If this function pointer is set,
905 * l2_packet module is not used at all and the driver interface code is
906 * responsible for receiving and sending all EAPOL packets. The
907 * received EAPOL packets are sent to core code with EVENT_EAPOL_RX
908 * event. The driver interface is required to implement get_mac_addr()
909 * handler if send_eapol() is used.
911 int (*send_eapol
)(void *priv
, const u8
*dest
, u16 proto
,
912 const u8
*data
, size_t data_len
);
915 * set_operstate - Sets device operating state to DORMANT or UP
916 * @priv: private driver interface data
917 * @state: 0 = dormant, 1 = up
918 * Returns: 0 on success, -1 on failure
920 * This is an optional function that can be used on operating systems
921 * that support a concept of controlling network device state from user
922 * space applications. This function, if set, gets called with
923 * state = 1 when authentication has been completed and with state = 0
924 * when connection is lost.
926 int (*set_operstate
)(void *priv
, int state
);
929 * mlme_setprotection - MLME-SETPROTECTION.request primitive
930 * @priv: Private driver interface data
931 * @addr: Address of the station for which to set protection (may be
932 * %NULL for group keys)
933 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
934 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
935 * Returns: 0 on success, -1 on failure
937 * This is an optional function that can be used to set the driver to
938 * require protection for Tx and/or Rx frames. This uses the layer
939 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
940 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
941 * set protection operation; instead, they set protection implicitly
942 * based on configured keys.
944 int (*mlme_setprotection
)(void *priv
, const u8
*addr
, int protect_type
,
948 * get_hw_feature_data - Get hardware support data (channels and rates)
949 * @priv: Private driver interface data
950 * @num_modes: Variable for returning the number of returned modes
951 * flags: Variable for returning hardware feature flags
952 * Returns: Pointer to allocated hardware data on success or %NULL on
953 * failure. Caller is responsible for freeing this.
955 * This function is only needed for drivers that export MLME
956 * (management frame processing) to %wpa_supplicant or hostapd.
958 struct hostapd_hw_modes
* (*get_hw_feature_data
)(void *priv
,
963 * set_channel - Set channel
964 * @priv: Private driver interface data
965 * @phymode: HOSTAPD_MODE_IEEE80211B, ..
966 * @chan: IEEE 802.11 channel number
967 * @freq: Frequency of the channel in MHz
968 * Returns: 0 on success, -1 on failure
970 * This function is only needed for drivers that export MLME
971 * (management frame processing) to wpa_supplicant.
973 int (*set_channel
)(void *priv
, enum hostapd_hw_mode phymode
, int chan
,
977 * set_ssid - Set SSID
978 * @priv: Private driver interface data
980 * @ssid_len: SSID length
981 * Returns: 0 on success, -1 on failure
983 * This function is only needed for drivers that export MLME
984 * (management frame processing) to wpa_supplicant.
986 int (*set_ssid
)(void *priv
, const u8
*ssid
, size_t ssid_len
);
989 * set_bssid - Set BSSID
990 * @priv: Private driver interface data
992 * Returns: 0 on success, -1 on failure
994 * This function is only needed for drivers that export MLME
995 * (management frame processing) to wpa_supplicant.
997 int (*set_bssid
)(void *priv
, const u8
*bssid
);
1000 * set_associd - Set association ID
1001 * @priv: Private driver interface data
1002 * @aid: Association ID
1003 * Returns: 0 on success, -1 on failure
1005 * This function is only needed for drivers that export MLME
1006 * (management frame processing) to wpa_supplicant.
1008 int (*set_associd
)(void *priv
, u16 aid
);
1011 * set_capabilities - Set negotiated capabilities
1012 * @priv: Private driver interface data
1013 * @capab: capabilities
1014 * Returns: 0 on success, -1 on failure
1016 * This function is only needed for drivers that export MLME
1017 * (management frame processing) to wpa_supplicant.
1019 int (*set_capabilities
)(void *priv
, u16 capab
);
1022 * send_mlme - Send management frame from MLME
1023 * @priv: Private driver interface data
1024 * @data: IEEE 802.11 management frame with IEEE 802.11 header
1025 * @data_len: Size of the management frame
1026 * Returns: 0 on success, -1 on failure
1028 * This function is only needed for drivers that export MLME
1029 * (management frame processing) to wpa_supplicant.
1031 int (*send_mlme
)(void *priv
, const u8
*data
, size_t data_len
);
1034 * mlme_add_sta - Add a STA entry into the driver/netstack
1035 * @priv: Private driver interface data
1036 * @addr: MAC address of the STA (e.g., BSSID of the AP)
1037 * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11
1038 * format (one octet per rate, 1 = 0.5 Mbps)
1039 * @supp_rates_len: Number of entries in supp_rates
1040 * Returns: 0 on success, -1 on failure
1042 * This function is only needed for drivers that export MLME
1043 * (management frame processing) to wpa_supplicant. When the MLME code
1044 * completes association with an AP, this function is called to
1045 * configure the driver/netstack with a STA entry for data frame
1046 * processing (TX rate control, encryption/decryption).
1048 int (*mlme_add_sta
)(void *priv
, const u8
*addr
, const u8
*supp_rates
,
1049 size_t supp_rates_len
);
1052 * mlme_remove_sta - Remove a STA entry from the driver/netstack
1053 * @priv: Private driver interface data
1054 * @addr: MAC address of the STA (e.g., BSSID of the AP)
1055 * Returns: 0 on success, -1 on failure
1057 * This function is only needed for drivers that export MLME
1058 * (management frame processing) to wpa_supplicant.
1060 int (*mlme_remove_sta
)(void *priv
, const u8
*addr
);
1063 * update_ft_ies - Update FT (IEEE 802.11r) IEs
1064 * @priv: Private driver interface data
1065 * @md: Mobility domain (2 octets) (also included inside ies)
1066 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
1067 * @ies_len: Length of FT IEs in bytes
1068 * Returns: 0 on success, -1 on failure
1070 * The supplicant uses this callback to let the driver know that keying
1071 * material for FT is available and that the driver can use the
1072 * provided IEs in the next message in FT authentication sequence.
1074 * This function is only needed for driver that support IEEE 802.11r
1075 * (Fast BSS Transition).
1077 int (*update_ft_ies
)(void *priv
, const u8
*md
, const u8
*ies
,
1081 * send_ft_action - Send FT Action frame (IEEE 802.11r)
1082 * @priv: Private driver interface data
1083 * @action: Action field value
1084 * @target_ap: Target AP address
1085 * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
1086 * @ies_len: Length of FT IEs in bytes
1087 * Returns: 0 on success, -1 on failure
1089 * The supplicant uses this callback to request the driver to transmit
1090 * an FT Action frame (action category 6) for over-the-DS fast BSS
1093 int (*send_ft_action
)(void *priv
, u8 action
, const u8
*target_ap
,
1094 const u8
*ies
, size_t ies_len
);
1097 * get_scan_results2 - Fetch the latest scan results
1098 * @priv: private driver interface data
1100 * Returns: Allocated buffer of scan results (caller is responsible for
1101 * freeing the data structure) on success, NULL on failure
1103 struct wpa_scan_results
* (*get_scan_results2
)(void *priv
);
1106 * set_country - Set country
1107 * @priv: Private driver interface data
1108 * @alpha2: country to which to switch to
1109 * Returns: 0 on success, -1 on failure
1111 * This function is for drivers which support some form
1112 * of setting a regulatory domain.
1114 int (*set_country
)(void *priv
, const char *alpha2
);
1117 * global_init - Global driver initialization
1118 * Returns: Pointer to private data (global), %NULL on failure
1120 * This optional function is called to initialize the driver wrapper
1121 * for global data, i.e., data that applies to all interfaces. If this
1122 * function is implemented, global_deinit() will also need to be
1123 * implemented to free the private data. The driver will also likely
1124 * use init2() function instead of init() to get the pointer to global
1125 * data available to per-interface initializer.
1127 void * (*global_init
)(void);
1130 * global_deinit - Global driver deinitialization
1131 * @priv: private driver global data from global_init()
1133 * Terminate any global driver related functionality and free the
1134 * global data structure.
1136 void (*global_deinit
)(void *priv
);
1139 * init2 - Initialize driver interface (with global data)
1140 * @ctx: context to be used when calling wpa_supplicant functions,
1141 * e.g., wpa_supplicant_event()
1142 * @ifname: interface name, e.g., wlan0
1143 * @global_priv: private driver global data from global_init()
1144 * Returns: Pointer to private data, %NULL on failure
1146 * This function can be used instead of init() if the driver wrapper
1149 void * (*init2
)(void *ctx
, const char *ifname
, void *global_priv
);
1152 * get_interfaces - Get information about available interfaces
1153 * @global_priv: private driver global data from global_init()
1154 * Returns: Allocated buffer of interface information (caller is
1155 * responsible for freeing the data structure) on success, NULL on
1158 struct wpa_interface_info
* (*get_interfaces
)(void *global_priv
);
1161 * scan2 - Request the driver to initiate scan
1162 * @priv: private driver interface data
1163 * @params: Scan parameters
1165 * Returns: 0 on success, -1 on failure
1167 * Once the scan results are ready, the driver should report scan
1168 * results event for wpa_supplicant which will eventually request the
1169 * results with wpa_driver_get_scan_results2().
1171 int (*scan2
)(void *priv
, struct wpa_driver_scan_params
*params
);
1174 * authenticate - Request driver to authenticate
1175 * @priv: private driver interface data
1176 * @params: authentication parameters
1177 * Returns: 0 on success, -1 on failure
1179 * This is an optional function that can be used with drivers that
1180 * support separate authentication and association steps, i.e., when
1181 * wpa_supplicant can act as the SME. If not implemented, associate()
1182 * function is expected to take care of IEEE 802.11 authentication,
1185 int (*authenticate
)(void *priv
,
1186 struct wpa_driver_auth_params
*params
);
1189 * set_beacon - Set Beacon frame template
1190 * @priv: Private driver interface data
1191 * @head: Beacon head from IEEE 802.11 header to IEs before TIM IE
1192 * @head_len: Length of the head buffer in octets
1193 * @tail: Beacon tail following TIM IE
1194 * @tail_len: Length of the tail buffer in octets
1195 * @dtim_period: DTIM period
1196 * @beacon_int: Beacon interval
1197 * Returns: 0 on success, -1 on failure
1199 * This function is used to configure Beacon template for the driver in
1200 * AP mode. The driver is responsible for building the full Beacon
1201 * frame by concatenating the head part with TIM IE generated by the
1202 * driver/firmware and finishing with the tail part.
1204 int (*set_beacon
)(void *priv
, const u8
*head
, size_t head_len
,
1205 const u8
*tail
, size_t tail_len
, int dtim_period
,
1209 * hapd_init - Initialize driver interface (hostapd only)
1210 * @hapd: Pointer to hostapd context
1211 * @params: Configuration for the driver wrapper
1212 * Returns: Pointer to private data, %NULL on failure
1214 * This function is used instead of init() or init2() when the driver
1215 * wrapper is used withh hostapd.
1217 void * (*hapd_init
)(struct hostapd_data
*hapd
,
1218 struct wpa_init_params
*params
);
1221 * hapd_deinit - Deinitialize driver interface (hostapd only)
1222 * @priv: Private driver interface data from hapd_init()
1224 void (*hapd_deinit
)(void *priv
);
1227 * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
1228 * @priv: Private driver interface data
1229 * @params: BSS parameters
1230 * Returns: 0 on success, -1 on failure
1232 * This is an optional function to configure the kernel driver to
1233 * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
1234 * can be left undefined (set to %NULL) if IEEE 802.1X support is
1235 * always enabled and the driver uses set_beacon() to set WPA/RSN IE
1236 * for Beacon frames.
1238 int (*set_ieee8021x
)(void *priv
, struct wpa_bss_params
*params
);
1241 * set_privacy - Enable/disable privacy (AP only)
1242 * @priv: Private driver interface data
1243 * @enabled: 1 = privacy enabled, 0 = disabled
1244 * Returns: 0 on success, -1 on failure
1246 * This is an optional function to configure privacy field in the
1247 * kernel driver for Beacon frames. This can be left undefined (set to
1248 * %NULL) if the driver uses the Beacon template from set_beacon().
1250 int (*set_privacy
)(void *priv
, int enabled
);
1253 * get_seqnum - Fetch the current TSC/packet number (AP only)
1254 * @ifname: The interface name (main or virtual)
1255 * @priv: Private driver interface data
1256 * @addr: MAC address of the station or %NULL for group keys
1258 * @seq: Buffer for returning the latest used TSC/packet number
1259 * Returns: 0 on success, -1 on failure
1261 * This function is used to fetch the last used TSC/packet number for
1262 * a TKIP, CCMP, or BIP/IGTK key. It is mainly used with group keys, so
1263 * there is no strict requirement on implementing support for unicast
1264 * keys (i.e., addr != %NULL).
1266 int (*get_seqnum
)(const char *ifname
, void *priv
, const u8
*addr
,
1270 * flush - Flush all associated stations (AP only)
1271 * @priv: Private driver interface data
1272 * Returns: 0 on success, -1 on failure
1274 * This function requests the driver to disassociate all associated
1275 * stations. This function does not need to be implemented if the
1276 * driver does not process association frames internally.
1278 int (*flush
)(void *priv
);
1281 * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
1282 * @priv: Private driver interface data
1283 * @elem: Information elements
1284 * @elem_len: Length of the elem buffer in octets
1285 * Returns: 0 on success, -1 on failure
1287 * This is an optional function to add information elements in the
1288 * kernel driver for Beacon and Probe Response frames. This can be left
1289 * undefined (set to %NULL) if the driver uses the Beacon template from
1292 int (*set_generic_elem
)(void *priv
, const u8
*elem
, size_t elem_len
);
1295 * read_sta_data - Fetch station data (AP only)
1296 * @priv: Private driver interface data
1297 * @data: Buffer for returning station information
1298 * @addr: MAC address of the station
1299 * Returns: 0 on success, -1 on failure
1301 int (*read_sta_data
)(void *priv
, struct hostap_sta_driver_data
*data
,
1305 * hapd_send_eapol - Send an EAPOL packet (AP only)
1306 * @priv: private driver interface data
1307 * @addr: Destination MAC address
1308 * @data: EAPOL packet starting with IEEE 802.1X header
1309 * @data_len: Length of the EAPOL packet in octets
1310 * @encrypt: Whether the frame should be encrypted
1311 * @own_addr: Source MAC address
1313 * Returns: 0 on success, -1 on failure
1315 int (*hapd_send_eapol
)(void *priv
, const u8
*addr
, const u8
*data
,
1316 size_t data_len
, int encrypt
,
1317 const u8
*own_addr
);
1320 * sta_deauth - Deauthenticate a station (AP only)
1321 * @priv: Private driver interface data
1322 * @own_addr: Source address and BSSID for the Deauthentication frame
1323 * @addr: MAC address of the station to deauthenticate
1324 * @reason: Reason code for the Deauthentiation frame
1325 * Returns: 0 on success, -1 on failure
1327 * This function requests a specific station to be deauthenticated and
1328 * a Deauthentication frame to be sent to it.
1330 int (*sta_deauth
)(void *priv
, const u8
*own_addr
, const u8
*addr
,
1334 * sta_disassoc - Disassociate a station (AP only)
1335 * @priv: Private driver interface data
1336 * @own_addr: Source address and BSSID for the Disassociation frame
1337 * @addr: MAC address of the station to disassociate
1338 * @reason: Reason code for the Disassociation frame
1339 * Returns: 0 on success, -1 on failure
1341 * This function requests a specific station to be disassociated and
1342 * a Disassociation frame to be sent to it.
1344 int (*sta_disassoc
)(void *priv
, const u8
*own_addr
, const u8
*addr
,
1348 * sta_remove - Remove a station entry (AP only)
1349 * @priv: Private driver interface data
1350 * @addr: MAC address of the station to be removed
1351 * Returns: 0 on success, -1 on failure
1353 int (*sta_remove
)(void *priv
, const u8
*addr
);
1356 * hapd_get_ssid - Get the current SSID (AP only)
1357 * @priv: Private driver interface data
1358 * @buf: Buffer for returning the SSID
1359 * @len: Maximum length of the buffer
1360 * Returns: Length of the SSID on success, -1 on failure
1362 * This function need not be implemented if the driver uses Beacon
1363 * template from set_beacon() and does not reply to Probe Request
1366 int (*hapd_get_ssid
)(void *priv
, u8
*buf
, int len
);
1369 * hapd_set_ssid - Set SSID (AP only)
1370 * @priv: Private driver interface data
1372 * @len: Length of the SSID in octets
1373 * Returns: 0 on success, -1 on failure
1375 int (*hapd_set_ssid
)(void *priv
, const u8
*buf
, int len
);
1378 * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
1379 * @priv: Private driver interface data
1380 * @enabled: 1 = countermeasures enabled, 0 = disabled
1381 * Returns: 0 on success, -1 on failure
1383 * This need not be implemented if the driver does not take care of
1384 * association processing.
1386 int (*hapd_set_countermeasures
)(void *priv
, int enabled
);
1389 * sta_add - Add a station entry (AP only)
1390 * @priv: Private driver interface data
1391 * @params: Station parameters
1392 * Returns: 0 on success, -1 on failure
1394 * This function is used to add a station entry to the driver once the
1395 * station has completed association. This is only used if the driver
1396 * does not take care of association processing.
1398 int (*sta_add
)(void *priv
, struct hostapd_sta_add_params
*params
);
1401 * get_inact_sec - Get station inactivity duration (AP only)
1402 * @priv: Private driver interface data
1403 * @addr: Station address
1404 * Returns: Number of seconds station has been inactive, -1 on failure
1406 int (*get_inact_sec
)(void *priv
, const u8
*addr
);
1409 * sta_clear_stats - Clear station statistics (AP only)
1410 * @priv: Private driver interface data
1411 * @addr: Station address
1412 * Returns: 0 on success, -1 on failure
1414 int (*sta_clear_stats
)(void *priv
, const u8
*addr
);
1417 * set_freq - Set channel/frequency (AP only)
1418 * @priv: Private driver interface data
1419 * @freq: Channel parameters
1420 * Returns: 0 on success, -1 on failure
1422 int (*set_freq
)(void *priv
, struct hostapd_freq_params
*freq
);
1425 * set_rts - Set RTS threshold
1426 * @priv: Private driver interface data
1427 * @rts: RTS threshold in octets
1428 * Returns: 0 on success, -1 on failure
1430 int (*set_rts
)(void *priv
, int rts
);
1433 * set_frag - Set fragmentation threshold
1434 * @priv: Private driver interface data
1435 * @frag: Fragmentation threshold in octets
1436 * Returns: 0 on success, -1 on failure
1438 int (*set_frag
)(void *priv
, int frag
);
1441 * sta_set_flags - Set station flags (AP only)
1442 * @priv: Private driver interface data
1443 * @addr: Station address
1444 * @total_flags: Bitmap of all WPA_STA_* flags currently set
1445 * @flags_or: Bitmap of WPA_STA_* flags to add
1446 * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
1447 * Returns: 0 on success, -1 on failure
1449 int (*sta_set_flags
)(void *priv
, const u8
*addr
,
1450 int total_flags
, int flags_or
, int flags_and
);
1453 * set_rate_sets - Set supported and basic rate sets (AP only)
1454 * @priv: Private driver interface data
1455 * @supp_rates: -1 terminated array of supported rates in 100 kbps
1456 * @basic_rates: -1 terminated array of basic rates in 100 kbps
1457 * @mode: hardware mode (HOSTAPD_MODE_*)
1458 * Returns: 0 on success, -1 on failure
1460 int (*set_rate_sets
)(void *priv
, int *supp_rates
, int *basic_rates
,
1464 * set_cts_protect - Set CTS protection mode (AP only)
1465 * @priv: Private driver interface data
1466 * @value: Whether CTS protection is enabled
1467 * Returns: 0 on success, -1 on failure
1469 int (*set_cts_protect
)(void *priv
, int value
);
1472 * set_preamble - Set preamble mode (AP only)
1473 * @priv: Private driver interface data
1474 * @value: Whether short preamble is enabled
1475 * Returns: 0 on success, -1 on failure
1477 int (*set_preamble
)(void *priv
, int value
);
1480 * set_short_slot_time - Set short slot time (AP only)
1481 * @priv: Private driver interface data
1482 * @value: Whether short slot time is enabled
1483 * Returns: 0 on success, -1 on failure
1485 int (*set_short_slot_time
)(void *priv
, int value
);
1488 * set_tx_queue_params - Set TX queue parameters
1489 * @priv: Private driver interface data
1490 * @queue: Queue number
1494 * @burst_time: Maximum length for bursting in 0.1 msec units
1496 int (*set_tx_queue_params
)(void *priv
, int queue
, int aifs
, int cw_min
,
1497 int cw_max
, int burst_time
);
1500 * valid_bss_mask - Validate BSSID mask
1501 * @priv: Private driver interface data
1504 * Returns: 0 if mask is valid, -1 if mask is not valid, 1 if mask can
1505 * be used, but the main interface address must be the first address in
1506 * the block if mask is applied
1508 int (*valid_bss_mask
)(void *priv
, const u8
*addr
, const u8
*mask
);
1511 * if_add - Add a virtual interface
1512 * @priv: Private driver interface data
1513 * @type: Interface type
1514 * @ifname: Interface name for the new virtual interface
1515 * @addr: Local address to use for the interface or %NULL to use the
1516 * parent interface address
1517 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
1518 * @drv_priv: Pointer for overwriting the driver context or %NULL if
1519 * not allowed (applies only to %WPA_IF_AP_BSS type)
1520 * @force_ifname: Buffer for returning an interface name that the
1521 * driver ended up using if it differs from the requested ifname
1522 * @if_addr: Buffer for returning the allocated interface address
1523 * (this may differ from the requested addr if the driver cannot
1524 * change interface address)
1525 * Returns: 0 on success, -1 on failure
1527 int (*if_add
)(void *priv
, enum wpa_driver_if_type type
,
1528 const char *ifname
, const u8
*addr
, void *bss_ctx
,
1529 void **drv_priv
, char *force_ifname
, u8
*if_addr
);
1532 * if_remove - Remove a virtual interface
1533 * @priv: Private driver interface data
1534 * @type: Interface type
1535 * @ifname: Interface name of the virtual interface to be removed
1536 * Returns: 0 on success, -1 on failure
1538 int (*if_remove
)(void *priv
, enum wpa_driver_if_type type
,
1539 const char *ifname
);
1542 * set_sta_vlan - Bind a station into a specific interface (AP only)
1543 * @priv: Private driver interface data
1544 * @ifname: Interface (main or virtual BSS or VLAN)
1545 * @addr: MAC address of the associated station
1547 * Returns: 0 on success, -1 on failure
1549 * This function is used to bind a station to a specific virtual
1550 * interface. It is only used if when virtual interfaces are supported,
1551 * e.g., to assign stations to different VLAN interfaces based on
1552 * information from a RADIUS server. This allows separate broadcast
1553 * domains to be used with a single BSS.
1555 int (*set_sta_vlan
)(void *priv
, const u8
*addr
, const char *ifname
,
1559 * commit - Optional commit changes handler (AP only)
1560 * @priv: driver private data
1561 * Returns: 0 on success, -1 on failure
1563 * This optional handler function can be registered if the driver
1564 * interface implementation needs to commit changes (e.g., by setting
1565 * network interface up) at the end of initial configuration. If set,
1566 * this handler will be called after initial setup has been completed.
1568 int (*commit
)(void *priv
);
1571 * send_ether - Send an ethernet packet (AP only)
1572 * @priv: private driver interface data
1573 * @dst: Destination MAC address
1574 * @src: Source MAC address
1576 * @data: EAPOL packet starting with IEEE 802.1X header
1577 * @data_len: Length of the EAPOL packet in octets
1578 * Returns: 0 on success, -1 on failure
1580 int (*send_ether
)(void *priv
, const u8
*dst
, const u8
*src
, u16 proto
,
1581 const u8
*data
, size_t data_len
);
1584 * set_radius_acl_auth - Notification of RADIUS ACL change
1585 * @priv: Private driver interface data
1586 * @mac: MAC address of the station
1587 * @accepted: Whether the station was accepted
1588 * @session_timeout: Session timeout for the station
1589 * Returns: 0 on success, -1 on failure
1591 int (*set_radius_acl_auth
)(void *priv
, const u8
*mac
, int accepted
,
1592 u32 session_timeout
);
1595 * set_radius_acl_expire - Notification of RADIUS ACL expiration
1596 * @priv: Private driver interface data
1597 * @mac: MAC address of the station
1598 * Returns: 0 on success, -1 on failure
1600 int (*set_radius_acl_expire
)(void *priv
, const u8
*mac
);
1603 * set_ht_params - Set HT parameters (AP only)
1604 * @priv: Private driver interface data
1605 * @ht_capab: HT Capabilities IE
1606 * @ht_capab_len: Length of ht_capab in octets
1607 * @ht_oper: HT Operation IE
1608 * @ht_oper_len: Length of ht_oper in octets
1609 * Returns: 0 on success, -1 on failure
1611 int (*set_ht_params
)(void *priv
,
1612 const u8
*ht_capab
, size_t ht_capab_len
,
1613 const u8
*ht_oper
, size_t ht_oper_len
);
1616 * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
1617 * @priv: Private driver interface data
1618 * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
1619 * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
1621 * Returns: 0 on success, -1 on failure
1623 * This is an optional function to add WPS IE in the kernel driver for
1624 * Beacon and Probe Response frames. This can be left undefined (set
1625 * to %NULL) if the driver uses the Beacon template from set_beacon()
1626 * and does not process Probe Request frames.
1628 int (*set_ap_wps_ie
)(void *priv
, const struct wpabuf
*beacon
,
1629 const struct wpabuf
*proberesp
);
1632 * set_supp_port - Set IEEE 802.1X Supplicant Port status
1633 * @priv: Private driver interface data
1634 * @authorized: Whether the port is authorized
1635 * Returns: 0 on success, -1 on failure
1637 int (*set_supp_port
)(void *priv
, int authorized
);
1640 * set_wds_sta - Bind a station into a 4-address WDS (AP only)
1641 * @priv: Private driver interface data
1642 * @addr: MAC address of the associated station
1643 * @aid: Association ID
1644 * @val: 1 = bind to 4-address WDS; 0 = unbind
1645 * Returns: 0 on success, -1 on failure
1647 int (*set_wds_sta
)(void *priv
, const u8
*addr
, int aid
, int val
);
1650 * send_action - Transmit an Action frame
1651 * @priv: Private driver interface data
1652 * @freq: Frequency (in MHz) of the channel
1653 * @dst: Destination MAC address (Address 1)
1654 * @src: Source MAC address (Address 2)
1655 * @bssid: BSSID (Address 3)
1657 * @data_len: data length in octets
1658 * Returns: 0 on success, -1 on failure
1660 * This command can be used to request the driver to transmit an action
1661 * frame to the specified destination. If a remain-on-channel duration
1662 * is in progress, the frame is transmitted on that channel. Otherwise,
1663 * the frame is transmitted on the current operational channel if in
1664 * associated state in station mode or if operating as an AP. If none
1665 * of these conditions is in effect, send_action() cannot be used.
1667 int (*send_action
)(void *priv
, unsigned int freq
,
1668 const u8
*dst
, const u8
*src
, const u8
*bssid
,
1669 const u8
*data
, size_t data_len
);
1672 * remain_on_channel - Remain awake on a channel
1673 * @priv: Private driver interface data
1674 * @freq: Frequency (in MHz) of the channel
1675 * @duration: Duration in milliseconds
1676 * Returns: 0 on success, -1 on failure
1678 * This command is used to request the driver to remain awake on the
1679 * specified channel for the specified duration and report received
1680 * Action frames with EVENT_RX_ACTION events. Optionally, received
1681 * Probe Request frames may also be requested to be reported by calling
1682 * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
1684 * The driver may not be at the requested channel when this function
1685 * returns, i.e., the return code is only indicating whether the
1686 * request was accepted. The caller will need to wait until the
1687 * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
1688 * completed the channel change. This may take some time due to other
1689 * need for the radio and the caller should be prepared to timing out
1690 * its wait since there are no guarantees on when this request can be
1693 int (*remain_on_channel
)(void *priv
, unsigned int freq
,
1694 unsigned int duration
);
1697 * cancel_remain_on_channel - Cancel remain-on-channel operation
1698 * @priv: Private driver interface data
1700 * This command can be used to cancel a remain-on-channel operation
1701 * before its originally requested duration has passed. This could be
1702 * used, e.g., when remain_on_channel() is used to request extra time
1703 * to receive a response to an Action frame and the response is
1704 * received when there is still unneeded time remaining on the
1705 * remain-on-channel operation.
1707 int (*cancel_remain_on_channel
)(void *priv
);
1710 * probe_req_report - Request Probe Request frames to be indicated
1711 * @priv: Private driver interface data
1712 * @report: Whether to report received Probe Request frames
1713 * Returns: 0 on success, -1 on failure (or if not supported)
1715 * This command can be used to request the driver to indicate when
1716 * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
1717 * Since this operation may require extra resources, e.g., due to less
1718 * optimal hardware/firmware RX filtering, many drivers may disable
1719 * Probe Request reporting at least in station mode. This command is
1720 * used to notify the driver when the Probe Request frames need to be
1721 * reported, e.g., during remain-on-channel operations.
1723 int (*probe_req_report
)(void *priv
, int report
);
1726 * disable_11b_rates - Set whether IEEE 802.11b rates are used for TX
1727 * @priv: Private driver interface data
1728 * @disabled: Whether IEEE 802.11b rates are disabled
1729 * Returns: 0 on success, -1 on failure (or if not supported)
1731 * This command is used to disable IEEE 802.11b rates (1, 2, 5.5, and
1732 * 11 Mbps) as TX rates for data and management frames. This can be
1733 * used to optimize channel use when there is no need to support IEEE
1734 * 802.11b-only devices.
1736 int (*disable_11b_rates
)(void *priv
, int disabled
);
1739 * deinit_ap - Deinitialize AP mode
1740 * @priv: Private driver interface data
1741 * Returns: 0 on success, -1 on failure (or if not supported)
1743 * This optional function can be used to disable AP mode related
1744 * configuration and change the driver mode to station mode to allow
1745 * normal station operations like scanning to be completed.
1747 int (*deinit_ap
)(void *priv
);
1750 * suspend - Notification on system suspend/hibernate event
1751 * @priv: Private driver interface data
1753 void (*suspend
)(void *priv
);
1756 * resume - Notification on system resume/thaw event
1757 * @priv: Private driver interface data
1759 void (*resume
)(void *priv
);
1762 * signal_monitor - Set signal monitoring parameters
1763 * @priv: Private driver interface data
1764 * @threshold: Threshold value for signal change events; 0 = disabled
1765 * @hysteresis: Minimum change in signal strength before indicating a
1767 * Returns: 0 on success, -1 on failure (or if not supported)
1769 * This function can be used to configure monitoring of signal strength
1770 * with the current AP. Whenever signal strength drops below the
1771 * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
1772 * should be generated assuming the signal strength has changed at
1773 * least %hysteresis from the previously indicated signal change event.
1775 int (*signal_monitor
)(void *priv
, int threshold
, int hysteresis
);
1778 * send_frame - Send IEEE 802.11 frame (testing use only)
1779 * @priv: Private driver interface data
1780 * @data: IEEE 802.11 frame with IEEE 802.11 header
1781 * @data_len: Size of the frame
1782 * @encrypt: Whether to encrypt the frame (if keys are set)
1783 * Returns: 0 on success, -1 on failure
1785 * This function is only used for debugging purposes and is not
1786 * required to be implemented for normal operations.
1788 int (*send_frame
)(void *priv
, const u8
*data
, size_t data_len
,
1794 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
1796 enum wpa_event_type
{
1798 * EVENT_ASSOC - Association completed
1800 * This event needs to be delivered when the driver completes IEEE
1801 * 802.11 association or reassociation successfully.
1802 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
1803 * after this event has been generated. In addition, optional
1804 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
1805 * more information about the association. If the driver interface gets
1806 * both of these events at the same time, it can also include the
1807 * assoc_info data in EVENT_ASSOC call.
1812 * EVENT_DISASSOC - Association lost
1814 * This event should be called when association is lost either due to
1815 * receiving deauthenticate or disassociate frame from the AP or when
1816 * sending either of these frames to the current AP. If the driver
1817 * supports separate deauthentication event, EVENT_DISASSOC should only
1818 * be used for disassociation and EVENT_DEAUTH for deauthentication.
1819 * In AP mode, union wpa_event_data::disassoc_info is required.
1824 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
1826 * This event must be delivered when a Michael MIC error is detected by
1827 * the local driver. Additional data for event processing is
1828 * provided with union wpa_event_data::michael_mic_failure. This
1829 * information is used to request a new encryption key and to initiate
1830 * TKIP countermeasures if needed.
1832 EVENT_MICHAEL_MIC_FAILURE
,
1835 * EVENT_SCAN_RESULTS - Scan results available
1837 * This event must be called whenever scan results are available to be
1838 * fetched with struct wpa_driver_ops::get_scan_results2(). This event
1839 * is expected to be used some time after struct wpa_driver_ops::scan2()
1840 * is called. If the driver provides an unsolicited event when the scan
1841 * has been completed, this event can be used to trigger
1842 * EVENT_SCAN_RESULTS call. If such event is not available from the
1843 * driver, the driver wrapper code is expected to use a registered
1844 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
1845 * scan is expected to be completed. Optional information about
1846 * completed scan can be provided with union wpa_event_data::scan_info.
1851 * EVENT_ASSOCINFO - Report optional extra information for association
1853 * This event can be used to report extra association information for
1854 * EVENT_ASSOC processing. This extra information includes IEs from
1855 * association frames and Beacon/Probe Response frames in union
1856 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be sent just before
1857 * EVENT_ASSOC. Alternatively, the driver interface can include
1858 * assoc_info data in the EVENT_ASSOC call if it has all the
1859 * information available at the same point.
1864 * EVENT_INTERFACE_STATUS - Report interface status changes
1866 * This optional event can be used to report changes in interface
1867 * status (interface added/removed) using union
1868 * wpa_event_data::interface_status. This can be used to trigger
1869 * wpa_supplicant to stop and re-start processing for the interface,
1870 * e.g., when a cardbus card is ejected/inserted.
1872 EVENT_INTERFACE_STATUS
,
1875 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
1877 * This event can be used to inform wpa_supplicant about candidates for
1878 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
1879 * for scan request (ap_scan=2 mode), this event is required for
1880 * pre-authentication. If wpa_supplicant is performing scan request
1881 * (ap_scan=1), this event is optional since scan results can be used
1882 * to add pre-authentication candidates. union
1883 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
1884 * candidate and priority of the candidate, e.g., based on the signal
1885 * strength, in order to try to pre-authenticate first with candidates
1886 * that are most likely targets for re-association.
1888 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
1889 * on the candidate list. In addition, it can be called for the current
1890 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
1891 * will automatically skip pre-authentication in cases where a valid
1892 * PMKSA exists. When more than one candidate exists, this event should
1893 * be generated once for each candidate.
1895 * Driver will be notified about successful pre-authentication with
1896 * struct wpa_driver_ops::add_pmkid() calls.
1898 EVENT_PMKID_CANDIDATE
,
1901 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
1903 * This event can be used to inform wpa_supplicant about desire to set
1904 * up secure direct link connection between two stations as defined in
1905 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
1906 * STAKey negotiation. The caller will need to set peer address for the
1912 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
1914 * The driver is expected to report the received FT IEs from
1915 * FT authentication sequence from the AP. The FT IEs are included in
1916 * the extra information in union wpa_event_data::ft_ies.
1921 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
1923 * The driver can use this event to inform wpa_supplicant about a STA
1924 * in an IBSS with which protected frames could be exchanged. This
1925 * event starts RSN authentication with the other STA to authenticate
1926 * the STA and set up encryption keys with it.
1928 EVENT_IBSS_RSN_START
,
1931 * EVENT_AUTH - Authentication result
1933 * This event should be called when authentication attempt has been
1934 * completed. This is only used if the driver supports separate
1935 * authentication step (struct wpa_driver_ops::authenticate).
1936 * Information about authentication result is included in
1937 * union wpa_event_data::auth.
1942 * EVENT_DEAUTH - Authentication lost
1944 * This event should be called when authentication is lost either due
1945 * to receiving deauthenticate frame from the AP or when sending that
1946 * frame to the current AP.
1947 * In AP mode, union wpa_event_data::deauth_info is required.
1952 * EVENT_ASSOC_REJECT - Association rejected
1954 * This event should be called when (re)association attempt has been
1955 * rejected by the AP. Information about authentication result is
1956 * included in union wpa_event_data::assoc_reject.
1961 * EVENT_AUTH_TIMED_OUT - Authentication timed out
1963 EVENT_AUTH_TIMED_OUT
,
1966 * EVENT_ASSOC_TIMED_OUT - Association timed out
1968 EVENT_ASSOC_TIMED_OUT
,
1971 * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
1976 * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
1978 EVENT_WPS_BUTTON_PUSHED
,
1981 * EVENT_TX_STATUS - Report TX status
1986 * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
1988 EVENT_RX_FROM_UNKNOWN
,
1991 * EVENT_RX_MGMT - Report RX of a management frame
1996 * EVENT_RX_ACTION - Action frame received
1998 * This event is used to indicate when an Action frame has been
1999 * received. Information about the received frame is included in
2000 * union wpa_event_data::rx_action.
2005 * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
2007 * This event is used to indicate when the driver has started the
2008 * requested remain-on-channel duration. Information about the
2009 * operation is included in union wpa_event_data::remain_on_channel.
2011 EVENT_REMAIN_ON_CHANNEL
,
2014 * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
2016 * This event is used to indicate when the driver has completed
2017 * remain-on-channel duration, i.e., may noot be available on the
2018 * requested channel anymore. Information about the
2019 * operation is included in union wpa_event_data::remain_on_channel.
2021 EVENT_CANCEL_REMAIN_ON_CHANNEL
,
2024 * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
2026 * This event is used only by driver_test.c and userspace MLME.
2031 * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
2033 * This event is used to indicate when a Probe Request frame has been
2034 * received. Information about the received frame is included in
2035 * union wpa_event_data::rx_probe_req. The driver is required to report
2036 * these events only after successfully completed probe_req_report()
2037 * commands to request the events (i.e., report parameter is non-zero)
2038 * in station mode. In AP mode, Probe Request frames should always be
2044 * EVENT_NEW_STA - New wired device noticed
2046 * This event is used to indicate that a new device has been detected
2047 * in a network that does not use association-like functionality (i.e.,
2048 * mainly wired Ethernet). This can be used to start EAPOL
2049 * authenticator when receiving a frame from a device. The address of
2050 * the device is included in union wpa_event_data::new_sta.
2055 * EVENT_EAPOL_RX - Report received EAPOL frame
2057 * When in AP mode with hostapd, this event is required to be used to
2058 * deliver the receive EAPOL frames from the driver. With
2059 * %wpa_supplicant, this event is used only if the send_eapol() handler
2060 * is used to override the use of l2_packet for EAPOL frame TX.
2065 * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
2067 * This event is used to indicate changes in the signal strength
2068 * observed in frames received from the current AP if signal strength
2069 * monitoring has been enabled with signal_monitor().
2076 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
2078 union wpa_event_data
{
2080 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
2082 * This structure is optional for EVENT_ASSOC calls and required for
2083 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
2084 * driver interface does not need to generate separate EVENT_ASSOCINFO
2089 * req_ies - (Re)Association Request IEs
2091 * If the driver generates WPA/RSN IE, this event data must be
2092 * returned for WPA handshake to have needed information. If
2093 * wpa_supplicant-generated WPA/RSN IE is used, this
2094 * information event is optional.
2096 * This should start with the first IE (fixed fields before IEs
2097 * are not included).
2102 * req_ies_len - Length of req_ies in bytes
2107 * resp_ies - (Re)Association Response IEs
2109 * Optional association data from the driver. This data is not
2110 * required for WPA, but may be useful for some protocols and as
2111 * such, should be reported if this is available to the driver
2114 * This should start with the first IE (fixed fields before IEs
2115 * are not included).
2120 * resp_ies_len - Length of resp_ies in bytes
2122 size_t resp_ies_len
;
2125 * beacon_ies - Beacon or Probe Response IEs
2127 * Optional Beacon/ProbeResp data: IEs included in Beacon or
2128 * Probe Response frames from the current AP (i.e., the one
2129 * that the client just associated with). This information is
2130 * used to update WPA/RSN IE for the AP. If this field is not
2131 * set, the results from previous scan will be used. If no
2132 * data for the new AP is found, scan results will be requested
2133 * again (without scan request). At this point, the driver is
2134 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
2137 * This should start with the first IE (fixed fields before IEs
2138 * are not included).
2140 const u8
*beacon_ies
;
2143 * beacon_ies_len - Length of beacon_ies */
2144 size_t beacon_ies_len
;
2147 * freq - Frequency of the operational channel in MHz
2152 * addr - Station address (for AP mode)
2158 * struct disassoc_info - Data for EVENT_DISASSOC events
2160 struct disassoc_info
{
2162 * addr - Station address (for AP mode)
2167 * reason_code - Reason Code (host byte order) used in
2168 * Deauthentication frame
2174 * struct deauth_info - Data for EVENT_DEAUTH events
2176 struct deauth_info
{
2178 * addr - Station address (for AP mode)
2183 * reason_code - Reason Code (host byte order) used in
2184 * Deauthentication frame
2190 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
2192 struct michael_mic_failure
{
2195 } michael_mic_failure
;
2198 * struct interface_status - Data for EVENT_INTERFACE_STATUS
2200 struct interface_status
{
2203 EVENT_INTERFACE_ADDED
, EVENT_INTERFACE_REMOVED
2208 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
2210 struct pmkid_candidate
{
2211 /** BSSID of the PMKID candidate */
2213 /** Smaller the index, higher the priority */
2215 /** Whether RSN IE includes pre-authenticate flag */
2220 * struct stkstart - Data for EVENT_STKSTART
2227 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
2229 * During FT (IEEE 802.11r) authentication sequence, the driver is
2230 * expected to use this event to report received FT IEs (MDIE, FTIE,
2231 * RSN IE, TIE, possible resource request) to the supplicant. The FT
2232 * IEs for the next message will be delivered through the
2233 * struct wpa_driver_ops::update_ft_ies() callback.
2239 u8 target_ap
[ETH_ALEN
];
2240 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
2242 /** Length of ric_ies buffer in octets */
2247 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
2249 struct ibss_rsn_start
{
2254 * struct auth_info - Data for EVENT_AUTH events
2265 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
2267 struct assoc_reject
{
2269 * resp_ies - (Re)Association Response IEs
2271 * Optional association data from the driver. This data is not
2272 * required WPA, but may be useful for some protocols and as
2273 * such, should be reported if this is available to the driver
2276 * This should start with the first IE (fixed fields before IEs
2277 * are not included).
2282 * resp_ies_len - Length of resp_ies in bytes
2284 size_t resp_ies_len
;
2287 * status_code - Status Code from (Re)association Response
2292 struct timeout_event
{
2297 * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
2306 * struct tx_status - Data for EVENT_TX_STATUS events
2318 * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
2320 struct rx_from_unknown
{
2326 * struct rx_mgmt - Data for EVENT_RX_MGMT events
2336 * struct rx_action - Data for EVENT_RX_ACTION events
2340 * da - Destination address of the received Action frame
2345 * sa - Source address of the received Action frame
2350 * bssid - Address 3 of the received Action frame
2355 * category - Action frame category
2360 * data - Action frame body after category field
2365 * len - Length of data in octets
2370 * freq - Frequency (in MHz) on which the frame was received
2376 * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
2378 * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
2380 struct remain_on_channel
{
2382 * freq - Channel frequency in MHz
2387 * duration - Duration to remain on the channel in milliseconds
2389 unsigned int duration
;
2390 } remain_on_channel
;
2393 * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
2394 * @aborted: Whether the scan was aborted
2395 * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
2396 * @num_freqs: Number of entries in freqs array
2397 * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
2399 * @num_ssids: Number of entries in ssids array
2405 struct wpa_driver_scan_ssid ssids
[WPAS_MAX_SCAN_SSIDS
];
2410 * struct mlme_rx - Data for EVENT_MLME_RX events
2421 * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
2423 struct rx_probe_req
{
2425 * sa - Source address of the received Probe Request frame
2430 * ie - IEs from the Probe Request body
2435 * ie_len - Length of ie buffer in octets
2441 * struct new_sta - Data for EVENT_NEW_STA events
2448 * struct eapol_rx - Data for EVENT_EAPOL_RX events
2457 * struct signal_change - Data for EVENT_SIGNAL_CHANGE events
2459 struct signal_change
{
2460 int above_threshold
;
2465 * wpa_supplicant_event - Report a driver event for wpa_supplicant
2466 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
2467 * with struct wpa_driver_ops::init()
2468 * @event: event type (defined above)
2469 * @data: possible extra data for the event
2471 * Driver wrapper code should call this function whenever an event is received
2474 void wpa_supplicant_event(void *ctx
, enum wpa_event_type event
,
2475 union wpa_event_data
*data
);
2479 * The following inline functions are provided for convenience to simplify
2480 * event indication for some of the common events.
2483 static inline void drv_event_assoc(void *ctx
, const u8
*addr
, const u8
*ie
,
2486 union wpa_event_data event
;
2487 os_memset(&event
, 0, sizeof(event
));
2488 event
.assoc_info
.req_ies
= ie
;
2489 event
.assoc_info
.req_ies_len
= ielen
;
2490 event
.assoc_info
.addr
= addr
;
2491 wpa_supplicant_event(ctx
, EVENT_ASSOC
, &event
);
2494 static inline void drv_event_disassoc(void *ctx
, const u8
*addr
)
2496 union wpa_event_data event
;
2497 os_memset(&event
, 0, sizeof(event
));
2498 event
.disassoc_info
.addr
= addr
;
2499 wpa_supplicant_event(ctx
, EVENT_DISASSOC
, &event
);
2502 static inline void drv_event_eapol_rx(void *ctx
, const u8
*src
, const u8
*data
,
2505 union wpa_event_data event
;
2506 os_memset(&event
, 0, sizeof(event
));
2507 event
.eapol_rx
.src
= src
;
2508 event
.eapol_rx
.data
= data
;
2509 event
.eapol_rx
.data_len
= data_len
;
2510 wpa_supplicant_event(ctx
, EVENT_EAPOL_RX
, &event
);
2513 #endif /* DRIVER_H */