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