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