2 * WPA Supplicant - driver interface definition
3 * Copyright (c) 2003-2008, 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.
18 #define WPA_SUPPLICANT_DRIVER_VERSION 3
22 #define AUTH_ALG_OPEN_SYSTEM 0x01
23 #define AUTH_ALG_SHARED_KEY 0x02
24 #define AUTH_ALG_LEAP 0x04
26 #define IEEE80211_MODE_INFRA 0
27 #define IEEE80211_MODE_IBSS 1
29 #define IEEE80211_CAP_ESS 0x0001
30 #define IEEE80211_CAP_IBSS 0x0002
31 #define IEEE80211_CAP_PRIVACY 0x0010
33 #define SSID_MAX_WPA_IE_LEN 40
35 * struct wpa_scan_result - Scan results (old structure)
38 * @ssid_len: length of the ssid
40 * @wpa_ie_len: length of the wpa_ie
42 * @rsn_ie_len: length of the RSN IE
43 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
44 * @caps: capability information field in host byte order
45 * @qual: signal quality
47 * @level: signal level
48 * @maxrate: maximum supported rate
49 * @mdie_present: Whether MDIE was included in Beacon/ProbeRsp frame
50 * @mdie: Mobility domain identifier IE (IEEE 802.11r MDIE) (starting from
54 * This structure is used as a generic format for scan results from the
55 * driver. Each driver interface implementation is responsible for converting
56 * the driver or OS specific scan results into this format.
58 * This structure is the old data structure used for scan results. It is
59 * obsoleted by the new struct wpa_scan_res structure and the old version is
60 * only included for backwards compatibility with existing driver wrapper
61 * implementations. New implementations are encouraged to implement for struct
62 * wpa_scan_res. The old structure will be removed at some point.
64 struct wpa_scan_result
{
68 u8 wpa_ie
[SSID_MAX_WPA_IE_LEN
];
70 u8 rsn_ie
[SSID_MAX_WPA_IE_LEN
];
85 * struct wpa_scan_res - Scan result for an BSS/IBSS
87 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
88 * @beacon_int: beacon interval in TUs (host byte order)
89 * @caps: capability information field in host byte order
90 * @qual: signal quality
92 * @level: signal level
94 * @ie_len: length of the following IE field in octets
96 * This structure is used as a generic format for scan results from the
97 * driver. Each driver interface implementation is responsible for converting
98 * the driver or OS specific scan results into this format.
100 * If the driver does not support reporting all IEs, the IE data structure is
101 * constructed of the IEs that are available. This field will also need to
102 * include SSID in IE format. All drivers are encouraged to be extended to
103 * report all IEs to make it easier to support future additions.
105 struct wpa_scan_res
{
115 /* followed by ie_len octets of IEs */
119 * struct wpa_scan_results - Scan results
120 * @res: Array of pointers to allocated variable length scan result entries
121 * @num: Number of entries in the scan result array
123 struct wpa_scan_results
{
124 struct wpa_scan_res
**res
;
129 * struct wpa_driver_associate_params - Association parameters
130 * Data for struct wpa_driver_ops::associate().
132 struct wpa_driver_associate_params
{
134 * bssid - BSSID of the selected AP
135 * This can be %NULL, if ap_scan=2 mode is used and the driver is
136 * responsible for selecting with which BSS to associate. */
140 * ssid - The selected SSID
146 * freq - Frequency of the channel the selected AP is using
147 * Frequency that the selected AP is using (in MHz as
148 * reported in the scan results)
153 * wpa_ie - WPA information element for (Re)Association Request
154 * WPA information element to be included in (Re)Association
155 * Request (including information element id and length). Use
156 * of this WPA IE is optional. If the driver generates the WPA
157 * IE, it can use pairwise_suite, group_suite, and
158 * key_mgmt_suite to select proper algorithms. In this case,
159 * the driver has to notify wpa_supplicant about the used WPA
160 * IE by generating an event that the interface code will
161 * convert into EVENT_ASSOCINFO data (see below).
163 * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
164 * instead. The driver can determine which version is used by
165 * looking at the first byte of the IE (0xdd for WPA, 0x30 for
170 * wpa_ie_len - length of the wpa_ie
174 /* The selected pairwise/group cipher and key management
175 * suites. These are usually ignored if @wpa_ie is used. */
176 wpa_cipher pairwise_suite
;
177 wpa_cipher group_suite
;
178 wpa_key_mgmt key_mgmt_suite
;
181 * auth_alg - Allowed authentication algorithms
182 * Bit field of AUTH_ALG_*
187 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
192 * wep_key - WEP keys for static WEP configuration
194 const u8
*wep_key
[4];
197 * wep_key_len - WEP key length for static WEP configuration
199 size_t wep_key_len
[4];
202 * wep_tx_keyidx - WEP TX key index for static WEP configuration
207 * mgmt_frame_protection - IEEE 802.11w management frame protection
210 NO_MGMT_FRAME_PROTECTION
,
211 MGMT_FRAME_PROTECTION_OPTIONAL
,
212 MGMT_FRAME_PROTECTION_REQUIRED
213 } mgmt_frame_protection
;
216 * ft_ies - IEEE 802.11r / FT information elements
217 * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
218 * for fast transition, this parameter is set to include the IEs that
219 * are to be sent in the next FT Authentication Request message.
220 * update_ft_ies() handler is called to update the IEs for further
221 * FT messages in the sequence.
223 * The driver should use these IEs only if the target AP is advertising
224 * the same mobility domain as the one included in the MDIE here.
226 * In ap_scan=2 mode, the driver can use these IEs when moving to a new
227 * AP after the initial association. These IEs can only be used if the
228 * target AP is advertising support for FT and is using the same MDIE
229 * and SSID as the current AP.
231 * The driver is responsible for reporting the FT IEs received from the
232 * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
233 * type. update_ft_ies() handler will then be called with the FT IEs to
234 * include in the next frame in the authentication sequence.
239 * ft_ies_len - Length of ft_ies in bytes
244 * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
246 * This value is provided to allow the driver interface easier access
247 * to the current mobility domain. This value is set to %NULL if no
248 * mobility domain is currently active.
253 * passphrase - RSN passphrase for PSK
255 * This value is made available only for WPA/WPA2-Personal (PSK) and
256 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
257 * the 8..63 character ASCII passphrase, if available. Please note that
258 * this can be %NULL if passphrase was not used to generate the PSK. In
259 * that case, the psk field must be used to fetch the PSK.
261 const char *passphrase
;
264 * psk - RSN PSK (alternative for passphrase for PSK)
266 * This value is made available only for WPA/WPA2-Personal (PSK) and
267 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
268 * the 32-octet (256-bit) PSK, if available. The driver wrapper should
269 * be prepared to handle %NULL value as an error.
275 * struct wpa_driver_capa - Driver capability information
277 struct wpa_driver_capa
{
278 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
279 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
280 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
281 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
282 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
283 #define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
284 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
285 unsigned int key_mgmt
;
287 #define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
288 #define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
289 #define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
290 #define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
293 #define WPA_DRIVER_AUTH_OPEN 0x00000001
294 #define WPA_DRIVER_AUTH_SHARED 0x00000002
295 #define WPA_DRIVER_AUTH_LEAP 0x00000004
298 /* Driver generated WPA/RSN IE */
299 #define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
300 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
301 #define WPA_DRIVER_FLAGS_USER_SPACE_MLME 0x00000004
302 /* Driver takes care of RSN 4-way handshake internally; PMK is configured with
303 * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
304 #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
309 #define WPA_CHAN_W_SCAN 0x00000001
310 #define WPA_CHAN_W_ACTIVE_SCAN 0x00000002
311 #define WPA_CHAN_W_IBSS 0x00000004
313 struct wpa_channel_data
{
314 short chan
; /* channel number (IEEE 802.11) */
315 short freq
; /* frequency in MHz */
316 int flag
; /* flag for user space use (WPA_CHAN_*) */
319 #define WPA_RATE_ERP 0x00000001
320 #define WPA_RATE_BASIC 0x00000002
321 #define WPA_RATE_PREAMBLE2 0x00000004
322 #define WPA_RATE_SUPPORTED 0x00000010
323 #define WPA_RATE_OFDM 0x00000020
324 #define WPA_RATE_CCK 0x00000040
325 #define WPA_RATE_MANDATORY 0x00000100
327 struct wpa_rate_data
{
328 int rate
; /* rate in 100 kbps */
329 int flags
; /* WPA_RATE_ flags */
339 struct wpa_hw_modes
{
342 struct wpa_channel_data
*channels
;
344 struct wpa_rate_data
*rates
;
348 struct ieee80211_rx_status
{
355 * struct wpa_driver_ops - Driver interface API definition
357 * This structure defines the API that each driver interface needs to implement
358 * for core wpa_supplicant code. All driver specific functionality is captured
361 struct wpa_driver_ops
{
362 /** Name of the driver interface */
364 /** One line description of the driver interface */
368 * get_bssid - Get the current BSSID
369 * @priv: private driver interface data
370 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
372 * Returns: 0 on success, -1 on failure
374 * Query kernel driver for the current BSSID and copy it to bssid.
375 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
378 int (*get_bssid
)(void *priv
, u8
*bssid
);
381 * get_ssid - Get the current SSID
382 * @priv: private driver interface data
383 * @ssid: buffer for SSID (at least 32 bytes)
385 * Returns: Length of the SSID on success, -1 on failure
387 * Query kernel driver for the current SSID and copy it to ssid.
388 * Returning zero is recommended if the STA is not associated.
390 * Note: SSID is an array of octets, i.e., it is not nul terminated and
391 * can, at least in theory, contain control characters (including nul)
392 * and as such, should be processed as binary data, not a printable
395 int (*get_ssid
)(void *priv
, u8
*ssid
);
398 * set_wpa - Enable/disable WPA support (OBSOLETE)
399 * @priv: private driver interface data
400 * @enabled: 1 = enable, 0 = disable
402 * Returns: 0 on success, -1 on failure
404 * Note: This function is included for backwards compatibility. This is
405 * called only just after init and just before deinit, so these
406 * functions can be used to implement same functionality and the driver
407 * interface need not define this function.
409 * Configure the kernel driver to enable/disable WPA support. This may
410 * be empty function, if WPA support is always enabled. Common
411 * configuration items are WPA IE (clearing it when WPA support is
412 * disabled), Privacy flag configuration for capability field (note:
413 * this the value need to set in associate handler to allow plaintext
414 * mode to be used) when trying to associate with, roaming mode (can
415 * allow wpa_supplicant to control roaming if ap_scan=1 is used;
416 * however, drivers can also implement roaming if desired, especially
417 * ap_scan=2 mode is used for this).
419 int (*set_wpa
)(void *priv
, int enabled
);
422 * set_key - Configure encryption key
423 * @priv: private driver interface data
424 * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
425 * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
426 * %WPA_ALG_NONE clears the key.
427 * @addr: address of the peer STA or ff:ff:ff:ff:ff:ff for
428 * broadcast/default keys
429 * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
431 * @set_tx: configure this key as the default Tx key (only used when
432 * driver does not support separate unicast/individual key
433 * @seq: sequence number/packet number, seq_len octets, the next
434 * packet number to be used for in replay protection; configured
435 * for Rx keys (in most cases, this is only used with broadcast
436 * keys and set to zero for unicast keys)
437 * @seq_len: length of the seq, depends on the algorithm:
438 * TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
439 * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
441 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
442 * TKIP: 32, CCMP: 16, IGTK: 16)
444 * Returns: 0 on success, -1 on failure
446 * Configure the given key for the kernel driver. If the driver
447 * supports separate individual keys (4 default keys + 1 individual),
448 * addr can be used to determine whether the key is default or
449 * individual. If only 4 keys are supported, the default key with key
450 * index 0 is used as the individual key. STA must be configured to use
451 * it as the default Tx key (set_tx is set) and accept Rx for all the
452 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
453 * broadcast keys, so key index 0 is available for this kind of
456 * Please note that TKIP keys include separate TX and RX MIC keys and
457 * some drivers may expect them in different order than wpa_supplicant
458 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
459 * will tricker Michael MIC errors. This can be fixed by changing the
460 * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
461 * in driver_*.c set_key() implementation, see driver_ndis.c for an
462 * example on how this can be done.
464 int (*set_key
)(void *priv
, wpa_alg alg
, const u8
*addr
,
465 int key_idx
, int set_tx
, const u8
*seq
, size_t seq_len
,
466 const u8
*key
, size_t key_len
);
469 * init - Initialize driver interface
470 * @ctx: context to be used when calling wpa_supplicant functions,
471 * e.g., wpa_supplicant_event()
472 * @ifname: interface name, e.g., wlan0
474 * Returns: Pointer to private data, %NULL on failure
476 * Initialize driver interface, including event processing for kernel
477 * driver events (e.g., associated, scan results, Michael MIC failure).
478 * This function can allocate a private configuration data area for
479 * @ctx, file descriptor, interface name, etc. information that may be
480 * needed in future driver operations. If this is not used, non-NULL
481 * value will need to be returned because %NULL is used to indicate
482 * failure. The returned value will be used as 'void *priv' data for
483 * all other driver_ops functions.
485 * The main event loop (eloop.c) of wpa_supplicant can be used to
486 * register callback for read sockets (eloop_register_read_sock()).
488 * See below for more information about events and
489 * wpa_supplicant_event() function.
491 void * (*init
)(void *ctx
, const char *ifname
);
494 * deinit - Deinitialize driver interface
495 * @priv: private driver interface data from init()
497 * Shut down driver interface and processing of driver events. Free
498 * private data buffer if one was allocated in init() handler.
500 void (*deinit
)(void *priv
);
503 * set_param - Set driver configuration parameters
504 * @priv: private driver interface data from init()
505 * @param: driver specific configuration parameters
507 * Returns: 0 on success, -1 on failure
509 * Optional handler for notifying driver interface about configuration
510 * parameters (driver_param).
512 int (*set_param
)(void *priv
, const char *param
);
515 * set_countermeasures - Enable/disable TKIP countermeasures
516 * @priv: private driver interface data
517 * @enabled: 1 = countermeasures enabled, 0 = disabled
519 * Returns: 0 on success, -1 on failure
521 * Configure TKIP countermeasures. When these are enabled, the driver
522 * should drop all received and queued frames that are using TKIP.
524 int (*set_countermeasures
)(void *priv
, int enabled
);
527 * set_drop_unencrypted - Enable/disable unencrypted frame filtering
528 * @priv: private driver interface data
529 * @enabled: 1 = unencrypted Tx/Rx frames will be dropped, 0 = disabled
531 * Returns: 0 on success, -1 on failure
533 * Configure the driver to drop all non-EAPOL frames (both receive and
534 * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
535 * still be allowed for key negotiation.
537 int (*set_drop_unencrypted
)(void *priv
, int enabled
);
540 * scan - Request the driver to initiate scan
541 * @priv: private driver interface data
542 * @ssid: specific SSID to scan for (ProbeReq) or %NULL to scan for
543 * all SSIDs (either active scan with broadcast SSID or passive
545 * @ssid_len: length of the SSID
547 * Returns: 0 on success, -1 on failure
549 * Once the scan results are ready, the driver should report scan
550 * results event for wpa_supplicant which will eventually request the
551 * results with wpa_driver_get_scan_results().
553 int (*scan
)(void *priv
, const u8
*ssid
, size_t ssid_len
);
556 * get_scan_results - Fetch the latest scan results (old version)
557 * @priv: private driver interface data
558 * @results: pointer to buffer for scan results
559 * @max_size: maximum number of entries (buffer size)
561 * Returns: Number of scan result entries used on success, -1 on
564 * If scan results include more than max_size BSSes, max_size will be
565 * returned and the remaining entries will not be included in the
568 * This function is depracated. New driver wrapper implementations
569 * should implement support for get_scan_results2().
571 int (*get_scan_results
)(void *priv
,
572 struct wpa_scan_result
*results
,
576 * deauthenticate - Request driver to deauthenticate
577 * @priv: private driver interface data
578 * @addr: peer address (BSSID of the AP)
579 * @reason_code: 16-bit reason code to be sent in the deauthentication
582 * Returns: 0 on success, -1 on failure
584 int (*deauthenticate
)(void *priv
, const u8
*addr
, int reason_code
);
587 * disassociate - Request driver to disassociate
588 * @priv: private driver interface data
589 * @addr: peer address (BSSID of the AP)
590 * @reason_code: 16-bit reason code to be sent in the disassociation
593 * Returns: 0 on success, -1 on failure
595 int (*disassociate
)(void *priv
, const u8
*addr
, int reason_code
);
598 * associate - Request driver to associate
599 * @priv: private driver interface data
600 * @params: association parameters
602 * Returns: 0 on success, -1 on failure
604 int (*associate
)(void *priv
,
605 struct wpa_driver_associate_params
*params
);
608 * set_auth_alg - Set IEEE 802.11 authentication algorithm
609 * @priv: private driver interface data
610 * @auth_alg: bit field of AUTH_ALG_*
612 * If the driver supports more than one authentication algorithm at the
613 * same time, it should configure all supported algorithms. If not, one
614 * algorithm needs to be selected arbitrarily. Open System
615 * authentication should be ok for most cases and it is recommended to
616 * be used if other options are not supported. Static WEP configuration
617 * may also use Shared Key authentication and LEAP requires its own
618 * algorithm number. For LEAP, user can make sure that only one
619 * algorithm is used at a time by configuring LEAP as the only
620 * supported EAP method. This information is also available in
621 * associate() params, so set_auth_alg may not be needed in case of
624 * Returns: 0 on success, -1 on failure
626 int (*set_auth_alg
)(void *priv
, int auth_alg
);
629 * add_pmkid - Add PMKSA cache entry to the driver
630 * @priv: private driver interface data
631 * @bssid: BSSID for the PMKSA cache entry
632 * @pmkid: PMKID for the PMKSA cache entry
634 * Returns: 0 on success, -1 on failure
636 * This function is called when a new PMK is received, as a result of
637 * either normal authentication or RSN pre-authentication.
639 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
640 * associate(), add_pmkid() can be used to add new PMKSA cache entries
641 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
642 * driver_ops function does not need to be implemented. Likewise, if
643 * the driver does not support WPA, this function is not needed.
645 int (*add_pmkid
)(void *priv
, const u8
*bssid
, const u8
*pmkid
);
648 * remove_pmkid - Remove PMKSA cache entry to the driver
649 * @priv: private driver interface data
650 * @bssid: BSSID for the PMKSA cache entry
651 * @pmkid: PMKID for the PMKSA cache entry
653 * Returns: 0 on success, -1 on failure
655 * This function is called when the supplicant drops a PMKSA cache
656 * entry for any reason.
658 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
659 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
660 * between the driver and wpa_supplicant. If the driver uses wpa_ie
661 * from wpa_supplicant, this driver_ops function does not need to be
662 * implemented. Likewise, if the driver does not support WPA, this
663 * function is not needed.
665 int (*remove_pmkid
)(void *priv
, const u8
*bssid
, const u8
*pmkid
);
668 * flush_pmkid - Flush PMKSA cache
669 * @priv: private driver interface data
671 * Returns: 0 on success, -1 on failure
673 * This function is called when the supplicant drops all PMKSA cache
674 * entries for any reason.
676 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
677 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
678 * between the driver and wpa_supplicant. If the driver uses wpa_ie
679 * from wpa_supplicant, this driver_ops function does not need to be
680 * implemented. Likewise, if the driver does not support WPA, this
681 * function is not needed.
683 int (*flush_pmkid
)(void *priv
);
686 * flush_pmkid - Flush PMKSA cache
687 * @priv: private driver interface data
689 * Returns: 0 on success, -1 on failure
691 * Get driver/firmware/hardware capabilities.
693 int (*get_capa
)(void *priv
, struct wpa_driver_capa
*capa
);
696 * poll - Poll driver for association information
697 * @priv: private driver interface data
699 * This is an option callback that can be used when the driver does not
700 * provide event mechanism for association events. This is called when
701 * receiving WPA EAPOL-Key messages that require association
702 * information. The driver interface is supposed to generate associnfo
703 * event before returning from this callback function. In addition, the
704 * driver interface should generate an association event after having
705 * sent out associnfo.
707 void (*poll
)(void *priv
);
710 * get_ifname - Get interface name
711 * @priv: private driver interface data
713 * Returns: Pointer to the interface name. This can differ from the
714 * interface name used in init() call.
716 * This optional function can be used to allow the driver interface to
717 * replace the interface name with something else, e.g., based on an
718 * interface mapping from a more descriptive name.
720 const char * (*get_ifname
)(void *priv
);
723 * get_mac_addr - Get own MAC address
724 * @priv: private driver interface data
726 * Returns: Pointer to own MAC address or %NULL on failure
728 * This optional function can be used to get the own MAC address of the
729 * device from the driver interface code. This is only needed if the
730 * l2_packet implementation for the OS does not provide easy access to
732 const u8
* (*get_mac_addr
)(void *priv
);
735 * send_eapol - Optional function for sending EAPOL packets
736 * @priv: private driver interface data
737 * @dest: Destination MAC address
739 * @data: EAPOL packet starting with IEEE 802.1X header
740 * @data_len: Size of the EAPOL packet
742 * Returns: 0 on success, -1 on failure
744 * This optional function can be used to override l2_packet operations
745 * with driver specific functionality. If this function pointer is set,
746 * l2_packet module is not used at all and the driver interface code is
747 * responsible for receiving and sending all EAPOL packets. The
748 * received EAPOL packets are sent to core code by calling
749 * wpa_supplicant_rx_eapol(). The driver interface is required to
750 * implement get_mac_addr() handler if send_eapol() is used.
752 int (*send_eapol
)(void *priv
, const u8
*dest
, u16 proto
,
753 const u8
*data
, size_t data_len
);
756 * set_operstate - Sets device operating state to DORMANT or UP
757 * @priv: private driver interface data
758 * @state: 0 = dormant, 1 = up
759 * Returns: 0 on success, -1 on failure
761 * This is an optional function that can be used on operating systems
762 * that support a concept of controlling network device state from user
763 * space applications. This function, if set, gets called with
764 * state = 1 when authentication has been completed and with state = 0
765 * when connection is lost.
767 int (*set_operstate
)(void *priv
, int state
);
770 * mlme_setprotection - MLME-SETPROTECTION.request primitive
771 * @priv: Private driver interface data
772 * @addr: Address of the station for which to set protection (may be
773 * %NULL for group keys)
774 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
775 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
776 * Returns: 0 on success, -1 on failure
778 * This is an optional function that can be used to set the driver to
779 * require protection for Tx and/or Rx frames. This uses the layer
780 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
781 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
782 * set protection operation; instead, they set protection implicitly
783 * based on configured keys.
785 int (*mlme_setprotection
)(void *priv
, const u8
*addr
, int protect_type
,
789 * get_hw_feature_data - Get hardware support data (channels and rates)
790 * @priv: Private driver interface data
791 * @num_modes: Variable for returning the number of returned modes
792 * flags: Variable for returning hardware feature flags
793 * Returns: Pointer to allocated hardware data on success or %NULL on
794 * failure. Caller is responsible for freeing this.
796 * This function is only needed for drivers that export MLME
797 * (management frame processing) to wpa_supplicant.
799 struct wpa_hw_modes
* (*get_hw_feature_data
)(void *priv
,
804 * set_channel - Set channel
805 * @priv: Private driver interface data
806 * @phymode: WPA_MODE_IEEE80211B, ..
807 * @chan: IEEE 802.11 channel number
808 * @freq: Frequency of the channel in MHz
809 * Returns: 0 on success, -1 on failure
811 * This function is only needed for drivers that export MLME
812 * (management frame processing) to wpa_supplicant.
814 int (*set_channel
)(void *priv
, wpa_hw_mode phymode
, int chan
,
818 * set_ssid - Set SSID
819 * @priv: Private driver interface data
821 * @ssid_len: SSID length
822 * Returns: 0 on success, -1 on failure
824 * This function is only needed for drivers that export MLME
825 * (management frame processing) to wpa_supplicant.
827 int (*set_ssid
)(void *priv
, const u8
*ssid
, size_t ssid_len
);
830 * set_bssid - Set BSSID
831 * @priv: Private driver interface data
833 * Returns: 0 on success, -1 on failure
835 * This function is only needed for drivers that export MLME
836 * (management frame processing) to wpa_supplicant.
838 int (*set_bssid
)(void *priv
, const u8
*bssid
);
841 * send_mlme - Send management frame from MLME
842 * @priv: Private driver interface data
843 * @data: IEEE 802.11 management frame with IEEE 802.11 header
844 * @data_len: Size of the management frame
845 * Returns: 0 on success, -1 on failure
847 * This function is only needed for drivers that export MLME
848 * (management frame processing) to wpa_supplicant.
850 int (*send_mlme
)(void *priv
, const u8
*data
, size_t data_len
);
853 * mlme_add_sta - Add a STA entry into the driver/netstack
854 * @priv: Private driver interface data
855 * @addr: MAC address of the STA (e.g., BSSID of the AP)
856 * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11
857 * format (one octet per rate, 1 = 0.5 Mbps)
858 * @supp_rates_len: Number of entries in supp_rates
859 * Returns: 0 on success, -1 on failure
861 * This function is only needed for drivers that export MLME
862 * (management frame processing) to wpa_supplicant. When the MLME code
863 * completes association with an AP, this function is called to
864 * configure the driver/netstack with a STA entry for data frame
865 * processing (TX rate control, encryption/decryption).
867 int (*mlme_add_sta
)(void *priv
, const u8
*addr
, const u8
*supp_rates
,
868 size_t supp_rates_len
);
871 * mlme_remove_sta - Remove a STA entry from the driver/netstack
872 * @priv: Private driver interface data
873 * @addr: MAC address of the STA (e.g., BSSID of the AP)
874 * Returns: 0 on success, -1 on failure
876 * This function is only needed for drivers that export MLME
877 * (management frame processing) to wpa_supplicant.
879 int (*mlme_remove_sta
)(void *priv
, const u8
*addr
);
882 * update_ft_ies - Update FT (IEEE 802.11r) IEs
883 * @priv: Private driver interface data
884 * @md: Mobility domain (2 octets) (also included inside ies)
885 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
886 * @ies_len: Length of FT IEs in bytes
887 * Returns: 0 on success, -1 on failure
889 * The supplicant uses this callback to let the driver know that keying
890 * material for FT is available and that the driver can use the
891 * provided IEs in the next message in FT authentication sequence.
893 * This function is only needed for driver that support IEEE 802.11r
894 * (Fast BSS Transition).
896 int (*update_ft_ies
)(void *priv
, const u8
*md
, const u8
*ies
,
900 * send_ft_action - Send FT Action frame (IEEE 802.11r)
901 * @priv: Private driver interface data
902 * @action: Action field value
903 * @target_ap: Target AP address
904 * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
905 * @ies_len: Length of FT IEs in bytes
906 * Returns: 0 on success, -1 on failure
908 * The supplicant uses this callback to request the driver to transmit
909 * an FT Action frame (action category 6) for over-the-DS fast BSS
912 int (*send_ft_action
)(void *priv
, u8 action
, const u8
*target_ap
,
913 const u8
*ies
, size_t ies_len
);
916 * get_scan_results2 - Fetch the latest scan results
917 * @priv: private driver interface data
919 * Returns: Allocated buffer of scan results (caller is responsible for
920 * freeing the data structure) on success, NULL on failure
922 struct wpa_scan_results
* (*get_scan_results2
)(void *priv
);
925 * * set_probe_req_ie - Set information element(s) for Probe Request
926 * @priv: private driver interface data
927 * @ies: Information elements to append or %NULL to remove extra IEs
928 * @ies_len: Length of the IE buffer in octets
929 * Returns: 0 on success, -1 on failure
931 int (*set_probe_req_ie
)(void *, const u8
*ies
, size_t ies_len
);
935 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
937 typedef enum wpa_event_type
{
939 * EVENT_ASSOC - Association completed
941 * This event needs to be delivered when the driver completes IEEE
942 * 802.11 association or reassociation successfully.
943 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
944 * after this event has been generated. In addition, optional
945 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
946 * more information about the association. If the driver interface gets
947 * both of these events at the same time, it can also include the
948 * assoc_info data in EVENT_ASSOC call.
953 * EVENT_DISASSOC - Association lost
955 * This event should be called when association is lost either due to
956 * receiving deauthenticate or disassociate frame from the AP or when
957 * sending either of these frames to the current AP.
962 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
964 * This event must be delivered when a Michael MIC error is detected by
965 * the local driver. Additional data for event processing is
966 * provided with union wpa_event_data::michael_mic_failure. This
967 * information is used to request new encyption key and to initiate
968 * TKIP countermeasures if needed.
970 EVENT_MICHAEL_MIC_FAILURE
,
973 * EVENT_SCAN_RESULTS - Scan results available
975 * This event must be called whenever scan results are available to be
976 * fetched with struct wpa_driver_ops::get_scan_results(). This event
977 * is expected to be used some time after struct wpa_driver_ops::scan()
978 * is called. If the driver provides an unsolicited event when the scan
979 * has been completed, this event can be used to trigger
980 * EVENT_SCAN_RESULTS call. If such event is not available from the
981 * driver, the driver wrapper code is expected to use a registered
982 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
983 * scan is expected to be completed.
988 * EVENT_ASSOCINFO - Report optional extra information for association
990 * This event can be used to report extra association information for
991 * EVENT_ASSOC processing. This extra information includes IEs from
992 * association frames and Beacon/Probe Response frames in union
993 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
994 * EVENT_ASSOC. Alternatively, the driver interface can include
995 * assoc_info data in the EVENT_ASSOC call if it has all the
996 * information available at the same point.
1001 * EVENT_INTERFACE_STATUS - Report interface status changes
1003 * This optional event can be used to report changes in interface
1004 * status (interface added/removed) using union
1005 * wpa_event_data::interface_status. This can be used to trigger
1006 * wpa_supplicant to stop and re-start processing for the interface,
1007 * e.g., when a cardbus card is ejected/inserted.
1009 EVENT_INTERFACE_STATUS
,
1012 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
1014 * This event can be used to inform wpa_supplicant about candidates for
1015 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
1016 * for scan request (ap_scan=2 mode), this event is required for
1017 * pre-authentication. If wpa_supplicant is performing scan request
1018 * (ap_scan=1), this event is optional since scan results can be used
1019 * to add pre-authentication candidates. union
1020 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
1021 * candidate and priority of the candidate, e.g., based on the signal
1022 * strength, in order to try to pre-authenticate first with candidates
1023 * that are most likely targets for re-association.
1025 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
1026 * on the candidate list. In addition, it can be called for the current
1027 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
1028 * will automatically skip pre-authentication in cases where a valid
1029 * PMKSA exists. When more than one candidate exists, this event should
1030 * be generated once for each candidate.
1032 * Driver will be notified about successful pre-authentication with
1033 * struct wpa_driver_ops::add_pmkid() calls.
1035 EVENT_PMKID_CANDIDATE
,
1038 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
1040 * This event can be used to inform wpa_supplicant about desire to set
1041 * up secure direct link connection between two stations as defined in
1042 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
1043 * STAKey negotiation. The caller will need to set peer address for the
1049 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
1051 * The driver is expected to report the received FT IEs from
1052 * FT authentication sequence from the AP. The FT IEs are included in
1053 * the extra information in union wpa_event_data::ft_ies.
1060 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
1062 union wpa_event_data
{
1064 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
1066 * This structure is optional for EVENT_ASSOC calls and required for
1067 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
1068 * driver interface does not need to generate separate EVENT_ASSOCINFO
1073 * req_ies - (Re)Association Request IEs
1075 * If the driver generates WPA/RSN IE, this event data must be
1076 * returned for WPA handshake to have needed information. If
1077 * wpa_supplicant-generated WPA/RSN IE is used, this
1078 * information event is optional.
1080 * This should start with the first IE (fixed fields before IEs
1081 * are not included).
1086 * req_ies_len - Length of req_ies in bytes
1091 * resp_ies - (Re)Association Response IEs
1093 * Optional association data from the driver. This data is not
1094 * required WPA, but may be useful for some protocols and as
1095 * such, should be reported if this is available to the driver
1098 * This should start with the first IE (fixed fields before IEs
1099 * are not included).
1104 * resp_ies_len - Length of resp_ies in bytes
1106 size_t resp_ies_len
;
1109 * beacon_ies - Beacon or Probe Response IEs
1111 * Optional Beacon/ProbeResp data: IEs included in Beacon or
1112 * Probe Response frames from the current AP (i.e., the one
1113 * that the client just associated with). This information is
1114 * used to update WPA/RSN IE for the AP. If this field is not
1115 * set, the results from previous scan will be used. If no
1116 * data for the new AP is found, scan results will be requested
1117 * again (without scan request). At this point, the driver is
1118 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
1121 * This should start with the first IE (fixed fields before IEs
1122 * are not included).
1127 * beacon_ies_len - Length of beacon_ies */
1128 size_t beacon_ies_len
;
1132 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
1134 struct michael_mic_failure
{
1136 } michael_mic_failure
;
1139 * struct interface_status - Data for EVENT_INTERFACE_STATUS
1141 struct interface_status
{
1144 EVENT_INTERFACE_ADDED
, EVENT_INTERFACE_REMOVED
1149 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
1151 struct pmkid_candidate
{
1152 /** BSSID of the PMKID candidate */
1154 /** Smaller the index, higher the priority */
1156 /** Whether RSN IE includes pre-authenticate flag */
1161 * struct stkstart - Data for EVENT_STKSTART
1168 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
1170 * During FT (IEEE 802.11r) authentication sequence, the driver is
1171 * expected to use this event to report received FT IEs (MDIE, FTIE,
1172 * RSN IE, TIE, possible resource request) to the supplicant. The FT
1173 * IEs for the next message will be delivered through the
1174 * struct wpa_driver_ops::update_ft_ies() callback.
1180 u8 target_ap
[ETH_ALEN
];
1185 * wpa_supplicant_event - Report a driver event for wpa_supplicant
1186 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
1187 * with struct wpa_driver_ops::init()
1188 * @event: event type (defined above)
1189 * @data: possible extra data for the event
1191 * Driver wrapper code should call this function whenever an event is received
1194 void wpa_supplicant_event(void *ctx
, wpa_event_type event
,
1195 union wpa_event_data
*data
);
1198 * wpa_supplicant_rx_eapol - Deliver a received EAPOL frame to wpa_supplicant
1199 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
1200 * with struct wpa_driver_ops::init()
1201 * @src_addr: Source address of the EAPOL frame
1202 * @buf: EAPOL data starting from the EAPOL header (i.e., no Ethernet header)
1203 * @len: Length of the EAPOL data
1205 * This function is called for each received EAPOL frame. Most driver
1206 * interfaces rely on more generic OS mechanism for receiving frames through
1207 * l2_packet, but if such a mechanism is not available, the driver wrapper may
1208 * take care of received EAPOL frames and deliver them to the core supplicant
1209 * code by calling this function.
1211 void wpa_supplicant_rx_eapol(void *ctx
, const u8
*src_addr
,
1212 const u8
*buf
, size_t len
);
1214 void wpa_supplicant_sta_rx(void *ctx
, const u8
*buf
, size_t len
,
1215 struct ieee80211_rx_status
*rx_status
);
1216 void wpa_supplicant_sta_free_hw_features(struct wpa_hw_modes
*hw_features
,
1217 size_t num_hw_features
);
1219 const u8
* wpa_scan_get_ie(const struct wpa_scan_res
*res
, u8 ie
);
1220 #define WPA_IE_VENDOR_TYPE 0x0050f201
1221 const u8
* wpa_scan_get_vendor_ie(const struct wpa_scan_res
*res
,
1223 int wpa_scan_get_max_rate(const struct wpa_scan_res
*res
);
1224 void wpa_scan_results_free(struct wpa_scan_results
*res
);
1225 void wpa_scan_sort_results(struct wpa_scan_results
*res
);
1227 #endif /* DRIVER_H */