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