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 an 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
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.
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.
145 struct wpa_scan_res
{
157 /* followed by ie_len octets of IEs */
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
165 struct wpa_scan_results
{
166 struct wpa_scan_res
**res
;
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
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
180 struct wpa_interface_info
{
181 struct wpa_interface_info
*next
;
184 const char *drv_name
;
187 #define WPAS_MAX_SCAN_SSIDS 4
190 * struct wpa_driver_scan_params - Scan parameters
191 * Data for struct wpa_driver_ops::scan2().
193 struct wpa_driver_scan_params
{
195 * ssids - SSIDs to scan for
197 struct wpa_driver_scan_ssid
{
199 * ssid - specific SSID to scan for (ProbeReq)
200 * %NULL or zero-length SSID is used to indicate active scan
201 * with wildcard SSID.
205 * ssid_len: Length of the SSID in octets
208 } ssids
[WPAS_MAX_SCAN_SSIDS
];
211 * num_ssids - Number of entries in ssids array
212 * Zero indicates a request for a passive scan.
217 * extra_ies - Extra IE(s) to add into Probe Request or %NULL
222 * extra_ies_len - Length of extra_ies in octets
224 size_t extra_ies_len
;
227 * freqs - Array of frequencies to scan or %NULL for all frequencies
229 * The frequency is set in MHz. The array is zero-terminated.
235 * struct wpa_driver_auth_params - Authentication parameters
236 * Data for struct wpa_driver_ops::authenticate().
238 struct wpa_driver_auth_params
{
246 const u8
*wep_key
[4];
247 size_t wep_key_len
[4];
252 * struct wpa_driver_associate_params - Association parameters
253 * Data for struct wpa_driver_ops::associate().
255 struct wpa_driver_associate_params
{
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. */
263 * ssid - The selected SSID
268 * ssid_len - Length of the SSID (1..32)
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)
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).
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
295 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
300 * wpa_ie_len - length of the wpa_ie
305 * pairwise_suite - Selected pairwise cipher suite
307 * This is usually ignored if @wpa_ie is used.
309 enum wpa_cipher pairwise_suite
;
312 * group_suite - Selected group cipher suite
314 * This is usually ignored if @wpa_ie is used.
316 enum wpa_cipher group_suite
;
319 * key_mgmt_suite - Selected key management suite
321 * This is usually ignored if @wpa_ie is used.
323 enum wpa_key_mgmt key_mgmt_suite
;
326 * auth_alg - Allowed authentication algorithms
327 * Bit field of WPA_AUTH_ALG_*
332 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
337 * wep_key - WEP keys for static WEP configuration
339 const u8
*wep_key
[4];
342 * wep_key_len - WEP key length for static WEP configuration
344 size_t wep_key_len
[4];
347 * wep_tx_keyidx - WEP TX key index for static WEP configuration
352 * mgmt_frame_protection - IEEE 802.11w management frame protection
354 enum mfp_options mgmt_frame_protection
;
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.
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.
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.
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.
380 * ft_ies_len - Length of ft_ies in bytes
385 * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
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.
394 * passphrase - RSN passphrase for PSK
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.
402 const char *passphrase
;
405 * psk - RSN PSK (alternative for passphrase for PSK)
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.
415 * drop_unencrypted - Enable/disable unencrypted frame filtering
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.
421 int drop_unencrypted
;
424 * prev_bssid - Previously used BSSID in this ESS
426 * When not %NULL, this is a request to use reassociation instead of
429 const u8
*prev_bssid
;
433 * struct wpa_driver_capa - Driver capability information
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
;
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
451 #define WPA_DRIVER_AUTH_OPEN 0x00000001
452 #define WPA_DRIVER_AUTH_SHARED 0x00000002
453 #define WPA_DRIVER_AUTH_LEAP 0x00000004
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
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
;
485 unsigned long num_ps_buf_frames
;
486 unsigned long tx_retry_failed
;
487 unsigned long tx_retry_count
;
492 struct hostapd_sta_add_params
{
496 const u8
*supp_rates
;
497 size_t supp_rates_len
;
499 const struct ieee80211_ht_capabilities
*ht_capabilities
;
502 struct hostapd_freq_params
{
507 int sec_channel_offset
; /* 0 = HT40 disabled, -1 = HT40 enabled,
508 * secondary channel below primary, 1 = HT40
509 * enabled, secondary channel above primary */
512 enum wpa_driver_if_type
{
514 * WPA_IF_STATION - Station mode interface
519 * WPA_IF_AP_VLAN - AP mode VLAN interface
521 * This interface shares its address and Beacon frame with the main
527 * WPA_IF_AP_BSS - AP mode BSS interface
529 * This interface has its own address and Beacon frame.
534 struct wpa_init_params
{
539 const char *test_socket
;
540 int use_pae_group_addr
;
544 u8
*own_addr
; /* buffer for writing own MAC address */
548 struct wpa_bss_params
{
549 /** Interface name (for multi-SSID/VLAN support) */
551 /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
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)
568 * struct wpa_driver_ops - Driver interface API definition
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
574 struct wpa_driver_ops
{
575 /** Name of the driver interface */
577 /** One line description of the driver interface */
581 * get_bssid - Get the current BSSID
582 * @priv: private driver interface data
583 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
585 * Returns: 0 on success, -1 on failure
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
591 int (*get_bssid
)(void *priv
, u8
*bssid
);
594 * get_ssid - Get the current SSID
595 * @priv: private driver interface data
596 * @ssid: buffer for SSID (at least 32 bytes)
598 * Returns: Length of the SSID on success, -1 on failure
600 * Query kernel driver for the current SSID and copy it to ssid.
601 * Returning zero is recommended if the STA is not associated.
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
608 int (*get_ssid
)(void *priv
, u8
*ssid
);
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
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,
631 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
632 * TKIP: 32, CCMP: 16, IGTK: 16)
634 * Returns: 0 on success, -1 on failure
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
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.
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
);
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
665 * Returns: Pointer to private data, %NULL on failure
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.
676 * The main event loop (eloop.c) of wpa_supplicant can be used to
677 * register callback for read sockets (eloop_register_read_sock()).
679 * See below for more information about events and
680 * wpa_supplicant_event() function.
682 void * (*init
)(void *ctx
, const char *ifname
);
685 * deinit - Deinitialize driver interface
686 * @priv: private driver interface data from init()
688 * Shut down driver interface and processing of driver events. Free
689 * private data buffer if one was allocated in init() handler.
691 void (*deinit
)(void *priv
);
694 * set_param - Set driver configuration parameters
695 * @priv: private driver interface data from init()
696 * @param: driver specific configuration parameters
698 * Returns: 0 on success, -1 on failure
700 * Optional handler for notifying driver interface about configuration
701 * parameters (driver_param).
703 int (*set_param
)(void *priv
, const char *param
);
706 * set_countermeasures - Enable/disable TKIP countermeasures
707 * @priv: private driver interface data
708 * @enabled: 1 = countermeasures enabled, 0 = disabled
710 * Returns: 0 on success, -1 on failure
712 * Configure TKIP countermeasures. When these are enabled, the driver
713 * should drop all received and queued frames that are using TKIP.
715 int (*set_countermeasures
)(void *priv
, int enabled
);
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
724 * Returns: 0 on success, -1 on failure
726 int (*deauthenticate
)(void *priv
, const u8
*addr
, int reason_code
);
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
735 * Returns: 0 on success, -1 on failure
737 int (*disassociate
)(void *priv
, const u8
*addr
, int reason_code
);
740 * associate - Request driver to associate
741 * @priv: private driver interface data
742 * @params: association parameters
744 * Returns: 0 on success, -1 on failure
746 int (*associate
)(void *priv
,
747 struct wpa_driver_associate_params
*params
);
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
755 * Returns: 0 on success, -1 on failure
757 * This function is called when a new PMK is received, as a result of
758 * either normal authentication or RSN pre-authentication.
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.
766 int (*add_pmkid
)(void *priv
, const u8
*bssid
, const u8
*pmkid
);
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
774 * Returns: 0 on success, -1 on failure
776 * This function is called when the supplicant drops a PMKSA cache
777 * entry for any reason.
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.
786 int (*remove_pmkid
)(void *priv
, const u8
*bssid
, const u8
*pmkid
);
789 * flush_pmkid - Flush PMKSA cache
790 * @priv: private driver interface data
792 * Returns: 0 on success, -1 on failure
794 * This function is called when the supplicant drops all PMKSA cache
795 * entries for any reason.
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.
804 int (*flush_pmkid
)(void *priv
);
807 * get_capa - Get driver capabilities
808 * @priv: private driver interface data
810 * Returns: 0 on success, -1 on failure
812 * Get driver/firmware/hardware capabilities.
814 int (*get_capa
)(void *priv
, struct wpa_driver_capa
*capa
);
817 * poll - Poll driver for association information
818 * @priv: private driver interface data
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.
828 void (*poll
)(void *priv
);
831 * get_ifname - Get interface name
832 * @priv: private driver interface data
834 * Returns: Pointer to the interface name. This can differ from the
835 * interface name used in init() call. Init() is called first.
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.
841 const char * (*get_ifname
)(void *priv
);
844 * get_mac_addr - Get own MAC address
845 * @priv: private driver interface data
847 * Returns: Pointer to own MAC address or %NULL on failure
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
853 const u8
* (*get_mac_addr
)(void *priv
);
856 * send_eapol - Optional function for sending EAPOL packets
857 * @priv: private driver interface data
858 * @dest: Destination MAC address
860 * @data: EAPOL packet starting with IEEE 802.1X header
861 * @data_len: Size of the EAPOL packet
863 * Returns: 0 on success, -1 on failure
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.
873 int (*send_eapol
)(void *priv
, const u8
*dest
, u16 proto
,
874 const u8
*data
, size_t data_len
);
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
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.
888 int (*set_operstate
)(void *priv
, int state
);
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
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.
906 int (*mlme_setprotection
)(void *priv
, const u8
*addr
, int protect_type
,
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.
917 * This function is only needed for drivers that export MLME
918 * (management frame processing) to %wpa_supplicant or hostapd.
920 struct hostapd_hw_modes
* (*get_hw_feature_data
)(void *priv
,
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
932 * This function is only needed for drivers that export MLME
933 * (management frame processing) to wpa_supplicant.
935 int (*set_channel
)(void *priv
, enum hostapd_hw_mode phymode
, int chan
,
939 * set_ssid - Set SSID
940 * @priv: Private driver interface data
942 * @ssid_len: SSID length
943 * Returns: 0 on success, -1 on failure
945 * This function is only needed for drivers that export MLME
946 * (management frame processing) to wpa_supplicant.
948 int (*set_ssid
)(void *priv
, const u8
*ssid
, size_t ssid_len
);
951 * set_bssid - Set BSSID
952 * @priv: Private driver interface data
954 * Returns: 0 on success, -1 on failure
956 * This function is only needed for drivers that export MLME
957 * (management frame processing) to wpa_supplicant.
959 int (*set_bssid
)(void *priv
, const u8
*bssid
);
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
968 * This function is only needed for drivers that export MLME
969 * (management frame processing) to wpa_supplicant.
971 int (*send_mlme
)(void *priv
, const u8
*data
, size_t data_len
);
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
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).
988 int (*mlme_add_sta
)(void *priv
, const u8
*addr
, const u8
*supp_rates
,
989 size_t supp_rates_len
);
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
997 * This function is only needed for drivers that export MLME
998 * (management frame processing) to wpa_supplicant.
1000 int (*mlme_remove_sta
)(void *priv
, const u8
*addr
);
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
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.
1014 * This function is only needed for driver that support IEEE 802.11r
1015 * (Fast BSS Transition).
1017 int (*update_ft_ies
)(void *priv
, const u8
*md
, const u8
*ies
,
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
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
1033 int (*send_ft_action
)(void *priv
, u8 action
, const u8
*target_ap
,
1034 const u8
*ies
, size_t ies_len
);
1037 * get_scan_results2 - Fetch the latest scan results
1038 * @priv: private driver interface data
1040 * Returns: Allocated buffer of scan results (caller is responsible for
1041 * freeing the data structure) on success, NULL on failure
1043 struct wpa_scan_results
* (*get_scan_results2
)(void *priv
);
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
1051 * This function is for drivers which support some form
1052 * of setting a regulatory domain.
1054 int (*set_country
)(void *priv
, const char *alpha2
);
1057 * global_init - Global driver initialization
1058 * Returns: Pointer to private data (global), %NULL on failure
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.
1067 void * (*global_init
)(void);
1070 * global_deinit - Global driver deinitialization
1071 * @priv: private driver global data from global_init()
1073 * Terminate any global driver related functionality and free the
1074 * global data structure.
1076 void (*global_deinit
)(void *priv
);
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
1086 * This function can be used instead of init() if the driver wrapper
1089 void * (*init2
)(void *ctx
, const char *ifname
, void *global_priv
);
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
1098 struct wpa_interface_info
* (*get_interfaces
)(void *global_priv
);
1101 * scan2 - Request the driver to initiate scan
1102 * @priv: private driver interface data
1103 * @params: Scan parameters
1105 * Returns: 0 on success, -1 on failure
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().
1111 int (*scan2
)(void *priv
, struct wpa_driver_scan_params
*params
);
1114 * authenticate - Request driver to authenticate
1115 * @priv: private driver interface data
1116 * @params: authentication parameters
1117 * Returns: 0 on success, -1 on failure
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,
1125 int (*authenticate
)(void *priv
,
1126 struct wpa_driver_auth_params
*params
);
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
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.
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
,
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
1156 * This function is used instead of init() or init2() when the driver
1157 * wrapper is used withh hostapd.
1159 void * (*hapd_init
)(struct hostapd_data
*hapd
,
1160 struct wpa_init_params
*params
);
1163 * hapd_deinit - Deinitialize driver interface (hostapd only)
1164 * @priv: Private driver interface data from hapd_init()
1166 void (*hapd_deinit
)(void *priv
);
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
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.
1180 int (*set_ieee8021x
)(void *priv
, struct wpa_bss_params
*params
);
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
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().
1192 int (*set_privacy
)(const char *ifname
, void *priv
, int enabled
);
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
1200 * @seq: Buffer for returning the latest used TSC/packet number
1201 * Returns: 0 on success, -1 on failure
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).
1208 int (*get_seqnum
)(const char *ifname
, void *priv
, const u8
*addr
,
1212 * flush - Flush all association stations (AP only)
1213 * @priv: Private driver interface data
1214 * Returns: 0 on success, -1 on failure
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.
1220 int (*flush
)(void *priv
);
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
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
1235 int (*set_generic_elem
)(const char *ifname
, void *priv
, const u8
*elem
,
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
1245 int (*read_sta_data
)(void *priv
, struct hostap_sta_driver_data
*data
,
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
1257 * Returns: 0 on success, -1 on failure
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
);
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
1271 * This function requests a specific station to be deauthenticated and
1272 * a Deauthentication frame to be sent to it.
1274 int (*sta_deauth
)(void *priv
, const u8
*own_addr
, const u8
*addr
,
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
1285 * This function requests a specific station to be disassociated and
1286 * a Disassociation frame to be sent to it.
1288 int (*sta_disassoc
)(void *priv
, const u8
*own_addr
, const u8
*addr
,
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
1297 int (*sta_remove
)(void *priv
, const u8
*addr
);
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
1307 * This function need not be implemented if the driver uses Beacon
1308 * template from set_beacon() and does not reply to Probe Request
1311 int (*hapd_get_ssid
)(const char *ifname
, void *priv
, u8
*buf
, int len
);
1314 * hapd_set_ssid - Set SSID (AP only)
1315 * @ifname: Interface (master or virtual BSS)
1316 * @priv: Private driver interface data
1318 * @len: Length of the SSID in octets
1319 * Returns: 0 on success, -1 on failure
1321 int (*hapd_set_ssid
)(const char *ifname
, void *priv
, const u8
*buf
,
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
1329 * This need not be implemented if the driver does not take care of
1330 * association processing.
1332 int (*hapd_set_countermeasures
)(void *priv
, int enabled
);
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
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.
1345 int (*sta_add
)(const char *ifname
, void *priv
,
1346 struct hostapd_sta_add_params
*params
);
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
1354 int (*get_inact_sec
)(void *priv
, const u8
*addr
);
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
1362 int (*sta_clear_stats
)(void *priv
, const u8
*addr
);
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
1370 int (*set_freq
)(void *priv
, struct hostapd_freq_params
*freq
);
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
1378 int (*set_rts
)(void *priv
, int rts
);
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
1386 int (*set_frag
)(void *priv
, int frag
);
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
1397 int (*sta_set_flags
)(void *priv
, const u8
*addr
,
1398 int total_flags
, int flags_or
, int flags_and
);
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
1408 int (*set_rate_sets
)(void *priv
, int *supp_rates
, int *basic_rates
,
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
1417 int (*set_cts_protect
)(void *priv
, int value
);
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
1425 int (*set_preamble
)(void *priv
, int value
);
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
1433 int (*set_short_slot_time
)(void *priv
, int value
);
1436 * set_tx_queue_params - Set TX queue parameters
1437 * @priv: Private driver interface data
1438 * @queue: Queue number
1442 * @burst_time: Maximum length for bursting in 0.1 msec units
1444 int (*set_tx_queue_params
)(void *priv
, int queue
, int aifs
, int cw_min
,
1445 int cw_max
, int burst_time
);
1448 * valid_bss_mask - Validate BSSID mask
1449 * @priv: Private driver interface data
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
1456 int (*valid_bss_mask
)(void *priv
, const u8
*addr
, const u8
*mask
);
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
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
);
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
1480 int (*if_remove
)(void *priv
, enum wpa_driver_if_type type
,
1481 const char *ifname
);
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
1489 * Returns: 0 on success, -1 on failure
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.
1497 int (*set_sta_vlan
)(void *priv
, const u8
*addr
, const char *ifname
,
1501 * commit - Optional commit changes handler (AP only)
1502 * @priv: driver private data
1503 * Returns: 0 on success, -1 on failure
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.
1510 int (*commit
)(void *priv
);
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
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
1522 int (*send_ether
)(void *priv
, const u8
*dst
, const u8
*src
, u16 proto
,
1523 const u8
*data
, size_t data_len
);
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
1533 int (*set_radius_acl_auth
)(void *priv
, const u8
*mac
, int accepted
,
1534 u32 session_timeout
);
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
1542 int (*set_radius_acl_expire
)(void *priv
, const u8
*mac
);
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
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
);
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
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.
1571 int (*set_ap_wps_ie
)(const char *ifname
, void *priv
,
1572 const struct wpabuf
*beacon
,
1573 const struct wpabuf
*proberesp
);
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
1581 int (*set_supp_port
)(void *priv
, int authorized
);
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
1591 int (*set_wds_sta
)(void *priv
, const u8
*addr
, int aid
, int val
);
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
1598 * @src: Source MAC address
1600 * @data_len: data length in octets
1601 * Returns: 0 on success, -1 on failure
1603 * This command can be used to request the driver to transmit an action
1604 * frame to the specified destination. If a remain-on-channel duration
1605 * is in progress, the frame is transmitted on that channel. Otherwise,
1606 * the frame is transmitted on the current operational channel if in
1607 * associated state in station mode or if operating as an AP. If none
1608 * of these conditions is in effect, send_action() cannot be used.
1610 int (*send_action
)(void *priv
, unsigned int freq
,
1611 const u8
*dst
, const u8
*src
,
1612 const u8
*data
, size_t data_len
);
1615 * alloc_interface_addr - Allocate a virtual interface address
1616 * @priv: Private driver interface data
1617 * @addr: Buffer for returning the address
1618 * Returns: 0 on success, -1 on failure
1620 * This command pre-allocates an interface address for a new virtual
1621 * interface. This can be used before creating a virtual interface if
1622 * the interface mode (e.g., AP vs. station) is not yet known, but the
1623 * address of the virtual interface is already needed. This helps with
1624 * drivers that cannot change interface mode without destroying and
1625 * re-creating the interface.
1627 * The allocated address can be used in a bss_add() call to request a
1630 int (*alloc_interface_addr
)(void *priv
, u8
*addr
);
1633 * release_interface_addr - Release a virtual interface address
1634 * @priv: Private driver interface data
1635 * @addr: Address to be freed from alloc_interface_addr()
1637 * This command is used to release a virtual interface address that was
1638 * allocated with alloc_interface_addr(), but has not yet been used
1639 * with bss_add() to actually create the interface. This allows the
1640 * driver to release the pending allocation for a new interface.
1642 void (*release_interface_addr
)(void *priv
, const u8
*addr
);
1645 * remain_on_channel - Remain awake on a channel
1646 * @priv: Private driver interface data
1647 * @freq: Frequency (in MHz) of the channel
1648 * @duration: Duration in milliseconds
1649 * Returns: 0 on success, -1 on failure
1651 * This command is used to request the driver to remain awake on the
1652 * specified channel for the specified duration and report received
1653 * Action frames with EVENT_RX_ACTION events. Optionally, received
1654 * Probe Request frames may also be requested to be reported by calling
1655 * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
1657 * The driver may not be at the requested channel when this function
1658 * returns, i.e., the return code is only indicating whether the
1659 * request was accepted. The caller will need to wait until the
1660 * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
1661 * completed the channel change. This may take some time due to other
1662 * need for the radio and the caller should be prepared to timing out
1663 * its wait since there are no guarantees on when this request can be
1666 int (*remain_on_channel
)(void *priv
, unsigned int freq
,
1667 unsigned int duration
);
1670 * cancel_remain_on_channel - Cancel remain-on-channel operation
1671 * @priv: Private driver interface data
1673 * This command can be used to cancel a remain-on-channel operation
1674 * before its originally requested duration has passed. This could be
1675 * used, e.g., when remain_on_channel() is used to request extra time
1676 * to receive a response to an Action frame and the response is
1677 * received when there is still unneeded time remaining on the
1678 * remain-on-channel operation.
1680 int (*cancel_remain_on_channel
)(void *priv
);
1683 * probe_req_report - Request Probe Request frames to be indicated
1684 * @priv: Private driver interface data
1685 * @report: Whether to report received Probe Request frames
1686 * Returns: 0 on success, -1 on failure (or if not supported)
1688 * This command can be used to request the driver to indicate when
1689 * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
1690 * Since this operation may require extra resources, e.g., due to less
1691 * optimal hardware/firmware RX filtering, many drivers may disable
1692 * Probe Request reporting at least in station mode. This command is
1693 * used to notify the driver when the Probe Request frames need to be
1694 * reported, e.g., during remain-on-channel operations.
1696 int (*probe_req_report
)(void *priv
, int report
);
1701 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
1703 enum wpa_event_type
{
1705 * EVENT_ASSOC - Association completed
1707 * This event needs to be delivered when the driver completes IEEE
1708 * 802.11 association or reassociation successfully.
1709 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
1710 * after this event has been generated. In addition, optional
1711 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
1712 * more information about the association. If the driver interface gets
1713 * both of these events at the same time, it can also include the
1714 * assoc_info data in EVENT_ASSOC call.
1719 * EVENT_DISASSOC - Association lost
1721 * This event should be called when association is lost either due to
1722 * receiving deauthenticate or disassociate frame from the AP or when
1723 * sending either of these frames to the current AP. If the driver
1724 * supports separate deauthentication event, EVENT_DISASSOC should only
1725 * be used for disassociation and EVENT_DEAUTH for deauthentication.
1726 * In AP mode, union wpa_event_data::disassoc_info is required.
1731 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
1733 * This event must be delivered when a Michael MIC error is detected by
1734 * the local driver. Additional data for event processing is
1735 * provided with union wpa_event_data::michael_mic_failure. This
1736 * information is used to request new encyption key and to initiate
1737 * TKIP countermeasures if needed.
1739 EVENT_MICHAEL_MIC_FAILURE
,
1742 * EVENT_SCAN_RESULTS - Scan results available
1744 * This event must be called whenever scan results are available to be
1745 * fetched with struct wpa_driver_ops::get_scan_results(). This event
1746 * is expected to be used some time after struct wpa_driver_ops::scan()
1747 * is called. If the driver provides an unsolicited event when the scan
1748 * has been completed, this event can be used to trigger
1749 * EVENT_SCAN_RESULTS call. If such event is not available from the
1750 * driver, the driver wrapper code is expected to use a registered
1751 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
1752 * scan is expected to be completed. Optional information about
1753 * completed scan can be provided with union wpa_event_data::scan_info.
1758 * EVENT_ASSOCINFO - Report optional extra information for association
1760 * This event can be used to report extra association information for
1761 * EVENT_ASSOC processing. This extra information includes IEs from
1762 * association frames and Beacon/Probe Response frames in union
1763 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
1764 * EVENT_ASSOC. Alternatively, the driver interface can include
1765 * assoc_info data in the EVENT_ASSOC call if it has all the
1766 * information available at the same point.
1771 * EVENT_INTERFACE_STATUS - Report interface status changes
1773 * This optional event can be used to report changes in interface
1774 * status (interface added/removed) using union
1775 * wpa_event_data::interface_status. This can be used to trigger
1776 * wpa_supplicant to stop and re-start processing for the interface,
1777 * e.g., when a cardbus card is ejected/inserted.
1779 EVENT_INTERFACE_STATUS
,
1782 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
1784 * This event can be used to inform wpa_supplicant about candidates for
1785 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
1786 * for scan request (ap_scan=2 mode), this event is required for
1787 * pre-authentication. If wpa_supplicant is performing scan request
1788 * (ap_scan=1), this event is optional since scan results can be used
1789 * to add pre-authentication candidates. union
1790 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
1791 * candidate and priority of the candidate, e.g., based on the signal
1792 * strength, in order to try to pre-authenticate first with candidates
1793 * that are most likely targets for re-association.
1795 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
1796 * on the candidate list. In addition, it can be called for the current
1797 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
1798 * will automatically skip pre-authentication in cases where a valid
1799 * PMKSA exists. When more than one candidate exists, this event should
1800 * be generated once for each candidate.
1802 * Driver will be notified about successful pre-authentication with
1803 * struct wpa_driver_ops::add_pmkid() calls.
1805 EVENT_PMKID_CANDIDATE
,
1808 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
1810 * This event can be used to inform wpa_supplicant about desire to set
1811 * up secure direct link connection between two stations as defined in
1812 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
1813 * STAKey negotiation. The caller will need to set peer address for the
1819 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
1821 * The driver is expected to report the received FT IEs from
1822 * FT authentication sequence from the AP. The FT IEs are included in
1823 * the extra information in union wpa_event_data::ft_ies.
1828 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
1830 * The driver can use this event to inform wpa_supplicant about a STA
1831 * in an IBSS with which protected frames could be exchanged. This
1832 * event starts RSN authentication with the other STA to authenticate
1833 * the STA and set up encryption keys with it.
1835 EVENT_IBSS_RSN_START
,
1838 * EVENT_AUTH - Authentication result
1840 * This event should be called when authentication attempt has been
1841 * completed. This is only used if the driver supports separate
1842 * authentication step (struct wpa_driver_ops::authenticate).
1843 * Information about authentication result is included in
1844 * union wpa_event_data::auth.
1849 * EVENT_DEAUTH - Authentication lost
1851 * This event should be called when authentication is lost either due
1852 * to receiving deauthenticate frame from the AP or when sending that
1853 * frame to the current AP.
1854 * In AP mode, union wpa_event_data::deauth_info is required.
1859 * EVENT_ASSOC_REJECT - Association rejected
1861 * This event should be called when (re)association attempt has been
1862 * rejected by the AP. Information about authentication result is
1863 * included in union wpa_event_data::assoc_reject.
1868 * EVENT_AUTH_TIMED_OUT - Authentication timed out
1870 EVENT_AUTH_TIMED_OUT
,
1873 * EVENT_ASSOC_TIMED_OUT - Association timed out
1875 EVENT_ASSOC_TIMED_OUT
,
1878 * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
1883 * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
1885 EVENT_WPS_BUTTON_PUSHED
,
1888 * EVENT_TX_STATUS - Report TX status
1893 * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
1895 EVENT_RX_FROM_UNKNOWN
,
1898 * EVENT_RX_MGMT - Report RX of a management frame
1903 * EVENT_RX_ACTION - Action frame received
1905 * This event is used to indicate when an Action frame has been
1906 * received. Information about the received frame is included in
1907 * union wpa_event_data::rx_action.
1912 * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
1914 * This event is used to indicate when the driver has started the
1915 * requested remain-on-channel duration. Information about the
1916 * operation is included in union wpa_event_data::remain_on_channel.
1918 EVENT_REMAIN_ON_CHANNEL
,
1921 * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
1923 * This event is used to indicate when the driver has completed
1924 * remain-on-channel duration, i.e., may noot be available on the
1925 * requested channel anymore. Information about the
1926 * operation is included in union wpa_event_data::remain_on_channel.
1928 EVENT_CANCEL_REMAIN_ON_CHANNEL
,
1931 * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
1933 * This event is used only by driver_test.c and userspace MLME.
1938 * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
1940 * This event is used to indicate when a Probe Request frame has been
1941 * received. Information about the received frame is included in
1942 * union wpa_event_data::rx_probe_req. The driver is required to report
1943 * these events only after successfully completed probe_req_report()
1944 * commands to request the events (i.e., report parameter is non-zero)
1945 * in station mode. In AP mode, Probe Request frames should always be
1951 * EVENT_NEW_STA - New wired device noticed
1953 * This event is used to indicate that a new device has been detected
1954 * in a network that does not use association-like functionality (i.e.,
1955 * mainly wired Ethernet). This can be used to start EAPOL
1956 * authenticator when receiving a frame from a device. The address of
1957 * the device is included in union wpa_event_data::new_sta.
1962 * EVENT_EAPOL_RX - Report received EAPOL frame
1964 * When in AP mode with hostapd, this event is required to be used to
1965 * deliver the receive EAPOL frames from the driver. With
1966 * %wpa_supplicant, this event is used only if the send_eapol() handler
1967 * is used to override the use of l2_packet for EAPOL frame TX.
1974 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
1976 union wpa_event_data
{
1978 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
1980 * This structure is optional for EVENT_ASSOC calls and required for
1981 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
1982 * driver interface does not need to generate separate EVENT_ASSOCINFO
1987 * req_ies - (Re)Association Request IEs
1989 * If the driver generates WPA/RSN IE, this event data must be
1990 * returned for WPA handshake to have needed information. If
1991 * wpa_supplicant-generated WPA/RSN IE is used, this
1992 * information event is optional.
1994 * This should start with the first IE (fixed fields before IEs
1995 * are not included).
2000 * req_ies_len - Length of req_ies in bytes
2005 * resp_ies - (Re)Association Response IEs
2007 * Optional association data from the driver. This data is not
2008 * required WPA, but may be useful for some protocols and as
2009 * such, should be reported if this is available to the driver
2012 * This should start with the first IE (fixed fields before IEs
2013 * are not included).
2018 * resp_ies_len - Length of resp_ies in bytes
2020 size_t resp_ies_len
;
2023 * beacon_ies - Beacon or Probe Response IEs
2025 * Optional Beacon/ProbeResp data: IEs included in Beacon or
2026 * Probe Response frames from the current AP (i.e., the one
2027 * that the client just associated with). This information is
2028 * used to update WPA/RSN IE for the AP. If this field is not
2029 * set, the results from previous scan will be used. If no
2030 * data for the new AP is found, scan results will be requested
2031 * again (without scan request). At this point, the driver is
2032 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
2035 * This should start with the first IE (fixed fields before IEs
2036 * are not included).
2038 const u8
*beacon_ies
;
2041 * beacon_ies_len - Length of beacon_ies */
2042 size_t beacon_ies_len
;
2045 * freq - Frequency of the operational channel in MHz
2050 * addr - Station address (for AP mode)
2056 * struct disassoc_info - Data for EVENT_DISASSOC events
2058 struct disassoc_info
{
2060 * addr - Station address (for AP mode)
2066 * struct deauth_info - Data for EVENT_DEAUTH events
2068 struct deauth_info
{
2070 * addr - Station address (for AP mode)
2076 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
2078 struct michael_mic_failure
{
2081 } michael_mic_failure
;
2084 * struct interface_status - Data for EVENT_INTERFACE_STATUS
2086 struct interface_status
{
2089 EVENT_INTERFACE_ADDED
, EVENT_INTERFACE_REMOVED
2094 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
2096 struct pmkid_candidate
{
2097 /** BSSID of the PMKID candidate */
2099 /** Smaller the index, higher the priority */
2101 /** Whether RSN IE includes pre-authenticate flag */
2106 * struct stkstart - Data for EVENT_STKSTART
2113 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
2115 * During FT (IEEE 802.11r) authentication sequence, the driver is
2116 * expected to use this event to report received FT IEs (MDIE, FTIE,
2117 * RSN IE, TIE, possible resource request) to the supplicant. The FT
2118 * IEs for the next message will be delivered through the
2119 * struct wpa_driver_ops::update_ft_ies() callback.
2125 u8 target_ap
[ETH_ALEN
];
2126 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
2128 /** Length of ric_ies buffer in octets */
2133 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
2135 struct ibss_rsn_start
{
2140 * struct auth_info - Data for EVENT_AUTH events
2151 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
2153 struct assoc_reject
{
2155 * resp_ies - (Re)Association Response IEs
2157 * Optional association data from the driver. This data is not
2158 * required WPA, but may be useful for some protocols and as
2159 * such, should be reported if this is available to the driver
2162 * This should start with the first IE (fixed fields before IEs
2163 * are not included).
2168 * resp_ies_len - Length of resp_ies in bytes
2170 size_t resp_ies_len
;
2173 * status_code - Status Code from (Re)association Response
2178 struct timeout_event
{
2183 * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
2192 * struct tx_status - Data for EVENT_TX_STATUS events
2204 * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
2206 struct rx_from_unknown
{
2212 * struct rx_mgmt - Data for EVENT_RX_MGMT events
2222 * struct rx_action - Data for EVENT_RX_ACTION events
2226 * sa - Source address of the received Action frame
2231 * category - Action frame category
2236 * data - Action frame body after category field
2241 * len - Length of data in octets
2246 * freq - Frequency (in MHz) on which the frame was received
2252 * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
2254 * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
2256 struct remain_on_channel
{
2258 * freq - Channel frequency in MHz
2263 * duration - Duration to remain on the channel in milliseconds
2265 unsigned int duration
;
2266 } remain_on_channel
;
2269 * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
2270 * @aborted: Whether the scan was aborted
2271 * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
2272 * @num_freqs: Number of entries in freqs array
2273 * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
2275 * @num_ssids: Number of entries in ssids array
2281 struct wpa_driver_scan_ssid ssids
[WPAS_MAX_SCAN_SSIDS
];
2286 * struct mlme_rx - Data for EVENT_MLME_RX events
2297 * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
2299 struct rx_probe_req
{
2301 * sa - Source address of the received Probe Request frame
2306 * ie - IEs from the Probe Request body
2311 * ie_len - Length of ie buffer in octets
2317 * struct new_sta - Data for EVENT_NEW_STA events
2324 * struct eapol_rx - Data for EVENT_EAPOL_RX events
2334 * wpa_supplicant_event - Report a driver event for wpa_supplicant
2335 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
2336 * with struct wpa_driver_ops::init()
2337 * @event: event type (defined above)
2338 * @data: possible extra data for the event
2340 * Driver wrapper code should call this function whenever an event is received
2343 void wpa_supplicant_event(void *ctx
, enum wpa_event_type event
,
2344 union wpa_event_data
*data
);
2348 * The following inline functions are provided for convenience to simplify
2349 * event indication for some of the common events.
2352 static inline void drv_event_assoc(void *ctx
, const u8
*addr
, const u8
*ie
,
2355 union wpa_event_data event
;
2356 os_memset(&event
, 0, sizeof(event
));
2357 event
.assoc_info
.req_ies
= ie
;
2358 event
.assoc_info
.req_ies_len
= ielen
;
2359 event
.assoc_info
.addr
= addr
;
2360 wpa_supplicant_event(ctx
, EVENT_ASSOC
, &event
);
2363 static inline void drv_event_disassoc(void *ctx
, const u8
*addr
)
2365 union wpa_event_data event
;
2366 os_memset(&event
, 0, sizeof(event
));
2367 event
.disassoc_info
.addr
= addr
;
2368 wpa_supplicant_event(ctx
, EVENT_DISASSOC
, &event
);
2371 static inline void drv_event_eapol_rx(void *ctx
, const u8
*src
, const u8
*data
,
2374 union wpa_event_data event
;
2375 os_memset(&event
, 0, sizeof(event
));
2376 event
.eapol_rx
.src
= src
;
2377 event
.eapol_rx
.data
= data
;
2378 event
.eapol_rx
.data_len
= data_len
;
2379 wpa_supplicant_event(ctx
, EVENT_EAPOL_RX
, &event
);
2382 #endif /* DRIVER_H */