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