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