]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/drivers/driver.h
FT: Add driver wrappers for FT with driver-based MLME/SME
[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
d8e66e80
JM
34#define HOSTAPD_CHAN_HT40PLUS 0x00000010
35#define HOSTAPD_CHAN_HT40MINUS 0x00000020
36#define HOSTAPD_CHAN_HT40 0x00000040
c5121837 37
e0498677
JM
38/**
39 * struct hostapd_channel_data - Channel information
40 */
c5121837 41struct hostapd_channel_data {
e0498677
JM
42 /**
43 * chan - Channel number (IEEE 802.11)
44 */
45 short chan;
46
47 /**
48 * freq - Frequency in MHz
49 */
50 short freq;
51
52 /**
53 * flag - Channel flags (HOSTAPD_CHAN_*)
54 */
55 int flag;
56
57 /**
58 * max_tx_power - maximum transmit power in dBm
59 */
60 u8 max_tx_power;
c5121837
JM
61};
62
e0498677
JM
63/**
64 * struct hostapd_hw_modes - Supported hardware mode information
65 */
c5121837 66struct hostapd_hw_modes {
e0498677
JM
67 /**
68 * mode - Hardware mode
69 */
71934751 70 enum hostapd_hw_mode mode;
e0498677
JM
71
72 /**
73 * num_channels - Number of entries in the channels array
74 */
c5121837 75 int num_channels;
e0498677
JM
76
77 /**
78 * channels - Array of supported channels
79 */
c5121837 80 struct hostapd_channel_data *channels;
e0498677
JM
81
82 /**
83 * num_rates - Number of entries in the rates array
84 */
c5121837 85 int num_rates;
e0498677
JM
86
87 /**
88 * rates - Array of supported rates in 100 kbps units
89 */
90 int *rates;
91
92 /**
93 * ht_capab - HT (IEEE 802.11n) capabilities
94 */
c5121837 95 u16 ht_capab;
e0498677
JM
96
97 /**
98 * mcs_set - MCS (IEEE 802.11n) rate parameters
99 */
08eb154d 100 u8 mcs_set[16];
e0498677
JM
101
102 /**
103 * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
104 */
be8eb8ab 105 u8 a_mpdu_params;
c5121837
JM
106};
107
108
6fc6879b
JM
109#define IEEE80211_MODE_INFRA 0
110#define IEEE80211_MODE_IBSS 1
ad1e68e6 111#define IEEE80211_MODE_AP 2
6fc6879b
JM
112
113#define IEEE80211_CAP_ESS 0x0001
114#define IEEE80211_CAP_IBSS 0x0002
115#define IEEE80211_CAP_PRIVACY 0x0010
116
7c2849d2
JM
117#define WPA_SCAN_QUAL_INVALID BIT(0)
118#define WPA_SCAN_NOISE_INVALID BIT(1)
119#define WPA_SCAN_LEVEL_INVALID BIT(2)
120#define WPA_SCAN_LEVEL_DBM BIT(3)
e6b8efeb
JM
121#define WPA_SCAN_AUTHENTICATED BIT(4)
122#define WPA_SCAN_ASSOCIATED BIT(5)
7c2849d2 123
6fc6879b
JM
124/**
125 * struct wpa_scan_res - Scan result for an BSS/IBSS
7c2849d2 126 * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
6fc6879b
JM
127 * @bssid: BSSID
128 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
129 * @beacon_int: beacon interval in TUs (host byte order)
130 * @caps: capability information field in host byte order
131 * @qual: signal quality
132 * @noise: noise level
133 * @level: signal level
134 * @tsf: Timestamp
b3ad11bb
JM
135 * @age: Age of the information in milliseconds (i.e., how many milliseconds
136 * ago the last Beacon or Probe Response frame was received)
6fc6879b 137 * @ie_len: length of the following IE field in octets
8c090654 138 * @beacon_ie_len: length of the following Beacon IE field in octets
6fc6879b
JM
139 *
140 * This structure is used as a generic format for scan results from the
141 * driver. Each driver interface implementation is responsible for converting
142 * the driver or OS specific scan results into this format.
143 *
144 * If the driver does not support reporting all IEs, the IE data structure is
145 * constructed of the IEs that are available. This field will also need to
146 * include SSID in IE format. All drivers are encouraged to be extended to
147 * report all IEs to make it easier to support future additions.
148 */
149struct wpa_scan_res {
7c2849d2 150 unsigned int flags;
6fc6879b
JM
151 u8 bssid[ETH_ALEN];
152 int freq;
153 u16 beacon_int;
154 u16 caps;
155 int qual;
156 int noise;
157 int level;
158 u64 tsf;
b3ad11bb 159 unsigned int age;
6fc6879b 160 size_t ie_len;
8c090654
JM
161 size_t beacon_ie_len;
162 /*
163 * Followed by ie_len octets of IEs from Probe Response frame (or if
164 * the driver does not indicate source of IEs, these may also be from
165 * Beacon frame). After the first set of IEs, another set of IEs may
166 * follow (with beacon_ie_len octets of data) if the driver provides
167 * both IE sets.
168 */
6fc6879b
JM
169};
170
171/**
172 * struct wpa_scan_results - Scan results
173 * @res: Array of pointers to allocated variable length scan result entries
174 * @num: Number of entries in the scan result array
175 */
176struct wpa_scan_results {
177 struct wpa_scan_res **res;
178 size_t num;
179};
180
4b4a8ae5
JM
181/**
182 * struct wpa_interface_info - Network interface information
183 * @next: Pointer to the next interface or NULL if this is the last one
184 * @ifname: Interface name that can be used with init() or init2()
185 * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
186 * not available
60ad2c7b 187 * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
4b4a8ae5
JM
188 * is not an allocated copy, i.e., get_interfaces() caller will not free
189 * this)
190 */
191struct wpa_interface_info {
192 struct wpa_interface_info *next;
193 char *ifname;
194 char *desc;
195 const char *drv_name;
196};
197
a79d5479 198#define WPAS_MAX_SCAN_SSIDS 10
fc2b7ed5
JM
199
200/**
201 * struct wpa_driver_scan_params - Scan parameters
202 * Data for struct wpa_driver_ops::scan2().
203 */
204struct wpa_driver_scan_params {
205 /**
206 * ssids - SSIDs to scan for
207 */
208 struct wpa_driver_scan_ssid {
209 /**
210 * ssid - specific SSID to scan for (ProbeReq)
211 * %NULL or zero-length SSID is used to indicate active scan
ba2a573c 212 * with wildcard SSID.
fc2b7ed5
JM
213 */
214 const u8 *ssid;
215 /**
216 * ssid_len: Length of the SSID in octets
217 */
218 size_t ssid_len;
219 } ssids[WPAS_MAX_SCAN_SSIDS];
220
221 /**
222 * num_ssids - Number of entries in ssids array
223 * Zero indicates a request for a passive scan.
224 */
225 size_t num_ssids;
226
227 /**
228 * extra_ies - Extra IE(s) to add into Probe Request or %NULL
229 */
230 const u8 *extra_ies;
231
232 /**
233 * extra_ies_len - Length of extra_ies in octets
234 */
235 size_t extra_ies_len;
d3a98225
JM
236
237 /**
238 * freqs - Array of frequencies to scan or %NULL for all frequencies
239 *
240 * The frequency is set in MHz. The array is zero-terminated.
241 */
242 int *freqs;
3812464c
JM
243
244 /**
245 * filter_ssids - Filter for reporting SSIDs
246 *
247 * This optional parameter can be used to request the driver wrapper to
248 * filter scan results to include only the specified SSIDs. %NULL
249 * indicates that no filtering is to be done. This can be used to
250 * reduce memory needs for scan results in environments that have large
251 * number of APs with different SSIDs.
252 *
253 * The driver wrapper is allowed to take this allocated buffer into its
254 * own use by setting the pointer to %NULL. In that case, the driver
255 * wrapper is responsible for freeing the buffer with os_free() once it
256 * is not needed anymore.
257 */
258 struct wpa_driver_scan_filter {
259 u8 ssid[32];
260 size_t ssid_len;
261 } *filter_ssids;
262
263 /**
264 * num_filter_ssids - Number of entries in filter_ssids array
265 */
266 size_t num_filter_ssids;
47185fc7
RM
267
268 /**
269 * p2p_probe - Used to disable CCK (802.11b) rates for P2P probes
270 *
271 * When set, the driver is expected to remove rates 1, 2, 5.5, and 11
272 * Mbps from the support rates element(s) in the Probe Request frames
273 * and not to transmit the frames at any of those rates.
274 */
275 u8 p2p_probe;
fc2b7ed5
JM
276};
277
c2a04078
JM
278/**
279 * struct wpa_driver_auth_params - Authentication parameters
280 * Data for struct wpa_driver_ops::authenticate().
281 */
282struct wpa_driver_auth_params {
283 int freq;
284 const u8 *bssid;
285 const u8 *ssid;
286 size_t ssid_len;
287 int auth_alg;
288 const u8 *ie;
289 size_t ie_len;
a0b2f99b
JM
290 const u8 *wep_key[4];
291 size_t wep_key_len[4];
292 int wep_tx_keyidx;
2a7e7f4e 293 int local_state_change;
2f4f73b1
EP
294
295 /**
296 * p2p - Whether this connection is a P2P group
297 */
298 int p2p;
299
c2a04078
JM
300};
301
0c80427d
JM
302enum wps_mode {
303 WPS_MODE_NONE /* no WPS provisioning being used */,
304 WPS_MODE_OPEN /* WPS provisioning with AP that is in open mode */,
305 WPS_MODE_PRIVACY /* WPS provisioning with AP that is using protection
306 */
307};
308
6fc6879b
JM
309/**
310 * struct wpa_driver_associate_params - Association parameters
311 * Data for struct wpa_driver_ops::associate().
312 */
313struct wpa_driver_associate_params {
314 /**
315 * bssid - BSSID of the selected AP
316 * This can be %NULL, if ap_scan=2 mode is used and the driver is
317 * responsible for selecting with which BSS to associate. */
318 const u8 *bssid;
319
320 /**
321 * ssid - The selected SSID
322 */
323 const u8 *ssid;
e0498677
JM
324
325 /**
326 * ssid_len - Length of the SSID (1..32)
327 */
6fc6879b
JM
328 size_t ssid_len;
329
330 /**
331 * freq - Frequency of the channel the selected AP is using
332 * Frequency that the selected AP is using (in MHz as
333 * reported in the scan results)
334 */
335 int freq;
336
337 /**
338 * wpa_ie - WPA information element for (Re)Association Request
339 * WPA information element to be included in (Re)Association
340 * Request (including information element id and length). Use
341 * of this WPA IE is optional. If the driver generates the WPA
342 * IE, it can use pairwise_suite, group_suite, and
343 * key_mgmt_suite to select proper algorithms. In this case,
344 * the driver has to notify wpa_supplicant about the used WPA
345 * IE by generating an event that the interface code will
346 * convert into EVENT_ASSOCINFO data (see below).
347 *
348 * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
349 * instead. The driver can determine which version is used by
350 * looking at the first byte of the IE (0xdd for WPA, 0x30 for
351 * WPA2/RSN).
ad08c363
JM
352 *
353 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
6fc6879b
JM
354 */
355 const u8 *wpa_ie;
e0498677 356
6fc6879b
JM
357 /**
358 * wpa_ie_len - length of the wpa_ie
359 */
360 size_t wpa_ie_len;
361
64fa840a
JM
362 /**
363 * wpa_proto - Bitfield of WPA_PROTO_* values to indicate WPA/WPA2
364 */
365 unsigned int wpa_proto;
366
e0498677
JM
367 /**
368 * pairwise_suite - Selected pairwise cipher suite
369 *
370 * This is usually ignored if @wpa_ie is used.
371 */
71934751 372 enum wpa_cipher pairwise_suite;
e0498677
JM
373
374 /**
375 * group_suite - Selected group cipher suite
376 *
377 * This is usually ignored if @wpa_ie is used.
378 */
71934751 379 enum wpa_cipher group_suite;
e0498677
JM
380
381 /**
382 * key_mgmt_suite - Selected key management suite
383 *
384 * This is usually ignored if @wpa_ie is used.
385 */
71934751 386 enum wpa_key_mgmt key_mgmt_suite;
6fc6879b
JM
387
388 /**
389 * auth_alg - Allowed authentication algorithms
abd9fafa 390 * Bit field of WPA_AUTH_ALG_*
6fc6879b
JM
391 */
392 int auth_alg;
393
394 /**
395 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
396 */
397 int mode;
398
399 /**
400 * wep_key - WEP keys for static WEP configuration
401 */
402 const u8 *wep_key[4];
403
404 /**
405 * wep_key_len - WEP key length for static WEP configuration
406 */
407 size_t wep_key_len[4];
408
409 /**
410 * wep_tx_keyidx - WEP TX key index for static WEP configuration
411 */
412 int wep_tx_keyidx;
413
414 /**
415 * mgmt_frame_protection - IEEE 802.11w management frame protection
416 */
70f8cc8e 417 enum mfp_options mgmt_frame_protection;
6fc6879b
JM
418
419 /**
420 * ft_ies - IEEE 802.11r / FT information elements
421 * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
422 * for fast transition, this parameter is set to include the IEs that
423 * are to be sent in the next FT Authentication Request message.
424 * update_ft_ies() handler is called to update the IEs for further
425 * FT messages in the sequence.
426 *
427 * The driver should use these IEs only if the target AP is advertising
428 * the same mobility domain as the one included in the MDIE here.
429 *
430 * In ap_scan=2 mode, the driver can use these IEs when moving to a new
431 * AP after the initial association. These IEs can only be used if the
432 * target AP is advertising support for FT and is using the same MDIE
433 * and SSID as the current AP.
434 *
435 * The driver is responsible for reporting the FT IEs received from the
436 * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
437 * type. update_ft_ies() handler will then be called with the FT IEs to
438 * include in the next frame in the authentication sequence.
439 */
440 const u8 *ft_ies;
441
442 /**
443 * ft_ies_len - Length of ft_ies in bytes
444 */
445 size_t ft_ies_len;
446
447 /**
448 * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
449 *
450 * This value is provided to allow the driver interface easier access
451 * to the current mobility domain. This value is set to %NULL if no
452 * mobility domain is currently active.
453 */
454 const u8 *ft_md;
455
456 /**
457 * passphrase - RSN passphrase for PSK
458 *
459 * This value is made available only for WPA/WPA2-Personal (PSK) and
460 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
461 * the 8..63 character ASCII passphrase, if available. Please note that
462 * this can be %NULL if passphrase was not used to generate the PSK. In
463 * that case, the psk field must be used to fetch the PSK.
464 */
465 const char *passphrase;
466
467 /**
468 * psk - RSN PSK (alternative for passphrase for PSK)
469 *
470 * This value is made available only for WPA/WPA2-Personal (PSK) and
471 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
472 * the 32-octet (256-bit) PSK, if available. The driver wrapper should
473 * be prepared to handle %NULL value as an error.
474 */
475 const u8 *psk;
36b15723
JM
476
477 /**
478 * drop_unencrypted - Enable/disable unencrypted frame filtering
479 *
480 * Configure the driver to drop all non-EAPOL frames (both receive and
481 * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
482 * still be allowed for key negotiation.
483 */
484 int drop_unencrypted;
62fa124c
JM
485
486 /**
487 * prev_bssid - Previously used BSSID in this ESS
488 *
489 * When not %NULL, this is a request to use reassociation instead of
490 * association.
491 */
492 const u8 *prev_bssid;
0c80427d
JM
493
494 /**
495 * wps - WPS mode
496 *
497 * If the driver needs to do special configuration for WPS association,
498 * this variable provides more information on what type of association
499 * is being requested. Most drivers should not need ot use this.
500 */
501 enum wps_mode wps;
75bde05d
JM
502
503 /**
504 * p2p - Whether this connection is a P2P group
505 */
506 int p2p;
eea2fd9e
JM
507
508 /**
509 * uapsd - UAPSD parameters for the network
510 * -1 = do not change defaults
511 * AP mode: 1 = enabled, 0 = disabled
512 * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE
513 */
514 int uapsd;
6fc6879b
JM
515};
516
97a7a0b5
JM
517enum hide_ssid {
518 NO_SSID_HIDING,
519 HIDDEN_SSID_ZERO_LEN,
520 HIDDEN_SSID_ZERO_CONTENTS
521};
522
19c3b566
JM
523struct wpa_driver_ap_params {
524 /**
525 * head - Beacon head from IEEE 802.11 header to IEs before TIM IE
526 */
527 const u8 *head;
528
529 /**
530 * head_len - Length of the head buffer in octets
531 */
532 size_t head_len;
533
534 /**
535 * tail - Beacon tail following TIM IE
536 */
537 const u8 *tail;
538
539 /**
540 * tail_len - Length of the tail buffer in octets
541 */
542 size_t tail_len;
543
544 /**
545 * dtim_period - DTIM period
546 */
547 int dtim_period;
548
549 /**
550 * beacon_int - Beacon interval
551 */
552 int beacon_int;
ccb941e6
JM
553
554 /**
555 * ssid - The SSID to use in Beacon/Probe Response frames
556 */
557 const u8 *ssid;
558
559 /**
560 * ssid_len - Length of the SSID (1..32)
561 */
562 size_t ssid_len;
b11d1d64 563
97a7a0b5
JM
564 /**
565 * hide_ssid - Whether to hide the SSID
566 */
567 enum hide_ssid hide_ssid;
568
b11d1d64
JM
569 /**
570 * pairwise_ciphers - WPA_CIPHER_* bitfield
571 */
572 unsigned int pairwise_ciphers;
573
574 /**
575 * group_cipher - WPA_CIPHER_*
576 */
577 unsigned int group_cipher;
578
579 /**
580 * key_mgmt_suites - WPA_KEY_MGMT_* bitfield
581 */
582 unsigned int key_mgmt_suites;
583
584 /**
585 * auth_algs - WPA_AUTH_ALG_* bitfield
586 */
587 unsigned int auth_algs;
588
589 /**
590 * wpa_version - WPA_PROTO_* bitfield
591 */
592 unsigned int wpa_version;
593
594 /**
595 * privacy - Whether privacy is used in the BSS
596 */
597 int privacy;
fb91db56
JM
598
599 /**
600 * beacon_ies - WPS/P2P IE(s) for Beacon frames
601 *
602 * This is used to add IEs like WPS IE and P2P IE by drivers that do not
603 * use the full Beacon template.
604 */
605 const struct wpabuf *beacon_ies;
606
607 /**
608 * proberesp_ies - P2P/WPS IE(s) for Probe Response frames
609 *
610 * This is used to add IEs like WPS IE and P2P IE by drivers that
611 * reply to Probe Request frames internally.
612 */
613 const struct wpabuf *proberesp_ies;
614
615 /**
616 * assocresp_ies - WPS IE(s) for (Re)Association Response frames
617 */
618 const struct wpabuf *assocresp_ies;
19c3b566
JM
619};
620
6fc6879b
JM
621/**
622 * struct wpa_driver_capa - Driver capability information
623 */
624struct wpa_driver_capa {
625#define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
626#define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
627#define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
628#define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
629#define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
630#define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
631#define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
632 unsigned int key_mgmt;
633
634#define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
635#define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
636#define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
637#define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
638 unsigned int enc;
639
640#define WPA_DRIVER_AUTH_OPEN 0x00000001
641#define WPA_DRIVER_AUTH_SHARED 0x00000002
642#define WPA_DRIVER_AUTH_LEAP 0x00000004
643 unsigned int auth;
644
645/* Driver generated WPA/RSN IE */
646#define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
0194fedb 647/* Driver needs static WEP key setup after association command */
6fc6879b
JM
648#define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
649#define WPA_DRIVER_FLAGS_USER_SPACE_MLME 0x00000004
650/* Driver takes care of RSN 4-way handshake internally; PMK is configured with
651 * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
652#define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
4ef1e644 653#define WPA_DRIVER_FLAGS_WIRED 0x00000010
c2a04078
JM
654/* Driver provides separate commands for authentication and association (SME in
655 * wpa_supplicant). */
656#define WPA_DRIVER_FLAGS_SME 0x00000020
1581b38b
JM
657/* Driver supports AP mode */
658#define WPA_DRIVER_FLAGS_AP 0x00000040
0194fedb
JB
659/* Driver needs static WEP key setup after association has been completed */
660#define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080
75bde05d
JM
661/* Driver takes care of P2P management operations */
662#define WPA_DRIVER_FLAGS_P2P_MGMT 0x00000100
663/* Driver supports concurrent P2P operations */
664#define WPA_DRIVER_FLAGS_P2P_CONCURRENT 0x00000200
665/*
666 * Driver uses the initial interface as a dedicated management interface, i.e.,
971e357f 667 * it cannot be used for P2P group operations or non-P2P purposes.
75bde05d
JM
668 */
669#define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE 0x00000400
670/* This interface is P2P capable (P2P Device, GO, or P2P Client */
671#define WPA_DRIVER_FLAGS_P2P_CAPABLE 0x00000800
d054a462
JM
672/* Driver supports concurrent operations on multiple channels */
673#define WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT 0x00001000
971e357f
JM
674/*
675 * Driver uses the initial interface for P2P management interface and non-P2P
676 * purposes (e.g., connect to infra AP), but this interface cannot be used for
677 * P2P group operations.
678 */
679#define WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P 0x00002000
871f4dd0
JM
680/*
681 * Driver is known to use sane error codes, i.e., when it indicates that
682 * something (e.g., association) fails, there was indeed a failure and the
683 * operation does not end up getting completed successfully later.
684 */
685#define WPA_DRIVER_FLAGS_SANE_ERROR_CODES 0x00004000
190b9062
JB
686/* Driver supports off-channel TX */
687#define WPA_DRIVER_FLAGS_OFFCHANNEL_TX 0x00008000
2fee890a
JM
688/* Driver indicates TX status events for EAPOL Data frames */
689#define WPA_DRIVER_FLAGS_EAPOL_TX_STATUS 0x00010000
4dc03726
JM
690/* Driver indicates TX status events for Deauth/Disassoc frames */
691#define WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS 0x00020000
004ba773
VN
692/* Driver supports roaming (BSS selection) in firmware */
693#define WPA_DRIVER_FLAGS_BSS_SELECTION 0x00040000
6fc6879b 694 unsigned int flags;
80bc75f1
JM
695
696 int max_scan_ssids;
814782b9
JM
697
698 /**
699 * max_remain_on_chan - Maximum remain-on-channel duration in msec
700 */
701 unsigned int max_remain_on_chan;
c4ea4c5c
JM
702
703 /**
704 * max_stations - Maximum number of associated stations the driver
705 * supports in AP mode
706 */
707 unsigned int max_stations;
6fc6879b
JM
708};
709
710
c5121837
JM
711struct hostapd_data;
712
713struct hostap_sta_driver_data {
714 unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
715 unsigned long current_tx_rate;
716 unsigned long inactive_msec;
717 unsigned long flags;
718 unsigned long num_ps_buf_frames;
719 unsigned long tx_retry_failed;
720 unsigned long tx_retry_count;
721 int last_rssi;
722 int last_ack_rssi;
723};
724
725struct hostapd_sta_add_params {
726 const u8 *addr;
727 u16 aid;
728 u16 capability;
729 const u8 *supp_rates;
730 size_t supp_rates_len;
c5121837 731 u16 listen_interval;
fc4e2d95 732 const struct ieee80211_ht_capabilities *ht_capabilities;
d83ab1fe 733 u32 flags; /* bitmask of WPA_STA_* flags */
c5121837
JM
734};
735
736struct hostapd_freq_params {
737 int mode;
738 int freq;
739 int channel;
740 int ht_enabled;
741 int sec_channel_offset; /* 0 = HT40 disabled, -1 = HT40 enabled,
742 * secondary channel below primary, 1 = HT40
743 * enabled, secondary channel above primary */
744};
745
22a7c9d7
JM
746enum wpa_driver_if_type {
747 /**
748 * WPA_IF_STATION - Station mode interface
749 */
750 WPA_IF_STATION,
751
752 /**
753 * WPA_IF_AP_VLAN - AP mode VLAN interface
754 *
755 * This interface shares its address and Beacon frame with the main
756 * BSS.
757 */
758 WPA_IF_AP_VLAN,
759
760 /**
761 * WPA_IF_AP_BSS - AP mode BSS interface
762 *
763 * This interface has its own address and Beacon frame.
764 */
765 WPA_IF_AP_BSS,
75bde05d
JM
766
767 /**
768 * WPA_IF_P2P_GO - P2P Group Owner
769 */
770 WPA_IF_P2P_GO,
771
772 /**
773 * WPA_IF_P2P_CLIENT - P2P Client
774 */
775 WPA_IF_P2P_CLIENT,
776
777 /**
778 * WPA_IF_P2P_GROUP - P2P Group interface (will become either
779 * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known)
780 */
781 WPA_IF_P2P_GROUP
c5121837
JM
782};
783
92f475b4
JM
784struct wpa_init_params {
785 const u8 *bssid;
786 const char *ifname;
787 const u8 *ssid;
788 size_t ssid_len;
789 const char *test_socket;
790 int use_pae_group_addr;
92f475b4
JM
791 char **bridge;
792 size_t num_bridge;
412036f5
JM
793
794 u8 *own_addr; /* buffer for writing own MAC address */
92f475b4
JM
795};
796
c5121837 797
e3bd3912
JM
798struct wpa_bss_params {
799 /** Interface name (for multi-SSID/VLAN support) */
800 const char *ifname;
801 /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
802 int enabled;
af586419
JM
803
804 int wpa;
805 int ieee802_1x;
806 int wpa_group;
807 int wpa_pairwise;
808 int wpa_key_mgmt;
809 int rsn_preauth;
a1ca0292 810 enum mfp_options ieee80211w;
e3bd3912
JM
811};
812
0de39516
JM
813#define WPA_STA_AUTHORIZED BIT(0)
814#define WPA_STA_WMM BIT(1)
815#define WPA_STA_SHORT_PREAMBLE BIT(2)
816#define WPA_STA_MFP BIT(3)
e3bd3912 817
3ac17eba
JM
818/**
819 * struct p2p_params - P2P parameters for driver-based P2P management
820 */
821struct p2p_params {
822 const char *dev_name;
823 u8 pri_dev_type[8];
824#define DRV_MAX_SEC_DEV_TYPES 5
825 u8 sec_dev_type[DRV_MAX_SEC_DEV_TYPES][8];
826 size_t num_sec_dev_types;
827};
828
281ff0aa
GP
829enum tdls_oper {
830 TDLS_DISCOVERY_REQ,
831 TDLS_SETUP,
832 TDLS_TEARDOWN,
833 TDLS_ENABLE_LINK,
b8f64582
JM
834 TDLS_DISABLE_LINK,
835 TDLS_ENABLE,
836 TDLS_DISABLE
281ff0aa
GP
837};
838
1c5c7273
PS
839/**
840 * struct wpa_signal_info - Information about channel signal quality
841 */
842struct wpa_signal_info {
843 u32 frequency;
844 int above_threshold;
845 int current_signal;
846 int current_noise;
847 int current_txrate;
848};
849
6fc6879b
JM
850/**
851 * struct wpa_driver_ops - Driver interface API definition
852 *
853 * This structure defines the API that each driver interface needs to implement
854 * for core wpa_supplicant code. All driver specific functionality is captured
855 * in this wrapper.
856 */
857struct wpa_driver_ops {
858 /** Name of the driver interface */
859 const char *name;
860 /** One line description of the driver interface */
861 const char *desc;
862
863 /**
864 * get_bssid - Get the current BSSID
865 * @priv: private driver interface data
866 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
867 *
868 * Returns: 0 on success, -1 on failure
869 *
870 * Query kernel driver for the current BSSID and copy it to bssid.
871 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
872 * associated.
873 */
874 int (*get_bssid)(void *priv, u8 *bssid);
875
876 /**
877 * get_ssid - Get the current SSID
878 * @priv: private driver interface data
879 * @ssid: buffer for SSID (at least 32 bytes)
880 *
881 * Returns: Length of the SSID on success, -1 on failure
882 *
883 * Query kernel driver for the current SSID and copy it to ssid.
884 * Returning zero is recommended if the STA is not associated.
885 *
886 * Note: SSID is an array of octets, i.e., it is not nul terminated and
887 * can, at least in theory, contain control characters (including nul)
888 * and as such, should be processed as binary data, not a printable
889 * string.
890 */
891 int (*get_ssid)(void *priv, u8 *ssid);
892
6fc6879b
JM
893 /**
894 * set_key - Configure encryption key
642187d6 895 * @ifname: Interface name (for multi-SSID/VLAN support)
6fc6879b
JM
896 * @priv: private driver interface data
897 * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
898 * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
899 * %WPA_ALG_NONE clears the key.
0382097e
JM
900 * @addr: Address of the peer STA (BSSID of the current AP when setting
901 * pairwise key in station mode), ff:ff:ff:ff:ff:ff for
902 * broadcast keys, %NULL for default keys that are used both for
903 * broadcast and unicast; when clearing keys, %NULL is used to
904 * indicate that both the broadcast-only and default key of the
905 * specified key index is to be cleared
6fc6879b
JM
906 * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
907 * IGTK
908 * @set_tx: configure this key as the default Tx key (only used when
909 * driver does not support separate unicast/individual key
910 * @seq: sequence number/packet number, seq_len octets, the next
911 * packet number to be used for in replay protection; configured
912 * for Rx keys (in most cases, this is only used with broadcast
da64c266 913 * keys and set to zero for unicast keys); %NULL if not set
6fc6879b
JM
914 * @seq_len: length of the seq, depends on the algorithm:
915 * TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
916 * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
917 * 8-byte Rx Mic Key
918 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
919 * TKIP: 32, CCMP: 16, IGTK: 16)
920 *
921 * Returns: 0 on success, -1 on failure
922 *
923 * Configure the given key for the kernel driver. If the driver
924 * supports separate individual keys (4 default keys + 1 individual),
925 * addr can be used to determine whether the key is default or
926 * individual. If only 4 keys are supported, the default key with key
927 * index 0 is used as the individual key. STA must be configured to use
928 * it as the default Tx key (set_tx is set) and accept Rx for all the
929 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
930 * broadcast keys, so key index 0 is available for this kind of
931 * configuration.
932 *
933 * Please note that TKIP keys include separate TX and RX MIC keys and
934 * some drivers may expect them in different order than wpa_supplicant
935 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
61fbd3df 936 * will trigger Michael MIC errors. This can be fixed by changing the
6fc6879b
JM
937 * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
938 * in driver_*.c set_key() implementation, see driver_ndis.c for an
939 * example on how this can be done.
940 */
71934751 941 int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg,
642187d6
JM
942 const u8 *addr, int key_idx, int set_tx,
943 const u8 *seq, size_t seq_len,
6fc6879b
JM
944 const u8 *key, size_t key_len);
945
946 /**
947 * init - Initialize driver interface
948 * @ctx: context to be used when calling wpa_supplicant functions,
949 * e.g., wpa_supplicant_event()
950 * @ifname: interface name, e.g., wlan0
951 *
952 * Returns: Pointer to private data, %NULL on failure
953 *
954 * Initialize driver interface, including event processing for kernel
955 * driver events (e.g., associated, scan results, Michael MIC failure).
956 * This function can allocate a private configuration data area for
957 * @ctx, file descriptor, interface name, etc. information that may be
958 * needed in future driver operations. If this is not used, non-NULL
959 * value will need to be returned because %NULL is used to indicate
960 * failure. The returned value will be used as 'void *priv' data for
961 * all other driver_ops functions.
962 *
963 * The main event loop (eloop.c) of wpa_supplicant can be used to
964 * register callback for read sockets (eloop_register_read_sock()).
965 *
966 * See below for more information about events and
967 * wpa_supplicant_event() function.
968 */
969 void * (*init)(void *ctx, const char *ifname);
970
971 /**
972 * deinit - Deinitialize driver interface
973 * @priv: private driver interface data from init()
974 *
975 * Shut down driver interface and processing of driver events. Free
976 * private data buffer if one was allocated in init() handler.
977 */
978 void (*deinit)(void *priv);
979
980 /**
981 * set_param - Set driver configuration parameters
982 * @priv: private driver interface data from init()
983 * @param: driver specific configuration parameters
984 *
985 * Returns: 0 on success, -1 on failure
986 *
987 * Optional handler for notifying driver interface about configuration
988 * parameters (driver_param).
989 */
990 int (*set_param)(void *priv, const char *param);
991
992 /**
993 * set_countermeasures - Enable/disable TKIP countermeasures
994 * @priv: private driver interface data
995 * @enabled: 1 = countermeasures enabled, 0 = disabled
996 *
997 * Returns: 0 on success, -1 on failure
998 *
999 * Configure TKIP countermeasures. When these are enabled, the driver
1000 * should drop all received and queued frames that are using TKIP.
1001 */
1002 int (*set_countermeasures)(void *priv, int enabled);
1003
6fc6879b
JM
1004 /**
1005 * deauthenticate - Request driver to deauthenticate
1006 * @priv: private driver interface data
1007 * @addr: peer address (BSSID of the AP)
1008 * @reason_code: 16-bit reason code to be sent in the deauthentication
1009 * frame
1010 *
1011 * Returns: 0 on success, -1 on failure
1012 */
1013 int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
1014
1015 /**
1016 * disassociate - Request driver to disassociate
1017 * @priv: private driver interface data
1018 * @addr: peer address (BSSID of the AP)
1019 * @reason_code: 16-bit reason code to be sent in the disassociation
1020 * frame
1021 *
1022 * Returns: 0 on success, -1 on failure
1023 */
1024 int (*disassociate)(void *priv, const u8 *addr, int reason_code);
1025
1026 /**
1027 * associate - Request driver to associate
1028 * @priv: private driver interface data
1029 * @params: association parameters
1030 *
1031 * Returns: 0 on success, -1 on failure
1032 */
1033 int (*associate)(void *priv,
1034 struct wpa_driver_associate_params *params);
1035
6fc6879b
JM
1036 /**
1037 * add_pmkid - Add PMKSA cache entry to the driver
1038 * @priv: private driver interface data
1039 * @bssid: BSSID for the PMKSA cache entry
1040 * @pmkid: PMKID for the PMKSA cache entry
1041 *
1042 * Returns: 0 on success, -1 on failure
1043 *
1044 * This function is called when a new PMK is received, as a result of
1045 * either normal authentication or RSN pre-authentication.
1046 *
1047 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1048 * associate(), add_pmkid() can be used to add new PMKSA cache entries
1049 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
1050 * driver_ops function does not need to be implemented. Likewise, if
1051 * the driver does not support WPA, this function is not needed.
1052 */
1053 int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
1054
1055 /**
1056 * remove_pmkid - Remove PMKSA cache entry to the driver
1057 * @priv: private driver interface data
1058 * @bssid: BSSID for the PMKSA cache entry
1059 * @pmkid: PMKID for the PMKSA cache entry
1060 *
1061 * Returns: 0 on success, -1 on failure
1062 *
1063 * This function is called when the supplicant drops a PMKSA cache
1064 * entry for any reason.
1065 *
1066 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1067 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
1068 * between the driver and wpa_supplicant. If the driver uses wpa_ie
1069 * from wpa_supplicant, this driver_ops function does not need to be
1070 * implemented. Likewise, if the driver does not support WPA, this
1071 * function is not needed.
1072 */
1073 int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
1074
1075 /**
1076 * flush_pmkid - Flush PMKSA cache
1077 * @priv: private driver interface data
1078 *
1079 * Returns: 0 on success, -1 on failure
1080 *
1081 * This function is called when the supplicant drops all PMKSA cache
1082 * entries for any reason.
1083 *
1084 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1085 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
1086 * between the driver and wpa_supplicant. If the driver uses wpa_ie
1087 * from wpa_supplicant, this driver_ops function does not need to be
1088 * implemented. Likewise, if the driver does not support WPA, this
1089 * function is not needed.
1090 */
1091 int (*flush_pmkid)(void *priv);
1092
1093 /**
6179d2fd 1094 * get_capa - Get driver capabilities
6fc6879b
JM
1095 * @priv: private driver interface data
1096 *
1097 * Returns: 0 on success, -1 on failure
1098 *
1099 * Get driver/firmware/hardware capabilities.
1100 */
1101 int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
1102
1103 /**
1104 * poll - Poll driver for association information
1105 * @priv: private driver interface data
1106 *
1107 * This is an option callback that can be used when the driver does not
1108 * provide event mechanism for association events. This is called when
1109 * receiving WPA EAPOL-Key messages that require association
1110 * information. The driver interface is supposed to generate associnfo
1111 * event before returning from this callback function. In addition, the
1112 * driver interface should generate an association event after having
1113 * sent out associnfo.
1114 */
1115 void (*poll)(void *priv);
1116
1117 /**
1118 * get_ifname - Get interface name
1119 * @priv: private driver interface data
1120 *
1121 * Returns: Pointer to the interface name. This can differ from the
e519314e 1122 * interface name used in init() call. Init() is called first.
6fc6879b
JM
1123 *
1124 * This optional function can be used to allow the driver interface to
1125 * replace the interface name with something else, e.g., based on an
1126 * interface mapping from a more descriptive name.
1127 */
1128 const char * (*get_ifname)(void *priv);
1129
1130 /**
1131 * get_mac_addr - Get own MAC address
1132 * @priv: private driver interface data
1133 *
1134 * Returns: Pointer to own MAC address or %NULL on failure
1135 *
1136 * This optional function can be used to get the own MAC address of the
1137 * device from the driver interface code. This is only needed if the
1138 * l2_packet implementation for the OS does not provide easy access to
1139 * a MAC address. */
1140 const u8 * (*get_mac_addr)(void *priv);
1141
1142 /**
1143 * send_eapol - Optional function for sending EAPOL packets
1144 * @priv: private driver interface data
1145 * @dest: Destination MAC address
1146 * @proto: Ethertype
1147 * @data: EAPOL packet starting with IEEE 802.1X header
1148 * @data_len: Size of the EAPOL packet
1149 *
1150 * Returns: 0 on success, -1 on failure
1151 *
1152 * This optional function can be used to override l2_packet operations
1153 * with driver specific functionality. If this function pointer is set,
1154 * l2_packet module is not used at all and the driver interface code is
1155 * responsible for receiving and sending all EAPOL packets. The
a8e0505b
JM
1156 * received EAPOL packets are sent to core code with EVENT_EAPOL_RX
1157 * event. The driver interface is required to implement get_mac_addr()
1158 * handler if send_eapol() is used.
6fc6879b
JM
1159 */
1160 int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
1161 const u8 *data, size_t data_len);
1162
1163 /**
1164 * set_operstate - Sets device operating state to DORMANT or UP
1165 * @priv: private driver interface data
1166 * @state: 0 = dormant, 1 = up
1167 * Returns: 0 on success, -1 on failure
1168 *
1169 * This is an optional function that can be used on operating systems
1170 * that support a concept of controlling network device state from user
1171 * space applications. This function, if set, gets called with
1172 * state = 1 when authentication has been completed and with state = 0
1173 * when connection is lost.
1174 */
1175 int (*set_operstate)(void *priv, int state);
1176
1177 /**
1178 * mlme_setprotection - MLME-SETPROTECTION.request primitive
1179 * @priv: Private driver interface data
1180 * @addr: Address of the station for which to set protection (may be
1181 * %NULL for group keys)
1182 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
1183 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
1184 * Returns: 0 on success, -1 on failure
1185 *
1186 * This is an optional function that can be used to set the driver to
1187 * require protection for Tx and/or Rx frames. This uses the layer
1188 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
1189 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
1190 * set protection operation; instead, they set protection implicitly
1191 * based on configured keys.
1192 */
1193 int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
1194 int key_type);
1195
1196 /**
1197 * get_hw_feature_data - Get hardware support data (channels and rates)
1198 * @priv: Private driver interface data
1199 * @num_modes: Variable for returning the number of returned modes
1200 * flags: Variable for returning hardware feature flags
1201 * Returns: Pointer to allocated hardware data on success or %NULL on
1202 * failure. Caller is responsible for freeing this.
1203 *
1204 * This function is only needed for drivers that export MLME
e0498677 1205 * (management frame processing) to %wpa_supplicant or hostapd.
6fc6879b 1206 */
6caf9ca6
JM
1207 struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
1208 u16 *num_modes,
1209 u16 *flags);
6fc6879b
JM
1210
1211 /**
1212 * set_channel - Set channel
1213 * @priv: Private driver interface data
6caf9ca6 1214 * @phymode: HOSTAPD_MODE_IEEE80211B, ..
6fc6879b
JM
1215 * @chan: IEEE 802.11 channel number
1216 * @freq: Frequency of the channel in MHz
1217 * Returns: 0 on success, -1 on failure
1218 *
1219 * This function is only needed for drivers that export MLME
1220 * (management frame processing) to wpa_supplicant.
1221 */
71934751 1222 int (*set_channel)(void *priv, enum hostapd_hw_mode phymode, int chan,
6fc6879b
JM
1223 int freq);
1224
1225 /**
1226 * set_ssid - Set SSID
1227 * @priv: Private driver interface data
1228 * @ssid: SSID
1229 * @ssid_len: SSID length
1230 * Returns: 0 on success, -1 on failure
1231 *
1232 * This function is only needed for drivers that export MLME
1233 * (management frame processing) to wpa_supplicant.
1234 */
1235 int (*set_ssid)(void *priv, const u8 *ssid, size_t ssid_len);
1236
1237 /**
1238 * set_bssid - Set BSSID
1239 * @priv: Private driver interface data
1240 * @bssid: BSSID
1241 * Returns: 0 on success, -1 on failure
1242 *
1243 * This function is only needed for drivers that export MLME
1244 * (management frame processing) to wpa_supplicant.
1245 */
1246 int (*set_bssid)(void *priv, const u8 *bssid);
1247
1248 /**
1249 * send_mlme - Send management frame from MLME
1250 * @priv: Private driver interface data
1251 * @data: IEEE 802.11 management frame with IEEE 802.11 header
1252 * @data_len: Size of the management frame
1253 * Returns: 0 on success, -1 on failure
1254 *
1255 * This function is only needed for drivers that export MLME
1256 * (management frame processing) to wpa_supplicant.
1257 */
1258 int (*send_mlme)(void *priv, const u8 *data, size_t data_len);
1259
1260 /**
1261 * mlme_add_sta - Add a STA entry into the driver/netstack
1262 * @priv: Private driver interface data
1263 * @addr: MAC address of the STA (e.g., BSSID of the AP)
1264 * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11
1265 * format (one octet per rate, 1 = 0.5 Mbps)
1266 * @supp_rates_len: Number of entries in supp_rates
1267 * Returns: 0 on success, -1 on failure
1268 *
1269 * This function is only needed for drivers that export MLME
1270 * (management frame processing) to wpa_supplicant. When the MLME code
1271 * completes association with an AP, this function is called to
1272 * configure the driver/netstack with a STA entry for data frame
1273 * processing (TX rate control, encryption/decryption).
1274 */
1275 int (*mlme_add_sta)(void *priv, const u8 *addr, const u8 *supp_rates,
1276 size_t supp_rates_len);
1277
1278 /**
1279 * mlme_remove_sta - Remove a STA entry from the driver/netstack
1280 * @priv: Private driver interface data
1281 * @addr: MAC address of the STA (e.g., BSSID of the AP)
1282 * Returns: 0 on success, -1 on failure
1283 *
1284 * This function is only needed for drivers that export MLME
1285 * (management frame processing) to wpa_supplicant.
1286 */
1287 int (*mlme_remove_sta)(void *priv, const u8 *addr);
1288
1289 /**
1290 * update_ft_ies - Update FT (IEEE 802.11r) IEs
1291 * @priv: Private driver interface data
1292 * @md: Mobility domain (2 octets) (also included inside ies)
1293 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
1294 * @ies_len: Length of FT IEs in bytes
1295 * Returns: 0 on success, -1 on failure
1296 *
1297 * The supplicant uses this callback to let the driver know that keying
1298 * material for FT is available and that the driver can use the
1299 * provided IEs in the next message in FT authentication sequence.
1300 *
1301 * This function is only needed for driver that support IEEE 802.11r
1302 * (Fast BSS Transition).
1303 */
1304 int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
1305 size_t ies_len);
1306
1307 /**
1308 * send_ft_action - Send FT Action frame (IEEE 802.11r)
1309 * @priv: Private driver interface data
1310 * @action: Action field value
1311 * @target_ap: Target AP address
1312 * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
1313 * @ies_len: Length of FT IEs in bytes
1314 * Returns: 0 on success, -1 on failure
1315 *
1316 * The supplicant uses this callback to request the driver to transmit
1317 * an FT Action frame (action category 6) for over-the-DS fast BSS
1318 * transition.
1319 */
1320 int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
1321 const u8 *ies, size_t ies_len);
1322
1323 /**
1324 * get_scan_results2 - Fetch the latest scan results
1325 * @priv: private driver interface data
1326 *
1327 * Returns: Allocated buffer of scan results (caller is responsible for
1328 * freeing the data structure) on success, NULL on failure
1329 */
1330 struct wpa_scan_results * (*get_scan_results2)(void *priv);
1331
6d158490
LR
1332 /**
1333 * set_country - Set country
1334 * @priv: Private driver interface data
1335 * @alpha2: country to which to switch to
1336 * Returns: 0 on success, -1 on failure
1337 *
1338 * This function is for drivers which support some form
1339 * of setting a regulatory domain.
1340 */
1341 int (*set_country)(void *priv, const char *alpha2);
ac305589
JM
1342
1343 /**
1344 * global_init - Global driver initialization
1345 * Returns: Pointer to private data (global), %NULL on failure
1346 *
1347 * This optional function is called to initialize the driver wrapper
1348 * for global data, i.e., data that applies to all interfaces. If this
1349 * function is implemented, global_deinit() will also need to be
1350 * implemented to free the private data. The driver will also likely
1351 * use init2() function instead of init() to get the pointer to global
1352 * data available to per-interface initializer.
1353 */
1354 void * (*global_init)(void);
1355
1356 /**
1357 * global_deinit - Global driver deinitialization
1358 * @priv: private driver global data from global_init()
1359 *
1360 * Terminate any global driver related functionality and free the
1361 * global data structure.
1362 */
1363 void (*global_deinit)(void *priv);
1364
1365 /**
1366 * init2 - Initialize driver interface (with global data)
1367 * @ctx: context to be used when calling wpa_supplicant functions,
1368 * e.g., wpa_supplicant_event()
1369 * @ifname: interface name, e.g., wlan0
1370 * @global_priv: private driver global data from global_init()
1371 * Returns: Pointer to private data, %NULL on failure
1372 *
1373 * This function can be used instead of init() if the driver wrapper
1374 * uses global data.
1375 */
1376 void * (*init2)(void *ctx, const char *ifname, void *global_priv);
4b4a8ae5
JM
1377
1378 /**
1379 * get_interfaces - Get information about available interfaces
1380 * @global_priv: private driver global data from global_init()
1381 * Returns: Allocated buffer of interface information (caller is
1382 * responsible for freeing the data structure) on success, NULL on
1383 * failure
1384 */
1385 struct wpa_interface_info * (*get_interfaces)(void *global_priv);
fc2b7ed5
JM
1386
1387 /**
1388 * scan2 - Request the driver to initiate scan
1389 * @priv: private driver interface data
1390 * @params: Scan parameters
1391 *
1392 * Returns: 0 on success, -1 on failure
1393 *
1394 * Once the scan results are ready, the driver should report scan
1395 * results event for wpa_supplicant which will eventually request the
1396 * results with wpa_driver_get_scan_results2().
1397 */
1398 int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
c2a04078
JM
1399
1400 /**
1401 * authenticate - Request driver to authenticate
1402 * @priv: private driver interface data
1403 * @params: authentication parameters
1404 * Returns: 0 on success, -1 on failure
1405 *
1406 * This is an optional function that can be used with drivers that
1407 * support separate authentication and association steps, i.e., when
1408 * wpa_supplicant can act as the SME. If not implemented, associate()
1409 * function is expected to take care of IEEE 802.11 authentication,
1410 * too.
1411 */
d2440ba0
JM
1412 int (*authenticate)(void *priv,
1413 struct wpa_driver_auth_params *params);
1414
15333707 1415 /**
19c3b566 1416 * set_ap - Set Beacon and Probe Response information for AP mode
15333707 1417 * @priv: Private driver interface data
19c3b566 1418 * @params: Parameters to use in AP mode
15333707 1419 *
19c3b566
JM
1420 * This function is used to configure Beacon template and/or extra IEs
1421 * to add for Beacon and Probe Response frames for the driver in
15333707
JM
1422 * AP mode. The driver is responsible for building the full Beacon
1423 * frame by concatenating the head part with TIM IE generated by the
19c3b566
JM
1424 * driver/firmware and finishing with the tail part. Depending on the
1425 * driver architectue, this can be done either by using the full
1426 * template or the set of additional IEs (e.g., WPS and P2P IE).
1427 * Similarly, Probe Response processing depends on the driver design.
1428 * If the driver (or firmware) takes care of replying to Probe Request
1429 * frames, the extra IEs provided here needs to be added to the Probe
1430 * Response frames.
1431 *
1432 * Returns: 0 on success, -1 on failure
15333707 1433 */
19c3b566 1434 int (*set_ap)(void *priv, struct wpa_driver_ap_params *params);
c5121837 1435
15333707
JM
1436 /**
1437 * hapd_init - Initialize driver interface (hostapd only)
1438 * @hapd: Pointer to hostapd context
1439 * @params: Configuration for the driver wrapper
1440 * Returns: Pointer to private data, %NULL on failure
1441 *
1442 * This function is used instead of init() or init2() when the driver
ffbf1eaa 1443 * wrapper is used with hostapd.
15333707 1444 */
92f475b4
JM
1445 void * (*hapd_init)(struct hostapd_data *hapd,
1446 struct wpa_init_params *params);
15333707
JM
1447
1448 /**
1449 * hapd_deinit - Deinitialize driver interface (hostapd only)
1450 * @priv: Private driver interface data from hapd_init()
1451 */
c5121837
JM
1452 void (*hapd_deinit)(void *priv);
1453
1454 /**
15333707 1455 * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
15333707 1456 * @priv: Private driver interface data
e3bd3912 1457 * @params: BSS parameters
c5121837
JM
1458 * Returns: 0 on success, -1 on failure
1459 *
15333707 1460 * This is an optional function to configure the kernel driver to
e3bd3912
JM
1461 * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
1462 * can be left undefined (set to %NULL) if IEEE 802.1X support is
1463 * always enabled and the driver uses set_beacon() to set WPA/RSN IE
1464 * for Beacon frames.
c5121837 1465 */
e3bd3912 1466 int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
c5121837
JM
1467
1468 /**
15333707
JM
1469 * set_privacy - Enable/disable privacy (AP only)
1470 * @priv: Private driver interface data
c5121837 1471 * @enabled: 1 = privacy enabled, 0 = disabled
15333707 1472 * Returns: 0 on success, -1 on failure
c5121837 1473 *
15333707
JM
1474 * This is an optional function to configure privacy field in the
1475 * kernel driver for Beacon frames. This can be left undefined (set to
1476 * %NULL) if the driver uses the Beacon template from set_beacon().
c5121837 1477 */
d5dd016a 1478 int (*set_privacy)(void *priv, int enabled);
c5121837 1479
15333707
JM
1480 /**
1481 * get_seqnum - Fetch the current TSC/packet number (AP only)
1482 * @ifname: The interface name (main or virtual)
1483 * @priv: Private driver interface data
1484 * @addr: MAC address of the station or %NULL for group keys
1485 * @idx: Key index
1486 * @seq: Buffer for returning the latest used TSC/packet number
1487 * Returns: 0 on success, -1 on failure
1488 *
1489 * This function is used to fetch the last used TSC/packet number for
9008a3e4
JM
1490 * a TKIP, CCMP, or BIP/IGTK key. It is mainly used with group keys, so
1491 * there is no strict requirement on implementing support for unicast
1492 * keys (i.e., addr != %NULL).
15333707 1493 */
c5121837
JM
1494 int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
1495 int idx, u8 *seq);
15333707 1496
15333707
JM
1497 /**
1498 * flush - Flush all association stations (AP only)
1499 * @priv: Private driver interface data
1500 * Returns: 0 on success, -1 on failure
1501 *
1502 * This function requests the driver to disassociate all associated
1503 * stations. This function does not need to be implemented if the
1504 * driver does not process association frames internally.
1505 */
c5121837 1506 int (*flush)(void *priv);
15333707
JM
1507
1508 /**
1509 * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
15333707
JM
1510 * @priv: Private driver interface data
1511 * @elem: Information elements
1512 * @elem_len: Length of the elem buffer in octets
1513 * Returns: 0 on success, -1 on failure
1514 *
1515 * This is an optional function to add information elements in the
1516 * kernel driver for Beacon and Probe Response frames. This can be left
1517 * undefined (set to %NULL) if the driver uses the Beacon template from
1518 * set_beacon().
1519 */
aa484516 1520 int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
c5121837 1521
15333707
JM
1522 /**
1523 * read_sta_data - Fetch station data (AP only)
1524 * @priv: Private driver interface data
1525 * @data: Buffer for returning station information
1526 * @addr: MAC address of the station
1527 * Returns: 0 on success, -1 on failure
1528 */
c5121837
JM
1529 int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
1530 const u8 *addr);
15333707
JM
1531
1532 /**
1533 * hapd_send_eapol - Send an EAPOL packet (AP only)
1534 * @priv: private driver interface data
1535 * @addr: Destination MAC address
1536 * @data: EAPOL packet starting with IEEE 802.1X header
1537 * @data_len: Length of the EAPOL packet in octets
1538 * @encrypt: Whether the frame should be encrypted
1539 * @own_addr: Source MAC address
4378fc14 1540 * @flags: WPA_STA_* flags for the destination station
15333707
JM
1541 *
1542 * Returns: 0 on success, -1 on failure
1543 */
c5121837
JM
1544 int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
1545 size_t data_len, int encrypt,
4378fc14 1546 const u8 *own_addr, u32 flags);
15333707 1547
90b8c4c5
JM
1548 /**
1549 * sta_deauth - Deauthenticate a station (AP only)
1550 * @priv: Private driver interface data
1551 * @own_addr: Source address and BSSID for the Deauthentication frame
1552 * @addr: MAC address of the station to deauthenticate
1553 * @reason: Reason code for the Deauthentiation frame
1554 * Returns: 0 on success, -1 on failure
1555 *
1556 * This function requests a specific station to be deauthenticated and
1557 * a Deauthentication frame to be sent to it.
1558 */
731723a5
JM
1559 int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
1560 int reason);
90b8c4c5
JM
1561
1562 /**
1563 * sta_disassoc - Disassociate a station (AP only)
1564 * @priv: Private driver interface data
1565 * @own_addr: Source address and BSSID for the Disassociation frame
1566 * @addr: MAC address of the station to disassociate
1567 * @reason: Reason code for the Disassociation frame
1568 * Returns: 0 on success, -1 on failure
1569 *
1570 * This function requests a specific station to be disassociated and
1571 * a Disassociation frame to be sent to it.
1572 */
731723a5
JM
1573 int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
1574 int reason);
90b8c4c5
JM
1575
1576 /**
1577 * sta_remove - Remove a station entry (AP only)
1578 * @priv: Private driver interface data
1579 * @addr: MAC address of the station to be removed
1580 * Returns: 0 on success, -1 on failure
1581 */
c5121837 1582 int (*sta_remove)(void *priv, const u8 *addr);
90b8c4c5
JM
1583
1584 /**
1585 * hapd_get_ssid - Get the current SSID (AP only)
90b8c4c5
JM
1586 * @priv: Private driver interface data
1587 * @buf: Buffer for returning the SSID
1588 * @len: Maximum length of the buffer
1589 * Returns: Length of the SSID on success, -1 on failure
1590 *
1591 * This function need not be implemented if the driver uses Beacon
1592 * template from set_beacon() and does not reply to Probe Request
1593 * frames.
1594 */
8709de1a 1595 int (*hapd_get_ssid)(void *priv, u8 *buf, int len);
90b8c4c5
JM
1596
1597 /**
1598 * hapd_set_ssid - Set SSID (AP only)
90b8c4c5
JM
1599 * @priv: Private driver interface data
1600 * @buf: SSID
1601 * @len: Length of the SSID in octets
1602 * Returns: 0 on success, -1 on failure
1603 */
8709de1a
JM
1604 int (*hapd_set_ssid)(void *priv, const u8 *buf, int len);
1605
90b8c4c5
JM
1606 /**
1607 * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
1608 * @priv: Private driver interface data
1609 * @enabled: 1 = countermeasures enabled, 0 = disabled
1610 * Returns: 0 on success, -1 on failure
1611 *
1612 * This need not be implemented if the driver does not take care of
1613 * association processing.
1614 */
c5121837 1615 int (*hapd_set_countermeasures)(void *priv, int enabled);
90b8c4c5
JM
1616
1617 /**
1618 * sta_add - Add a station entry
90b8c4c5
JM
1619 * @priv: Private driver interface data
1620 * @params: Station parameters
1621 * Returns: 0 on success, -1 on failure
1622 *
1623 * This function is used to add a station entry to the driver once the
1624 * station has completed association. This is only used if the driver
1625 * does not take care of association processing.
1626 */
62847751 1627 int (*sta_add)(void *priv, struct hostapd_sta_add_params *params);
90b8c4c5
JM
1628
1629 /**
1630 * get_inact_sec - Get station inactivity duration (AP only)
1631 * @priv: Private driver interface data
1632 * @addr: Station address
1633 * Returns: Number of seconds station has been inactive, -1 on failure
1634 */
c5121837 1635 int (*get_inact_sec)(void *priv, const u8 *addr);
90b8c4c5
JM
1636
1637 /**
1638 * sta_clear_stats - Clear station statistics (AP only)
1639 * @priv: Private driver interface data
1640 * @addr: Station address
1641 * Returns: 0 on success, -1 on failure
1642 */
c5121837
JM
1643 int (*sta_clear_stats)(void *priv, const u8 *addr);
1644
90b8c4c5
JM
1645 /**
1646 * set_freq - Set channel/frequency (AP only)
1647 * @priv: Private driver interface data
1648 * @freq: Channel parameters
1649 * Returns: 0 on success, -1 on failure
1650 */
c5121837 1651 int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
90b8c4c5
JM
1652
1653 /**
1654 * set_rts - Set RTS threshold
1655 * @priv: Private driver interface data
1656 * @rts: RTS threshold in octets
1657 * Returns: 0 on success, -1 on failure
1658 */
c5121837 1659 int (*set_rts)(void *priv, int rts);
90b8c4c5
JM
1660
1661 /**
1662 * set_frag - Set fragmentation threshold
1663 * @priv: Private driver interface data
1664 * @frag: Fragmentation threshold in octets
1665 * Returns: 0 on success, -1 on failure
1666 */
c5121837 1667 int (*set_frag)(void *priv, int frag);
c5121837 1668
90b8c4c5
JM
1669 /**
1670 * sta_set_flags - Set station flags (AP only)
1671 * @priv: Private driver interface data
1672 * @addr: Station address
0de39516
JM
1673 * @total_flags: Bitmap of all WPA_STA_* flags currently set
1674 * @flags_or: Bitmap of WPA_STA_* flags to add
1675 * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
90b8c4c5
JM
1676 * Returns: 0 on success, -1 on failure
1677 */
3234cba4 1678 int (*sta_set_flags)(void *priv, const u8 *addr,
c5121837 1679 int total_flags, int flags_or, int flags_and);
90b8c4c5
JM
1680
1681 /**
1682 * set_rate_sets - Set supported and basic rate sets (AP only)
1683 * @priv: Private driver interface data
1684 * @supp_rates: -1 terminated array of supported rates in 100 kbps
1685 * @basic_rates: -1 terminated array of basic rates in 100 kbps
1686 * @mode: hardware mode (HOSTAPD_MODE_*)
1687 * Returns: 0 on success, -1 on failure
1688 */
c5121837
JM
1689 int (*set_rate_sets)(void *priv, int *supp_rates, int *basic_rates,
1690 int mode);
c5121837 1691
90b8c4c5
JM
1692 /**
1693 * set_cts_protect - Set CTS protection mode (AP only)
1694 * @priv: Private driver interface data
1695 * @value: Whether CTS protection is enabled
1696 * Returns: 0 on success, -1 on failure
1697 */
c5121837 1698 int (*set_cts_protect)(void *priv, int value);
90b8c4c5
JM
1699
1700 /**
1701 * set_preamble - Set preamble mode (AP only)
1702 * @priv: Private driver interface data
1703 * @value: Whether short preamble is enabled
1704 * Returns: 0 on success, -1 on failure
1705 */
c5121837 1706 int (*set_preamble)(void *priv, int value);
90b8c4c5
JM
1707
1708 /**
1709 * set_short_slot_time - Set short slot time (AP only)
1710 * @priv: Private driver interface data
1711 * @value: Whether short slot time is enabled
1712 * Returns: 0 on success, -1 on failure
1713 */
c5121837 1714 int (*set_short_slot_time)(void *priv, int value);
90b8c4c5
JM
1715
1716 /**
1717 * set_tx_queue_params - Set TX queue parameters
1718 * @priv: Private driver interface data
7e3c1781 1719 * @queue: Queue number (0 = VO, 1 = VI, 2 = BE, 3 = BK)
90b8c4c5
JM
1720 * @aifs: AIFS
1721 * @cw_min: cwMin
1722 * @cw_max: cwMax
1723 * @burst_time: Maximum length for bursting in 0.1 msec units
1724 */
c5121837
JM
1725 int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
1726 int cw_max, int burst_time);
90b8c4c5
JM
1727
1728 /**
1729 * valid_bss_mask - Validate BSSID mask
1730 * @priv: Private driver interface data
1731 * @addr: Address
1732 * @mask: Mask
1733 * Returns: 0 if mask is valid, -1 if mask is not valid, 1 if mask can
1734 * be used, but the main interface address must be the first address in
1735 * the block if mask is applied
1736 */
c5121837 1737 int (*valid_bss_mask)(void *priv, const u8 *addr, const u8 *mask);
22a7c9d7
JM
1738
1739 /**
1740 * if_add - Add a virtual interface
15333707 1741 * @priv: Private driver interface data
22a7c9d7
JM
1742 * @type: Interface type
1743 * @ifname: Interface name for the new virtual interface
1744 * @addr: Local address to use for the interface or %NULL to use the
1745 * parent interface address
8043e725 1746 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
a2e40bb6
FF
1747 * @drv_priv: Pointer for overwriting the driver context or %NULL if
1748 * not allowed (applies only to %WPA_IF_AP_BSS type)
f3585c8a
JM
1749 * @force_ifname: Buffer for returning an interface name that the
1750 * driver ended up using if it differs from the requested ifname
1751 * @if_addr: Buffer for returning the allocated interface address
1752 * (this may differ from the requested addr if the driver cannot
1753 * change interface address)
e17a2477 1754 * @bridge: Bridge interface to use or %NULL if no bridge configured
22a7c9d7
JM
1755 * Returns: 0 on success, -1 on failure
1756 */
7ab68865
JM
1757 int (*if_add)(void *priv, enum wpa_driver_if_type type,
1758 const char *ifname, const u8 *addr, void *bss_ctx,
e17a2477
JM
1759 void **drv_priv, char *force_ifname, u8 *if_addr,
1760 const char *bridge);
22a7c9d7
JM
1761
1762 /**
1763 * if_remove - Remove a virtual interface
1764 * @priv: Private driver interface data
1765 * @type: Interface type
1766 * @ifname: Interface name of the virtual interface to be removed
1767 * Returns: 0 on success, -1 on failure
1768 */
1769 int (*if_remove)(void *priv, enum wpa_driver_if_type type,
1770 const char *ifname);
90b8c4c5 1771
15333707
JM
1772 /**
1773 * set_sta_vlan - Bind a station into a specific interface (AP only)
1774 * @priv: Private driver interface data
1775 * @ifname: Interface (main or virtual BSS or VLAN)
1776 * @addr: MAC address of the associated station
1777 * @vlan_id: VLAN ID
1778 * Returns: 0 on success, -1 on failure
1779 *
1780 * This function is used to bind a station to a specific virtual
1781 * interface. It is only used if when virtual interfaces are supported,
1782 * e.g., to assign stations to different VLAN interfaces based on
1783 * information from a RADIUS server. This allows separate broadcast
1784 * domains to be used with a single BSS.
1785 */
c5121837
JM
1786 int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
1787 int vlan_id);
15333707 1788
c5121837 1789 /**
15333707 1790 * commit - Optional commit changes handler (AP only)
c5121837
JM
1791 * @priv: driver private data
1792 * Returns: 0 on success, -1 on failure
1793 *
1794 * This optional handler function can be registered if the driver
1795 * interface implementation needs to commit changes (e.g., by setting
1796 * network interface up) at the end of initial configuration. If set,
1797 * this handler will be called after initial setup has been completed.
1798 */
1799 int (*commit)(void *priv);
1800
90b8c4c5
JM
1801 /**
1802 * send_ether - Send an ethernet packet (AP only)
1803 * @priv: private driver interface data
1804 * @dst: Destination MAC address
1805 * @src: Source MAC address
1806 * @proto: Ethertype
1807 * @data: EAPOL packet starting with IEEE 802.1X header
1808 * @data_len: Length of the EAPOL packet in octets
1809 * Returns: 0 on success, -1 on failure
1810 */
c5121837
JM
1811 int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
1812 const u8 *data, size_t data_len);
1813
90b8c4c5
JM
1814 /**
1815 * set_radius_acl_auth - Notification of RADIUS ACL change
1816 * @priv: Private driver interface data
1817 * @mac: MAC address of the station
1818 * @accepted: Whether the station was accepted
1819 * @session_timeout: Session timeout for the station
1820 * Returns: 0 on success, -1 on failure
1821 */
c5121837
JM
1822 int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted,
1823 u32 session_timeout);
90b8c4c5
JM
1824
1825 /**
1826 * set_radius_acl_expire - Notification of RADIUS ACL expiration
1827 * @priv: Private driver interface data
1828 * @mac: MAC address of the station
1829 * Returns: 0 on success, -1 on failure
1830 */
c5121837
JM
1831 int (*set_radius_acl_expire)(void *priv, const u8 *mac);
1832
90b8c4c5
JM
1833 /**
1834 * set_ht_params - Set HT parameters (AP only)
90b8c4c5
JM
1835 * @priv: Private driver interface data
1836 * @ht_capab: HT Capabilities IE
1837 * @ht_capab_len: Length of ht_capab in octets
1838 * @ht_oper: HT Operation IE
1839 * @ht_oper_len: Length of ht_oper in octets
1840 * Returns: 0 on success, -1 on failure
1841 */
d3e3a205 1842 int (*set_ht_params)(void *priv,
c5121837
JM
1843 const u8 *ht_capab, size_t ht_capab_len,
1844 const u8 *ht_oper, size_t ht_oper_len);
1845
15333707 1846 /**
b3db190f 1847 * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
15333707 1848 * @priv: Private driver interface data
b3db190f
JM
1849 * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
1850 * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
1851 * extra IE(s)
0e2e565a
JM
1852 * @assocresp: WPS IE(s) for (Re)Association Response frames or %NULL
1853 * to remove extra IE(s)
15333707
JM
1854 * Returns: 0 on success, -1 on failure
1855 *
1856 * This is an optional function to add WPS IE in the kernel driver for
14f79386
JM
1857 * Beacon and Probe Response frames. This can be left undefined (set
1858 * to %NULL) if the driver uses the Beacon template from set_beacon()
0e2e565a
JM
1859 * and does not process Probe Request frames. If the driver takes care
1860 * of (Re)Association frame processing, the assocresp buffer includes
1861 * WPS IE(s) that need to be added to (Re)Association Response frames
1862 * whenever a (Re)Association Request frame indicated use of WPS.
75bde05d
JM
1863 *
1864 * This will also be used to add P2P IE(s) into Beacon/Probe Response
1865 * frames when operating as a GO. The driver is responsible for adding
1866 * timing related attributes (e.g., NoA) in addition to the IEs
1867 * included here by appending them after these buffers. This call is
1868 * also used to provide Probe Response IEs for P2P Listen state
1869 * operations for drivers that generate the Probe Response frames
1870 * internally.
15333707 1871 */
0ebdf627 1872 int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon,
0e2e565a
JM
1873 const struct wpabuf *proberesp,
1874 const struct wpabuf *assocresp);
4bc181ec
JM
1875
1876 /**
1877 * set_supp_port - Set IEEE 802.1X Supplicant Port status
1878 * @priv: Private driver interface data
1879 * @authorized: Whether the port is authorized
1880 * Returns: 0 on success, -1 on failure
1881 */
1882 int (*set_supp_port)(void *priv, int authorized);
fbbfcbac
FF
1883
1884 /**
1885 * set_wds_sta - Bind a station into a 4-address WDS (AP only)
1886 * @priv: Private driver interface data
1887 * @addr: MAC address of the associated station
1888 * @aid: Association ID
1889 * @val: 1 = bind to 4-address WDS; 0 = unbind
d38ae2ea
FF
1890 * @bridge_ifname: Bridge interface to use for the WDS station or %NULL
1891 * to indicate that bridge is not to be used
fbbfcbac
FF
1892 * Returns: 0 on success, -1 on failure
1893 */
d38ae2ea
FF
1894 int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val,
1895 const char *bridge_ifname);
504e905c 1896
55777702
JM
1897 /**
1898 * send_action - Transmit an Action frame
1899 * @priv: Private driver interface data
1900 * @freq: Frequency (in MHz) of the channel
190b9062 1901 * @wait: Time to wait off-channel for a response (in ms), or zero
e8828999
JM
1902 * @dst: Destination MAC address (Address 1)
1903 * @src: Source MAC address (Address 2)
1904 * @bssid: BSSID (Address 3)
55777702
JM
1905 * @data: Frame body
1906 * @data_len: data length in octets
1907 * Returns: 0 on success, -1 on failure
1908 *
1909 * This command can be used to request the driver to transmit an action
190b9062
JB
1910 * frame to the specified destination.
1911 *
1912 * If the %WPA_DRIVER_FLAGS_OFFCHANNEL_TX flag is set, the frame will
1913 * be transmitted on the given channel and the device will wait for a
1914 * response on that channel for the given wait time.
1915 *
1916 * If the flag is not set, the wait time will be ignored. In this case,
1917 * if a remain-on-channel duration is in progress, the frame must be
1918 * transmitted on that channel; alternatively the frame may be sent on
1919 * the current operational channel (if in associated state in station
1920 * mode or while operating as an AP.)
55777702 1921 */
190b9062 1922 int (*send_action)(void *priv, unsigned int freq, unsigned int wait,
e8828999 1923 const u8 *dst, const u8 *src, const u8 *bssid,
55777702
JM
1924 const u8 *data, size_t data_len);
1925
190b9062
JB
1926 /**
1927 * send_action_cancel_wait - Cancel action frame TX wait
1928 * @priv: Private driver interface data
1929 *
1930 * This command cancels the wait time associated with sending an action
1931 * frame. It is only available when %WPA_DRIVER_FLAGS_OFFCHANNEL_TX is
1932 * set in the driver flags.
1933 */
1934 void (*send_action_cancel_wait)(void *priv);
1935
55777702
JM
1936 /**
1937 * remain_on_channel - Remain awake on a channel
1938 * @priv: Private driver interface data
1939 * @freq: Frequency (in MHz) of the channel
1940 * @duration: Duration in milliseconds
1941 * Returns: 0 on success, -1 on failure
1942 *
1943 * This command is used to request the driver to remain awake on the
1944 * specified channel for the specified duration and report received
1945 * Action frames with EVENT_RX_ACTION events. Optionally, received
1946 * Probe Request frames may also be requested to be reported by calling
1947 * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
1948 *
1949 * The driver may not be at the requested channel when this function
1950 * returns, i.e., the return code is only indicating whether the
1951 * request was accepted. The caller will need to wait until the
1952 * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
1953 * completed the channel change. This may take some time due to other
1954 * need for the radio and the caller should be prepared to timing out
1955 * its wait since there are no guarantees on when this request can be
1956 * executed.
1957 */
1958 int (*remain_on_channel)(void *priv, unsigned int freq,
1959 unsigned int duration);
1960
1961 /**
1962 * cancel_remain_on_channel - Cancel remain-on-channel operation
1963 * @priv: Private driver interface data
1964 *
1965 * This command can be used to cancel a remain-on-channel operation
1966 * before its originally requested duration has passed. This could be
1967 * used, e.g., when remain_on_channel() is used to request extra time
1968 * to receive a response to an Action frame and the response is
1969 * received when there is still unneeded time remaining on the
1970 * remain-on-channel operation.
1971 */
1972 int (*cancel_remain_on_channel)(void *priv);
1973
504e905c
JM
1974 /**
1975 * probe_req_report - Request Probe Request frames to be indicated
1976 * @priv: Private driver interface data
1977 * @report: Whether to report received Probe Request frames
1978 * Returns: 0 on success, -1 on failure (or if not supported)
1979 *
1980 * This command can be used to request the driver to indicate when
1981 * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
1982 * Since this operation may require extra resources, e.g., due to less
1983 * optimal hardware/firmware RX filtering, many drivers may disable
1984 * Probe Request reporting at least in station mode. This command is
1985 * used to notify the driver when the Probe Request frames need to be
1986 * reported, e.g., during remain-on-channel operations.
1987 */
1988 int (*probe_req_report)(void *priv, int report);
4e5cb1a3
JM
1989
1990 /**
1991 * disable_11b_rates - Set whether IEEE 802.11b rates are used for TX
1992 * @priv: Private driver interface data
1993 * @disabled: Whether IEEE 802.11b rates are disabled
1994 * Returns: 0 on success, -1 on failure (or if not supported)
1995 *
1996 * This command is used to disable IEEE 802.11b rates (1, 2, 5.5, and
1997 * 11 Mbps) as TX rates for data and management frames. This can be
1998 * used to optimize channel use when there is no need to support IEEE
1999 * 802.11b-only devices.
2000 */
2001 int (*disable_11b_rates)(void *priv, int disabled);
af473088
JM
2002
2003 /**
2004 * deinit_ap - Deinitialize AP mode
2005 * @priv: Private driver interface data
2006 * Returns: 0 on success, -1 on failure (or if not supported)
2007 *
2008 * This optional function can be used to disable AP mode related
2009 * configuration and change the driver mode to station mode to allow
2010 * normal station operations like scanning to be completed.
2011 */
2012 int (*deinit_ap)(void *priv);
207ef3fb
JM
2013
2014 /**
2015 * suspend - Notification on system suspend/hibernate event
2016 * @priv: Private driver interface data
2017 */
2018 void (*suspend)(void *priv);
2019
2020 /**
2021 * resume - Notification on system resume/thaw event
2022 * @priv: Private driver interface data
2023 */
2024 void (*resume)(void *priv);
b625473c
JM
2025
2026 /**
2027 * signal_monitor - Set signal monitoring parameters
2028 * @priv: Private driver interface data
2029 * @threshold: Threshold value for signal change events; 0 = disabled
2030 * @hysteresis: Minimum change in signal strength before indicating a
2031 * new event
2032 * Returns: 0 on success, -1 on failure (or if not supported)
2033 *
2034 * This function can be used to configure monitoring of signal strength
2035 * with the current AP. Whenever signal strength drops below the
2036 * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
2037 * should be generated assuming the signal strength has changed at
2038 * least %hysteresis from the previously indicated signal change event.
2039 */
2040 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
b91ab76e
JM
2041
2042 /**
2043 * send_frame - Send IEEE 802.11 frame (testing use only)
2044 * @priv: Private driver interface data
2045 * @data: IEEE 802.11 frame with IEEE 802.11 header
2046 * @data_len: Size of the frame
2047 * @encrypt: Whether to encrypt the frame (if keys are set)
2048 * Returns: 0 on success, -1 on failure
2049 *
2050 * This function is only used for debugging purposes and is not
2051 * required to be implemented for normal operations.
2052 */
2053 int (*send_frame)(void *priv, const u8 *data, size_t data_len,
2054 int encrypt);
75bde05d
JM
2055
2056 /**
2057 * shared_freq - Get operating frequency of shared interface(s)
2058 * @priv: Private driver interface data
2059 * Returns: Operating frequency in MHz, 0 if no shared operation in
2060 * use, or -1 on failure
2061 *
2062 * This command can be used to request the current operating frequency
2063 * of any virtual interface that shares the same radio to provide
2064 * information for channel selection for other virtual interfaces.
2065 */
2066 int (*shared_freq)(void *priv);
2067
2068 /**
2069 * get_noa - Get current Notice of Absence attribute payload
2070 * @priv: Private driver interface data
2071 * @buf: Buffer for returning NoA
2072 * @buf_len: Buffer length in octets
2073 * Returns: Number of octets used in buf, 0 to indicate no NoA is being
2074 * advertized, or -1 on failure
2075 *
2076 * This function is used to fetch the current Notice of Absence
2077 * attribute value from GO.
2078 */
2079 int (*get_noa)(void *priv, u8 *buf, size_t buf_len);
2080
2081 /**
2082 * set_noa - Set Notice of Absence parameters for GO (testing)
2083 * @priv: Private driver interface data
2084 * @count: Count
2085 * @start: Start time in ms from next TBTT
2086 * @duration: Duration in ms
2087 * Returns: 0 on success or -1 on failure
2088 *
2089 * This function is used to set Notice of Absence parameters for GO. It
2090 * is used only for testing. To disable NoA, all parameters are set to
2091 * 0.
2092 */
2093 int (*set_noa)(void *priv, u8 count, int start, int duration);
c381508d
JM
2094
2095 /**
2096 * set_p2p_powersave - Set P2P power save options
2097 * @priv: Private driver interface data
2098 * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change
2099 * @opp_ps: 0 = disable, 1 = enable, -1 = no change
2100 * @ctwindow: 0.. = change (msec), -1 = no change
2101 * Returns: 0 on success or -1 on failure
2102 */
2103 int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps,
2104 int ctwindow);
b6c79a99
JM
2105
2106 /**
2107 * ampdu - Enable/disable aggregation
2108 * @priv: Private driver interface data
2109 * @ampdu: 1/0 = enable/disable A-MPDU aggregation
2110 * Returns: 0 on success or -1 on failure
2111 */
2112 int (*ampdu)(void *priv, int ampdu);
0f66abd2
SS
2113
2114 /**
2115 * set_intra_bss - Enables/Disables intra BSS bridging
2116 */
2117 int (*set_intra_bss)(void *priv, int enabled);
6859f1cb
BG
2118
2119 /**
2120 * get_radio_name - Get physical radio name for the device
2121 * @priv: Private driver interface data
2122 * Returns: Radio name or %NULL if not known
2123 *
2124 * The returned data must not be modified by the caller. It is assumed
2125 * that any interface that has the same radio name as another is
2126 * sharing the same physical radio. This information can be used to
2127 * share scan results etc. information between the virtual interfaces
2128 * to speed up various operations.
2129 */
2130 const char * (*get_radio_name)(void *priv);
3ac17eba
JM
2131
2132 /**
2133 * p2p_find - Start P2P Device Discovery
2134 * @priv: Private driver interface data
2135 * @timeout: Timeout for find operation in seconds or 0 for no timeout
2136 * @type: Device Discovery type (enum p2p_discovery_type)
2137 * Returns: 0 on success, -1 on failure
2138 *
2139 * This function is only used if the driver implements P2P management,
2140 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2141 * struct wpa_driver_capa.
2142 */
2143 int (*p2p_find)(void *priv, unsigned int timeout, int type);
2144
2145 /**
2146 * p2p_stop_find - Stop P2P Device Discovery
2147 * @priv: Private driver interface data
2148 * Returns: 0 on success, -1 on failure
2149 *
2150 * This function is only used if the driver implements P2P management,
2151 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2152 * struct wpa_driver_capa.
2153 */
2154 int (*p2p_stop_find)(void *priv);
2155
2156 /**
2157 * p2p_listen - Start P2P Listen state for specified duration
2158 * @priv: Private driver interface data
2159 * @timeout: Listen state duration in milliseconds
2160 * Returns: 0 on success, -1 on failure
2161 *
2162 * This function can be used to request the P2P module to keep the
2163 * device discoverable on the listen channel for an extended set of
2164 * time. At least in its current form, this is mainly used for testing
2165 * purposes and may not be of much use for normal P2P operations.
2166 *
2167 * This function is only used if the driver implements P2P management,
2168 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2169 * struct wpa_driver_capa.
2170 */
2171 int (*p2p_listen)(void *priv, unsigned int timeout);
2172
2173 /**
2174 * p2p_connect - Start P2P group formation (GO negotiation)
2175 * @priv: Private driver interface data
2176 * @peer_addr: MAC address of the peer P2P client
2177 * @wps_method: enum p2p_wps_method value indicating config method
2178 * @go_intent: Local GO intent value (1..15)
2179 * @own_interface_addr: Intended interface address to use with the
2180 * group
2181 * @force_freq: The only allowed channel frequency in MHz or 0
2182 * @persistent_group: Whether to create persistent group
2183 * Returns: 0 on success, -1 on failure
2184 *
2185 * This function is only used if the driver implements P2P management,
2186 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2187 * struct wpa_driver_capa.
2188 */
2189 int (*p2p_connect)(void *priv, const u8 *peer_addr, int wps_method,
2190 int go_intent, const u8 *own_interface_addr,
2191 unsigned int force_freq, int persistent_group);
2192
2193 /**
2194 * wps_success_cb - Report successfully completed WPS provisioning
2195 * @priv: Private driver interface data
2196 * @peer_addr: Peer address
2197 * Returns: 0 on success, -1 on failure
2198 *
2199 * This function is used to report successfully completed WPS
2200 * provisioning during group formation in both GO/Registrar and
2201 * client/Enrollee roles.
2202 *
2203 * This function is only used if the driver implements P2P management,
2204 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2205 * struct wpa_driver_capa.
2206 */
2207 int (*wps_success_cb)(void *priv, const u8 *peer_addr);
2208
2209 /**
2210 * p2p_group_formation_failed - Report failed WPS provisioning
2211 * @priv: Private driver interface data
2212 * Returns: 0 on success, -1 on failure
2213 *
2214 * This function is used to report failed group formation. This can
2215 * happen either due to failed WPS provisioning or due to 15 second
2216 * timeout during the provisioning phase.
2217 *
2218 * This function is only used if the driver implements P2P management,
2219 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2220 * struct wpa_driver_capa.
2221 */
2222 int (*p2p_group_formation_failed)(void *priv);
2223
2224 /**
2225 * p2p_set_params - Set P2P parameters
2226 * @priv: Private driver interface data
2227 * @params: P2P parameters
2228 * Returns: 0 on success, -1 on failure
2229 *
2230 * This function is only used if the driver implements P2P management,
2231 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2232 * struct wpa_driver_capa.
2233 */
2234 int (*p2p_set_params)(void *priv, const struct p2p_params *params);
2235
2236 /**
2237 * p2p_prov_disc_req - Send Provision Discovery Request
2238 * @priv: Private driver interface data
2239 * @peer_addr: MAC address of the peer P2P client
2240 * @config_methods: WPS Config Methods value (only one bit set)
2241 * Returns: 0 on success, -1 on failure
2242 *
2243 * This function can be used to request a discovered P2P peer to
2244 * display a PIN (config_methods = WPS_CONFIG_DISPLAY) or be prepared
2245 * to enter a PIN from us (config_methods = WPS_CONFIG_KEYPAD). The
2246 * Provision Discovery Request frame is transmitted once immediately
2247 * and if no response is received, the frame will be sent again
2248 * whenever the target device is discovered during device dsicovery
2249 * (start with a p2p_find() call). Response from the peer is indicated
2250 * with the EVENT_P2P_PROV_DISC_RESPONSE event.
2251 *
2252 * This function is only used if the driver implements P2P management,
2253 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2254 * struct wpa_driver_capa.
2255 */
2256 int (*p2p_prov_disc_req)(void *priv, const u8 *peer_addr,
2257 u16 config_methods);
2258
2259 /**
2260 * p2p_sd_request - Schedule a service discovery query
2261 * @priv: Private driver interface data
2262 * @dst: Destination peer or %NULL to apply for all peers
2263 * @tlvs: P2P Service Query TLV(s)
2264 * Returns: Reference to the query or 0 on failure
2265 *
2266 * Response to the query is indicated with the
2267 * EVENT_P2P_SD_RESPONSE driver event.
2268 *
2269 * This function is only used if the driver implements P2P management,
2270 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2271 * struct wpa_driver_capa.
2272 */
2273 u64 (*p2p_sd_request)(void *priv, const u8 *dst,
2274 const struct wpabuf *tlvs);
2275
2276 /**
2277 * p2p_sd_cancel_request - Cancel a pending service discovery query
2278 * @priv: Private driver interface data
2279 * @req: Query reference from p2p_sd_request()
2280 * Returns: 0 on success, -1 on failure
2281 *
2282 * This function is only used if the driver implements P2P management,
2283 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2284 * struct wpa_driver_capa.
2285 */
2286 int (*p2p_sd_cancel_request)(void *priv, u64 req);
2287
2288 /**
2289 * p2p_sd_response - Send response to a service discovery query
2290 * @priv: Private driver interface data
2291 * @freq: Frequency from EVENT_P2P_SD_REQUEST event
2292 * @dst: Destination address from EVENT_P2P_SD_REQUEST event
2293 * @dialog_token: Dialog token from EVENT_P2P_SD_REQUEST event
2294 * @resp_tlvs: P2P Service Response TLV(s)
2295 * Returns: 0 on success, -1 on failure
2296 *
2297 * This function is called as a response to the request indicated with
2298 * the EVENT_P2P_SD_REQUEST driver event.
2299 *
2300 * This function is only used if the driver implements P2P management,
2301 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2302 * struct wpa_driver_capa.
2303 */
2304 int (*p2p_sd_response)(void *priv, int freq, const u8 *dst,
2305 u8 dialog_token,
2306 const struct wpabuf *resp_tlvs);
2307
2308 /**
2309 * p2p_service_update - Indicate a change in local services
2310 * @priv: Private driver interface data
2311 * Returns: 0 on success, -1 on failure
2312 *
2313 * This function needs to be called whenever there is a change in
2314 * availability of the local services. This will increment the
2315 * Service Update Indicator value which will be used in SD Request and
2316 * Response frames.
2317 *
2318 * This function is only used if the driver implements P2P management,
2319 * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
2320 * struct wpa_driver_capa.
2321 */
2322 int (*p2p_service_update)(void *priv);
2323
2324 /**
2325 * p2p_reject - Reject peer device (explicitly block connections)
2326 * @priv: Private driver interface data
2327 * @addr: MAC address of the peer
2328 * Returns: 0 on success, -1 on failure
2329 */
2330 int (*p2p_reject)(void *priv, const u8 *addr);
2331
2332 /**
2333 * p2p_invite - Invite a P2P Device into a group
2334 * @priv: Private driver interface data
2335 * @peer: Device Address of the peer P2P Device
2336 * @role: Local role in the group
2337 * @bssid: Group BSSID or %NULL if not known
2338 * @ssid: Group SSID
2339 * @ssid_len: Length of ssid in octets
2340 * @go_dev_addr: Forced GO Device Address or %NULL if none
2341 * @persistent_group: Whether this is to reinvoke a persistent group
2342 * Returns: 0 on success, -1 on failure
2343 */
2344 int (*p2p_invite)(void *priv, const u8 *peer, int role,
2345 const u8 *bssid, const u8 *ssid, size_t ssid_len,
2346 const u8 *go_dev_addr, int persistent_group);
281ff0aa
GP
2347
2348 /**
2349 * send_tdls_mgmt - for sending TDLS management packets
2350 * @priv: private driver interface data
2351 * @dst: Destination (peer) MAC address
2352 * @action_code: TDLS action code for the mssage
2353 * @dialog_token: Dialog Token to use in the message (if needed)
2354 * @status_code: Status Code or Reason Code to use (if needed)
2355 * @buf: TDLS IEs to add to the message
2356 * @len: Length of buf in octets
2357 * Returns: 0 on success, -1 on failure
2358 *
2359 * This optional function can be used to send packet to driver which is
2360 * responsible for receiving and sending all TDLS packets.
2361 */
2362 int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code,
2363 u8 dialog_token, u16 status_code,
2364 const u8 *buf, size_t len);
2365
2366 int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer);
1c5c7273
PS
2367
2368 /**
2369 * signal_poll - Get current connection information
2370 * @priv: Private driver interface data
2371 * @signal_info: Connection info structure
2372 */
2373 int (*signal_poll)(void *priv, struct wpa_signal_info *signal_info);
41fd1d9e
KZ
2374
2375 /**
2376 * set_authmode - Set authentication algorithm(s) for static WEP
2377 * @priv: Private driver interface data
2378 * @authmode: 1=Open System, 2=Shared Key, 3=both
2379 * Returns: 0 on success, -1 on failure
2380 *
2381 * This function can be used to set authentication algorithms for AP
2382 * mode when static WEP is used. If the driver uses user space MLME/SME
2383 * implementation, there is no need to implement this function.
2384 */
2385 int (*set_authmode)(void *priv, int authmode);
b14a210c
JB
2386
2387 /**
2388 * set_rekey_info - Set rekey information
2389 * @priv: Private driver interface data
2390 * @kek: Current KEK
2391 * @kck: Current KCK
2392 * @replay_ctr: Current EAPOL-Key Replay Counter
2393 *
2394 * This optional function can be used to provide information for the
2395 * driver/firmware to process EAPOL-Key frames in Group Key Handshake
2396 * while the host (including wpa_supplicant) is sleeping.
2397 */
2398 void (*set_rekey_info)(void *priv, const u8 *kek, const u8 *kck,
2399 const u8 *replay_ctr);
a52eba0f
SP
2400
2401 /**
2402 * sta_assoc - Station association indication
2403 * @priv: Private driver interface data
2404 * @own_addr: Source address and BSSID for association frame
2405 * @addr: MAC address of the station to associate
2406 * @reassoc: flag to indicate re-association
2407 * @status: association response status code
2408 * @ie: assoc response ie buffer
2409 * @len: ie buffer length
2410 * Returns: 0 on success, -1 on failure
2411 *
2412 * This function indicates the driver to send (Re)Association
2413 * Response frame to the station.
2414 */
2415 int (*sta_assoc)(void *priv, const u8 *own_addr, const u8 *addr,
2416 int reassoc, u16 status, const u8 *ie, size_t len);
2417
2418 /**
2419 * sta_auth - Station authentication indication
2420 * @priv: Private driver interface data
2421 * @own_addr: Source address and BSSID for authentication frame
2422 * @addr: MAC address of the station to associate
2423 * @seq: authentication sequence number
2424 * @status: authentication response status code
2425 * @ie: authentication frame ie buffer
2426 * @len: ie buffer length
2427 *
2428 * This function indicates the driver to send Authentication frame
2429 * to the station.
2430 */
2431 int (*sta_auth)(void *priv, const u8 *own_addr, const u8 *addr,
2432 u16 seq, u16 status, const u8 *ie, size_t len);
2433
2434 /**
2435 * add_tspec - Add traffic stream
2436 * @priv: Private driver interface data
2437 * @addr: MAC address of the station to associate
2438 * @tspec_ie: tspec ie buffer
2439 * @tspec_ielen: tspec ie length
2440 * Returns: 0 on success, -1 on failure
2441 *
2442 * This function adds the traffic steam for the station
2443 * and fills the medium_time in tspec_ie.
2444 */
2445 int (*add_tspec)(void *priv, const u8 *addr, u8 *tspec_ie,
2446 size_t tspec_ielen);
2447
2448 /**
2449 * add_sta_node - Add a station node in the driver
2450 * @priv: Private driver interface data
2451 * @addr: MAC address of the station to add
2452 * @auth_alg: authentication algorithm used by the station
2453 * Returns: 0 on success, -1 on failure
2454 *
2455 * This function adds the station node in the driver, when
2456 * the station gets added by FT-over-DS.
2457 */
2458 int (*add_sta_node)(void *priv, const u8 *addr, u16 auth_alg);
6fc6879b
JM
2459};
2460
e0498677 2461
6fc6879b
JM
2462/**
2463 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
2464 */
9646a8ab 2465enum wpa_event_type {
6fc6879b
JM
2466 /**
2467 * EVENT_ASSOC - Association completed
2468 *
2469 * This event needs to be delivered when the driver completes IEEE
2470 * 802.11 association or reassociation successfully.
2471 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
2472 * after this event has been generated. In addition, optional
2473 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
2474 * more information about the association. If the driver interface gets
2475 * both of these events at the same time, it can also include the
2476 * assoc_info data in EVENT_ASSOC call.
2477 */
2478 EVENT_ASSOC,
2479
2480 /**
2481 * EVENT_DISASSOC - Association lost
2482 *
2483 * This event should be called when association is lost either due to
2484 * receiving deauthenticate or disassociate frame from the AP or when
c2a04078
JM
2485 * sending either of these frames to the current AP. If the driver
2486 * supports separate deauthentication event, EVENT_DISASSOC should only
2487 * be used for disassociation and EVENT_DEAUTH for deauthentication.
1d041bec 2488 * In AP mode, union wpa_event_data::disassoc_info is required.
6fc6879b
JM
2489 */
2490 EVENT_DISASSOC,
2491
2492 /**
2493 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
2494 *
2495 * This event must be delivered when a Michael MIC error is detected by
2496 * the local driver. Additional data for event processing is
2497 * provided with union wpa_event_data::michael_mic_failure. This
2498 * information is used to request new encyption key and to initiate
2499 * TKIP countermeasures if needed.
2500 */
2501 EVENT_MICHAEL_MIC_FAILURE,
2502
2503 /**
2504 * EVENT_SCAN_RESULTS - Scan results available
2505 *
2506 * This event must be called whenever scan results are available to be
2507 * fetched with struct wpa_driver_ops::get_scan_results(). This event
2508 * is expected to be used some time after struct wpa_driver_ops::scan()
2509 * is called. If the driver provides an unsolicited event when the scan
2510 * has been completed, this event can be used to trigger
2511 * EVENT_SCAN_RESULTS call. If such event is not available from the
2512 * driver, the driver wrapper code is expected to use a registered
2513 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
8d923a4a
JM
2514 * scan is expected to be completed. Optional information about
2515 * completed scan can be provided with union wpa_event_data::scan_info.
6fc6879b
JM
2516 */
2517 EVENT_SCAN_RESULTS,
2518
2519 /**
2520 * EVENT_ASSOCINFO - Report optional extra information for association
2521 *
2522 * This event can be used to report extra association information for
2523 * EVENT_ASSOC processing. This extra information includes IEs from
2524 * association frames and Beacon/Probe Response frames in union
2525 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
2526 * EVENT_ASSOC. Alternatively, the driver interface can include
2527 * assoc_info data in the EVENT_ASSOC call if it has all the
2528 * information available at the same point.
2529 */
2530 EVENT_ASSOCINFO,
2531
2532 /**
2533 * EVENT_INTERFACE_STATUS - Report interface status changes
2534 *
2535 * This optional event can be used to report changes in interface
2536 * status (interface added/removed) using union
2537 * wpa_event_data::interface_status. This can be used to trigger
2538 * wpa_supplicant to stop and re-start processing for the interface,
2539 * e.g., when a cardbus card is ejected/inserted.
2540 */
2541 EVENT_INTERFACE_STATUS,
2542
2543 /**
2544 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
2545 *
2546 * This event can be used to inform wpa_supplicant about candidates for
2547 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
2548 * for scan request (ap_scan=2 mode), this event is required for
2549 * pre-authentication. If wpa_supplicant is performing scan request
2550 * (ap_scan=1), this event is optional since scan results can be used
2551 * to add pre-authentication candidates. union
2552 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
2553 * candidate and priority of the candidate, e.g., based on the signal
2554 * strength, in order to try to pre-authenticate first with candidates
2555 * that are most likely targets for re-association.
2556 *
2557 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
2558 * on the candidate list. In addition, it can be called for the current
2559 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
2560 * will automatically skip pre-authentication in cases where a valid
2561 * PMKSA exists. When more than one candidate exists, this event should
2562 * be generated once for each candidate.
2563 *
2564 * Driver will be notified about successful pre-authentication with
2565 * struct wpa_driver_ops::add_pmkid() calls.
2566 */
2567 EVENT_PMKID_CANDIDATE,
2568
2569 /**
2570 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
2571 *
2572 * This event can be used to inform wpa_supplicant about desire to set
2573 * up secure direct link connection between two stations as defined in
2574 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
2575 * STAKey negotiation. The caller will need to set peer address for the
2576 * event.
2577 */
2578 EVENT_STKSTART,
2579
281ff0aa
GP
2580 /**
2581 * EVENT_TDLS - Request TDLS operation
2582 *
2583 * This event can be used to request a TDLS operation to be performed.
2584 */
2585 EVENT_TDLS,
2586
6fc6879b
JM
2587 /**
2588 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
2589 *
2590 * The driver is expected to report the received FT IEs from
2591 * FT authentication sequence from the AP. The FT IEs are included in
2592 * the extra information in union wpa_event_data::ft_ies.
2593 */
11ef8d35
JM
2594 EVENT_FT_RESPONSE,
2595
2596 /**
2597 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
2598 *
2599 * The driver can use this event to inform wpa_supplicant about a STA
2600 * in an IBSS with which protected frames could be exchanged. This
2601 * event starts RSN authentication with the other STA to authenticate
2602 * the STA and set up encryption keys with it.
2603 */
c2a04078
JM
2604 EVENT_IBSS_RSN_START,
2605
2606 /**
2607 * EVENT_AUTH - Authentication result
2608 *
2609 * This event should be called when authentication attempt has been
2610 * completed. This is only used if the driver supports separate
2611 * authentication step (struct wpa_driver_ops::authenticate).
2612 * Information about authentication result is included in
2613 * union wpa_event_data::auth.
2614 */
2615 EVENT_AUTH,
2616
2617 /**
2618 * EVENT_DEAUTH - Authentication lost
2619 *
2620 * This event should be called when authentication is lost either due
2621 * to receiving deauthenticate frame from the AP or when sending that
2622 * frame to the current AP.
1d041bec 2623 * In AP mode, union wpa_event_data::deauth_info is required.
c2a04078 2624 */
efa46078
JM
2625 EVENT_DEAUTH,
2626
2627 /**
2628 * EVENT_ASSOC_REJECT - Association rejected
2629 *
2630 * This event should be called when (re)association attempt has been
59ddf221 2631 * rejected by the AP. Information about the association response is
efa46078
JM
2632 * included in union wpa_event_data::assoc_reject.
2633 */
da1fb17c
JM
2634 EVENT_ASSOC_REJECT,
2635
2636 /**
2637 * EVENT_AUTH_TIMED_OUT - Authentication timed out
2638 */
2639 EVENT_AUTH_TIMED_OUT,
2640
2641 /**
2642 * EVENT_ASSOC_TIMED_OUT - Association timed out
2643 */
08fd8c15
JM
2644 EVENT_ASSOC_TIMED_OUT,
2645
2646 /**
2647 * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
2648 */
fcf0f87d
JM
2649 EVENT_FT_RRB_RX,
2650
2651 /**
2652 * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
2653 */
f8b1f695
JM
2654 EVENT_WPS_BUTTON_PUSHED,
2655
2656 /**
2657 * EVENT_TX_STATUS - Report TX status
2658 */
2659 EVENT_TX_STATUS,
2660
2661 /**
2662 * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
2663 */
2664 EVENT_RX_FROM_UNKNOWN,
2665
2666 /**
2667 * EVENT_RX_MGMT - Report RX of a management frame
2668 */
245519e0
JM
2669 EVENT_RX_MGMT,
2670
55777702
JM
2671 /**
2672 * EVENT_RX_ACTION - Action frame received
2673 *
2674 * This event is used to indicate when an Action frame has been
2675 * received. Information about the received frame is included in
2676 * union wpa_event_data::rx_action.
2677 */
2678 EVENT_RX_ACTION,
2679
2680 /**
2681 * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
2682 *
2683 * This event is used to indicate when the driver has started the
2684 * requested remain-on-channel duration. Information about the
2685 * operation is included in union wpa_event_data::remain_on_channel.
2686 */
2687 EVENT_REMAIN_ON_CHANNEL,
2688
2689 /**
2690 * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
2691 *
2692 * This event is used to indicate when the driver has completed
2693 * remain-on-channel duration, i.e., may noot be available on the
2694 * requested channel anymore. Information about the
2695 * operation is included in union wpa_event_data::remain_on_channel.
2696 */
2697 EVENT_CANCEL_REMAIN_ON_CHANNEL,
2698
245519e0
JM
2699 /**
2700 * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
2701 *
2702 * This event is used only by driver_test.c and userspace MLME.
2703 */
a0e0d3bb
JM
2704 EVENT_MLME_RX,
2705
2706 /**
2707 * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
2708 *
2709 * This event is used to indicate when a Probe Request frame has been
2710 * received. Information about the received frame is included in
504e905c
JM
2711 * union wpa_event_data::rx_probe_req. The driver is required to report
2712 * these events only after successfully completed probe_req_report()
2713 * commands to request the events (i.e., report parameter is non-zero)
2714 * in station mode. In AP mode, Probe Request frames should always be
2715 * reported.
a0e0d3bb 2716 */
a70a5d6d
JM
2717 EVENT_RX_PROBE_REQ,
2718
2719 /**
2720 * EVENT_NEW_STA - New wired device noticed
2721 *
2722 * This event is used to indicate that a new device has been detected
2723 * in a network that does not use association-like functionality (i.e.,
2724 * mainly wired Ethernet). This can be used to start EAPOL
2725 * authenticator when receiving a frame from a device. The address of
2726 * the device is included in union wpa_event_data::new_sta.
2727 */
a8e0505b
JM
2728 EVENT_NEW_STA,
2729
2730 /**
2731 * EVENT_EAPOL_RX - Report received EAPOL frame
2732 *
2733 * When in AP mode with hostapd, this event is required to be used to
2734 * deliver the receive EAPOL frames from the driver. With
2735 * %wpa_supplicant, this event is used only if the send_eapol() handler
2736 * is used to override the use of l2_packet for EAPOL frame TX.
2737 */
b625473c
JM
2738 EVENT_EAPOL_RX,
2739
2740 /**
2741 * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
2742 *
2743 * This event is used to indicate changes in the signal strength
2744 * observed in frames received from the current AP if signal strength
2745 * monitoring has been enabled with signal_monitor().
2746 */
8401a6b0
JM
2747 EVENT_SIGNAL_CHANGE,
2748
2749 /**
2750 * EVENT_INTERFACE_ENABLED - Notify that interface was enabled
2751 *
2752 * This event is used to indicate that the interface was enabled after
2753 * having been previously disabled, e.g., due to rfkill.
2754 */
2755 EVENT_INTERFACE_ENABLED,
2756
2757 /**
2758 * EVENT_INTERFACE_DISABLED - Notify that interface was disabled
2759 *
2760 * This event is used to indicate that the interface was disabled,
2761 * e.g., due to rfkill.
2762 */
b5c9da8d
JM
2763 EVENT_INTERFACE_DISABLED,
2764
2765 /**
2766 * EVENT_CHANNEL_LIST_CHANGED - Channel list changed
2767 *
2768 * This event is used to indicate that the channel list has changed,
2769 * e.g., because of a regulatory domain change triggered by scan
2770 * results including an AP advertising a country code.
2771 */
c973f386
JM
2772 EVENT_CHANNEL_LIST_CHANGED,
2773
2774 /**
2775 * EVENT_INTERFACE_UNAVAILABLE - Notify that interface is unavailable
2776 *
2777 * This event is used to indicate that the driver cannot maintain this
2778 * interface in its operation mode anymore. The most likely use for
2779 * this is to indicate that AP mode operation is not available due to
2780 * operating channel would need to be changed to a DFS channel when
2781 * the driver does not support radar detection and another virtual
2782 * interfaces caused the operating channel to change. Other similar
2783 * resource conflicts could also trigger this for station mode
2784 * interfaces.
2785 */
7cfc4ac3
AGS
2786 EVENT_INTERFACE_UNAVAILABLE,
2787
2788 /**
2789 * EVENT_BEST_CHANNEL
2790 *
2791 * Driver generates this event whenever it detects a better channel
2792 * (e.g., based on RSSI or channel use). This information can be used
2793 * to improve channel selection for a new AP/P2P group.
2794 */
7d878ca7
JM
2795 EVENT_BEST_CHANNEL,
2796
2797 /**
2798 * EVENT_UNPROT_DEAUTH - Unprotected Deauthentication frame received
2799 *
2800 * This event should be called when a Deauthentication frame is dropped
2801 * due to it not being protected (MFP/IEEE 802.11w).
2802 * union wpa_event_data::unprot_deauth is required to provide more
2803 * details of the frame.
2804 */
2805 EVENT_UNPROT_DEAUTH,
2806
2807 /**
2808 * EVENT_UNPROT_DISASSOC - Unprotected Disassociation frame received
2809 *
2810 * This event should be called when a Disassociation frame is dropped
2811 * due to it not being protected (MFP/IEEE 802.11w).
2812 * union wpa_event_data::unprot_disassoc is required to provide more
2813 * details of the frame.
2814 */
2815 EVENT_UNPROT_DISASSOC,
0d7e5a3a
JB
2816
2817 /**
2818 * EVENT_STATION_LOW_ACK
2819 *
2820 * Driver generates this event whenever it detected that a particular
2821 * station was lost. Detection can be through massive transmission
2822 * failures for example.
2823 */
3ac17eba
JM
2824 EVENT_STATION_LOW_ACK,
2825
2826 /**
2827 * EVENT_P2P_DEV_FOUND - Report a discovered P2P device
2828 *
2829 * This event is used only if the driver implements P2P management
2830 * internally. Event data is stored in
2831 * union wpa_event_data::p2p_dev_found.
2832 */
2833 EVENT_P2P_DEV_FOUND,
2834
2835 /**
2836 * EVENT_P2P_GO_NEG_REQ_RX - Report reception of GO Negotiation Request
2837 *
2838 * This event is used only if the driver implements P2P management
2839 * internally. Event data is stored in
2840 * union wpa_event_data::p2p_go_neg_req_rx.
2841 */
2842 EVENT_P2P_GO_NEG_REQ_RX,
2843
2844 /**
2845 * EVENT_P2P_GO_NEG_COMPLETED - Report completion of GO Negotiation
2846 *
2847 * This event is used only if the driver implements P2P management
2848 * internally. Event data is stored in
2849 * union wpa_event_data::p2p_go_neg_completed.
2850 */
2851 EVENT_P2P_GO_NEG_COMPLETED,
2852
2853 EVENT_P2P_PROV_DISC_REQUEST,
2854 EVENT_P2P_PROV_DISC_RESPONSE,
2855 EVENT_P2P_SD_REQUEST,
ea244d21
XC
2856 EVENT_P2P_SD_RESPONSE,
2857
2858 /**
2859 * EVENT_IBSS_PEER_LOST - IBSS peer not reachable anymore
2860 */
b14a210c
JB
2861 EVENT_IBSS_PEER_LOST,
2862
2863 /**
2864 * EVENT_DRIVER_GTK_REKEY - Device/driver did GTK rekey
2865 *
2866 * This event carries the new replay counter to notify wpa_supplicant
2867 * of the current EAPOL-Key Replay Counter in case the driver/firmware
2868 * completed Group Key Handshake while the host (including
2869 * wpa_supplicant was sleeping).
2870 */
2871 EVENT_DRIVER_GTK_REKEY
9646a8ab 2872};
6fc6879b
JM
2873
2874
2875/**
2876 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
2877 */
2878union wpa_event_data {
2879 /**
2880 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
2881 *
2882 * This structure is optional for EVENT_ASSOC calls and required for
2883 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
2884 * driver interface does not need to generate separate EVENT_ASSOCINFO
2885 * calls.
2886 */
2887 struct assoc_info {
39b08b5f
SP
2888 /**
2889 * reassoc - Flag to indicate association or reassociation
2890 */
2891 int reassoc;
2892
6fc6879b
JM
2893 /**
2894 * req_ies - (Re)Association Request IEs
2895 *
2896 * If the driver generates WPA/RSN IE, this event data must be
2897 * returned for WPA handshake to have needed information. If
2898 * wpa_supplicant-generated WPA/RSN IE is used, this
2899 * information event is optional.
2900 *
2901 * This should start with the first IE (fixed fields before IEs
2902 * are not included).
2903 */
1d041bec 2904 const u8 *req_ies;
6fc6879b
JM
2905
2906 /**
2907 * req_ies_len - Length of req_ies in bytes
2908 */
2909 size_t req_ies_len;
2910
2911 /**
2912 * resp_ies - (Re)Association Response IEs
2913 *
2914 * Optional association data from the driver. This data is not
2915 * required WPA, but may be useful for some protocols and as
2916 * such, should be reported if this is available to the driver
2917 * interface.
2918 *
2919 * This should start with the first IE (fixed fields before IEs
2920 * are not included).
2921 */
1d041bec 2922 const u8 *resp_ies;
6fc6879b
JM
2923
2924 /**
2925 * resp_ies_len - Length of resp_ies in bytes
2926 */
2927 size_t resp_ies_len;
2928
2929 /**
2930 * beacon_ies - Beacon or Probe Response IEs
2931 *
2932 * Optional Beacon/ProbeResp data: IEs included in Beacon or
2933 * Probe Response frames from the current AP (i.e., the one
2934 * that the client just associated with). This information is
2935 * used to update WPA/RSN IE for the AP. If this field is not
2936 * set, the results from previous scan will be used. If no
2937 * data for the new AP is found, scan results will be requested
2938 * again (without scan request). At this point, the driver is
2939 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
2940 * used).
2941 *
2942 * This should start with the first IE (fixed fields before IEs
2943 * are not included).
2944 */
1d041bec 2945 const u8 *beacon_ies;
6fc6879b
JM
2946
2947 /**
2948 * beacon_ies_len - Length of beacon_ies */
2949 size_t beacon_ies_len;
4832ecd7
JM
2950
2951 /**
2952 * freq - Frequency of the operational channel in MHz
2953 */
2954 unsigned int freq;
1d041bec
JM
2955
2956 /**
2957 * addr - Station address (for AP mode)
2958 */
2959 const u8 *addr;
6fc6879b
JM
2960 } assoc_info;
2961
1d041bec
JM
2962 /**
2963 * struct disassoc_info - Data for EVENT_DISASSOC events
2964 */
2965 struct disassoc_info {
2966 /**
2967 * addr - Station address (for AP mode)
2968 */
2969 const u8 *addr;
0544b242
JM
2970
2971 /**
2972 * reason_code - Reason Code (host byte order) used in
2973 * Deauthentication frame
2974 */
2975 u16 reason_code;
75bde05d
JM
2976
2977 /**
2978 * ie - Optional IE(s) in Disassociation frame
2979 */
2980 const u8 *ie;
2981
2982 /**
2983 * ie_len - Length of ie buffer in octets
2984 */
2985 size_t ie_len;
1d041bec
JM
2986 } disassoc_info;
2987
2988 /**
2989 * struct deauth_info - Data for EVENT_DEAUTH events
2990 */
2991 struct deauth_info {
2992 /**
2993 * addr - Station address (for AP mode)
2994 */
2995 const u8 *addr;
0544b242
JM
2996
2997 /**
2998 * reason_code - Reason Code (host byte order) used in
2999 * Deauthentication frame
3000 */
3001 u16 reason_code;
75bde05d
JM
3002
3003 /**
3004 * ie - Optional IE(s) in Deauthentication frame
3005 */
3006 const u8 *ie;
3007
3008 /**
3009 * ie_len - Length of ie buffer in octets
3010 */
3011 size_t ie_len;
1d041bec
JM
3012 } deauth_info;
3013
6fc6879b
JM
3014 /**
3015 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
3016 */
3017 struct michael_mic_failure {
3018 int unicast;
ad1e68e6 3019 const u8 *src;
6fc6879b
JM
3020 } michael_mic_failure;
3021
3022 /**
3023 * struct interface_status - Data for EVENT_INTERFACE_STATUS
3024 */
3025 struct interface_status {
3026 char ifname[100];
3027 enum {
3028 EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
3029 } ievent;
3030 } interface_status;
3031
3032 /**
3033 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
3034 */
3035 struct pmkid_candidate {
3036 /** BSSID of the PMKID candidate */
3037 u8 bssid[ETH_ALEN];
3038 /** Smaller the index, higher the priority */
3039 int index;
3040 /** Whether RSN IE includes pre-authenticate flag */
3041 int preauth;
3042 } pmkid_candidate;
3043
3044 /**
3045 * struct stkstart - Data for EVENT_STKSTART
3046 */
3047 struct stkstart {
3048 u8 peer[ETH_ALEN];
3049 } stkstart;
3050
281ff0aa
GP
3051 /**
3052 * struct tdls - Data for EVENT_TDLS
3053 */
3054 struct tdls {
3055 u8 peer[ETH_ALEN];
3056 enum {
3057 TDLS_REQUEST_SETUP,
3058 TDLS_REQUEST_TEARDOWN
3059 } oper;
3060 u16 reason_code; /* for teardown */
3061 } tdls;
3062
6fc6879b
JM
3063 /**
3064 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
3065 *
3066 * During FT (IEEE 802.11r) authentication sequence, the driver is
3067 * expected to use this event to report received FT IEs (MDIE, FTIE,
3068 * RSN IE, TIE, possible resource request) to the supplicant. The FT
3069 * IEs for the next message will be delivered through the
3070 * struct wpa_driver_ops::update_ft_ies() callback.
3071 */
3072 struct ft_ies {
3073 const u8 *ies;
3074 size_t ies_len;
3075 int ft_action;
3076 u8 target_ap[ETH_ALEN];
babfbf15
JM
3077 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
3078 const u8 *ric_ies;
3079 /** Length of ric_ies buffer in octets */
3080 size_t ric_ies_len;
6fc6879b 3081 } ft_ies;
11ef8d35
JM
3082
3083 /**
3084 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
3085 */
3086 struct ibss_rsn_start {
3087 u8 peer[ETH_ALEN];
3088 } ibss_rsn_start;
c2a04078
JM
3089
3090 /**
3091 * struct auth_info - Data for EVENT_AUTH events
3092 */
3093 struct auth_info {
3094 u8 peer[ETH_ALEN];
a52eba0f 3095 u8 bssid[ETH_ALEN];
c2a04078 3096 u16 auth_type;
a52eba0f 3097 u16 auth_transaction;
c2a04078
JM
3098 u16 status_code;
3099 const u8 *ies;
3100 size_t ies_len;
3101 } auth;
efa46078
JM
3102
3103 /**
3104 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
3105 */
3106 struct assoc_reject {
59ddf221
JM
3107 /**
3108 * bssid - BSSID of the AP that rejected association
3109 */
3110 const u8 *bssid;
3111
efa46078
JM
3112 /**
3113 * resp_ies - (Re)Association Response IEs
3114 *
3115 * Optional association data from the driver. This data is not
3116 * required WPA, but may be useful for some protocols and as
3117 * such, should be reported if this is available to the driver
3118 * interface.
3119 *
3120 * This should start with the first IE (fixed fields before IEs
3121 * are not included).
3122 */
59ddf221 3123 const u8 *resp_ies;
efa46078
JM
3124
3125 /**
3126 * resp_ies_len - Length of resp_ies in bytes
3127 */
3128 size_t resp_ies_len;
3129
3130 /**
3131 * status_code - Status Code from (Re)association Response
3132 */
3133 u16 status_code;
3134 } assoc_reject;
da1fb17c
JM
3135
3136 struct timeout_event {
3137 u8 addr[ETH_ALEN];
3138 } timeout_event;
08fd8c15
JM
3139
3140 /**
3141 * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
3142 */
3143 struct ft_rrb_rx {
3144 const u8 *src;
3145 const u8 *data;
3146 size_t data_len;
3147 } ft_rrb_rx;
f8b1f695
JM
3148
3149 /**
3150 * struct tx_status - Data for EVENT_TX_STATUS events
3151 */
3152 struct tx_status {
3153 u16 type;
3154 u16 stype;
3155 const u8 *dst;
3156 const u8 *data;
3157 size_t data_len;
3158 int ack;
3159 } tx_status;
3160
3161 /**
3162 * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
3163 */
3164 struct rx_from_unknown {
0d9fc3d8 3165 const u8 *frame;
f8b1f695
JM
3166 size_t len;
3167 } rx_from_unknown;
3168
3169 /**
3170 * struct rx_mgmt - Data for EVENT_RX_MGMT events
3171 */
3172 struct rx_mgmt {
b57e086c 3173 const u8 *frame;
f8b1f695 3174 size_t frame_len;
2a8b7416
JM
3175 u32 datarate;
3176 u32 ssi_signal;
f8b1f695 3177 } rx_mgmt;
8d923a4a 3178
55777702
JM
3179 /**
3180 * struct rx_action - Data for EVENT_RX_ACTION events
3181 */
3182 struct rx_action {
e8828999
JM
3183 /**
3184 * da - Destination address of the received Action frame
3185 */
3186 const u8 *da;
3187
55777702
JM
3188 /**
3189 * sa - Source address of the received Action frame
3190 */
3191 const u8 *sa;
3192
e8828999
JM
3193 /**
3194 * bssid - Address 3 of the received Action frame
3195 */
3196 const u8 *bssid;
3197
55777702
JM
3198 /**
3199 * category - Action frame category
3200 */
3201 u8 category;
3202
3203 /**
3204 * data - Action frame body after category field
3205 */
3206 const u8 *data;
3207
3208 /**
3209 * len - Length of data in octets
3210 */
3211 size_t len;
3212
3213 /**
3214 * freq - Frequency (in MHz) on which the frame was received
3215 */
3216 int freq;
3217 } rx_action;
3218
3219 /**
3220 * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
3221 *
3222 * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
3223 */
3224 struct remain_on_channel {
3225 /**
3226 * freq - Channel frequency in MHz
3227 */
3228 unsigned int freq;
3229
3230 /**
3231 * duration - Duration to remain on the channel in milliseconds
3232 */
3233 unsigned int duration;
3234 } remain_on_channel;
3235
8d923a4a
JM
3236 /**
3237 * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
3238 * @aborted: Whether the scan was aborted
3239 * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
3240 * @num_freqs: Number of entries in freqs array
3241 * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
3242 * SSID)
3243 * @num_ssids: Number of entries in ssids array
3244 */
3245 struct scan_info {
3246 int aborted;
3247 const int *freqs;
3248 size_t num_freqs;
3249 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
3250 size_t num_ssids;
3251 } scan_info;
245519e0
JM
3252
3253 /**
3254 * struct mlme_rx - Data for EVENT_MLME_RX events
3255 */
3256 struct mlme_rx {
3257 const u8 *buf;
3258 size_t len;
3259 int freq;
3260 int channel;
3261 int ssi;
3262 } mlme_rx;
a0e0d3bb
JM
3263
3264 /**
3265 * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
3266 */
3267 struct rx_probe_req {
3268 /**
3269 * sa - Source address of the received Probe Request frame
3270 */
3271 const u8 *sa;
3272
04a85e44
JM
3273 /**
3274 * da - Destination address of the received Probe Request frame
3275 * or %NULL if not available
3276 */
3277 const u8 *da;
3278
3279 /**
3280 * bssid - BSSID of the received Probe Request frame or %NULL
3281 * if not available
3282 */
3283 const u8 *bssid;
3284
a0e0d3bb
JM
3285 /**
3286 * ie - IEs from the Probe Request body
3287 */
3288 const u8 *ie;
3289
3290 /**
3291 * ie_len - Length of ie buffer in octets
3292 */
3293 size_t ie_len;
3294 } rx_probe_req;
a70a5d6d
JM
3295
3296 /**
3297 * struct new_sta - Data for EVENT_NEW_STA events
3298 */
3299 struct new_sta {
3300 const u8 *addr;
3301 } new_sta;
a8e0505b
JM
3302
3303 /**
3304 * struct eapol_rx - Data for EVENT_EAPOL_RX events
3305 */
3306 struct eapol_rx {
3307 const u8 *src;
3308 const u8 *data;
3309 size_t data_len;
3310 } eapol_rx;
b625473c
JM
3311
3312 /**
1c5c7273 3313 * signal_change - Data for EVENT_SIGNAL_CHANGE events
b625473c 3314 */
1c5c7273 3315 struct wpa_signal_info signal_change;
7cfc4ac3
AGS
3316
3317 /**
3318 * struct best_channel - Data for EVENT_BEST_CHANNEL events
3319 * @freq_24: Best 2.4 GHz band channel frequency in MHz
3320 * @freq_5: Best 5 GHz band channel frequency in MHz
3321 * @freq_overall: Best channel frequency in MHz
3322 *
3323 * 0 can be used to indicate no preference in either band.
3324 */
3325 struct best_channel {
3326 int freq_24;
3327 int freq_5;
3328 int freq_overall;
3329 } best_chan;
7d878ca7
JM
3330
3331 struct unprot_deauth {
3332 const u8 *sa;
3333 const u8 *da;
3334 u16 reason_code;
3335 } unprot_deauth;
3336
3337 struct unprot_disassoc {
3338 const u8 *sa;
3339 const u8 *da;
3340 u16 reason_code;
3341 } unprot_disassoc;
0d7e5a3a
JB
3342
3343 /**
3344 * struct low_ack - Data for EVENT_STATION_LOW_ACK events
3345 * @addr: station address
3346 */
3347 struct low_ack {
3348 u8 addr[ETH_ALEN];
3349 } low_ack;
3ac17eba
JM
3350
3351 /**
3352 * struct p2p_dev_found - Data for EVENT_P2P_DEV_FOUND
3353 */
3354 struct p2p_dev_found {
3355 const u8 *addr;
3356 const u8 *dev_addr;
3357 const u8 *pri_dev_type;
3358 const char *dev_name;
3359 u16 config_methods;
3360 u8 dev_capab;
3361 u8 group_capab;
3362 } p2p_dev_found;
3363
3364 /**
3365 * struct p2p_go_neg_req_rx - Data for EVENT_P2P_GO_NEG_REQ_RX
3366 */
3367 struct p2p_go_neg_req_rx {
3368 const u8 *src;
3369 u16 dev_passwd_id;
3370 } p2p_go_neg_req_rx;
3371
3372 /**
3373 * struct p2p_go_neg_completed - Data for EVENT_P2P_GO_NEG_COMPLETED
3374 */
3375 struct p2p_go_neg_completed {
3376 struct p2p_go_neg_results *res;
3377 } p2p_go_neg_completed;
3378
3379 struct p2p_prov_disc_req {
3380 const u8 *peer;
3381 u16 config_methods;
3382 const u8 *dev_addr;
3383 const u8 *pri_dev_type;
3384 const char *dev_name;
3385 u16 supp_config_methods;
3386 u8 dev_capab;
3387 u8 group_capab;
3388 } p2p_prov_disc_req;
3389
3390 struct p2p_prov_disc_resp {
3391 const u8 *peer;
3392 u16 config_methods;
3393 } p2p_prov_disc_resp;
3394
3395 struct p2p_sd_req {
3396 int freq;
3397 const u8 *sa;
3398 u8 dialog_token;
3399 u16 update_indic;
3400 const u8 *tlvs;
3401 size_t tlvs_len;
3402 } p2p_sd_req;
3403
3404 struct p2p_sd_resp {
3405 const u8 *sa;
3406 u16 update_indic;
3407 const u8 *tlvs;
3408 size_t tlvs_len;
3409 } p2p_sd_resp;
ea244d21
XC
3410
3411 /**
3412 * struct ibss_peer_lost - Data for EVENT_IBSS_PEER_LOST
3413 */
3414 struct ibss_peer_lost {
3415 u8 peer[ETH_ALEN];
3416 } ibss_peer_lost;
b14a210c
JB
3417
3418 /**
3419 * struct driver_gtk_rekey - Data for EVENT_DRIVER_GTK_REKEY
3420 */
3421 struct driver_gtk_rekey {
3422 const u8 *bssid;
3423 const u8 *replay_ctr;
3424 } driver_gtk_rekey;
6fc6879b
JM
3425};
3426
3427/**
3428 * wpa_supplicant_event - Report a driver event for wpa_supplicant
3429 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
3430 * with struct wpa_driver_ops::init()
3431 * @event: event type (defined above)
3432 * @data: possible extra data for the event
3433 *
3434 * Driver wrapper code should call this function whenever an event is received
3435 * from the driver.
3436 */
9646a8ab 3437void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
6fc6879b
JM
3438 union wpa_event_data *data);
3439
c5121837 3440
1d041bec
JM
3441/*
3442 * The following inline functions are provided for convenience to simplify
3443 * event indication for some of the common events.
3444 */
3445
3446static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie,
39b08b5f 3447 size_t ielen, int reassoc)
1d041bec
JM
3448{
3449 union wpa_event_data event;
3450 os_memset(&event, 0, sizeof(event));
39b08b5f 3451 event.assoc_info.reassoc = reassoc;
1d041bec
JM
3452 event.assoc_info.req_ies = ie;
3453 event.assoc_info.req_ies_len = ielen;
3454 event.assoc_info.addr = addr;
3455 wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
3456}
3457
3458static inline void drv_event_disassoc(void *ctx, const u8 *addr)
3459{
3460 union wpa_event_data event;
3461 os_memset(&event, 0, sizeof(event));
3462 event.disassoc_info.addr = addr;
3463 wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
3464}
c5121837 3465
baac6490
JM
3466static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data,
3467 size_t data_len)
3468{
3469 union wpa_event_data event;
3470 os_memset(&event, 0, sizeof(event));
3471 event.eapol_rx.src = src;
3472 event.eapol_rx.data = data;
3473 event.eapol_rx.data_len = data_len;
3474 wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
3475}
3476
6fc6879b 3477#endif /* DRIVER_H */