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