]> git.ipfire.org Git - thirdparty/hostap.git/blob - src/drivers/driver.h
mka: Add enable_encrypt op and call it from CP state machine
[thirdparty/hostap.git] / src / drivers / driver.h
1 /*
2 * Driver interface definition
3 * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 *
8 * This file defines a driver interface used by both %wpa_supplicant and
9 * hostapd. The first part of the file defines data structures used in various
10 * driver operations. This is followed by the struct wpa_driver_ops that each
11 * driver wrapper will beed to define with callback functions for requesting
12 * driver operations. After this, there are definitions for driver event
13 * reporting with wpa_supplicant_event() and some convenience helper functions
14 * that can be used to report events.
15 */
16
17 #ifndef DRIVER_H
18 #define DRIVER_H
19
20 #define WPA_SUPPLICANT_DRIVER_VERSION 4
21
22 #include "common/defs.h"
23 #include "common/ieee802_11_defs.h"
24 #ifdef CONFIG_MACSEC
25 #include "pae/ieee802_1x_kay.h"
26 #endif /* CONFIG_MACSEC */
27 #include "utils/list.h"
28
29 #define HOSTAPD_CHAN_DISABLED 0x00000001
30 #define HOSTAPD_CHAN_NO_IR 0x00000002
31 #define HOSTAPD_CHAN_RADAR 0x00000008
32 #define HOSTAPD_CHAN_HT40PLUS 0x00000010
33 #define HOSTAPD_CHAN_HT40MINUS 0x00000020
34 #define HOSTAPD_CHAN_HT40 0x00000040
35 #define HOSTAPD_CHAN_SURVEY_LIST_INITIALIZED 0x00000080
36
37 #define HOSTAPD_CHAN_DFS_UNKNOWN 0x00000000
38 #define HOSTAPD_CHAN_DFS_USABLE 0x00000100
39 #define HOSTAPD_CHAN_DFS_UNAVAILABLE 0x00000200
40 #define HOSTAPD_CHAN_DFS_AVAILABLE 0x00000300
41 #define HOSTAPD_CHAN_DFS_MASK 0x00000300
42
43 #define HOSTAPD_CHAN_VHT_10_70 0x00000800
44 #define HOSTAPD_CHAN_VHT_30_50 0x00001000
45 #define HOSTAPD_CHAN_VHT_50_30 0x00002000
46 #define HOSTAPD_CHAN_VHT_70_10 0x00004000
47
48 #define HOSTAPD_CHAN_INDOOR_ONLY 0x00010000
49 #define HOSTAPD_CHAN_GO_CONCURRENT 0x00020000
50
51 #define HOSTAPD_CHAN_VHT_10_150 0x00100000
52 #define HOSTAPD_CHAN_VHT_30_130 0x00200000
53 #define HOSTAPD_CHAN_VHT_50_110 0x00400000
54 #define HOSTAPD_CHAN_VHT_70_90 0x00800000
55 #define HOSTAPD_CHAN_VHT_90_70 0x01000000
56 #define HOSTAPD_CHAN_VHT_110_50 0x02000000
57 #define HOSTAPD_CHAN_VHT_130_30 0x04000000
58 #define HOSTAPD_CHAN_VHT_150_10 0x08000000
59
60 /* Filter gratuitous ARP */
61 #define WPA_DATA_FRAME_FILTER_FLAG_ARP BIT(0)
62 /* Filter unsolicited Neighbor Advertisement */
63 #define WPA_DATA_FRAME_FILTER_FLAG_NA BIT(1)
64 /* Filter unicast IP packets encrypted using the GTK */
65 #define WPA_DATA_FRAME_FILTER_FLAG_GTK BIT(2)
66
67 /**
68 * enum reg_change_initiator - Regulatory change initiator
69 */
70 enum reg_change_initiator {
71 REGDOM_SET_BY_CORE,
72 REGDOM_SET_BY_USER,
73 REGDOM_SET_BY_DRIVER,
74 REGDOM_SET_BY_COUNTRY_IE,
75 REGDOM_BEACON_HINT,
76 };
77
78 /**
79 * enum reg_type - Regulatory change types
80 */
81 enum reg_type {
82 REGDOM_TYPE_UNKNOWN,
83 REGDOM_TYPE_COUNTRY,
84 REGDOM_TYPE_WORLD,
85 REGDOM_TYPE_CUSTOM_WORLD,
86 REGDOM_TYPE_INTERSECTION,
87 };
88
89 /**
90 * struct hostapd_channel_data - Channel information
91 */
92 struct hostapd_channel_data {
93 /**
94 * chan - Channel number (IEEE 802.11)
95 */
96 short chan;
97
98 /**
99 * freq - Frequency in MHz
100 */
101 int freq;
102
103 /**
104 * flag - Channel flags (HOSTAPD_CHAN_*)
105 */
106 int flag;
107
108 /**
109 * max_tx_power - Regulatory transmit power limit in dBm
110 */
111 u8 max_tx_power;
112
113 /**
114 * survey_list - Linked list of surveys (struct freq_survey)
115 */
116 struct dl_list survey_list;
117
118 /**
119 * min_nf - Minimum observed noise floor, in dBm, based on all
120 * surveyed channel data
121 */
122 s8 min_nf;
123
124 #ifdef CONFIG_ACS
125 /**
126 * interference_factor - Computed interference factor on this
127 * channel (used internally in src/ap/acs.c; driver wrappers do not
128 * need to set this)
129 */
130 long double interference_factor;
131 #endif /* CONFIG_ACS */
132
133 /**
134 * dfs_cac_ms - DFS CAC time in milliseconds
135 */
136 unsigned int dfs_cac_ms;
137 };
138
139 #define HOSTAPD_MODE_FLAG_HT_INFO_KNOWN BIT(0)
140 #define HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN BIT(1)
141
142 /**
143 * struct hostapd_hw_modes - Supported hardware mode information
144 */
145 struct hostapd_hw_modes {
146 /**
147 * mode - Hardware mode
148 */
149 enum hostapd_hw_mode mode;
150
151 /**
152 * num_channels - Number of entries in the channels array
153 */
154 int num_channels;
155
156 /**
157 * channels - Array of supported channels
158 */
159 struct hostapd_channel_data *channels;
160
161 /**
162 * num_rates - Number of entries in the rates array
163 */
164 int num_rates;
165
166 /**
167 * rates - Array of supported rates in 100 kbps units
168 */
169 int *rates;
170
171 /**
172 * ht_capab - HT (IEEE 802.11n) capabilities
173 */
174 u16 ht_capab;
175
176 /**
177 * mcs_set - MCS (IEEE 802.11n) rate parameters
178 */
179 u8 mcs_set[16];
180
181 /**
182 * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
183 */
184 u8 a_mpdu_params;
185
186 /**
187 * vht_capab - VHT (IEEE 802.11ac) capabilities
188 */
189 u32 vht_capab;
190
191 /**
192 * vht_mcs_set - VHT MCS (IEEE 802.11ac) rate parameters
193 */
194 u8 vht_mcs_set[8];
195
196 unsigned int flags; /* HOSTAPD_MODE_FLAG_* */
197 };
198
199
200 #define IEEE80211_MODE_INFRA 0
201 #define IEEE80211_MODE_IBSS 1
202 #define IEEE80211_MODE_AP 2
203 #define IEEE80211_MODE_MESH 5
204
205 #define IEEE80211_CAP_ESS 0x0001
206 #define IEEE80211_CAP_IBSS 0x0002
207 #define IEEE80211_CAP_PRIVACY 0x0010
208 #define IEEE80211_CAP_RRM 0x1000
209
210 /* DMG (60 GHz) IEEE 802.11ad */
211 /* type - bits 0..1 */
212 #define IEEE80211_CAP_DMG_MASK 0x0003
213 #define IEEE80211_CAP_DMG_IBSS 0x0001 /* Tx by: STA */
214 #define IEEE80211_CAP_DMG_PBSS 0x0002 /* Tx by: PCP */
215 #define IEEE80211_CAP_DMG_AP 0x0003 /* Tx by: AP */
216
217 #define WPA_SCAN_QUAL_INVALID BIT(0)
218 #define WPA_SCAN_NOISE_INVALID BIT(1)
219 #define WPA_SCAN_LEVEL_INVALID BIT(2)
220 #define WPA_SCAN_LEVEL_DBM BIT(3)
221 #define WPA_SCAN_ASSOCIATED BIT(5)
222
223 /**
224 * struct wpa_scan_res - Scan result for an BSS/IBSS
225 * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
226 * @bssid: BSSID
227 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
228 * @beacon_int: beacon interval in TUs (host byte order)
229 * @caps: capability information field in host byte order
230 * @qual: signal quality
231 * @noise: noise level
232 * @level: signal level
233 * @tsf: Timestamp
234 * @age: Age of the information in milliseconds (i.e., how many milliseconds
235 * ago the last Beacon or Probe Response frame was received)
236 * @est_throughput: Estimated throughput in kbps (this is calculated during
237 * scan result processing if left zero by the driver wrapper)
238 * @snr: Signal-to-noise ratio in dB (calculated during scan result processing)
239 * @ie_len: length of the following IE field in octets
240 * @beacon_ie_len: length of the following Beacon IE field in octets
241 *
242 * This structure is used as a generic format for scan results from the
243 * driver. Each driver interface implementation is responsible for converting
244 * the driver or OS specific scan results into this format.
245 *
246 * If the driver does not support reporting all IEs, the IE data structure is
247 * constructed of the IEs that are available. This field will also need to
248 * include SSID in IE format. All drivers are encouraged to be extended to
249 * report all IEs to make it easier to support future additions.
250 *
251 * This structure data is followed by ie_len octets of IEs from Probe Response
252 * frame (or if the driver does not indicate source of IEs, these may also be
253 * from Beacon frame). After the first set of IEs, another set of IEs may follow
254 * (with beacon_ie_len octets of data) if the driver provides both IE sets.
255 */
256 struct wpa_scan_res {
257 unsigned int flags;
258 u8 bssid[ETH_ALEN];
259 int freq;
260 u16 beacon_int;
261 u16 caps;
262 int qual;
263 int noise;
264 int level;
265 u64 tsf;
266 unsigned int age;
267 unsigned int est_throughput;
268 int snr;
269 size_t ie_len;
270 size_t beacon_ie_len;
271 /* Followed by ie_len + beacon_ie_len octets of IE data */
272 };
273
274 /**
275 * struct wpa_scan_results - Scan results
276 * @res: Array of pointers to allocated variable length scan result entries
277 * @num: Number of entries in the scan result array
278 * @fetch_time: Time when the results were fetched from the driver
279 */
280 struct wpa_scan_results {
281 struct wpa_scan_res **res;
282 size_t num;
283 struct os_reltime fetch_time;
284 };
285
286 /**
287 * struct wpa_interface_info - Network interface information
288 * @next: Pointer to the next interface or NULL if this is the last one
289 * @ifname: Interface name that can be used with init() or init2()
290 * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
291 * not available
292 * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
293 * is not an allocated copy, i.e., get_interfaces() caller will not free
294 * this)
295 */
296 struct wpa_interface_info {
297 struct wpa_interface_info *next;
298 char *ifname;
299 char *desc;
300 const char *drv_name;
301 };
302
303 #define WPAS_MAX_SCAN_SSIDS 16
304
305 /**
306 * struct wpa_driver_scan_ssid - SSIDs to scan for
307 * @ssid - specific SSID to scan for (ProbeReq)
308 * %NULL or zero-length SSID is used to indicate active scan
309 * with wildcard SSID.
310 * @ssid_len - Length of the SSID in octets
311 */
312 struct wpa_driver_scan_ssid {
313 const u8 *ssid;
314 size_t ssid_len;
315 };
316
317 /**
318 * struct wpa_driver_scan_params - Scan parameters
319 * Data for struct wpa_driver_ops::scan2().
320 */
321 struct wpa_driver_scan_params {
322 /**
323 * ssids - SSIDs to scan for
324 */
325 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
326
327 /**
328 * num_ssids - Number of entries in ssids array
329 * Zero indicates a request for a passive scan.
330 */
331 size_t num_ssids;
332
333 /**
334 * extra_ies - Extra IE(s) to add into Probe Request or %NULL
335 */
336 const u8 *extra_ies;
337
338 /**
339 * extra_ies_len - Length of extra_ies in octets
340 */
341 size_t extra_ies_len;
342
343 /**
344 * freqs - Array of frequencies to scan or %NULL for all frequencies
345 *
346 * The frequency is set in MHz. The array is zero-terminated.
347 */
348 int *freqs;
349
350 /**
351 * filter_ssids - Filter for reporting SSIDs
352 *
353 * This optional parameter can be used to request the driver wrapper to
354 * filter scan results to include only the specified SSIDs. %NULL
355 * indicates that no filtering is to be done. This can be used to
356 * reduce memory needs for scan results in environments that have large
357 * number of APs with different SSIDs.
358 *
359 * The driver wrapper is allowed to take this allocated buffer into its
360 * own use by setting the pointer to %NULL. In that case, the driver
361 * wrapper is responsible for freeing the buffer with os_free() once it
362 * is not needed anymore.
363 */
364 struct wpa_driver_scan_filter {
365 u8 ssid[SSID_MAX_LEN];
366 size_t ssid_len;
367 } *filter_ssids;
368
369 /**
370 * num_filter_ssids - Number of entries in filter_ssids array
371 */
372 size_t num_filter_ssids;
373
374 /**
375 * filter_rssi - Filter by RSSI
376 *
377 * The driver may filter scan results in firmware to reduce host
378 * wakeups and thereby save power. Specify the RSSI threshold in s32
379 * dBm.
380 */
381 s32 filter_rssi;
382
383 /**
384 * p2p_probe - Used to disable CCK (802.11b) rates for P2P probes
385 *
386 * When set, the driver is expected to remove rates 1, 2, 5.5, and 11
387 * Mbps from the support rates element(s) in the Probe Request frames
388 * and not to transmit the frames at any of those rates.
389 */
390 unsigned int p2p_probe:1;
391
392 /**
393 * only_new_results - Request driver to report only new results
394 *
395 * This is used to request the driver to report only BSSes that have
396 * been detected after this scan request has been started, i.e., to
397 * flush old cached BSS entries.
398 */
399 unsigned int only_new_results:1;
400
401 /**
402 * low_priority - Requests driver to use a lower scan priority
403 *
404 * This is used to request the driver to use a lower scan priority
405 * if it supports such a thing.
406 */
407 unsigned int low_priority:1;
408
409 /**
410 * mac_addr_rand - Requests driver to randomize MAC address
411 */
412 unsigned int mac_addr_rand:1;
413
414 /**
415 * mac_addr - MAC address used with randomization. The address cannot be
416 * a multicast one, i.e., bit 0 of byte 0 should not be set.
417 */
418 const u8 *mac_addr;
419
420 /**
421 * mac_addr_mask - MAC address mask used with randomization.
422 *
423 * Bits that are 0 in the mask should be randomized. Bits that are 1 in
424 * the mask should be taken as is from mac_addr. The mask should not
425 * allow the generation of a multicast address, i.e., bit 0 of byte 0
426 * must be set.
427 */
428 const u8 *mac_addr_mask;
429
430 /**
431 * sched_scan_plans - Scan plans for scheduled scan
432 *
433 * Each scan plan consists of the number of iterations to scan and the
434 * interval between scans. When a scan plan finishes (i.e., it was run
435 * for the specified number of iterations), the next scan plan is
436 * executed. The scan plans are executed in the order they appear in
437 * the array (lower index first). The last scan plan will run infinitely
438 * (until requested to stop), thus must not specify the number of
439 * iterations. All other scan plans must specify the number of
440 * iterations.
441 */
442 struct sched_scan_plan {
443 u32 interval; /* In seconds */
444 u32 iterations; /* Zero to run infinitely */
445 } *sched_scan_plans;
446
447 /**
448 * sched_scan_plans_num - Number of scan plans in sched_scan_plans array
449 */
450 unsigned int sched_scan_plans_num;
451
452 /**
453 * bssid - Specific BSSID to scan for
454 *
455 * This optional parameter can be used to replace the default wildcard
456 * BSSID with a specific BSSID to scan for if results are needed from
457 * only a single BSS.
458 */
459 const u8 *bssid;
460
461 /*
462 * NOTE: Whenever adding new parameters here, please make sure
463 * wpa_scan_clone_params() and wpa_scan_free_params() get updated with
464 * matching changes.
465 */
466 };
467
468 /**
469 * struct wpa_driver_auth_params - Authentication parameters
470 * Data for struct wpa_driver_ops::authenticate().
471 */
472 struct wpa_driver_auth_params {
473 int freq;
474 const u8 *bssid;
475 const u8 *ssid;
476 size_t ssid_len;
477 int auth_alg;
478 const u8 *ie;
479 size_t ie_len;
480 const u8 *wep_key[4];
481 size_t wep_key_len[4];
482 int wep_tx_keyidx;
483 int local_state_change;
484
485 /**
486 * p2p - Whether this connection is a P2P group
487 */
488 int p2p;
489
490 /**
491 * auth_data - Additional elements for Authentication frame
492 *
493 * This buffer starts with the Authentication transaction sequence
494 * number field. If no special handling of such elements is needed, this
495 * pointer is %NULL. This is used with SAE and FILS.
496 */
497 const u8 *auth_data;
498
499 /**
500 * auth_data_len - Length of auth_data buffer in octets
501 */
502 size_t auth_data_len;
503 };
504
505 /**
506 * enum wps_mode - WPS mode
507 */
508 enum wps_mode {
509 /**
510 * WPS_MODE_NONE - No WPS provisioning being used
511 */
512 WPS_MODE_NONE,
513
514 /**
515 * WPS_MODE_OPEN - WPS provisioning with AP that is in open mode
516 */
517 WPS_MODE_OPEN,
518
519 /**
520 * WPS_MODE_PRIVACY - WPS provisioning with AP that is using protection
521 */
522 WPS_MODE_PRIVACY
523 };
524
525 /**
526 * struct hostapd_freq_params - Channel parameters
527 */
528 struct hostapd_freq_params {
529 /**
530 * mode - Mode/band (HOSTAPD_MODE_IEEE80211A, ..)
531 */
532 enum hostapd_hw_mode mode;
533
534 /**
535 * freq - Primary channel center frequency in MHz
536 */
537 int freq;
538
539 /**
540 * channel - Channel number
541 */
542 int channel;
543
544 /**
545 * ht_enabled - Whether HT is enabled
546 */
547 int ht_enabled;
548
549 /**
550 * sec_channel_offset - Secondary channel offset for HT40
551 *
552 * 0 = HT40 disabled,
553 * -1 = HT40 enabled, secondary channel below primary,
554 * 1 = HT40 enabled, secondary channel above primary
555 */
556 int sec_channel_offset;
557
558 /**
559 * vht_enabled - Whether VHT is enabled
560 */
561 int vht_enabled;
562
563 /**
564 * center_freq1 - Segment 0 center frequency in MHz
565 *
566 * Valid for both HT and VHT.
567 */
568 int center_freq1;
569
570 /**
571 * center_freq2 - Segment 1 center frequency in MHz
572 *
573 * Non-zero only for bandwidth 80 and an 80+80 channel
574 */
575 int center_freq2;
576
577 /**
578 * bandwidth - Channel bandwidth in MHz (20, 40, 80, 160)
579 */
580 int bandwidth;
581 };
582
583 /**
584 * struct wpa_driver_associate_params - Association parameters
585 * Data for struct wpa_driver_ops::associate().
586 */
587 struct wpa_driver_associate_params {
588 /**
589 * bssid - BSSID of the selected AP
590 * This can be %NULL, if ap_scan=2 mode is used and the driver is
591 * responsible for selecting with which BSS to associate. */
592 const u8 *bssid;
593
594 /**
595 * bssid_hint - BSSID of a proposed AP
596 *
597 * This indicates which BSS has been found a suitable candidate for
598 * initial association for drivers that use driver/firmwate-based BSS
599 * selection. Unlike the @bssid parameter, @bssid_hint does not limit
600 * the driver from selecting other BSSes in the ESS.
601 */
602 const u8 *bssid_hint;
603
604 /**
605 * ssid - The selected SSID
606 */
607 const u8 *ssid;
608
609 /**
610 * ssid_len - Length of the SSID (1..32)
611 */
612 size_t ssid_len;
613
614 /**
615 * freq - channel parameters
616 */
617 struct hostapd_freq_params freq;
618
619 /**
620 * freq_hint - Frequency of the channel the proposed AP is using
621 *
622 * This provides a channel on which a suitable BSS has been found as a
623 * hint for the driver. Unlike the @freq parameter, @freq_hint does not
624 * limit the driver from selecting other channels for
625 * driver/firmware-based BSS selection.
626 */
627 int freq_hint;
628
629 /**
630 * bg_scan_period - Background scan period in seconds, 0 to disable
631 * background scan, or -1 to indicate no change to default driver
632 * configuration
633 */
634 int bg_scan_period;
635
636 /**
637 * beacon_int - Beacon interval for IBSS or 0 to use driver default
638 */
639 int beacon_int;
640
641 /**
642 * wpa_ie - WPA information element for (Re)Association Request
643 * WPA information element to be included in (Re)Association
644 * Request (including information element id and length). Use
645 * of this WPA IE is optional. If the driver generates the WPA
646 * IE, it can use pairwise_suite, group_suite, and
647 * key_mgmt_suite to select proper algorithms. In this case,
648 * the driver has to notify wpa_supplicant about the used WPA
649 * IE by generating an event that the interface code will
650 * convert into EVENT_ASSOCINFO data (see below).
651 *
652 * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
653 * instead. The driver can determine which version is used by
654 * looking at the first byte of the IE (0xdd for WPA, 0x30 for
655 * WPA2/RSN).
656 *
657 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
658 */
659 const u8 *wpa_ie;
660
661 /**
662 * wpa_ie_len - length of the wpa_ie
663 */
664 size_t wpa_ie_len;
665
666 /**
667 * wpa_proto - Bitfield of WPA_PROTO_* values to indicate WPA/WPA2
668 */
669 unsigned int wpa_proto;
670
671 /**
672 * pairwise_suite - Selected pairwise cipher suite (WPA_CIPHER_*)
673 *
674 * This is usually ignored if @wpa_ie is used.
675 */
676 unsigned int pairwise_suite;
677
678 /**
679 * group_suite - Selected group cipher suite (WPA_CIPHER_*)
680 *
681 * This is usually ignored if @wpa_ie is used.
682 */
683 unsigned int group_suite;
684
685 /**
686 * key_mgmt_suite - Selected key management suite (WPA_KEY_MGMT_*)
687 *
688 * This is usually ignored if @wpa_ie is used.
689 */
690 unsigned int key_mgmt_suite;
691
692 /**
693 * auth_alg - Allowed authentication algorithms
694 * Bit field of WPA_AUTH_ALG_*
695 */
696 int auth_alg;
697
698 /**
699 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
700 */
701 int mode;
702
703 /**
704 * wep_key - WEP keys for static WEP configuration
705 */
706 const u8 *wep_key[4];
707
708 /**
709 * wep_key_len - WEP key length for static WEP configuration
710 */
711 size_t wep_key_len[4];
712
713 /**
714 * wep_tx_keyidx - WEP TX key index for static WEP configuration
715 */
716 int wep_tx_keyidx;
717
718 /**
719 * mgmt_frame_protection - IEEE 802.11w management frame protection
720 */
721 enum mfp_options mgmt_frame_protection;
722
723 /**
724 * ft_ies - IEEE 802.11r / FT information elements
725 * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
726 * for fast transition, this parameter is set to include the IEs that
727 * are to be sent in the next FT Authentication Request message.
728 * update_ft_ies() handler is called to update the IEs for further
729 * FT messages in the sequence.
730 *
731 * The driver should use these IEs only if the target AP is advertising
732 * the same mobility domain as the one included in the MDIE here.
733 *
734 * In ap_scan=2 mode, the driver can use these IEs when moving to a new
735 * AP after the initial association. These IEs can only be used if the
736 * target AP is advertising support for FT and is using the same MDIE
737 * and SSID as the current AP.
738 *
739 * The driver is responsible for reporting the FT IEs received from the
740 * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
741 * type. update_ft_ies() handler will then be called with the FT IEs to
742 * include in the next frame in the authentication sequence.
743 */
744 const u8 *ft_ies;
745
746 /**
747 * ft_ies_len - Length of ft_ies in bytes
748 */
749 size_t ft_ies_len;
750
751 /**
752 * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
753 *
754 * This value is provided to allow the driver interface easier access
755 * to the current mobility domain. This value is set to %NULL if no
756 * mobility domain is currently active.
757 */
758 const u8 *ft_md;
759
760 /**
761 * passphrase - RSN passphrase for PSK
762 *
763 * This value is made available only for WPA/WPA2-Personal (PSK) and
764 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
765 * the 8..63 character ASCII passphrase, if available. Please note that
766 * this can be %NULL if passphrase was not used to generate the PSK. In
767 * that case, the psk field must be used to fetch the PSK.
768 */
769 const char *passphrase;
770
771 /**
772 * psk - RSN PSK (alternative for passphrase for PSK)
773 *
774 * This value is made available only for WPA/WPA2-Personal (PSK) and
775 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
776 * the 32-octet (256-bit) PSK, if available. The driver wrapper should
777 * be prepared to handle %NULL value as an error.
778 */
779 const u8 *psk;
780
781 /**
782 * drop_unencrypted - Enable/disable unencrypted frame filtering
783 *
784 * Configure the driver to drop all non-EAPOL frames (both receive and
785 * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
786 * still be allowed for key negotiation.
787 */
788 int drop_unencrypted;
789
790 /**
791 * prev_bssid - Previously used BSSID in this ESS
792 *
793 * When not %NULL, this is a request to use reassociation instead of
794 * association.
795 */
796 const u8 *prev_bssid;
797
798 /**
799 * wps - WPS mode
800 *
801 * If the driver needs to do special configuration for WPS association,
802 * this variable provides more information on what type of association
803 * is being requested. Most drivers should not need ot use this.
804 */
805 enum wps_mode wps;
806
807 /**
808 * p2p - Whether this connection is a P2P group
809 */
810 int p2p;
811
812 /**
813 * uapsd - UAPSD parameters for the network
814 * -1 = do not change defaults
815 * AP mode: 1 = enabled, 0 = disabled
816 * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE
817 */
818 int uapsd;
819
820 /**
821 * fixed_bssid - Whether to force this BSSID in IBSS mode
822 * 1 = Fix this BSSID and prevent merges.
823 * 0 = Do not fix BSSID.
824 */
825 int fixed_bssid;
826
827 /**
828 * fixed_freq - Fix control channel in IBSS mode
829 * 0 = don't fix control channel (default)
830 * 1 = fix control channel; this prevents IBSS merging with another
831 * channel
832 */
833 int fixed_freq;
834
835 /**
836 * disable_ht - Disable HT (IEEE 802.11n) for this connection
837 */
838 int disable_ht;
839
840 /**
841 * htcaps - HT Capabilities over-rides
842 *
843 * Only bits set in the mask will be used, and not all values are used
844 * by the kernel anyway. Currently, MCS, MPDU and MSDU fields are used.
845 *
846 * Pointer to struct ieee80211_ht_capabilities.
847 */
848 const u8 *htcaps;
849
850 /**
851 * htcaps_mask - HT Capabilities over-rides mask
852 *
853 * Pointer to struct ieee80211_ht_capabilities.
854 */
855 const u8 *htcaps_mask;
856
857 #ifdef CONFIG_VHT_OVERRIDES
858 /**
859 * disable_vht - Disable VHT for this connection
860 */
861 int disable_vht;
862
863 /**
864 * VHT capability overrides.
865 */
866 const struct ieee80211_vht_capabilities *vhtcaps;
867 const struct ieee80211_vht_capabilities *vhtcaps_mask;
868 #endif /* CONFIG_VHT_OVERRIDES */
869
870 /**
871 * req_key_mgmt_offload - Request key management offload for connection
872 *
873 * Request key management offload for this connection if the device
874 * supports it.
875 */
876 int req_key_mgmt_offload;
877
878 /**
879 * Flag for indicating whether this association includes support for
880 * RRM (Radio Resource Measurements)
881 */
882 int rrm_used;
883
884 /**
885 * pbss - If set, connect to a PCP in a PBSS. Otherwise, connect to an
886 * AP as usual. Valid for DMG network only.
887 */
888 int pbss;
889
890 /**
891 * fils_kek - KEK for FILS association frame protection (AES-SIV)
892 */
893 const u8 *fils_kek;
894
895 /**
896 * fils_kek_len: Length of fils_kek in bytes
897 */
898 size_t fils_kek_len;
899
900 /**
901 * fils_nonces - Nonces for FILS association frame protection
902 * (AES-SIV AAD)
903 */
904 const u8 *fils_nonces;
905
906 /**
907 * fils_nonces_len: Length of fils_nonce in bytes
908 */
909 size_t fils_nonces_len;
910 };
911
912 enum hide_ssid {
913 NO_SSID_HIDING,
914 HIDDEN_SSID_ZERO_LEN,
915 HIDDEN_SSID_ZERO_CONTENTS
916 };
917
918 struct wowlan_triggers {
919 u8 any;
920 u8 disconnect;
921 u8 magic_pkt;
922 u8 gtk_rekey_failure;
923 u8 eap_identity_req;
924 u8 four_way_handshake;
925 u8 rfkill_release;
926 };
927
928 struct wpa_driver_ap_params {
929 /**
930 * head - Beacon head from IEEE 802.11 header to IEs before TIM IE
931 */
932 u8 *head;
933
934 /**
935 * head_len - Length of the head buffer in octets
936 */
937 size_t head_len;
938
939 /**
940 * tail - Beacon tail following TIM IE
941 */
942 u8 *tail;
943
944 /**
945 * tail_len - Length of the tail buffer in octets
946 */
947 size_t tail_len;
948
949 /**
950 * dtim_period - DTIM period
951 */
952 int dtim_period;
953
954 /**
955 * beacon_int - Beacon interval
956 */
957 int beacon_int;
958
959 /**
960 * basic_rates: -1 terminated array of basic rates in 100 kbps
961 *
962 * This parameter can be used to set a specific basic rate set for the
963 * BSS. If %NULL, default basic rate set is used.
964 */
965 int *basic_rates;
966
967 /**
968 * proberesp - Probe Response template
969 *
970 * This is used by drivers that reply to Probe Requests internally in
971 * AP mode and require the full Probe Response template.
972 */
973 u8 *proberesp;
974
975 /**
976 * proberesp_len - Length of the proberesp buffer in octets
977 */
978 size_t proberesp_len;
979
980 /**
981 * ssid - The SSID to use in Beacon/Probe Response frames
982 */
983 const u8 *ssid;
984
985 /**
986 * ssid_len - Length of the SSID (1..32)
987 */
988 size_t ssid_len;
989
990 /**
991 * hide_ssid - Whether to hide the SSID
992 */
993 enum hide_ssid hide_ssid;
994
995 /**
996 * pairwise_ciphers - WPA_CIPHER_* bitfield
997 */
998 unsigned int pairwise_ciphers;
999
1000 /**
1001 * group_cipher - WPA_CIPHER_*
1002 */
1003 unsigned int group_cipher;
1004
1005 /**
1006 * key_mgmt_suites - WPA_KEY_MGMT_* bitfield
1007 */
1008 unsigned int key_mgmt_suites;
1009
1010 /**
1011 * auth_algs - WPA_AUTH_ALG_* bitfield
1012 */
1013 unsigned int auth_algs;
1014
1015 /**
1016 * wpa_version - WPA_PROTO_* bitfield
1017 */
1018 unsigned int wpa_version;
1019
1020 /**
1021 * privacy - Whether privacy is used in the BSS
1022 */
1023 int privacy;
1024
1025 /**
1026 * beacon_ies - WPS/P2P IE(s) for Beacon frames
1027 *
1028 * This is used to add IEs like WPS IE and P2P IE by drivers that do
1029 * not use the full Beacon template.
1030 */
1031 const struct wpabuf *beacon_ies;
1032
1033 /**
1034 * proberesp_ies - P2P/WPS IE(s) for Probe Response frames
1035 *
1036 * This is used to add IEs like WPS IE and P2P IE by drivers that
1037 * reply to Probe Request frames internally.
1038 */
1039 const struct wpabuf *proberesp_ies;
1040
1041 /**
1042 * assocresp_ies - WPS IE(s) for (Re)Association Response frames
1043 *
1044 * This is used to add IEs like WPS IE by drivers that reply to
1045 * (Re)Association Request frames internally.
1046 */
1047 const struct wpabuf *assocresp_ies;
1048
1049 /**
1050 * isolate - Whether to isolate frames between associated stations
1051 *
1052 * If this is non-zero, the AP is requested to disable forwarding of
1053 * frames between associated stations.
1054 */
1055 int isolate;
1056
1057 /**
1058 * cts_protect - Whether CTS protection is enabled
1059 */
1060 int cts_protect;
1061
1062 /**
1063 * preamble - Whether short preamble is enabled
1064 */
1065 int preamble;
1066
1067 /**
1068 * short_slot_time - Whether short slot time is enabled
1069 *
1070 * 0 = short slot time disable, 1 = short slot time enabled, -1 = do
1071 * not set (e.g., when 802.11g mode is not in use)
1072 */
1073 int short_slot_time;
1074
1075 /**
1076 * ht_opmode - HT operation mode or -1 if HT not in use
1077 */
1078 int ht_opmode;
1079
1080 /**
1081 * interworking - Whether Interworking is enabled
1082 */
1083 int interworking;
1084
1085 /**
1086 * hessid - Homogeneous ESS identifier or %NULL if not set
1087 */
1088 const u8 *hessid;
1089
1090 /**
1091 * access_network_type - Access Network Type (0..15)
1092 *
1093 * This is used for filtering Probe Request frames when Interworking is
1094 * enabled.
1095 */
1096 u8 access_network_type;
1097
1098 /**
1099 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
1100 *
1101 * This is used by driver which advertises this capability.
1102 */
1103 int ap_max_inactivity;
1104
1105 /**
1106 * ctwindow - Client Traffic Window (in TUs)
1107 */
1108 u8 p2p_go_ctwindow;
1109
1110 /**
1111 * smps_mode - SMPS mode
1112 *
1113 * SMPS mode to be used by the AP, specified as the relevant bits of
1114 * ht_capab (i.e. HT_CAP_INFO_SMPS_*).
1115 */
1116 unsigned int smps_mode;
1117
1118 /**
1119 * disable_dgaf - Whether group-addressed frames are disabled
1120 */
1121 int disable_dgaf;
1122
1123 /**
1124 * osen - Whether OSEN security is enabled
1125 */
1126 int osen;
1127
1128 /**
1129 * freq - Channel parameters for dynamic bandwidth changes
1130 */
1131 struct hostapd_freq_params *freq;
1132
1133 /**
1134 * reenable - Whether this is to re-enable beaconing
1135 */
1136 int reenable;
1137
1138 /**
1139 * pbss - Whether to start a PCP (in PBSS) instead of an AP in
1140 * infrastructure BSS. Valid only for DMG network.
1141 */
1142 int pbss;
1143 };
1144
1145 struct wpa_driver_mesh_bss_params {
1146 #define WPA_DRIVER_MESH_CONF_FLAG_AUTO_PLINKS 0x00000001
1147 #define WPA_DRIVER_MESH_CONF_FLAG_PEER_LINK_TIMEOUT 0x00000002
1148 #define WPA_DRIVER_MESH_CONF_FLAG_MAX_PEER_LINKS 0x00000004
1149 #define WPA_DRIVER_MESH_CONF_FLAG_HT_OP_MODE 0x00000008
1150 /*
1151 * TODO: Other mesh configuration parameters would go here.
1152 * See NL80211_MESHCONF_* for all the mesh config parameters.
1153 */
1154 unsigned int flags;
1155 int auto_plinks;
1156 int peer_link_timeout;
1157 int max_peer_links;
1158 u16 ht_opmode;
1159 };
1160
1161 struct wpa_driver_mesh_join_params {
1162 const u8 *meshid;
1163 int meshid_len;
1164 const int *basic_rates;
1165 const u8 *ies;
1166 int ie_len;
1167 struct hostapd_freq_params freq;
1168 int beacon_int;
1169 int dtim_period;
1170 struct wpa_driver_mesh_bss_params conf;
1171 #define WPA_DRIVER_MESH_FLAG_USER_MPM 0x00000001
1172 #define WPA_DRIVER_MESH_FLAG_DRIVER_MPM 0x00000002
1173 #define WPA_DRIVER_MESH_FLAG_SAE_AUTH 0x00000004
1174 #define WPA_DRIVER_MESH_FLAG_AMPE 0x00000008
1175 unsigned int flags;
1176 };
1177
1178 /**
1179 * struct wpa_driver_capa - Driver capability information
1180 */
1181 struct wpa_driver_capa {
1182 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
1183 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
1184 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
1185 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
1186 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
1187 #define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
1188 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
1189 #define WPA_DRIVER_CAPA_KEY_MGMT_WAPI_PSK 0x00000080
1190 #define WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B 0x00000100
1191 #define WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B_192 0x00000200
1192 /** Bitfield of supported key management suites */
1193 unsigned int key_mgmt;
1194
1195 #define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
1196 #define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
1197 #define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
1198 #define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
1199 #define WPA_DRIVER_CAPA_ENC_WEP128 0x00000010
1200 #define WPA_DRIVER_CAPA_ENC_GCMP 0x00000020
1201 #define WPA_DRIVER_CAPA_ENC_GCMP_256 0x00000040
1202 #define WPA_DRIVER_CAPA_ENC_CCMP_256 0x00000080
1203 #define WPA_DRIVER_CAPA_ENC_BIP 0x00000100
1204 #define WPA_DRIVER_CAPA_ENC_BIP_GMAC_128 0x00000200
1205 #define WPA_DRIVER_CAPA_ENC_BIP_GMAC_256 0x00000400
1206 #define WPA_DRIVER_CAPA_ENC_BIP_CMAC_256 0x00000800
1207 #define WPA_DRIVER_CAPA_ENC_GTK_NOT_USED 0x00001000
1208 /** Bitfield of supported cipher suites */
1209 unsigned int enc;
1210
1211 #define WPA_DRIVER_AUTH_OPEN 0x00000001
1212 #define WPA_DRIVER_AUTH_SHARED 0x00000002
1213 #define WPA_DRIVER_AUTH_LEAP 0x00000004
1214 /** Bitfield of supported IEEE 802.11 authentication algorithms */
1215 unsigned int auth;
1216
1217 /** Driver generated WPA/RSN IE */
1218 #define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
1219 /** Driver needs static WEP key setup after association command */
1220 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
1221 /** Driver takes care of all DFS operations */
1222 #define WPA_DRIVER_FLAGS_DFS_OFFLOAD 0x00000004
1223 /** Driver takes care of RSN 4-way handshake internally; PMK is configured with
1224 * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
1225 #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
1226 /** Driver is for a wired Ethernet interface */
1227 #define WPA_DRIVER_FLAGS_WIRED 0x00000010
1228 /** Driver provides separate commands for authentication and association (SME in
1229 * wpa_supplicant). */
1230 #define WPA_DRIVER_FLAGS_SME 0x00000020
1231 /** Driver supports AP mode */
1232 #define WPA_DRIVER_FLAGS_AP 0x00000040
1233 /** Driver needs static WEP key setup after association has been completed */
1234 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080
1235 /** Driver supports dynamic HT 20/40 MHz channel changes during BSS lifetime */
1236 #define WPA_DRIVER_FLAGS_HT_2040_COEX 0x00000100
1237 /** Driver supports concurrent P2P operations */
1238 #define WPA_DRIVER_FLAGS_P2P_CONCURRENT 0x00000200
1239 /**
1240 * Driver uses the initial interface as a dedicated management interface, i.e.,
1241 * it cannot be used for P2P group operations or non-P2P purposes.
1242 */
1243 #define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE 0x00000400
1244 /** This interface is P2P capable (P2P GO or P2P Client) */
1245 #define WPA_DRIVER_FLAGS_P2P_CAPABLE 0x00000800
1246 /** Driver supports station and key removal when stopping an AP */
1247 #define WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT 0x00001000
1248 /**
1249 * Driver uses the initial interface for P2P management interface and non-P2P
1250 * purposes (e.g., connect to infra AP), but this interface cannot be used for
1251 * P2P group operations.
1252 */
1253 #define WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P 0x00002000
1254 /**
1255 * Driver is known to use sane error codes, i.e., when it indicates that
1256 * something (e.g., association) fails, there was indeed a failure and the
1257 * operation does not end up getting completed successfully later.
1258 */
1259 #define WPA_DRIVER_FLAGS_SANE_ERROR_CODES 0x00004000
1260 /** Driver supports off-channel TX */
1261 #define WPA_DRIVER_FLAGS_OFFCHANNEL_TX 0x00008000
1262 /** Driver indicates TX status events for EAPOL Data frames */
1263 #define WPA_DRIVER_FLAGS_EAPOL_TX_STATUS 0x00010000
1264 /** Driver indicates TX status events for Deauth/Disassoc frames */
1265 #define WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS 0x00020000
1266 /** Driver supports roaming (BSS selection) in firmware */
1267 #define WPA_DRIVER_FLAGS_BSS_SELECTION 0x00040000
1268 /** Driver supports operating as a TDLS peer */
1269 #define WPA_DRIVER_FLAGS_TDLS_SUPPORT 0x00080000
1270 /** Driver requires external TDLS setup/teardown/discovery */
1271 #define WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP 0x00100000
1272 /** Driver indicates support for Probe Response offloading in AP mode */
1273 #define WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD 0x00200000
1274 /** Driver supports U-APSD in AP mode */
1275 #define WPA_DRIVER_FLAGS_AP_UAPSD 0x00400000
1276 /** Driver supports inactivity timer in AP mode */
1277 #define WPA_DRIVER_FLAGS_INACTIVITY_TIMER 0x00800000
1278 /** Driver expects user space implementation of MLME in AP mode */
1279 #define WPA_DRIVER_FLAGS_AP_MLME 0x01000000
1280 /** Driver supports SAE with user space SME */
1281 #define WPA_DRIVER_FLAGS_SAE 0x02000000
1282 /** Driver makes use of OBSS scan mechanism in wpa_supplicant */
1283 #define WPA_DRIVER_FLAGS_OBSS_SCAN 0x04000000
1284 /** Driver supports IBSS (Ad-hoc) mode */
1285 #define WPA_DRIVER_FLAGS_IBSS 0x08000000
1286 /** Driver supports radar detection */
1287 #define WPA_DRIVER_FLAGS_RADAR 0x10000000
1288 /** Driver supports a dedicated interface for P2P Device */
1289 #define WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE 0x20000000
1290 /** Driver supports QoS Mapping */
1291 #define WPA_DRIVER_FLAGS_QOS_MAPPING 0x40000000
1292 /** Driver supports CSA in AP mode */
1293 #define WPA_DRIVER_FLAGS_AP_CSA 0x80000000
1294 /** Driver supports mesh */
1295 #define WPA_DRIVER_FLAGS_MESH 0x0000000100000000ULL
1296 /** Driver support ACS offload */
1297 #define WPA_DRIVER_FLAGS_ACS_OFFLOAD 0x0000000200000000ULL
1298 /** Driver supports key management offload */
1299 #define WPA_DRIVER_FLAGS_KEY_MGMT_OFFLOAD 0x0000000400000000ULL
1300 /** Driver supports TDLS channel switching */
1301 #define WPA_DRIVER_FLAGS_TDLS_CHANNEL_SWITCH 0x0000000800000000ULL
1302 /** Driver supports IBSS with HT datarates */
1303 #define WPA_DRIVER_FLAGS_HT_IBSS 0x0000001000000000ULL
1304 /** Driver supports IBSS with VHT datarates */
1305 #define WPA_DRIVER_FLAGS_VHT_IBSS 0x0000002000000000ULL
1306 /** Driver supports automatic band selection */
1307 #define WPA_DRIVER_FLAGS_SUPPORT_HW_MODE_ANY 0x0000004000000000ULL
1308 /** Driver supports simultaneous off-channel operations */
1309 #define WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS 0x0000008000000000ULL
1310 /** Driver supports full AP client state */
1311 #define WPA_DRIVER_FLAGS_FULL_AP_CLIENT_STATE 0x0000010000000000ULL
1312 /** Driver supports P2P Listen offload */
1313 #define WPA_DRIVER_FLAGS_P2P_LISTEN_OFFLOAD 0x0000020000000000ULL
1314 /** Driver supports FILS */
1315 #define WPA_DRIVER_FLAGS_SUPPORT_FILS 0x0000040000000000ULL
1316 u64 flags;
1317
1318 #define FULL_AP_CLIENT_STATE_SUPP(drv_flags) \
1319 (drv_flags & WPA_DRIVER_FLAGS_FULL_AP_CLIENT_STATE)
1320
1321 #define WPA_DRIVER_SMPS_MODE_STATIC 0x00000001
1322 #define WPA_DRIVER_SMPS_MODE_DYNAMIC 0x00000002
1323 unsigned int smps_modes;
1324
1325 unsigned int wmm_ac_supported:1;
1326
1327 unsigned int mac_addr_rand_scan_supported:1;
1328 unsigned int mac_addr_rand_sched_scan_supported:1;
1329
1330 /** Maximum number of supported active probe SSIDs */
1331 int max_scan_ssids;
1332
1333 /** Maximum number of supported active probe SSIDs for sched_scan */
1334 int max_sched_scan_ssids;
1335
1336 /** Maximum number of supported scan plans for scheduled scan */
1337 unsigned int max_sched_scan_plans;
1338
1339 /** Maximum interval in a scan plan. In seconds */
1340 u32 max_sched_scan_plan_interval;
1341
1342 /** Maximum number of iterations in a single scan plan */
1343 u32 max_sched_scan_plan_iterations;
1344
1345 /** Whether sched_scan (offloaded scanning) is supported */
1346 int sched_scan_supported;
1347
1348 /** Maximum number of supported match sets for sched_scan */
1349 int max_match_sets;
1350
1351 /**
1352 * max_remain_on_chan - Maximum remain-on-channel duration in msec
1353 */
1354 unsigned int max_remain_on_chan;
1355
1356 /**
1357 * max_stations - Maximum number of associated stations the driver
1358 * supports in AP mode
1359 */
1360 unsigned int max_stations;
1361
1362 /**
1363 * probe_resp_offloads - Bitmap of supported protocols by the driver
1364 * for Probe Response offloading.
1365 */
1366 /** Driver Probe Response offloading support for WPS ver. 1 */
1367 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS 0x00000001
1368 /** Driver Probe Response offloading support for WPS ver. 2 */
1369 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2 0x00000002
1370 /** Driver Probe Response offloading support for P2P */
1371 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P 0x00000004
1372 /** Driver Probe Response offloading support for IEEE 802.11u (Interworking) */
1373 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING 0x00000008
1374 unsigned int probe_resp_offloads;
1375
1376 unsigned int max_acl_mac_addrs;
1377
1378 /**
1379 * Number of supported concurrent channels
1380 */
1381 unsigned int num_multichan_concurrent;
1382
1383 /**
1384 * extended_capa - extended capabilities in driver/device
1385 *
1386 * Must be allocated and freed by driver and the pointers must be
1387 * valid for the lifetime of the driver, i.e., freed in deinit()
1388 */
1389 const u8 *extended_capa, *extended_capa_mask;
1390 unsigned int extended_capa_len;
1391
1392 struct wowlan_triggers wowlan_triggers;
1393
1394 /** Driver adds the DS Params Set IE in Probe Request frames */
1395 #define WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES 0x00000001
1396 /** Driver adds the WFA TPC IE in Probe Request frames */
1397 #define WPA_DRIVER_FLAGS_WFA_TPC_IE_IN_PROBES 0x00000002
1398 /** Driver handles quiet period requests */
1399 #define WPA_DRIVER_FLAGS_QUIET 0x00000004
1400 /**
1401 * Driver is capable of inserting the current TX power value into the body of
1402 * transmitted frames.
1403 * Background: Some Action frames include a TPC Report IE. This IE contains a
1404 * TX power field, which has to be updated by lower layers. One such Action
1405 * frame is Link Measurement Report (part of RRM). Another is TPC Report (part
1406 * of spectrum management). Note that this insertion takes place at a fixed
1407 * offset, namely the 6th byte in the Action frame body.
1408 */
1409 #define WPA_DRIVER_FLAGS_TX_POWER_INSERTION 0x00000008
1410 /**
1411 * Driver supports RRM. With this support, the driver will accept to use RRM in
1412 * (Re)Association Request frames, without supporting quiet period.
1413 */
1414 #define WPA_DRIVER_FLAGS_SUPPORT_RRM 0x00000010
1415
1416 u32 rrm_flags;
1417
1418 /* Driver concurrency capabilities */
1419 unsigned int conc_capab;
1420 /* Maximum number of concurrent channels on 2.4 GHz */
1421 unsigned int max_conc_chan_2_4;
1422 /* Maximum number of concurrent channels on 5 GHz */
1423 unsigned int max_conc_chan_5_0;
1424
1425 /* Maximum number of supported CSA counters */
1426 u16 max_csa_counters;
1427 };
1428
1429
1430 struct hostapd_data;
1431
1432 struct hostap_sta_driver_data {
1433 unsigned long rx_packets, tx_packets;
1434 unsigned long long rx_bytes, tx_bytes;
1435 int bytes_64bit; /* whether 64-bit byte counters are supported */
1436 unsigned long current_tx_rate;
1437 unsigned long inactive_msec;
1438 unsigned long flags;
1439 unsigned long num_ps_buf_frames;
1440 unsigned long tx_retry_failed;
1441 unsigned long tx_retry_count;
1442 int last_rssi;
1443 int last_ack_rssi;
1444 };
1445
1446 struct hostapd_sta_add_params {
1447 const u8 *addr;
1448 u16 aid;
1449 u16 capability;
1450 const u8 *supp_rates;
1451 size_t supp_rates_len;
1452 u16 listen_interval;
1453 const struct ieee80211_ht_capabilities *ht_capabilities;
1454 const struct ieee80211_vht_capabilities *vht_capabilities;
1455 int vht_opmode_enabled;
1456 u8 vht_opmode;
1457 u32 flags; /* bitmask of WPA_STA_* flags */
1458 u32 flags_mask; /* unset bits in flags */
1459 #ifdef CONFIG_MESH
1460 enum mesh_plink_state plink_state;
1461 u16 peer_aid;
1462 #endif /* CONFIG_MESH */
1463 int set; /* Set STA parameters instead of add */
1464 u8 qosinfo;
1465 const u8 *ext_capab;
1466 size_t ext_capab_len;
1467 const u8 *supp_channels;
1468 size_t supp_channels_len;
1469 const u8 *supp_oper_classes;
1470 size_t supp_oper_classes_len;
1471 int support_p2p_ps;
1472 };
1473
1474 struct mac_address {
1475 u8 addr[ETH_ALEN];
1476 };
1477
1478 struct hostapd_acl_params {
1479 u8 acl_policy;
1480 unsigned int num_mac_acl;
1481 struct mac_address mac_acl[0];
1482 };
1483
1484 enum wpa_driver_if_type {
1485 /**
1486 * WPA_IF_STATION - Station mode interface
1487 */
1488 WPA_IF_STATION,
1489
1490 /**
1491 * WPA_IF_AP_VLAN - AP mode VLAN interface
1492 *
1493 * This interface shares its address and Beacon frame with the main
1494 * BSS.
1495 */
1496 WPA_IF_AP_VLAN,
1497
1498 /**
1499 * WPA_IF_AP_BSS - AP mode BSS interface
1500 *
1501 * This interface has its own address and Beacon frame.
1502 */
1503 WPA_IF_AP_BSS,
1504
1505 /**
1506 * WPA_IF_P2P_GO - P2P Group Owner
1507 */
1508 WPA_IF_P2P_GO,
1509
1510 /**
1511 * WPA_IF_P2P_CLIENT - P2P Client
1512 */
1513 WPA_IF_P2P_CLIENT,
1514
1515 /**
1516 * WPA_IF_P2P_GROUP - P2P Group interface (will become either
1517 * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known)
1518 */
1519 WPA_IF_P2P_GROUP,
1520
1521 /**
1522 * WPA_IF_P2P_DEVICE - P2P Device interface is used to indentify the
1523 * abstracted P2P Device function in the driver
1524 */
1525 WPA_IF_P2P_DEVICE,
1526
1527 /*
1528 * WPA_IF_MESH - Mesh interface
1529 */
1530 WPA_IF_MESH,
1531
1532 /*
1533 * WPA_IF_TDLS - TDLS offchannel interface (used for pref freq only)
1534 */
1535 WPA_IF_TDLS,
1536
1537 /*
1538 * WPA_IF_IBSS - IBSS interface (used for pref freq only)
1539 */
1540 WPA_IF_IBSS,
1541 };
1542
1543 struct wpa_init_params {
1544 void *global_priv;
1545 const u8 *bssid;
1546 const char *ifname;
1547 const char *driver_params;
1548 int use_pae_group_addr;
1549 char **bridge;
1550 size_t num_bridge;
1551
1552 u8 *own_addr; /* buffer for writing own MAC address */
1553 };
1554
1555
1556 struct wpa_bss_params {
1557 /** Interface name (for multi-SSID/VLAN support) */
1558 const char *ifname;
1559 /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
1560 int enabled;
1561
1562 int wpa;
1563 int ieee802_1x;
1564 int wpa_group;
1565 int wpa_pairwise;
1566 int wpa_key_mgmt;
1567 int rsn_preauth;
1568 enum mfp_options ieee80211w;
1569 };
1570
1571 #define WPA_STA_AUTHORIZED BIT(0)
1572 #define WPA_STA_WMM BIT(1)
1573 #define WPA_STA_SHORT_PREAMBLE BIT(2)
1574 #define WPA_STA_MFP BIT(3)
1575 #define WPA_STA_TDLS_PEER BIT(4)
1576 #define WPA_STA_AUTHENTICATED BIT(5)
1577 #define WPA_STA_ASSOCIATED BIT(6)
1578
1579 enum tdls_oper {
1580 TDLS_DISCOVERY_REQ,
1581 TDLS_SETUP,
1582 TDLS_TEARDOWN,
1583 TDLS_ENABLE_LINK,
1584 TDLS_DISABLE_LINK,
1585 TDLS_ENABLE,
1586 TDLS_DISABLE
1587 };
1588
1589 enum wnm_oper {
1590 WNM_SLEEP_ENTER_CONFIRM,
1591 WNM_SLEEP_ENTER_FAIL,
1592 WNM_SLEEP_EXIT_CONFIRM,
1593 WNM_SLEEP_EXIT_FAIL,
1594 WNM_SLEEP_TFS_REQ_IE_ADD, /* STA requests driver to add TFS req IE */
1595 WNM_SLEEP_TFS_REQ_IE_NONE, /* STA requests empty TFS req IE */
1596 WNM_SLEEP_TFS_REQ_IE_SET, /* AP requests driver to set TFS req IE for
1597 * a STA */
1598 WNM_SLEEP_TFS_RESP_IE_ADD, /* AP requests driver to add TFS resp IE
1599 * for a STA */
1600 WNM_SLEEP_TFS_RESP_IE_NONE, /* AP requests empty TFS resp IE */
1601 WNM_SLEEP_TFS_RESP_IE_SET, /* AP requests driver to set TFS resp IE
1602 * for a STA */
1603 WNM_SLEEP_TFS_IE_DEL /* AP delete the TFS IE */
1604 };
1605
1606 /* enum chan_width - Channel width definitions */
1607 enum chan_width {
1608 CHAN_WIDTH_20_NOHT,
1609 CHAN_WIDTH_20,
1610 CHAN_WIDTH_40,
1611 CHAN_WIDTH_80,
1612 CHAN_WIDTH_80P80,
1613 CHAN_WIDTH_160,
1614 CHAN_WIDTH_UNKNOWN
1615 };
1616
1617 /**
1618 * struct wpa_signal_info - Information about channel signal quality
1619 */
1620 struct wpa_signal_info {
1621 u32 frequency;
1622 int above_threshold;
1623 int current_signal;
1624 int avg_signal;
1625 int avg_beacon_signal;
1626 int current_noise;
1627 int current_txrate;
1628 enum chan_width chanwidth;
1629 int center_frq1;
1630 int center_frq2;
1631 };
1632
1633 /**
1634 * struct beacon_data - Beacon data
1635 * @head: Head portion of Beacon frame (before TIM IE)
1636 * @tail: Tail portion of Beacon frame (after TIM IE)
1637 * @beacon_ies: Extra information element(s) to add into Beacon frames or %NULL
1638 * @proberesp_ies: Extra information element(s) to add into Probe Response
1639 * frames or %NULL
1640 * @assocresp_ies: Extra information element(s) to add into (Re)Association
1641 * Response frames or %NULL
1642 * @probe_resp: Probe Response frame template
1643 * @head_len: Length of @head
1644 * @tail_len: Length of @tail
1645 * @beacon_ies_len: Length of beacon_ies in octets
1646 * @proberesp_ies_len: Length of proberesp_ies in octets
1647 * @proberesp_ies_len: Length of proberesp_ies in octets
1648 * @probe_resp_len: Length of probe response template (@probe_resp)
1649 */
1650 struct beacon_data {
1651 u8 *head, *tail;
1652 u8 *beacon_ies;
1653 u8 *proberesp_ies;
1654 u8 *assocresp_ies;
1655 u8 *probe_resp;
1656
1657 size_t head_len, tail_len;
1658 size_t beacon_ies_len;
1659 size_t proberesp_ies_len;
1660 size_t assocresp_ies_len;
1661 size_t probe_resp_len;
1662 };
1663
1664 /**
1665 * struct csa_settings - Settings for channel switch command
1666 * @cs_count: Count in Beacon frames (TBTT) to perform the switch
1667 * @block_tx: 1 - block transmission for CSA period
1668 * @freq_params: Next channel frequency parameter
1669 * @beacon_csa: Beacon/probe resp/asooc resp info for CSA period
1670 * @beacon_after: Next beacon/probe resp/asooc resp info
1671 * @counter_offset_beacon: Offset to the count field in beacon's tail
1672 * @counter_offset_presp: Offset to the count field in probe resp.
1673 */
1674 struct csa_settings {
1675 u8 cs_count;
1676 u8 block_tx;
1677
1678 struct hostapd_freq_params freq_params;
1679 struct beacon_data beacon_csa;
1680 struct beacon_data beacon_after;
1681
1682 u16 counter_offset_beacon[2];
1683 u16 counter_offset_presp[2];
1684 };
1685
1686 /* TDLS peer capabilities for send_tdls_mgmt() */
1687 enum tdls_peer_capability {
1688 TDLS_PEER_HT = BIT(0),
1689 TDLS_PEER_VHT = BIT(1),
1690 TDLS_PEER_WMM = BIT(2),
1691 };
1692
1693 /* valid info in the wmm_params struct */
1694 enum wmm_params_valid_info {
1695 WMM_PARAMS_UAPSD_QUEUES_INFO = BIT(0),
1696 };
1697
1698 /**
1699 * struct wmm_params - WMM parameterss configured for this association
1700 * @info_bitmap: Bitmap of valid wmm_params info; indicates what fields
1701 * of the struct contain valid information.
1702 * @uapsd_queues: Bitmap of ACs configured for uapsd (valid only if
1703 * %WMM_PARAMS_UAPSD_QUEUES_INFO is set)
1704 */
1705 struct wmm_params {
1706 u8 info_bitmap;
1707 u8 uapsd_queues;
1708 };
1709
1710 #ifdef CONFIG_MACSEC
1711 struct macsec_init_params {
1712 Boolean always_include_sci;
1713 Boolean use_es;
1714 Boolean use_scb;
1715 };
1716 #endif /* CONFIG_MACSEC */
1717
1718 enum drv_br_port_attr {
1719 DRV_BR_PORT_ATTR_PROXYARP,
1720 DRV_BR_PORT_ATTR_HAIRPIN_MODE,
1721 };
1722
1723 enum drv_br_net_param {
1724 DRV_BR_NET_PARAM_GARP_ACCEPT,
1725 DRV_BR_MULTICAST_SNOOPING,
1726 };
1727
1728 struct drv_acs_params {
1729 /* Selected mode (HOSTAPD_MODE_*) */
1730 enum hostapd_hw_mode hw_mode;
1731
1732 /* Indicates whether HT is enabled */
1733 int ht_enabled;
1734
1735 /* Indicates whether HT40 is enabled */
1736 int ht40_enabled;
1737
1738 /* Indicates whether VHT is enabled */
1739 int vht_enabled;
1740
1741 /* Configured ACS channel width */
1742 u16 ch_width;
1743
1744 /* ACS channel list info */
1745 unsigned int ch_list_len;
1746 const u8 *ch_list;
1747 const int *freq_list;
1748 };
1749
1750
1751 /**
1752 * struct wpa_driver_ops - Driver interface API definition
1753 *
1754 * This structure defines the API that each driver interface needs to implement
1755 * for core wpa_supplicant code. All driver specific functionality is captured
1756 * in this wrapper.
1757 */
1758 struct wpa_driver_ops {
1759 /** Name of the driver interface */
1760 const char *name;
1761 /** One line description of the driver interface */
1762 const char *desc;
1763
1764 /**
1765 * get_bssid - Get the current BSSID
1766 * @priv: private driver interface data
1767 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
1768 *
1769 * Returns: 0 on success, -1 on failure
1770 *
1771 * Query kernel driver for the current BSSID and copy it to bssid.
1772 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
1773 * associated.
1774 */
1775 int (*get_bssid)(void *priv, u8 *bssid);
1776
1777 /**
1778 * get_ssid - Get the current SSID
1779 * @priv: private driver interface data
1780 * @ssid: buffer for SSID (at least 32 bytes)
1781 *
1782 * Returns: Length of the SSID on success, -1 on failure
1783 *
1784 * Query kernel driver for the current SSID and copy it to ssid.
1785 * Returning zero is recommended if the STA is not associated.
1786 *
1787 * Note: SSID is an array of octets, i.e., it is not nul terminated and
1788 * can, at least in theory, contain control characters (including nul)
1789 * and as such, should be processed as binary data, not a printable
1790 * string.
1791 */
1792 int (*get_ssid)(void *priv, u8 *ssid);
1793
1794 /**
1795 * set_key - Configure encryption key
1796 * @ifname: Interface name (for multi-SSID/VLAN support)
1797 * @priv: private driver interface data
1798 * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
1799 * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK,
1800 * %WPA_ALG_GCMP, %WPA_ALG_GCMP_256, %WPA_ALG_CCMP_256,
1801 * %WPA_ALG_BIP_GMAC_128, %WPA_ALG_BIP_GMAC_256,
1802 * %WPA_ALG_BIP_CMAC_256);
1803 * %WPA_ALG_NONE clears the key.
1804 * @addr: Address of the peer STA (BSSID of the current AP when setting
1805 * pairwise key in station mode), ff:ff:ff:ff:ff:ff for
1806 * broadcast keys, %NULL for default keys that are used both for
1807 * broadcast and unicast; when clearing keys, %NULL is used to
1808 * indicate that both the broadcast-only and default key of the
1809 * specified key index is to be cleared
1810 * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
1811 * IGTK
1812 * @set_tx: configure this key as the default Tx key (only used when
1813 * driver does not support separate unicast/individual key
1814 * @seq: sequence number/packet number, seq_len octets, the next
1815 * packet number to be used for in replay protection; configured
1816 * for Rx keys (in most cases, this is only used with broadcast
1817 * keys and set to zero for unicast keys); %NULL if not set
1818 * @seq_len: length of the seq, depends on the algorithm:
1819 * TKIP: 6 octets, CCMP/GCMP: 6 octets, IGTK: 6 octets
1820 * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
1821 * 8-byte Rx Mic Key
1822 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
1823 * TKIP: 32, CCMP/GCMP: 16, IGTK: 16)
1824 *
1825 * Returns: 0 on success, -1 on failure
1826 *
1827 * Configure the given key for the kernel driver. If the driver
1828 * supports separate individual keys (4 default keys + 1 individual),
1829 * addr can be used to determine whether the key is default or
1830 * individual. If only 4 keys are supported, the default key with key
1831 * index 0 is used as the individual key. STA must be configured to use
1832 * it as the default Tx key (set_tx is set) and accept Rx for all the
1833 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
1834 * broadcast keys, so key index 0 is available for this kind of
1835 * configuration.
1836 *
1837 * Please note that TKIP keys include separate TX and RX MIC keys and
1838 * some drivers may expect them in different order than wpa_supplicant
1839 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
1840 * will trigger Michael MIC errors. This can be fixed by changing the
1841 * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
1842 * in driver_*.c set_key() implementation, see driver_ndis.c for an
1843 * example on how this can be done.
1844 */
1845 int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg,
1846 const u8 *addr, int key_idx, int set_tx,
1847 const u8 *seq, size_t seq_len,
1848 const u8 *key, size_t key_len);
1849
1850 /**
1851 * init - Initialize driver interface
1852 * @ctx: context to be used when calling wpa_supplicant functions,
1853 * e.g., wpa_supplicant_event()
1854 * @ifname: interface name, e.g., wlan0
1855 *
1856 * Returns: Pointer to private data, %NULL on failure
1857 *
1858 * Initialize driver interface, including event processing for kernel
1859 * driver events (e.g., associated, scan results, Michael MIC failure).
1860 * This function can allocate a private configuration data area for
1861 * @ctx, file descriptor, interface name, etc. information that may be
1862 * needed in future driver operations. If this is not used, non-NULL
1863 * value will need to be returned because %NULL is used to indicate
1864 * failure. The returned value will be used as 'void *priv' data for
1865 * all other driver_ops functions.
1866 *
1867 * The main event loop (eloop.c) of wpa_supplicant can be used to
1868 * register callback for read sockets (eloop_register_read_sock()).
1869 *
1870 * See below for more information about events and
1871 * wpa_supplicant_event() function.
1872 */
1873 void * (*init)(void *ctx, const char *ifname);
1874
1875 /**
1876 * deinit - Deinitialize driver interface
1877 * @priv: private driver interface data from init()
1878 *
1879 * Shut down driver interface and processing of driver events. Free
1880 * private data buffer if one was allocated in init() handler.
1881 */
1882 void (*deinit)(void *priv);
1883
1884 /**
1885 * set_param - Set driver configuration parameters
1886 * @priv: private driver interface data from init()
1887 * @param: driver specific configuration parameters
1888 *
1889 * Returns: 0 on success, -1 on failure
1890 *
1891 * Optional handler for notifying driver interface about configuration
1892 * parameters (driver_param).
1893 */
1894 int (*set_param)(void *priv, const char *param);
1895
1896 /**
1897 * set_countermeasures - Enable/disable TKIP countermeasures
1898 * @priv: private driver interface data
1899 * @enabled: 1 = countermeasures enabled, 0 = disabled
1900 *
1901 * Returns: 0 on success, -1 on failure
1902 *
1903 * Configure TKIP countermeasures. When these are enabled, the driver
1904 * should drop all received and queued frames that are using TKIP.
1905 */
1906 int (*set_countermeasures)(void *priv, int enabled);
1907
1908 /**
1909 * deauthenticate - Request driver to deauthenticate
1910 * @priv: private driver interface data
1911 * @addr: peer address (BSSID of the AP)
1912 * @reason_code: 16-bit reason code to be sent in the deauthentication
1913 * frame
1914 *
1915 * Returns: 0 on success, -1 on failure
1916 */
1917 int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
1918
1919 /**
1920 * associate - Request driver to associate
1921 * @priv: private driver interface data
1922 * @params: association parameters
1923 *
1924 * Returns: 0 on success, -1 on failure
1925 */
1926 int (*associate)(void *priv,
1927 struct wpa_driver_associate_params *params);
1928
1929 /**
1930 * add_pmkid - Add PMKSA cache entry to the driver
1931 * @priv: private driver interface data
1932 * @bssid: BSSID for the PMKSA cache entry
1933 * @pmkid: PMKID for the PMKSA cache entry
1934 *
1935 * Returns: 0 on success, -1 on failure
1936 *
1937 * This function is called when a new PMK is received, as a result of
1938 * either normal authentication or RSN pre-authentication.
1939 *
1940 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1941 * associate(), add_pmkid() can be used to add new PMKSA cache entries
1942 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
1943 * driver_ops function does not need to be implemented. Likewise, if
1944 * the driver does not support WPA, this function is not needed.
1945 */
1946 int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
1947
1948 /**
1949 * remove_pmkid - Remove PMKSA cache entry to the driver
1950 * @priv: private driver interface data
1951 * @bssid: BSSID for the PMKSA cache entry
1952 * @pmkid: PMKID for the PMKSA cache entry
1953 *
1954 * Returns: 0 on success, -1 on failure
1955 *
1956 * This function is called when the supplicant drops a PMKSA cache
1957 * entry for any reason.
1958 *
1959 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1960 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
1961 * between the driver and wpa_supplicant. If the driver uses wpa_ie
1962 * from wpa_supplicant, this driver_ops function does not need to be
1963 * implemented. Likewise, if the driver does not support WPA, this
1964 * function is not needed.
1965 */
1966 int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
1967
1968 /**
1969 * flush_pmkid - Flush PMKSA cache
1970 * @priv: private driver interface data
1971 *
1972 * Returns: 0 on success, -1 on failure
1973 *
1974 * This function is called when the supplicant drops all PMKSA cache
1975 * entries for any reason.
1976 *
1977 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
1978 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
1979 * between the driver and wpa_supplicant. If the driver uses wpa_ie
1980 * from wpa_supplicant, this driver_ops function does not need to be
1981 * implemented. Likewise, if the driver does not support WPA, this
1982 * function is not needed.
1983 */
1984 int (*flush_pmkid)(void *priv);
1985
1986 /**
1987 * get_capa - Get driver capabilities
1988 * @priv: private driver interface data
1989 *
1990 * Returns: 0 on success, -1 on failure
1991 *
1992 * Get driver/firmware/hardware capabilities.
1993 */
1994 int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
1995
1996 /**
1997 * poll - Poll driver for association information
1998 * @priv: private driver interface data
1999 *
2000 * This is an option callback that can be used when the driver does not
2001 * provide event mechanism for association events. This is called when
2002 * receiving WPA EAPOL-Key messages that require association
2003 * information. The driver interface is supposed to generate associnfo
2004 * event before returning from this callback function. In addition, the
2005 * driver interface should generate an association event after having
2006 * sent out associnfo.
2007 */
2008 void (*poll)(void *priv);
2009
2010 /**
2011 * get_ifindex - Get interface index
2012 * @priv: private driver interface data
2013 *
2014 * Returns: Interface index
2015 */
2016 unsigned int (*get_ifindex)(void *priv);
2017
2018 /**
2019 * get_ifname - Get interface name
2020 * @priv: private driver interface data
2021 *
2022 * Returns: Pointer to the interface name. This can differ from the
2023 * interface name used in init() call. Init() is called first.
2024 *
2025 * This optional function can be used to allow the driver interface to
2026 * replace the interface name with something else, e.g., based on an
2027 * interface mapping from a more descriptive name.
2028 */
2029 const char * (*get_ifname)(void *priv);
2030
2031 /**
2032 * get_mac_addr - Get own MAC address
2033 * @priv: private driver interface data
2034 *
2035 * Returns: Pointer to own MAC address or %NULL on failure
2036 *
2037 * This optional function can be used to get the own MAC address of the
2038 * device from the driver interface code. This is only needed if the
2039 * l2_packet implementation for the OS does not provide easy access to
2040 * a MAC address. */
2041 const u8 * (*get_mac_addr)(void *priv);
2042
2043 /**
2044 * set_operstate - Sets device operating state to DORMANT or UP
2045 * @priv: private driver interface data
2046 * @state: 0 = dormant, 1 = up
2047 * Returns: 0 on success, -1 on failure
2048 *
2049 * This is an optional function that can be used on operating systems
2050 * that support a concept of controlling network device state from user
2051 * space applications. This function, if set, gets called with
2052 * state = 1 when authentication has been completed and with state = 0
2053 * when connection is lost.
2054 */
2055 int (*set_operstate)(void *priv, int state);
2056
2057 /**
2058 * mlme_setprotection - MLME-SETPROTECTION.request primitive
2059 * @priv: Private driver interface data
2060 * @addr: Address of the station for which to set protection (may be
2061 * %NULL for group keys)
2062 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
2063 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
2064 * Returns: 0 on success, -1 on failure
2065 *
2066 * This is an optional function that can be used to set the driver to
2067 * require protection for Tx and/or Rx frames. This uses the layer
2068 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
2069 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
2070 * set protection operation; instead, they set protection implicitly
2071 * based on configured keys.
2072 */
2073 int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
2074 int key_type);
2075
2076 /**
2077 * get_hw_feature_data - Get hardware support data (channels and rates)
2078 * @priv: Private driver interface data
2079 * @num_modes: Variable for returning the number of returned modes
2080 * flags: Variable for returning hardware feature flags
2081 * Returns: Pointer to allocated hardware data on success or %NULL on
2082 * failure. Caller is responsible for freeing this.
2083 */
2084 struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
2085 u16 *num_modes,
2086 u16 *flags);
2087
2088 /**
2089 * send_mlme - Send management frame from MLME
2090 * @priv: Private driver interface data
2091 * @data: IEEE 802.11 management frame with IEEE 802.11 header
2092 * @data_len: Size of the management frame
2093 * @noack: Do not wait for this frame to be acked (disable retries)
2094 * @freq: Frequency (in MHz) to send the frame on, or 0 to let the
2095 * driver decide
2096 * @csa_offs: Array of CSA offsets or %NULL
2097 * @csa_offs_len: Number of elements in csa_offs
2098 * Returns: 0 on success, -1 on failure
2099 */
2100 int (*send_mlme)(void *priv, const u8 *data, size_t data_len,
2101 int noack, unsigned int freq, const u16 *csa_offs,
2102 size_t csa_offs_len);
2103
2104 /**
2105 * update_ft_ies - Update FT (IEEE 802.11r) IEs
2106 * @priv: Private driver interface data
2107 * @md: Mobility domain (2 octets) (also included inside ies)
2108 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
2109 * @ies_len: Length of FT IEs in bytes
2110 * Returns: 0 on success, -1 on failure
2111 *
2112 * The supplicant uses this callback to let the driver know that keying
2113 * material for FT is available and that the driver can use the
2114 * provided IEs in the next message in FT authentication sequence.
2115 *
2116 * This function is only needed for driver that support IEEE 802.11r
2117 * (Fast BSS Transition).
2118 */
2119 int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
2120 size_t ies_len);
2121
2122 /**
2123 * get_scan_results2 - Fetch the latest scan results
2124 * @priv: private driver interface data
2125 *
2126 * Returns: Allocated buffer of scan results (caller is responsible for
2127 * freeing the data structure) on success, NULL on failure
2128 */
2129 struct wpa_scan_results * (*get_scan_results2)(void *priv);
2130
2131 /**
2132 * set_country - Set country
2133 * @priv: Private driver interface data
2134 * @alpha2: country to which to switch to
2135 * Returns: 0 on success, -1 on failure
2136 *
2137 * This function is for drivers which support some form
2138 * of setting a regulatory domain.
2139 */
2140 int (*set_country)(void *priv, const char *alpha2);
2141
2142 /**
2143 * get_country - Get country
2144 * @priv: Private driver interface data
2145 * @alpha2: Buffer for returning country code (at least 3 octets)
2146 * Returns: 0 on success, -1 on failure
2147 */
2148 int (*get_country)(void *priv, char *alpha2);
2149
2150 /**
2151 * global_init - Global driver initialization
2152 * @ctx: wpa_global pointer
2153 * Returns: Pointer to private data (global), %NULL on failure
2154 *
2155 * This optional function is called to initialize the driver wrapper
2156 * for global data, i.e., data that applies to all interfaces. If this
2157 * function is implemented, global_deinit() will also need to be
2158 * implemented to free the private data. The driver will also likely
2159 * use init2() function instead of init() to get the pointer to global
2160 * data available to per-interface initializer.
2161 */
2162 void * (*global_init)(void *ctx);
2163
2164 /**
2165 * global_deinit - Global driver deinitialization
2166 * @priv: private driver global data from global_init()
2167 *
2168 * Terminate any global driver related functionality and free the
2169 * global data structure.
2170 */
2171 void (*global_deinit)(void *priv);
2172
2173 /**
2174 * init2 - Initialize driver interface (with global data)
2175 * @ctx: context to be used when calling wpa_supplicant functions,
2176 * e.g., wpa_supplicant_event()
2177 * @ifname: interface name, e.g., wlan0
2178 * @global_priv: private driver global data from global_init()
2179 * Returns: Pointer to private data, %NULL on failure
2180 *
2181 * This function can be used instead of init() if the driver wrapper
2182 * uses global data.
2183 */
2184 void * (*init2)(void *ctx, const char *ifname, void *global_priv);
2185
2186 /**
2187 * get_interfaces - Get information about available interfaces
2188 * @global_priv: private driver global data from global_init()
2189 * Returns: Allocated buffer of interface information (caller is
2190 * responsible for freeing the data structure) on success, NULL on
2191 * failure
2192 */
2193 struct wpa_interface_info * (*get_interfaces)(void *global_priv);
2194
2195 /**
2196 * scan2 - Request the driver to initiate scan
2197 * @priv: private driver interface data
2198 * @params: Scan parameters
2199 *
2200 * Returns: 0 on success, -1 on failure
2201 *
2202 * Once the scan results are ready, the driver should report scan
2203 * results event for wpa_supplicant which will eventually request the
2204 * results with wpa_driver_get_scan_results2().
2205 */
2206 int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
2207
2208 /**
2209 * authenticate - Request driver to authenticate
2210 * @priv: private driver interface data
2211 * @params: authentication parameters
2212 * Returns: 0 on success, -1 on failure
2213 *
2214 * This is an optional function that can be used with drivers that
2215 * support separate authentication and association steps, i.e., when
2216 * wpa_supplicant can act as the SME. If not implemented, associate()
2217 * function is expected to take care of IEEE 802.11 authentication,
2218 * too.
2219 */
2220 int (*authenticate)(void *priv,
2221 struct wpa_driver_auth_params *params);
2222
2223 /**
2224 * set_ap - Set Beacon and Probe Response information for AP mode
2225 * @priv: Private driver interface data
2226 * @params: Parameters to use in AP mode
2227 *
2228 * This function is used to configure Beacon template and/or extra IEs
2229 * to add for Beacon and Probe Response frames for the driver in
2230 * AP mode. The driver is responsible for building the full Beacon
2231 * frame by concatenating the head part with TIM IE generated by the
2232 * driver/firmware and finishing with the tail part. Depending on the
2233 * driver architectue, this can be done either by using the full
2234 * template or the set of additional IEs (e.g., WPS and P2P IE).
2235 * Similarly, Probe Response processing depends on the driver design.
2236 * If the driver (or firmware) takes care of replying to Probe Request
2237 * frames, the extra IEs provided here needs to be added to the Probe
2238 * Response frames.
2239 *
2240 * Returns: 0 on success, -1 on failure
2241 */
2242 int (*set_ap)(void *priv, struct wpa_driver_ap_params *params);
2243
2244 /**
2245 * set_acl - Set ACL in AP mode
2246 * @priv: Private driver interface data
2247 * @params: Parameters to configure ACL
2248 * Returns: 0 on success, -1 on failure
2249 *
2250 * This is used only for the drivers which support MAC address ACL.
2251 */
2252 int (*set_acl)(void *priv, struct hostapd_acl_params *params);
2253
2254 /**
2255 * hapd_init - Initialize driver interface (hostapd only)
2256 * @hapd: Pointer to hostapd context
2257 * @params: Configuration for the driver wrapper
2258 * Returns: Pointer to private data, %NULL on failure
2259 *
2260 * This function is used instead of init() or init2() when the driver
2261 * wrapper is used with hostapd.
2262 */
2263 void * (*hapd_init)(struct hostapd_data *hapd,
2264 struct wpa_init_params *params);
2265
2266 /**
2267 * hapd_deinit - Deinitialize driver interface (hostapd only)
2268 * @priv: Private driver interface data from hapd_init()
2269 */
2270 void (*hapd_deinit)(void *priv);
2271
2272 /**
2273 * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
2274 * @priv: Private driver interface data
2275 * @params: BSS parameters
2276 * Returns: 0 on success, -1 on failure
2277 *
2278 * This is an optional function to configure the kernel driver to
2279 * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
2280 * can be left undefined (set to %NULL) if IEEE 802.1X support is
2281 * always enabled and the driver uses set_ap() to set WPA/RSN IE
2282 * for Beacon frames.
2283 *
2284 * DEPRECATED - use set_ap() instead
2285 */
2286 int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
2287
2288 /**
2289 * set_privacy - Enable/disable privacy (AP only)
2290 * @priv: Private driver interface data
2291 * @enabled: 1 = privacy enabled, 0 = disabled
2292 * Returns: 0 on success, -1 on failure
2293 *
2294 * This is an optional function to configure privacy field in the
2295 * kernel driver for Beacon frames. This can be left undefined (set to
2296 * %NULL) if the driver uses the Beacon template from set_ap().
2297 *
2298 * DEPRECATED - use set_ap() instead
2299 */
2300 int (*set_privacy)(void *priv, int enabled);
2301
2302 /**
2303 * get_seqnum - Fetch the current TSC/packet number (AP only)
2304 * @ifname: The interface name (main or virtual)
2305 * @priv: Private driver interface data
2306 * @addr: MAC address of the station or %NULL for group keys
2307 * @idx: Key index
2308 * @seq: Buffer for returning the latest used TSC/packet number
2309 * Returns: 0 on success, -1 on failure
2310 *
2311 * This function is used to fetch the last used TSC/packet number for
2312 * a TKIP, CCMP, GCMP, or BIP/IGTK key. It is mainly used with group
2313 * keys, so there is no strict requirement on implementing support for
2314 * unicast keys (i.e., addr != %NULL).
2315 */
2316 int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
2317 int idx, u8 *seq);
2318
2319 /**
2320 * flush - Flush all association stations (AP only)
2321 * @priv: Private driver interface data
2322 * Returns: 0 on success, -1 on failure
2323 *
2324 * This function requests the driver to disassociate all associated
2325 * stations. This function does not need to be implemented if the
2326 * driver does not process association frames internally.
2327 */
2328 int (*flush)(void *priv);
2329
2330 /**
2331 * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
2332 * @priv: Private driver interface data
2333 * @elem: Information elements
2334 * @elem_len: Length of the elem buffer in octets
2335 * Returns: 0 on success, -1 on failure
2336 *
2337 * This is an optional function to add information elements in the
2338 * kernel driver for Beacon and Probe Response frames. This can be left
2339 * undefined (set to %NULL) if the driver uses the Beacon template from
2340 * set_ap().
2341 *
2342 * DEPRECATED - use set_ap() instead
2343 */
2344 int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
2345
2346 /**
2347 * read_sta_data - Fetch station data
2348 * @priv: Private driver interface data
2349 * @data: Buffer for returning station information
2350 * @addr: MAC address of the station
2351 * Returns: 0 on success, -1 on failure
2352 */
2353 int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
2354 const u8 *addr);
2355
2356 /**
2357 * hapd_send_eapol - Send an EAPOL packet (AP only)
2358 * @priv: private driver interface data
2359 * @addr: Destination MAC address
2360 * @data: EAPOL packet starting with IEEE 802.1X header
2361 * @data_len: Length of the EAPOL packet in octets
2362 * @encrypt: Whether the frame should be encrypted
2363 * @own_addr: Source MAC address
2364 * @flags: WPA_STA_* flags for the destination station
2365 *
2366 * Returns: 0 on success, -1 on failure
2367 */
2368 int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
2369 size_t data_len, int encrypt,
2370 const u8 *own_addr, u32 flags);
2371
2372 /**
2373 * sta_deauth - Deauthenticate a station (AP only)
2374 * @priv: Private driver interface data
2375 * @own_addr: Source address and BSSID for the Deauthentication frame
2376 * @addr: MAC address of the station to deauthenticate
2377 * @reason: Reason code for the Deauthentiation frame
2378 * Returns: 0 on success, -1 on failure
2379 *
2380 * This function requests a specific station to be deauthenticated and
2381 * a Deauthentication frame to be sent to it.
2382 */
2383 int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
2384 int reason);
2385
2386 /**
2387 * sta_disassoc - Disassociate a station (AP only)
2388 * @priv: Private driver interface data
2389 * @own_addr: Source address and BSSID for the Disassociation frame
2390 * @addr: MAC address of the station to disassociate
2391 * @reason: Reason code for the Disassociation frame
2392 * Returns: 0 on success, -1 on failure
2393 *
2394 * This function requests a specific station to be disassociated and
2395 * a Disassociation frame to be sent to it.
2396 */
2397 int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
2398 int reason);
2399
2400 /**
2401 * sta_remove - Remove a station entry (AP only)
2402 * @priv: Private driver interface data
2403 * @addr: MAC address of the station to be removed
2404 * Returns: 0 on success, -1 on failure
2405 */
2406 int (*sta_remove)(void *priv, const u8 *addr);
2407
2408 /**
2409 * hapd_get_ssid - Get the current SSID (AP only)
2410 * @priv: Private driver interface data
2411 * @buf: Buffer for returning the SSID
2412 * @len: Maximum length of the buffer
2413 * Returns: Length of the SSID on success, -1 on failure
2414 *
2415 * This function need not be implemented if the driver uses Beacon
2416 * template from set_ap() and does not reply to Probe Request frames.
2417 */
2418 int (*hapd_get_ssid)(void *priv, u8 *buf, int len);
2419
2420 /**
2421 * hapd_set_ssid - Set SSID (AP only)
2422 * @priv: Private driver interface data
2423 * @buf: SSID
2424 * @len: Length of the SSID in octets
2425 * Returns: 0 on success, -1 on failure
2426 *
2427 * DEPRECATED - use set_ap() instead
2428 */
2429 int (*hapd_set_ssid)(void *priv, const u8 *buf, int len);
2430
2431 /**
2432 * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
2433 * @priv: Private driver interface data
2434 * @enabled: 1 = countermeasures enabled, 0 = disabled
2435 * Returns: 0 on success, -1 on failure
2436 *
2437 * This need not be implemented if the driver does not take care of
2438 * association processing.
2439 */
2440 int (*hapd_set_countermeasures)(void *priv, int enabled);
2441
2442 /**
2443 * sta_add - Add a station entry
2444 * @priv: Private driver interface data
2445 * @params: Station parameters
2446 * Returns: 0 on success, -1 on failure
2447 *
2448 * This function is used to add or set (params->set 1) a station
2449 * entry in the driver. Adding STA entries is used only if the driver
2450 * does not take care of association processing.
2451 *
2452 * With drivers that don't support full AP client state, this function
2453 * is used to add a station entry to the driver once the station has
2454 * completed association.
2455 *
2456 * With TDLS, this function is used to add or set (params->set 1)
2457 * TDLS peer entries (even with drivers that do not support full AP
2458 * client state).
2459 */
2460 int (*sta_add)(void *priv, struct hostapd_sta_add_params *params);
2461
2462 /**
2463 * get_inact_sec - Get station inactivity duration (AP only)
2464 * @priv: Private driver interface data
2465 * @addr: Station address
2466 * Returns: Number of seconds station has been inactive, -1 on failure
2467 */
2468 int (*get_inact_sec)(void *priv, const u8 *addr);
2469
2470 /**
2471 * sta_clear_stats - Clear station statistics (AP only)
2472 * @priv: Private driver interface data
2473 * @addr: Station address
2474 * Returns: 0 on success, -1 on failure
2475 */
2476 int (*sta_clear_stats)(void *priv, const u8 *addr);
2477
2478 /**
2479 * set_freq - Set channel/frequency (AP only)
2480 * @priv: Private driver interface data
2481 * @freq: Channel parameters
2482 * Returns: 0 on success, -1 on failure
2483 */
2484 int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
2485
2486 /**
2487 * set_rts - Set RTS threshold
2488 * @priv: Private driver interface data
2489 * @rts: RTS threshold in octets
2490 * Returns: 0 on success, -1 on failure
2491 */
2492 int (*set_rts)(void *priv, int rts);
2493
2494 /**
2495 * set_frag - Set fragmentation threshold
2496 * @priv: Private driver interface data
2497 * @frag: Fragmentation threshold in octets
2498 * Returns: 0 on success, -1 on failure
2499 */
2500 int (*set_frag)(void *priv, int frag);
2501
2502 /**
2503 * sta_set_flags - Set station flags (AP only)
2504 * @priv: Private driver interface data
2505 * @addr: Station address
2506 * @total_flags: Bitmap of all WPA_STA_* flags currently set
2507 * @flags_or: Bitmap of WPA_STA_* flags to add
2508 * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
2509 * Returns: 0 on success, -1 on failure
2510 */
2511 int (*sta_set_flags)(void *priv, const u8 *addr,
2512 unsigned int total_flags, unsigned int flags_or,
2513 unsigned int flags_and);
2514
2515 /**
2516 * set_tx_queue_params - Set TX queue parameters
2517 * @priv: Private driver interface data
2518 * @queue: Queue number (0 = VO, 1 = VI, 2 = BE, 3 = BK)
2519 * @aifs: AIFS
2520 * @cw_min: cwMin
2521 * @cw_max: cwMax
2522 * @burst_time: Maximum length for bursting in 0.1 msec units
2523 */
2524 int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
2525 int cw_max, int burst_time);
2526
2527 /**
2528 * if_add - Add a virtual interface
2529 * @priv: Private driver interface data
2530 * @type: Interface type
2531 * @ifname: Interface name for the new virtual interface
2532 * @addr: Local address to use for the interface or %NULL to use the
2533 * parent interface address
2534 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
2535 * @drv_priv: Pointer for overwriting the driver context or %NULL if
2536 * not allowed (applies only to %WPA_IF_AP_BSS type)
2537 * @force_ifname: Buffer for returning an interface name that the
2538 * driver ended up using if it differs from the requested ifname
2539 * @if_addr: Buffer for returning the allocated interface address
2540 * (this may differ from the requested addr if the driver cannot
2541 * change interface address)
2542 * @bridge: Bridge interface to use or %NULL if no bridge configured
2543 * @use_existing: Whether to allow existing interface to be used
2544 * @setup_ap: Whether to setup AP for %WPA_IF_AP_BSS interfaces
2545 * Returns: 0 on success, -1 on failure
2546 */
2547 int (*if_add)(void *priv, enum wpa_driver_if_type type,
2548 const char *ifname, const u8 *addr, void *bss_ctx,
2549 void **drv_priv, char *force_ifname, u8 *if_addr,
2550 const char *bridge, int use_existing, int setup_ap);
2551
2552 /**
2553 * if_remove - Remove a virtual interface
2554 * @priv: Private driver interface data
2555 * @type: Interface type
2556 * @ifname: Interface name of the virtual interface to be removed
2557 * Returns: 0 on success, -1 on failure
2558 */
2559 int (*if_remove)(void *priv, enum wpa_driver_if_type type,
2560 const char *ifname);
2561
2562 /**
2563 * set_sta_vlan - Bind a station into a specific interface (AP only)
2564 * @priv: Private driver interface data
2565 * @ifname: Interface (main or virtual BSS or VLAN)
2566 * @addr: MAC address of the associated station
2567 * @vlan_id: VLAN ID
2568 * Returns: 0 on success, -1 on failure
2569 *
2570 * This function is used to bind a station to a specific virtual
2571 * interface. It is only used if when virtual interfaces are supported,
2572 * e.g., to assign stations to different VLAN interfaces based on
2573 * information from a RADIUS server. This allows separate broadcast
2574 * domains to be used with a single BSS.
2575 */
2576 int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
2577 int vlan_id);
2578
2579 /**
2580 * commit - Optional commit changes handler (AP only)
2581 * @priv: driver private data
2582 * Returns: 0 on success, -1 on failure
2583 *
2584 * This optional handler function can be registered if the driver
2585 * interface implementation needs to commit changes (e.g., by setting
2586 * network interface up) at the end of initial configuration. If set,
2587 * this handler will be called after initial setup has been completed.
2588 */
2589 int (*commit)(void *priv);
2590
2591 /**
2592 * send_ether - Send an ethernet packet (AP only)
2593 * @priv: private driver interface data
2594 * @dst: Destination MAC address
2595 * @src: Source MAC address
2596 * @proto: Ethertype
2597 * @data: EAPOL packet starting with IEEE 802.1X header
2598 * @data_len: Length of the EAPOL packet in octets
2599 * Returns: 0 on success, -1 on failure
2600 */
2601 int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
2602 const u8 *data, size_t data_len);
2603
2604 /**
2605 * set_radius_acl_auth - Notification of RADIUS ACL change
2606 * @priv: Private driver interface data
2607 * @mac: MAC address of the station
2608 * @accepted: Whether the station was accepted
2609 * @session_timeout: Session timeout for the station
2610 * Returns: 0 on success, -1 on failure
2611 */
2612 int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted,
2613 u32 session_timeout);
2614
2615 /**
2616 * set_radius_acl_expire - Notification of RADIUS ACL expiration
2617 * @priv: Private driver interface data
2618 * @mac: MAC address of the station
2619 * Returns: 0 on success, -1 on failure
2620 */
2621 int (*set_radius_acl_expire)(void *priv, const u8 *mac);
2622
2623 /**
2624 * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
2625 * @priv: Private driver interface data
2626 * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
2627 * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
2628 * extra IE(s)
2629 * @assocresp: WPS IE(s) for (Re)Association Response frames or %NULL
2630 * to remove extra IE(s)
2631 * Returns: 0 on success, -1 on failure
2632 *
2633 * This is an optional function to add WPS IE in the kernel driver for
2634 * Beacon and Probe Response frames. This can be left undefined (set
2635 * to %NULL) if the driver uses the Beacon template from set_ap()
2636 * and does not process Probe Request frames. If the driver takes care
2637 * of (Re)Association frame processing, the assocresp buffer includes
2638 * WPS IE(s) that need to be added to (Re)Association Response frames
2639 * whenever a (Re)Association Request frame indicated use of WPS.
2640 *
2641 * This will also be used to add P2P IE(s) into Beacon/Probe Response
2642 * frames when operating as a GO. The driver is responsible for adding
2643 * timing related attributes (e.g., NoA) in addition to the IEs
2644 * included here by appending them after these buffers. This call is
2645 * also used to provide Probe Response IEs for P2P Listen state
2646 * operations for drivers that generate the Probe Response frames
2647 * internally.
2648 *
2649 * DEPRECATED - use set_ap() instead
2650 */
2651 int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon,
2652 const struct wpabuf *proberesp,
2653 const struct wpabuf *assocresp);
2654
2655 /**
2656 * set_supp_port - Set IEEE 802.1X Supplicant Port status
2657 * @priv: Private driver interface data
2658 * @authorized: Whether the port is authorized
2659 * Returns: 0 on success, -1 on failure
2660 */
2661 int (*set_supp_port)(void *priv, int authorized);
2662
2663 /**
2664 * set_wds_sta - Bind a station into a 4-address WDS (AP only)
2665 * @priv: Private driver interface data
2666 * @addr: MAC address of the associated station
2667 * @aid: Association ID
2668 * @val: 1 = bind to 4-address WDS; 0 = unbind
2669 * @bridge_ifname: Bridge interface to use for the WDS station or %NULL
2670 * to indicate that bridge is not to be used
2671 * @ifname_wds: Buffer to return the interface name for the new WDS
2672 * station or %NULL to indicate name is not returned.
2673 * Returns: 0 on success, -1 on failure
2674 */
2675 int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val,
2676 const char *bridge_ifname, char *ifname_wds);
2677
2678 /**
2679 * send_action - Transmit an Action frame
2680 * @priv: Private driver interface data
2681 * @freq: Frequency (in MHz) of the channel
2682 * @wait: Time to wait off-channel for a response (in ms), or zero
2683 * @dst: Destination MAC address (Address 1)
2684 * @src: Source MAC address (Address 2)
2685 * @bssid: BSSID (Address 3)
2686 * @data: Frame body
2687 * @data_len: data length in octets
2688 @ @no_cck: Whether CCK rates must not be used to transmit this frame
2689 * Returns: 0 on success, -1 on failure
2690 *
2691 * This command can be used to request the driver to transmit an action
2692 * frame to the specified destination.
2693 *
2694 * If the %WPA_DRIVER_FLAGS_OFFCHANNEL_TX flag is set, the frame will
2695 * be transmitted on the given channel and the device will wait for a
2696 * response on that channel for the given wait time.
2697 *
2698 * If the flag is not set, the wait time will be ignored. In this case,
2699 * if a remain-on-channel duration is in progress, the frame must be
2700 * transmitted on that channel; alternatively the frame may be sent on
2701 * the current operational channel (if in associated state in station
2702 * mode or while operating as an AP.)
2703 */
2704 int (*send_action)(void *priv, unsigned int freq, unsigned int wait,
2705 const u8 *dst, const u8 *src, const u8 *bssid,
2706 const u8 *data, size_t data_len, int no_cck);
2707
2708 /**
2709 * send_action_cancel_wait - Cancel action frame TX wait
2710 * @priv: Private driver interface data
2711 *
2712 * This command cancels the wait time associated with sending an action
2713 * frame. It is only available when %WPA_DRIVER_FLAGS_OFFCHANNEL_TX is
2714 * set in the driver flags.
2715 */
2716 void (*send_action_cancel_wait)(void *priv);
2717
2718 /**
2719 * remain_on_channel - Remain awake on a channel
2720 * @priv: Private driver interface data
2721 * @freq: Frequency (in MHz) of the channel
2722 * @duration: Duration in milliseconds
2723 * Returns: 0 on success, -1 on failure
2724 *
2725 * This command is used to request the driver to remain awake on the
2726 * specified channel for the specified duration and report received
2727 * Action frames with EVENT_RX_MGMT events. Optionally, received
2728 * Probe Request frames may also be requested to be reported by calling
2729 * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
2730 *
2731 * The driver may not be at the requested channel when this function
2732 * returns, i.e., the return code is only indicating whether the
2733 * request was accepted. The caller will need to wait until the
2734 * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
2735 * completed the channel change. This may take some time due to other
2736 * need for the radio and the caller should be prepared to timing out
2737 * its wait since there are no guarantees on when this request can be
2738 * executed.
2739 */
2740 int (*remain_on_channel)(void *priv, unsigned int freq,
2741 unsigned int duration);
2742
2743 /**
2744 * cancel_remain_on_channel - Cancel remain-on-channel operation
2745 * @priv: Private driver interface data
2746 *
2747 * This command can be used to cancel a remain-on-channel operation
2748 * before its originally requested duration has passed. This could be
2749 * used, e.g., when remain_on_channel() is used to request extra time
2750 * to receive a response to an Action frame and the response is
2751 * received when there is still unneeded time remaining on the
2752 * remain-on-channel operation.
2753 */
2754 int (*cancel_remain_on_channel)(void *priv);
2755
2756 /**
2757 * probe_req_report - Request Probe Request frames to be indicated
2758 * @priv: Private driver interface data
2759 * @report: Whether to report received Probe Request frames
2760 * Returns: 0 on success, -1 on failure (or if not supported)
2761 *
2762 * This command can be used to request the driver to indicate when
2763 * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
2764 * Since this operation may require extra resources, e.g., due to less
2765 * optimal hardware/firmware RX filtering, many drivers may disable
2766 * Probe Request reporting at least in station mode. This command is
2767 * used to notify the driver when the Probe Request frames need to be
2768 * reported, e.g., during remain-on-channel operations.
2769 */
2770 int (*probe_req_report)(void *priv, int report);
2771
2772 /**
2773 * deinit_ap - Deinitialize AP mode
2774 * @priv: Private driver interface data
2775 * Returns: 0 on success, -1 on failure (or if not supported)
2776 *
2777 * This optional function can be used to disable AP mode related
2778 * configuration. If the interface was not dynamically added,
2779 * change the driver mode to station mode to allow normal station
2780 * operations like scanning to be completed.
2781 */
2782 int (*deinit_ap)(void *priv);
2783
2784 /**
2785 * deinit_p2p_cli - Deinitialize P2P client mode
2786 * @priv: Private driver interface data
2787 * Returns: 0 on success, -1 on failure (or if not supported)
2788 *
2789 * This optional function can be used to disable P2P client mode. If the
2790 * interface was not dynamically added, change the interface type back
2791 * to station mode.
2792 */
2793 int (*deinit_p2p_cli)(void *priv);
2794
2795 /**
2796 * suspend - Notification on system suspend/hibernate event
2797 * @priv: Private driver interface data
2798 */
2799 void (*suspend)(void *priv);
2800
2801 /**
2802 * resume - Notification on system resume/thaw event
2803 * @priv: Private driver interface data
2804 */
2805 void (*resume)(void *priv);
2806
2807 /**
2808 * signal_monitor - Set signal monitoring parameters
2809 * @priv: Private driver interface data
2810 * @threshold: Threshold value for signal change events; 0 = disabled
2811 * @hysteresis: Minimum change in signal strength before indicating a
2812 * new event
2813 * Returns: 0 on success, -1 on failure (or if not supported)
2814 *
2815 * This function can be used to configure monitoring of signal strength
2816 * with the current AP. Whenever signal strength drops below the
2817 * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
2818 * should be generated assuming the signal strength has changed at
2819 * least %hysteresis from the previously indicated signal change event.
2820 */
2821 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
2822
2823 /**
2824 * send_frame - Send IEEE 802.11 frame (testing use only)
2825 * @priv: Private driver interface data
2826 * @data: IEEE 802.11 frame with IEEE 802.11 header
2827 * @data_len: Size of the frame
2828 * @encrypt: Whether to encrypt the frame (if keys are set)
2829 * Returns: 0 on success, -1 on failure
2830 *
2831 * This function is only used for debugging purposes and is not
2832 * required to be implemented for normal operations.
2833 */
2834 int (*send_frame)(void *priv, const u8 *data, size_t data_len,
2835 int encrypt);
2836
2837 /**
2838 * get_noa - Get current Notice of Absence attribute payload
2839 * @priv: Private driver interface data
2840 * @buf: Buffer for returning NoA
2841 * @buf_len: Buffer length in octets
2842 * Returns: Number of octets used in buf, 0 to indicate no NoA is being
2843 * advertized, or -1 on failure
2844 *
2845 * This function is used to fetch the current Notice of Absence
2846 * attribute value from GO.
2847 */
2848 int (*get_noa)(void *priv, u8 *buf, size_t buf_len);
2849
2850 /**
2851 * set_noa - Set Notice of Absence parameters for GO (testing)
2852 * @priv: Private driver interface data
2853 * @count: Count
2854 * @start: Start time in ms from next TBTT
2855 * @duration: Duration in ms
2856 * Returns: 0 on success or -1 on failure
2857 *
2858 * This function is used to set Notice of Absence parameters for GO. It
2859 * is used only for testing. To disable NoA, all parameters are set to
2860 * 0.
2861 */
2862 int (*set_noa)(void *priv, u8 count, int start, int duration);
2863
2864 /**
2865 * set_p2p_powersave - Set P2P power save options
2866 * @priv: Private driver interface data
2867 * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change
2868 * @opp_ps: 0 = disable, 1 = enable, -1 = no change
2869 * @ctwindow: 0.. = change (msec), -1 = no change
2870 * Returns: 0 on success or -1 on failure
2871 */
2872 int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps,
2873 int ctwindow);
2874
2875 /**
2876 * ampdu - Enable/disable aggregation
2877 * @priv: Private driver interface data
2878 * @ampdu: 1/0 = enable/disable A-MPDU aggregation
2879 * Returns: 0 on success or -1 on failure
2880 */
2881 int (*ampdu)(void *priv, int ampdu);
2882
2883 /**
2884 * get_radio_name - Get physical radio name for the device
2885 * @priv: Private driver interface data
2886 * Returns: Radio name or %NULL if not known
2887 *
2888 * The returned data must not be modified by the caller. It is assumed
2889 * that any interface that has the same radio name as another is
2890 * sharing the same physical radio. This information can be used to
2891 * share scan results etc. information between the virtual interfaces
2892 * to speed up various operations.
2893 */
2894 const char * (*get_radio_name)(void *priv);
2895
2896 /**
2897 * send_tdls_mgmt - for sending TDLS management packets
2898 * @priv: private driver interface data
2899 * @dst: Destination (peer) MAC address
2900 * @action_code: TDLS action code for the mssage
2901 * @dialog_token: Dialog Token to use in the message (if needed)
2902 * @status_code: Status Code or Reason Code to use (if needed)
2903 * @peer_capab: TDLS peer capability (TDLS_PEER_* bitfield)
2904 * @initiator: Is the current end the TDLS link initiator
2905 * @buf: TDLS IEs to add to the message
2906 * @len: Length of buf in octets
2907 * Returns: 0 on success, negative (<0) on failure
2908 *
2909 * This optional function can be used to send packet to driver which is
2910 * responsible for receiving and sending all TDLS packets.
2911 */
2912 int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code,
2913 u8 dialog_token, u16 status_code, u32 peer_capab,
2914 int initiator, const u8 *buf, size_t len);
2915
2916 /**
2917 * tdls_oper - Ask the driver to perform high-level TDLS operations
2918 * @priv: Private driver interface data
2919 * @oper: TDLS high-level operation. See %enum tdls_oper
2920 * @peer: Destination (peer) MAC address
2921 * Returns: 0 on success, negative (<0) on failure
2922 *
2923 * This optional function can be used to send high-level TDLS commands
2924 * to the driver.
2925 */
2926 int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer);
2927
2928 /**
2929 * wnm_oper - Notify driver of the WNM frame reception
2930 * @priv: Private driver interface data
2931 * @oper: WNM operation. See %enum wnm_oper
2932 * @peer: Destination (peer) MAC address
2933 * @buf: Buffer for the driver to fill in (for getting IE)
2934 * @buf_len: Return the len of buf
2935 * Returns: 0 on success, negative (<0) on failure
2936 */
2937 int (*wnm_oper)(void *priv, enum wnm_oper oper, const u8 *peer,
2938 u8 *buf, u16 *buf_len);
2939
2940 /**
2941 * set_qos_map - Set QoS Map
2942 * @priv: Private driver interface data
2943 * @qos_map_set: QoS Map
2944 * @qos_map_set_len: Length of QoS Map
2945 */
2946 int (*set_qos_map)(void *priv, const u8 *qos_map_set,
2947 u8 qos_map_set_len);
2948
2949 /**
2950 * br_add_ip_neigh - Add a neigh to the bridge ip neigh table
2951 * @priv: Private driver interface data
2952 * @version: IP version of the IP address, 4 or 6
2953 * @ipaddr: IP address for the neigh entry
2954 * @prefixlen: IP address prefix length
2955 * @addr: Corresponding MAC address
2956 * Returns: 0 on success, negative (<0) on failure
2957 */
2958 int (*br_add_ip_neigh)(void *priv, u8 version, const u8 *ipaddr,
2959 int prefixlen, const u8 *addr);
2960
2961 /**
2962 * br_delete_ip_neigh - Remove a neigh from the bridge ip neigh table
2963 * @priv: Private driver interface data
2964 * @version: IP version of the IP address, 4 or 6
2965 * @ipaddr: IP address for the neigh entry
2966 * Returns: 0 on success, negative (<0) on failure
2967 */
2968 int (*br_delete_ip_neigh)(void *priv, u8 version, const u8 *ipaddr);
2969
2970 /**
2971 * br_port_set_attr - Set a bridge port attribute
2972 * @attr: Bridge port attribute to set
2973 * @val: Value to be set
2974 * Returns: 0 on success, negative (<0) on failure
2975 */
2976 int (*br_port_set_attr)(void *priv, enum drv_br_port_attr attr,
2977 unsigned int val);
2978
2979 /**
2980 * br_port_set_attr - Set a bridge network parameter
2981 * @param: Bridge parameter to set
2982 * @val: Value to be set
2983 * Returns: 0 on success, negative (<0) on failure
2984 */
2985 int (*br_set_net_param)(void *priv, enum drv_br_net_param param,
2986 unsigned int val);
2987
2988 /**
2989 * set_wowlan - Set wake-on-wireless triggers
2990 * @priv: Private driver interface data
2991 * @triggers: wowlan triggers
2992 */
2993 int (*set_wowlan)(void *priv, const struct wowlan_triggers *triggers);
2994
2995 /**
2996 * signal_poll - Get current connection information
2997 * @priv: Private driver interface data
2998 * @signal_info: Connection info structure
2999 */
3000 int (*signal_poll)(void *priv, struct wpa_signal_info *signal_info);
3001
3002 /**
3003 * set_authmode - Set authentication algorithm(s) for static WEP
3004 * @priv: Private driver interface data
3005 * @authmode: 1=Open System, 2=Shared Key, 3=both
3006 * Returns: 0 on success, -1 on failure
3007 *
3008 * This function can be used to set authentication algorithms for AP
3009 * mode when static WEP is used. If the driver uses user space MLME/SME
3010 * implementation, there is no need to implement this function.
3011 *
3012 * DEPRECATED - use set_ap() instead
3013 */
3014 int (*set_authmode)(void *priv, int authmode);
3015
3016 #ifdef ANDROID
3017 /**
3018 * driver_cmd - Execute driver-specific command
3019 * @priv: Private driver interface data
3020 * @cmd: Command to execute
3021 * @buf: Return buffer
3022 * @buf_len: Buffer length
3023 * Returns: 0 on success, -1 on failure
3024 */
3025 int (*driver_cmd)(void *priv, char *cmd, char *buf, size_t buf_len);
3026 #endif /* ANDROID */
3027
3028 /**
3029 * vendor_cmd - Execute vendor specific command
3030 * @priv: Private driver interface data
3031 * @vendor_id: Vendor id
3032 * @subcmd: Vendor command id
3033 * @data: Vendor command parameters (%NULL if no parameters)
3034 * @data_len: Data length
3035 * @buf: Return buffer (%NULL to ignore reply)
3036 * Returns: 0 on success, negative (<0) on failure
3037 *
3038 * This function handles vendor specific commands that are passed to
3039 * the driver/device. The command is identified by vendor id and
3040 * command id. Parameters can be passed as argument to the command
3041 * in the data buffer. Reply (if any) will be filled in the supplied
3042 * return buffer.
3043 *
3044 * The exact driver behavior is driver interface and vendor specific. As
3045 * an example, this will be converted to a vendor specific cfg80211
3046 * command in case of the nl80211 driver interface.
3047 */
3048 int (*vendor_cmd)(void *priv, unsigned int vendor_id,
3049 unsigned int subcmd, const u8 *data, size_t data_len,
3050 struct wpabuf *buf);
3051
3052 /**
3053 * set_rekey_info - Set rekey information
3054 * @priv: Private driver interface data
3055 * @kek: Current KEK
3056 * @kek_len: KEK length in octets
3057 * @kck: Current KCK
3058 * @kck_len: KCK length in octets
3059 * @replay_ctr: Current EAPOL-Key Replay Counter
3060 *
3061 * This optional function can be used to provide information for the
3062 * driver/firmware to process EAPOL-Key frames in Group Key Handshake
3063 * while the host (including wpa_supplicant) is sleeping.
3064 */
3065 void (*set_rekey_info)(void *priv, const u8 *kek, size_t kek_len,
3066 const u8 *kck, size_t kck_len,
3067 const u8 *replay_ctr);
3068
3069 /**
3070 * sta_assoc - Station association indication
3071 * @priv: Private driver interface data
3072 * @own_addr: Source address and BSSID for association frame
3073 * @addr: MAC address of the station to associate
3074 * @reassoc: flag to indicate re-association
3075 * @status: association response status code
3076 * @ie: assoc response ie buffer
3077 * @len: ie buffer length
3078 * Returns: 0 on success, -1 on failure
3079 *
3080 * This function indicates the driver to send (Re)Association
3081 * Response frame to the station.
3082 */
3083 int (*sta_assoc)(void *priv, const u8 *own_addr, const u8 *addr,
3084 int reassoc, u16 status, const u8 *ie, size_t len);
3085
3086 /**
3087 * sta_auth - Station authentication indication
3088 * @priv: Private driver interface data
3089 * @own_addr: Source address and BSSID for authentication frame
3090 * @addr: MAC address of the station to associate
3091 * @seq: authentication sequence number
3092 * @status: authentication response status code
3093 * @ie: authentication frame ie buffer
3094 * @len: ie buffer length
3095 *
3096 * This function indicates the driver to send Authentication frame
3097 * to the station.
3098 */
3099 int (*sta_auth)(void *priv, const u8 *own_addr, const u8 *addr,
3100 u16 seq, u16 status, const u8 *ie, size_t len);
3101
3102 /**
3103 * add_tspec - Add traffic stream
3104 * @priv: Private driver interface data
3105 * @addr: MAC address of the station to associate
3106 * @tspec_ie: tspec ie buffer
3107 * @tspec_ielen: tspec ie length
3108 * Returns: 0 on success, -1 on failure
3109 *
3110 * This function adds the traffic steam for the station
3111 * and fills the medium_time in tspec_ie.
3112 */
3113 int (*add_tspec)(void *priv, const u8 *addr, u8 *tspec_ie,
3114 size_t tspec_ielen);
3115
3116 /**
3117 * add_sta_node - Add a station node in the driver
3118 * @priv: Private driver interface data
3119 * @addr: MAC address of the station to add
3120 * @auth_alg: authentication algorithm used by the station
3121 * Returns: 0 on success, -1 on failure
3122 *
3123 * This function adds the station node in the driver, when
3124 * the station gets added by FT-over-DS.
3125 */
3126 int (*add_sta_node)(void *priv, const u8 *addr, u16 auth_alg);
3127
3128 /**
3129 * sched_scan - Request the driver to initiate scheduled scan
3130 * @priv: Private driver interface data
3131 * @params: Scan parameters
3132 * Returns: 0 on success, -1 on failure
3133 *
3134 * This operation should be used for scheduled scan offload to
3135 * the hardware. Every time scan results are available, the
3136 * driver should report scan results event for wpa_supplicant
3137 * which will eventually request the results with
3138 * wpa_driver_get_scan_results2(). This operation is optional
3139 * and if not provided or if it returns -1, we fall back to
3140 * normal host-scheduled scans.
3141 */
3142 int (*sched_scan)(void *priv, struct wpa_driver_scan_params *params);
3143
3144 /**
3145 * stop_sched_scan - Request the driver to stop a scheduled scan
3146 * @priv: Private driver interface data
3147 * Returns: 0 on success, -1 on failure
3148 *
3149 * This should cause the scheduled scan to be stopped and
3150 * results should stop being sent. Must be supported if
3151 * sched_scan is supported.
3152 */
3153 int (*stop_sched_scan)(void *priv);
3154
3155 /**
3156 * poll_client - Probe (null data or such) the given station
3157 * @priv: Private driver interface data
3158 * @own_addr: MAC address of sending interface
3159 * @addr: MAC address of the station to probe
3160 * @qos: Indicates whether station is QoS station
3161 *
3162 * This function is used to verify whether an associated station is
3163 * still present. This function does not need to be implemented if the
3164 * driver provides such inactivity polling mechanism.
3165 */
3166 void (*poll_client)(void *priv, const u8 *own_addr,
3167 const u8 *addr, int qos);
3168
3169 /**
3170 * radio_disable - Disable/enable radio
3171 * @priv: Private driver interface data
3172 * @disabled: 1=disable 0=enable radio
3173 * Returns: 0 on success, -1 on failure
3174 *
3175 * This optional command is for testing purposes. It can be used to
3176 * disable the radio on a testbed device to simulate out-of-radio-range
3177 * conditions.
3178 */
3179 int (*radio_disable)(void *priv, int disabled);
3180
3181 /**
3182 * switch_channel - Announce channel switch and migrate the GO to the
3183 * given frequency
3184 * @priv: Private driver interface data
3185 * @settings: Settings for CSA period and new channel
3186 * Returns: 0 on success, -1 on failure
3187 *
3188 * This function is used to move the GO to the legacy STA channel to
3189 * avoid frequency conflict in single channel concurrency.
3190 */
3191 int (*switch_channel)(void *priv, struct csa_settings *settings);
3192
3193 /**
3194 * add_tx_ts - Add traffic stream
3195 * @priv: Private driver interface data
3196 * @tsid: Traffic stream ID
3197 * @addr: Receiver address
3198 * @user_prio: User priority of the traffic stream
3199 * @admitted_time: Admitted time for this TS in units of
3200 * 32 microsecond periods (per second).
3201 * Returns: 0 on success, -1 on failure
3202 */
3203 int (*add_tx_ts)(void *priv, u8 tsid, const u8 *addr, u8 user_prio,
3204 u16 admitted_time);
3205
3206 /**
3207 * del_tx_ts - Delete traffic stream
3208 * @priv: Private driver interface data
3209 * @tsid: Traffic stream ID
3210 * @addr: Receiver address
3211 * Returns: 0 on success, -1 on failure
3212 */
3213 int (*del_tx_ts)(void *priv, u8 tsid, const u8 *addr);
3214
3215 /**
3216 * Enable channel-switching with TDLS peer
3217 * @priv: Private driver interface data
3218 * @addr: MAC address of the TDLS peer
3219 * @oper_class: Operating class of the switch channel
3220 * @params: Channel specification
3221 * Returns: 0 on success, -1 on failure
3222 *
3223 * The function indicates to driver that it can start switching to a
3224 * different channel with a specified TDLS peer. The switching is
3225 * assumed on until canceled with tdls_disable_channel_switch().
3226 */
3227 int (*tdls_enable_channel_switch)(
3228 void *priv, const u8 *addr, u8 oper_class,
3229 const struct hostapd_freq_params *params);
3230
3231 /**
3232 * Disable channel switching with TDLS peer
3233 * @priv: Private driver interface data
3234 * @addr: MAC address of the TDLS peer
3235 * Returns: 0 on success, -1 on failure
3236 *
3237 * This function indicates to the driver that it should stop switching
3238 * with a given TDLS peer.
3239 */
3240 int (*tdls_disable_channel_switch)(void *priv, const u8 *addr);
3241
3242 /**
3243 * start_dfs_cac - Listen for radar interference on the channel
3244 * @priv: Private driver interface data
3245 * @freq: Channel parameters
3246 * Returns: 0 on success, -1 on failure
3247 */
3248 int (*start_dfs_cac)(void *priv, struct hostapd_freq_params *freq);
3249
3250 /**
3251 * stop_ap - Removes beacon from AP
3252 * @priv: Private driver interface data
3253 * Returns: 0 on success, -1 on failure (or if not supported)
3254 *
3255 * This optional function can be used to disable AP mode related
3256 * configuration. Unlike deinit_ap, it does not change to station
3257 * mode.
3258 */
3259 int (*stop_ap)(void *priv);
3260
3261 /**
3262 * get_survey - Retrieve survey data
3263 * @priv: Private driver interface data
3264 * @freq: If set, survey data for the specified frequency is only
3265 * being requested. If not set, all survey data is requested.
3266 * Returns: 0 on success, -1 on failure
3267 *
3268 * Use this to retrieve:
3269 *
3270 * - the observed channel noise floor
3271 * - the amount of time we have spent on the channel
3272 * - the amount of time during which we have spent on the channel that
3273 * the radio has determined the medium is busy and we cannot
3274 * transmit
3275 * - the amount of time we have spent receiving data
3276 * - the amount of time we have spent transmitting data
3277 *
3278 * This data can be used for spectrum heuristics. One example is
3279 * Automatic Channel Selection (ACS). The channel survey data is
3280 * kept on a linked list on the channel data, one entry is added
3281 * for each survey. The min_nf of the channel is updated for each
3282 * survey.
3283 */
3284 int (*get_survey)(void *priv, unsigned int freq);
3285
3286 /**
3287 * status - Get driver interface status information
3288 * @priv: Private driver interface data
3289 * @buf: Buffer for printing tou the status information
3290 * @buflen: Maximum length of the buffer
3291 * Returns: Length of written status information or -1 on failure
3292 */
3293 int (*status)(void *priv, char *buf, size_t buflen);
3294
3295 /**
3296 * roaming - Set roaming policy for driver-based BSS selection
3297 * @priv: Private driver interface data
3298 * @allowed: Whether roaming within ESS is allowed
3299 * @bssid: Forced BSSID if roaming is disabled or %NULL if not set
3300 * Returns: Length of written status information or -1 on failure
3301 *
3302 * This optional callback can be used to update roaming policy from the
3303 * associate() command (bssid being set there indicates that the driver
3304 * should not roam before getting this roaming() call to allow roaming.
3305 * If the driver does not indicate WPA_DRIVER_FLAGS_BSS_SELECTION
3306 * capability, roaming policy is handled within wpa_supplicant and there
3307 * is no need to implement or react to this callback.
3308 */
3309 int (*roaming)(void *priv, int allowed, const u8 *bssid);
3310
3311 /**
3312 * set_mac_addr - Set MAC address
3313 * @priv: Private driver interface data
3314 * @addr: MAC address to use or %NULL for setting back to permanent
3315 * Returns: 0 on success, -1 on failure
3316 */
3317 int (*set_mac_addr)(void *priv, const u8 *addr);
3318
3319 #ifdef CONFIG_MACSEC
3320 int (*macsec_init)(void *priv, struct macsec_init_params *params);
3321
3322 int (*macsec_deinit)(void *priv);
3323
3324 /**
3325 * macsec_get_capability - Inform MKA of this driver's capability
3326 * @priv: Private driver interface data
3327 * @cap: Driver's capability
3328 * Returns: 0 on success, -1 on failure
3329 */
3330 int (*macsec_get_capability)(void *priv, enum macsec_cap *cap);
3331
3332 /**
3333 * enable_protect_frames - Set protect frames status
3334 * @priv: Private driver interface data
3335 * @enabled: TRUE = protect frames enabled
3336 * FALSE = protect frames disabled
3337 * Returns: 0 on success, -1 on failure (or if not supported)
3338 */
3339 int (*enable_protect_frames)(void *priv, Boolean enabled);
3340
3341 /**
3342 * enable_encrypt - Set encryption status
3343 * @priv: Private driver interface data
3344 * @enabled: TRUE = encrypt outgoing traffic
3345 * FALSE = integrity-only protection on outgoing traffic
3346 * Returns: 0 on success, -1 on failure (or if not supported)
3347 */
3348 int (*enable_encrypt)(void *priv, Boolean enabled);
3349
3350 /**
3351 * set_replay_protect - Set replay protect status and window size
3352 * @priv: Private driver interface data
3353 * @enabled: TRUE = replay protect enabled
3354 * FALSE = replay protect disabled
3355 * @window: replay window size, valid only when replay protect enabled
3356 * Returns: 0 on success, -1 on failure (or if not supported)
3357 */
3358 int (*set_replay_protect)(void *priv, Boolean enabled, u32 window);
3359
3360 /**
3361 * set_current_cipher_suite - Set current cipher suite
3362 * @priv: Private driver interface data
3363 * @cs: EUI64 identifier
3364 * Returns: 0 on success, -1 on failure (or if not supported)
3365 */
3366 int (*set_current_cipher_suite)(void *priv, u64 cs);
3367
3368 /**
3369 * enable_controlled_port - Set controlled port status
3370 * @priv: Private driver interface data
3371 * @enabled: TRUE = controlled port enabled
3372 * FALSE = controlled port disabled
3373 * Returns: 0 on success, -1 on failure (or if not supported)
3374 */
3375 int (*enable_controlled_port)(void *priv, Boolean enabled);
3376
3377 /**
3378 * get_receive_lowest_pn - Get receive lowest pn
3379 * @priv: Private driver interface data
3380 * @sa: secure association
3381 * Returns: 0 on success, -1 on failure (or if not supported)
3382 */
3383 int (*get_receive_lowest_pn)(void *priv, struct receive_sa *sa);
3384
3385 /**
3386 * get_transmit_next_pn - Get transmit next pn
3387 * @priv: Private driver interface data
3388 * @sa: secure association
3389 * Returns: 0 on success, -1 on failure (or if not supported)
3390 */
3391 int (*get_transmit_next_pn)(void *priv, struct transmit_sa *sa);
3392
3393 /**
3394 * set_transmit_next_pn - Set transmit next pn
3395 * @priv: Private driver interface data
3396 * @sa: secure association
3397 * Returns: 0 on success, -1 on failure (or if not supported)
3398 */
3399 int (*set_transmit_next_pn)(void *priv, struct transmit_sa *sa);
3400
3401 /**
3402 * create_receive_sc - create secure channel for receiving
3403 * @priv: Private driver interface data
3404 * @sc: secure channel
3405 * @conf_offset: confidentiality offset (0, 30, or 50)
3406 * @validation: frame validation policy (0 = Disabled, 1 = Checked,
3407 * 2 = Strict)
3408 * Returns: 0 on success, -1 on failure (or if not supported)
3409 */
3410 int (*create_receive_sc)(void *priv, struct receive_sc *sc,
3411 unsigned int conf_offset,
3412 int validation);
3413
3414 /**
3415 * delete_receive_sc - delete secure connection for receiving
3416 * @priv: private driver interface data from init()
3417 * @sc: secure channel
3418 * Returns: 0 on success, -1 on failure
3419 */
3420 int (*delete_receive_sc)(void *priv, struct receive_sc *sc);
3421
3422 /**
3423 * create_receive_sa - create secure association for receive
3424 * @priv: private driver interface data from init()
3425 * @sa: secure association
3426 * Returns: 0 on success, -1 on failure
3427 */
3428 int (*create_receive_sa)(void *priv, struct receive_sa *sa);
3429
3430 /**
3431 * delete_receive_sa - Delete secure association for receive
3432 * @priv: Private driver interface data from init()
3433 * @sa: Secure association
3434 * Returns: 0 on success, -1 on failure
3435 */
3436 int (*delete_receive_sa)(void *priv, struct receive_sa *sa);
3437
3438 /**
3439 * enable_receive_sa - enable the SA for receive
3440 * @priv: private driver interface data from init()
3441 * @sa: secure association
3442 * Returns: 0 on success, -1 on failure
3443 */
3444 int (*enable_receive_sa)(void *priv, struct receive_sa *sa);
3445
3446 /**
3447 * disable_receive_sa - disable SA for receive
3448 * @priv: private driver interface data from init()
3449 * @sa: secure association
3450 * Returns: 0 on success, -1 on failure
3451 */
3452 int (*disable_receive_sa)(void *priv, struct receive_sa *sa);
3453
3454 /**
3455 * create_transmit_sc - create secure connection for transmit
3456 * @priv: private driver interface data from init()
3457 * @sc: secure channel
3458 * @conf_offset: confidentiality offset (0, 30, or 50)
3459 * Returns: 0 on success, -1 on failure
3460 */
3461 int (*create_transmit_sc)(void *priv, struct transmit_sc *sc,
3462 unsigned int conf_offset);
3463
3464 /**
3465 * delete_transmit_sc - delete secure connection for transmit
3466 * @priv: private driver interface data from init()
3467 * @sc: secure channel
3468 * Returns: 0 on success, -1 on failure
3469 */
3470 int (*delete_transmit_sc)(void *priv, struct transmit_sc *sc);
3471
3472 /**
3473 * create_transmit_sa - create secure association for transmit
3474 * @priv: private driver interface data from init()
3475 * @sa: secure association
3476 * Returns: 0 on success, -1 on failure
3477 */
3478 int (*create_transmit_sa)(void *priv, struct transmit_sa *sa);
3479
3480 /**
3481 * delete_transmit_sa - Delete secure association for transmit
3482 * @priv: Private driver interface data from init()
3483 * @sa: Secure association
3484 * Returns: 0 on success, -1 on failure
3485 */
3486 int (*delete_transmit_sa)(void *priv, struct transmit_sa *sa);
3487
3488 /**
3489 * enable_transmit_sa - enable SA for transmit
3490 * @priv: private driver interface data from init()
3491 * @sa: secure association
3492 * Returns: 0 on success, -1 on failure
3493 */
3494 int (*enable_transmit_sa)(void *priv, struct transmit_sa *sa);
3495
3496 /**
3497 * disable_transmit_sa - disable SA for transmit
3498 * @priv: private driver interface data from init()
3499 * @sa: secure association
3500 * Returns: 0 on success, -1 on failure
3501 */
3502 int (*disable_transmit_sa)(void *priv, struct transmit_sa *sa);
3503 #endif /* CONFIG_MACSEC */
3504
3505 /**
3506 * init_mesh - Driver specific initialization for mesh
3507 * @priv: Private driver interface data
3508 * Returns: 0 on success, -1 on failure
3509 */
3510 int (*init_mesh)(void *priv);
3511
3512 /**
3513 * join_mesh - Join a mesh network
3514 * @priv: Private driver interface data
3515 * @params: Mesh configuration parameters
3516 * Returns: 0 on success, -1 on failure
3517 */
3518 int (*join_mesh)(void *priv,
3519 struct wpa_driver_mesh_join_params *params);
3520
3521 /**
3522 * leave_mesh - Leave a mesh network
3523 * @priv: Private driver interface data
3524 * Returns 0 on success, -1 on failure
3525 */
3526 int (*leave_mesh)(void *priv);
3527
3528 /**
3529 * do_acs - Automatically select channel
3530 * @priv: Private driver interface data
3531 * @params: Parameters for ACS
3532 * Returns 0 on success, -1 on failure
3533 *
3534 * This command can be used to offload ACS to the driver if the driver
3535 * indicates support for such offloading (WPA_DRIVER_FLAGS_ACS_OFFLOAD).
3536 */
3537 int (*do_acs)(void *priv, struct drv_acs_params *params);
3538
3539 /**
3540 * set_band - Notify driver of band selection
3541 * @priv: Private driver interface data
3542 * @band: The selected band(s)
3543 * Returns 0 on success, -1 on failure
3544 */
3545 int (*set_band)(void *priv, enum set_band band);
3546
3547 /**
3548 * get_pref_freq_list - Get preferred frequency list for an interface
3549 * @priv: Private driver interface data
3550 * @if_type: Interface type
3551 * @num: Number of channels
3552 * @freq_list: Preferred channel frequency list encoded in MHz values
3553 * Returns 0 on success, -1 on failure
3554 *
3555 * This command can be used to query the preferred frequency list from
3556 * the driver specific to a particular interface type.
3557 */
3558 int (*get_pref_freq_list)(void *priv, enum wpa_driver_if_type if_type,
3559 unsigned int *num, unsigned int *freq_list);
3560
3561 /**
3562 * set_prob_oper_freq - Indicate probable P2P operating channel
3563 * @priv: Private driver interface data
3564 * @freq: Channel frequency in MHz
3565 * Returns 0 on success, -1 on failure
3566 *
3567 * This command can be used to inform the driver of the operating
3568 * frequency that an ongoing P2P group formation is likely to come up
3569 * on. Local device is assuming P2P Client role.
3570 */
3571 int (*set_prob_oper_freq)(void *priv, unsigned int freq);
3572
3573 /**
3574 * abort_scan - Request the driver to abort an ongoing scan
3575 * @priv: Private driver interface data
3576 * Returns 0 on success, -1 on failure
3577 */
3578 int (*abort_scan)(void *priv);
3579
3580 /**
3581 * configure_data_frame_filters - Request to configure frame filters
3582 * @priv: Private driver interface data
3583 * @filter_flags: The type of frames to filter (bitfield of
3584 * WPA_DATA_FRAME_FILTER_FLAG_*)
3585 * Returns: 0 on success or -1 on failure
3586 */
3587 int (*configure_data_frame_filters)(void *priv, u32 filter_flags);
3588
3589 /**
3590 * get_ext_capab - Get extended capabilities for the specified interface
3591 * @priv: Private driver interface data
3592 * @type: Interface type for which to get extended capabilities
3593 * @ext_capab: Extended capabilities fetched
3594 * @ext_capab_mask: Extended capabilities mask
3595 * @ext_capab_len: Length of the extended capabilities
3596 * Returns: 0 on success or -1 on failure
3597 */
3598 int (*get_ext_capab)(void *priv, enum wpa_driver_if_type type,
3599 const u8 **ext_capab, const u8 **ext_capab_mask,
3600 unsigned int *ext_capab_len);
3601
3602 /**
3603 * p2p_lo_start - Start offloading P2P listen to device
3604 * @priv: Private driver interface data
3605 * @freq: Listening frequency (MHz) for P2P listen
3606 * @period: Length of the listen operation in milliseconds
3607 * @interval: Interval for running the listen operation in milliseconds
3608 * @count: Number of times to run the listen operation
3609 * @device_types: Device primary and secondary types
3610 * @dev_types_len: Number of bytes for device_types
3611 * @ies: P2P IE and WSC IE for Probe Response frames
3612 * @ies_len: Length of ies in bytes
3613 * Returns: 0 on success or -1 on failure
3614 */
3615 int (*p2p_lo_start)(void *priv, unsigned int freq,
3616 unsigned int period, unsigned int interval,
3617 unsigned int count,
3618 const u8 *device_types, size_t dev_types_len,
3619 const u8 *ies, size_t ies_len);
3620
3621 /**
3622 * p2p_lo_stop - Stop P2P listen offload
3623 * @priv: Private driver interface data
3624 * Returns: 0 on success or -1 on failure
3625 */
3626 int (*p2p_lo_stop)(void *priv);
3627
3628 /**
3629 * set_default_scan_ies - Set default scan IEs
3630 * @priv: Private driver interface data
3631 * @ies: Scan default IEs buffer
3632 * @ies_len: Length of IEs in bytes
3633 * Returns: 0 on success or -1 on failure
3634 *
3635 * The driver can use these by default when there are no scan IEs coming
3636 * in the subsequent scan requests. Also in case of one or more of IEs
3637 * given in set_default_scan_ies() are missing in the subsequent scan
3638 * request, the driver should merge the missing scan IEs in the scan
3639 * request from the IEs set by set_default_scan_ies() in the Probe
3640 * Request frames sent.
3641 */
3642 int (*set_default_scan_ies)(void *priv, const u8 *ies, size_t ies_len);
3643
3644 /**
3645 * set_tdls_mode - Set TDLS trigger mode to the host driver
3646 * @priv: Private driver interface data
3647 * @tdls_external_control: Represents if TDLS external trigger control
3648 * mode is enabled/disabled.
3649 *
3650 * This optional callback can be used to configure the TDLS external
3651 * trigger control mode to the host driver.
3652 */
3653 int (*set_tdls_mode)(void *priv, int tdls_external_control);
3654 };
3655
3656
3657 /**
3658 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
3659 */
3660 enum wpa_event_type {
3661 /**
3662 * EVENT_ASSOC - Association completed
3663 *
3664 * This event needs to be delivered when the driver completes IEEE
3665 * 802.11 association or reassociation successfully.
3666 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
3667 * after this event has been generated. In addition, optional
3668 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
3669 * more information about the association. If the driver interface gets
3670 * both of these events at the same time, it can also include the
3671 * assoc_info data in EVENT_ASSOC call.
3672 */
3673 EVENT_ASSOC,
3674
3675 /**
3676 * EVENT_DISASSOC - Association lost
3677 *
3678 * This event should be called when association is lost either due to
3679 * receiving deauthenticate or disassociate frame from the AP or when
3680 * sending either of these frames to the current AP. If the driver
3681 * supports separate deauthentication event, EVENT_DISASSOC should only
3682 * be used for disassociation and EVENT_DEAUTH for deauthentication.
3683 * In AP mode, union wpa_event_data::disassoc_info is required.
3684 */
3685 EVENT_DISASSOC,
3686
3687 /**
3688 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
3689 *
3690 * This event must be delivered when a Michael MIC error is detected by
3691 * the local driver. Additional data for event processing is
3692 * provided with union wpa_event_data::michael_mic_failure. This
3693 * information is used to request new encyption key and to initiate
3694 * TKIP countermeasures if needed.
3695 */
3696 EVENT_MICHAEL_MIC_FAILURE,
3697
3698 /**
3699 * EVENT_SCAN_RESULTS - Scan results available
3700 *
3701 * This event must be called whenever scan results are available to be
3702 * fetched with struct wpa_driver_ops::get_scan_results(). This event
3703 * is expected to be used some time after struct wpa_driver_ops::scan()
3704 * is called. If the driver provides an unsolicited event when the scan
3705 * has been completed, this event can be used to trigger
3706 * EVENT_SCAN_RESULTS call. If such event is not available from the
3707 * driver, the driver wrapper code is expected to use a registered
3708 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
3709 * scan is expected to be completed. Optional information about
3710 * completed scan can be provided with union wpa_event_data::scan_info.
3711 */
3712 EVENT_SCAN_RESULTS,
3713
3714 /**
3715 * EVENT_ASSOCINFO - Report optional extra information for association
3716 *
3717 * This event can be used to report extra association information for
3718 * EVENT_ASSOC processing. This extra information includes IEs from
3719 * association frames and Beacon/Probe Response frames in union
3720 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
3721 * EVENT_ASSOC. Alternatively, the driver interface can include
3722 * assoc_info data in the EVENT_ASSOC call if it has all the
3723 * information available at the same point.
3724 */
3725 EVENT_ASSOCINFO,
3726
3727 /**
3728 * EVENT_INTERFACE_STATUS - Report interface status changes
3729 *
3730 * This optional event can be used to report changes in interface
3731 * status (interface added/removed) using union
3732 * wpa_event_data::interface_status. This can be used to trigger
3733 * wpa_supplicant to stop and re-start processing for the interface,
3734 * e.g., when a cardbus card is ejected/inserted.
3735 */
3736 EVENT_INTERFACE_STATUS,
3737
3738 /**
3739 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
3740 *
3741 * This event can be used to inform wpa_supplicant about candidates for
3742 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
3743 * for scan request (ap_scan=2 mode), this event is required for
3744 * pre-authentication. If wpa_supplicant is performing scan request
3745 * (ap_scan=1), this event is optional since scan results can be used
3746 * to add pre-authentication candidates. union
3747 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
3748 * candidate and priority of the candidate, e.g., based on the signal
3749 * strength, in order to try to pre-authenticate first with candidates
3750 * that are most likely targets for re-association.
3751 *
3752 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
3753 * on the candidate list. In addition, it can be called for the current
3754 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
3755 * will automatically skip pre-authentication in cases where a valid
3756 * PMKSA exists. When more than one candidate exists, this event should
3757 * be generated once for each candidate.
3758 *
3759 * Driver will be notified about successful pre-authentication with
3760 * struct wpa_driver_ops::add_pmkid() calls.
3761 */
3762 EVENT_PMKID_CANDIDATE,
3763
3764 /**
3765 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
3766 *
3767 * This event can be used to inform wpa_supplicant about desire to set
3768 * up secure direct link connection between two stations as defined in
3769 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
3770 * STAKey negotiation. The caller will need to set peer address for the
3771 * event.
3772 */
3773 EVENT_STKSTART,
3774
3775 /**
3776 * EVENT_TDLS - Request TDLS operation
3777 *
3778 * This event can be used to request a TDLS operation to be performed.
3779 */
3780 EVENT_TDLS,
3781
3782 /**
3783 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
3784 *
3785 * The driver is expected to report the received FT IEs from
3786 * FT authentication sequence from the AP. The FT IEs are included in
3787 * the extra information in union wpa_event_data::ft_ies.
3788 */
3789 EVENT_FT_RESPONSE,
3790
3791 /**
3792 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
3793 *
3794 * The driver can use this event to inform wpa_supplicant about a STA
3795 * in an IBSS with which protected frames could be exchanged. This
3796 * event starts RSN authentication with the other STA to authenticate
3797 * the STA and set up encryption keys with it.
3798 */
3799 EVENT_IBSS_RSN_START,
3800
3801 /**
3802 * EVENT_AUTH - Authentication result
3803 *
3804 * This event should be called when authentication attempt has been
3805 * completed. This is only used if the driver supports separate
3806 * authentication step (struct wpa_driver_ops::authenticate).
3807 * Information about authentication result is included in
3808 * union wpa_event_data::auth.
3809 */
3810 EVENT_AUTH,
3811
3812 /**
3813 * EVENT_DEAUTH - Authentication lost
3814 *
3815 * This event should be called when authentication is lost either due
3816 * to receiving deauthenticate frame from the AP or when sending that
3817 * frame to the current AP.
3818 * In AP mode, union wpa_event_data::deauth_info is required.
3819 */
3820 EVENT_DEAUTH,
3821
3822 /**
3823 * EVENT_ASSOC_REJECT - Association rejected
3824 *
3825 * This event should be called when (re)association attempt has been
3826 * rejected by the AP. Information about the association response is
3827 * included in union wpa_event_data::assoc_reject.
3828 */
3829 EVENT_ASSOC_REJECT,
3830
3831 /**
3832 * EVENT_AUTH_TIMED_OUT - Authentication timed out
3833 */
3834 EVENT_AUTH_TIMED_OUT,
3835
3836 /**
3837 * EVENT_ASSOC_TIMED_OUT - Association timed out
3838 */
3839 EVENT_ASSOC_TIMED_OUT,
3840
3841 /**
3842 * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
3843 */
3844 EVENT_WPS_BUTTON_PUSHED,
3845
3846 /**
3847 * EVENT_TX_STATUS - Report TX status
3848 */
3849 EVENT_TX_STATUS,
3850
3851 /**
3852 * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
3853 */
3854 EVENT_RX_FROM_UNKNOWN,
3855
3856 /**
3857 * EVENT_RX_MGMT - Report RX of a management frame
3858 */
3859 EVENT_RX_MGMT,
3860
3861 /**
3862 * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
3863 *
3864 * This event is used to indicate when the driver has started the
3865 * requested remain-on-channel duration. Information about the
3866 * operation is included in union wpa_event_data::remain_on_channel.
3867 */
3868 EVENT_REMAIN_ON_CHANNEL,
3869
3870 /**
3871 * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
3872 *
3873 * This event is used to indicate when the driver has completed
3874 * remain-on-channel duration, i.e., may noot be available on the
3875 * requested channel anymore. Information about the
3876 * operation is included in union wpa_event_data::remain_on_channel.
3877 */
3878 EVENT_CANCEL_REMAIN_ON_CHANNEL,
3879
3880 /**
3881 * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
3882 *
3883 * This event is used to indicate when a Probe Request frame has been
3884 * received. Information about the received frame is included in
3885 * union wpa_event_data::rx_probe_req. The driver is required to report
3886 * these events only after successfully completed probe_req_report()
3887 * commands to request the events (i.e., report parameter is non-zero)
3888 * in station mode. In AP mode, Probe Request frames should always be
3889 * reported.
3890 */
3891 EVENT_RX_PROBE_REQ,
3892
3893 /**
3894 * EVENT_NEW_STA - New wired device noticed
3895 *
3896 * This event is used to indicate that a new device has been detected
3897 * in a network that does not use association-like functionality (i.e.,
3898 * mainly wired Ethernet). This can be used to start EAPOL
3899 * authenticator when receiving a frame from a device. The address of
3900 * the device is included in union wpa_event_data::new_sta.
3901 */
3902 EVENT_NEW_STA,
3903
3904 /**
3905 * EVENT_EAPOL_RX - Report received EAPOL frame
3906 *
3907 * When in AP mode with hostapd, this event is required to be used to
3908 * deliver the receive EAPOL frames from the driver.
3909 */
3910 EVENT_EAPOL_RX,
3911
3912 /**
3913 * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
3914 *
3915 * This event is used to indicate changes in the signal strength
3916 * observed in frames received from the current AP if signal strength
3917 * monitoring has been enabled with signal_monitor().
3918 */
3919 EVENT_SIGNAL_CHANGE,
3920
3921 /**
3922 * EVENT_INTERFACE_ENABLED - Notify that interface was enabled
3923 *
3924 * This event is used to indicate that the interface was enabled after
3925 * having been previously disabled, e.g., due to rfkill.
3926 */
3927 EVENT_INTERFACE_ENABLED,
3928
3929 /**
3930 * EVENT_INTERFACE_DISABLED - Notify that interface was disabled
3931 *
3932 * This event is used to indicate that the interface was disabled,
3933 * e.g., due to rfkill.
3934 */
3935 EVENT_INTERFACE_DISABLED,
3936
3937 /**
3938 * EVENT_CHANNEL_LIST_CHANGED - Channel list changed
3939 *
3940 * This event is used to indicate that the channel list has changed,
3941 * e.g., because of a regulatory domain change triggered by scan
3942 * results including an AP advertising a country code.
3943 */
3944 EVENT_CHANNEL_LIST_CHANGED,
3945
3946 /**
3947 * EVENT_INTERFACE_UNAVAILABLE - Notify that interface is unavailable
3948 *
3949 * This event is used to indicate that the driver cannot maintain this
3950 * interface in its operation mode anymore. The most likely use for
3951 * this is to indicate that AP mode operation is not available due to
3952 * operating channel would need to be changed to a DFS channel when
3953 * the driver does not support radar detection and another virtual
3954 * interfaces caused the operating channel to change. Other similar
3955 * resource conflicts could also trigger this for station mode
3956 * interfaces. This event can be propagated when channel switching
3957 * fails.
3958 */
3959 EVENT_INTERFACE_UNAVAILABLE,
3960
3961 /**
3962 * EVENT_BEST_CHANNEL
3963 *
3964 * Driver generates this event whenever it detects a better channel
3965 * (e.g., based on RSSI or channel use). This information can be used
3966 * to improve channel selection for a new AP/P2P group.
3967 */
3968 EVENT_BEST_CHANNEL,
3969
3970 /**
3971 * EVENT_UNPROT_DEAUTH - Unprotected Deauthentication frame received
3972 *
3973 * This event should be called when a Deauthentication frame is dropped
3974 * due to it not being protected (MFP/IEEE 802.11w).
3975 * union wpa_event_data::unprot_deauth is required to provide more
3976 * details of the frame.
3977 */
3978 EVENT_UNPROT_DEAUTH,
3979
3980 /**
3981 * EVENT_UNPROT_DISASSOC - Unprotected Disassociation frame received
3982 *
3983 * This event should be called when a Disassociation frame is dropped
3984 * due to it not being protected (MFP/IEEE 802.11w).
3985 * union wpa_event_data::unprot_disassoc is required to provide more
3986 * details of the frame.
3987 */
3988 EVENT_UNPROT_DISASSOC,
3989
3990 /**
3991 * EVENT_STATION_LOW_ACK
3992 *
3993 * Driver generates this event whenever it detected that a particular
3994 * station was lost. Detection can be through massive transmission
3995 * failures for example.
3996 */
3997 EVENT_STATION_LOW_ACK,
3998
3999 /**
4000 * EVENT_IBSS_PEER_LOST - IBSS peer not reachable anymore
4001 */
4002 EVENT_IBSS_PEER_LOST,
4003
4004 /**
4005 * EVENT_DRIVER_GTK_REKEY - Device/driver did GTK rekey
4006 *
4007 * This event carries the new replay counter to notify wpa_supplicant
4008 * of the current EAPOL-Key Replay Counter in case the driver/firmware
4009 * completed Group Key Handshake while the host (including
4010 * wpa_supplicant was sleeping).
4011 */
4012 EVENT_DRIVER_GTK_REKEY,
4013
4014 /**
4015 * EVENT_SCHED_SCAN_STOPPED - Scheduled scan was stopped
4016 */
4017 EVENT_SCHED_SCAN_STOPPED,
4018
4019 /**
4020 * EVENT_DRIVER_CLIENT_POLL_OK - Station responded to poll
4021 *
4022 * This event indicates that the station responded to the poll
4023 * initiated with @poll_client.
4024 */
4025 EVENT_DRIVER_CLIENT_POLL_OK,
4026
4027 /**
4028 * EVENT_EAPOL_TX_STATUS - notify of EAPOL TX status
4029 */
4030 EVENT_EAPOL_TX_STATUS,
4031
4032 /**
4033 * EVENT_CH_SWITCH - AP or GO decided to switch channels
4034 *
4035 * Described in wpa_event_data.ch_switch
4036 * */
4037 EVENT_CH_SWITCH,
4038
4039 /**
4040 * EVENT_WNM - Request WNM operation
4041 *
4042 * This event can be used to request a WNM operation to be performed.
4043 */
4044 EVENT_WNM,
4045
4046 /**
4047 * EVENT_CONNECT_FAILED_REASON - Connection failure reason in AP mode
4048 *
4049 * This event indicates that the driver reported a connection failure
4050 * with the specified client (for example, max client reached, etc.) in
4051 * AP mode.
4052 */
4053 EVENT_CONNECT_FAILED_REASON,
4054
4055 /**
4056 * EVENT_DFS_RADAR_DETECTED - Notify of radar detection
4057 *
4058 * A radar has been detected on the supplied frequency, hostapd should
4059 * react accordingly (e.g., change channel).
4060 */
4061 EVENT_DFS_RADAR_DETECTED,
4062
4063 /**
4064 * EVENT_DFS_CAC_FINISHED - Notify that channel availability check has been completed
4065 *
4066 * After a successful CAC, the channel can be marked clear and used.
4067 */
4068 EVENT_DFS_CAC_FINISHED,
4069
4070 /**
4071 * EVENT_DFS_CAC_ABORTED - Notify that channel availability check has been aborted
4072 *
4073 * The CAC was not successful, and the channel remains in the previous
4074 * state. This may happen due to a radar being detected or other
4075 * external influences.
4076 */
4077 EVENT_DFS_CAC_ABORTED,
4078
4079 /**
4080 * EVENT_DFS_NOP_FINISHED - Notify that non-occupancy period is over
4081 *
4082 * The channel which was previously unavailable is now available again.
4083 */
4084 EVENT_DFS_NOP_FINISHED,
4085
4086 /**
4087 * EVENT_SURVEY - Received survey data
4088 *
4089 * This event gets triggered when a driver query is issued for survey
4090 * data and the requested data becomes available. The returned data is
4091 * stored in struct survey_results. The results provide at most one
4092 * survey entry for each frequency and at minimum will provide one
4093 * survey entry for one frequency. The survey data can be os_malloc()'d
4094 * and then os_free()'d, so the event callback must only copy data.
4095 */
4096 EVENT_SURVEY,
4097
4098 /**
4099 * EVENT_SCAN_STARTED - Scan started
4100 *
4101 * This indicates that driver has started a scan operation either based
4102 * on a request from wpa_supplicant/hostapd or from another application.
4103 * EVENT_SCAN_RESULTS is used to indicate when the scan has been
4104 * completed (either successfully or by getting cancelled).
4105 */
4106 EVENT_SCAN_STARTED,
4107
4108 /**
4109 * EVENT_AVOID_FREQUENCIES - Received avoid frequency range
4110 *
4111 * This event indicates a set of frequency ranges that should be avoided
4112 * to reduce issues due to interference or internal co-existence
4113 * information in the driver.
4114 */
4115 EVENT_AVOID_FREQUENCIES,
4116
4117 /**
4118 * EVENT_NEW_PEER_CANDIDATE - new (unknown) mesh peer notification
4119 */
4120 EVENT_NEW_PEER_CANDIDATE,
4121
4122 /**
4123 * EVENT_ACS_CHANNEL_SELECTED - Received selected channels by ACS
4124 *
4125 * Indicates a pair of primary and secondary channels chosen by ACS
4126 * in device.
4127 */
4128 EVENT_ACS_CHANNEL_SELECTED,
4129
4130 /**
4131 * EVENT_DFS_CAC_STARTED - Notify that channel availability check has
4132 * been started.
4133 *
4134 * This event indicates that channel availability check has been started
4135 * on a DFS frequency by a driver that supports DFS Offload.
4136 */
4137 EVENT_DFS_CAC_STARTED,
4138
4139 /**
4140 * EVENT_P2P_LO_STOP - Notify that P2P listen offload is stopped
4141 */
4142 EVENT_P2P_LO_STOP,
4143 };
4144
4145
4146 /**
4147 * struct freq_survey - Channel survey info
4148 *
4149 * @ifidx: Interface index in which this survey was observed
4150 * @freq: Center of frequency of the surveyed channel
4151 * @nf: Channel noise floor in dBm
4152 * @channel_time: Amount of time in ms the radio spent on the channel
4153 * @channel_time_busy: Amount of time in ms the radio detected some signal
4154 * that indicated to the radio the channel was not clear
4155 * @channel_time_rx: Amount of time the radio spent receiving data
4156 * @channel_time_tx: Amount of time the radio spent transmitting data
4157 * @filled: bitmask indicating which fields have been reported, see
4158 * SURVEY_HAS_* defines.
4159 * @list: Internal list pointers
4160 */
4161 struct freq_survey {
4162 u32 ifidx;
4163 unsigned int freq;
4164 s8 nf;
4165 u64 channel_time;
4166 u64 channel_time_busy;
4167 u64 channel_time_rx;
4168 u64 channel_time_tx;
4169 unsigned int filled;
4170 struct dl_list list;
4171 };
4172
4173 #define SURVEY_HAS_NF BIT(0)
4174 #define SURVEY_HAS_CHAN_TIME BIT(1)
4175 #define SURVEY_HAS_CHAN_TIME_BUSY BIT(2)
4176 #define SURVEY_HAS_CHAN_TIME_RX BIT(3)
4177 #define SURVEY_HAS_CHAN_TIME_TX BIT(4)
4178
4179
4180 /**
4181 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
4182 */
4183 union wpa_event_data {
4184 /**
4185 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
4186 *
4187 * This structure is optional for EVENT_ASSOC calls and required for
4188 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
4189 * driver interface does not need to generate separate EVENT_ASSOCINFO
4190 * calls.
4191 */
4192 struct assoc_info {
4193 /**
4194 * reassoc - Flag to indicate association or reassociation
4195 */
4196 int reassoc;
4197
4198 /**
4199 * req_ies - (Re)Association Request IEs
4200 *
4201 * If the driver generates WPA/RSN IE, this event data must be
4202 * returned for WPA handshake to have needed information. If
4203 * wpa_supplicant-generated WPA/RSN IE is used, this
4204 * information event is optional.
4205 *
4206 * This should start with the first IE (fixed fields before IEs
4207 * are not included).
4208 */
4209 const u8 *req_ies;
4210
4211 /**
4212 * req_ies_len - Length of req_ies in bytes
4213 */
4214 size_t req_ies_len;
4215
4216 /**
4217 * resp_ies - (Re)Association Response IEs
4218 *
4219 * Optional association data from the driver. This data is not
4220 * required WPA, but may be useful for some protocols and as
4221 * such, should be reported if this is available to the driver
4222 * interface.
4223 *
4224 * This should start with the first IE (fixed fields before IEs
4225 * are not included).
4226 */
4227 const u8 *resp_ies;
4228
4229 /**
4230 * resp_ies_len - Length of resp_ies in bytes
4231 */
4232 size_t resp_ies_len;
4233
4234 /**
4235 * resp_frame - (Re)Association Response frame
4236 */
4237 const u8 *resp_frame;
4238
4239 /**
4240 * resp_frame_len - (Re)Association Response frame length
4241 */
4242 size_t resp_frame_len;
4243
4244 /**
4245 * beacon_ies - Beacon or Probe Response IEs
4246 *
4247 * Optional Beacon/ProbeResp data: IEs included in Beacon or
4248 * Probe Response frames from the current AP (i.e., the one
4249 * that the client just associated with). This information is
4250 * used to update WPA/RSN IE for the AP. If this field is not
4251 * set, the results from previous scan will be used. If no
4252 * data for the new AP is found, scan results will be requested
4253 * again (without scan request). At this point, the driver is
4254 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
4255 * used).
4256 *
4257 * This should start with the first IE (fixed fields before IEs
4258 * are not included).
4259 */
4260 const u8 *beacon_ies;
4261
4262 /**
4263 * beacon_ies_len - Length of beacon_ies */
4264 size_t beacon_ies_len;
4265
4266 /**
4267 * freq - Frequency of the operational channel in MHz
4268 */
4269 unsigned int freq;
4270
4271 /**
4272 * wmm_params - WMM parameters used in this association.
4273 */
4274 struct wmm_params wmm_params;
4275
4276 /**
4277 * addr - Station address (for AP mode)
4278 */
4279 const u8 *addr;
4280
4281 /**
4282 * The following is the key management offload information
4283 * @authorized
4284 * @key_replay_ctr
4285 * @key_replay_ctr_len
4286 * @ptk_kck
4287 * @ptk_kek_len
4288 * @ptk_kek
4289 * @ptk_kek_len
4290 */
4291
4292 /**
4293 * authorized - Status of key management offload,
4294 * 1 = successful
4295 */
4296 int authorized;
4297
4298 /**
4299 * key_replay_ctr - Key replay counter value last used
4300 * in a valid EAPOL-Key frame
4301 */
4302 const u8 *key_replay_ctr;
4303
4304 /**
4305 * key_replay_ctr_len - The length of key_replay_ctr
4306 */
4307 size_t key_replay_ctr_len;
4308
4309 /**
4310 * ptk_kck - The derived PTK KCK
4311 */
4312 const u8 *ptk_kck;
4313
4314 /**
4315 * ptk_kek_len - The length of ptk_kck
4316 */
4317 size_t ptk_kck_len;
4318
4319 /**
4320 * ptk_kek - The derived PTK KEK
4321 */
4322 const u8 *ptk_kek;
4323
4324 /**
4325 * ptk_kek_len - The length of ptk_kek
4326 */
4327 size_t ptk_kek_len;
4328
4329 /**
4330 * subnet_status - The subnet status:
4331 * 0 = unknown, 1 = unchanged, 2 = changed
4332 */
4333 u8 subnet_status;
4334 } assoc_info;
4335
4336 /**
4337 * struct disassoc_info - Data for EVENT_DISASSOC events
4338 */
4339 struct disassoc_info {
4340 /**
4341 * addr - Station address (for AP mode)
4342 */
4343 const u8 *addr;
4344
4345 /**
4346 * reason_code - Reason Code (host byte order) used in
4347 * Deauthentication frame
4348 */
4349 u16 reason_code;
4350
4351 /**
4352 * ie - Optional IE(s) in Disassociation frame
4353 */
4354 const u8 *ie;
4355
4356 /**
4357 * ie_len - Length of ie buffer in octets
4358 */
4359 size_t ie_len;
4360
4361 /**
4362 * locally_generated - Whether the frame was locally generated
4363 */
4364 int locally_generated;
4365 } disassoc_info;
4366
4367 /**
4368 * struct deauth_info - Data for EVENT_DEAUTH events
4369 */
4370 struct deauth_info {
4371 /**
4372 * addr - Station address (for AP mode)
4373 */
4374 const u8 *addr;
4375
4376 /**
4377 * reason_code - Reason Code (host byte order) used in
4378 * Deauthentication frame
4379 */
4380 u16 reason_code;
4381
4382 /**
4383 * ie - Optional IE(s) in Deauthentication frame
4384 */
4385 const u8 *ie;
4386
4387 /**
4388 * ie_len - Length of ie buffer in octets
4389 */
4390 size_t ie_len;
4391
4392 /**
4393 * locally_generated - Whether the frame was locally generated
4394 */
4395 int locally_generated;
4396 } deauth_info;
4397
4398 /**
4399 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
4400 */
4401 struct michael_mic_failure {
4402 int unicast;
4403 const u8 *src;
4404 } michael_mic_failure;
4405
4406 /**
4407 * struct interface_status - Data for EVENT_INTERFACE_STATUS
4408 */
4409 struct interface_status {
4410 unsigned int ifindex;
4411 char ifname[100];
4412 enum {
4413 EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
4414 } ievent;
4415 } interface_status;
4416
4417 /**
4418 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
4419 */
4420 struct pmkid_candidate {
4421 /** BSSID of the PMKID candidate */
4422 u8 bssid[ETH_ALEN];
4423 /** Smaller the index, higher the priority */
4424 int index;
4425 /** Whether RSN IE includes pre-authenticate flag */
4426 int preauth;
4427 } pmkid_candidate;
4428
4429 /**
4430 * struct stkstart - Data for EVENT_STKSTART
4431 */
4432 struct stkstart {
4433 u8 peer[ETH_ALEN];
4434 } stkstart;
4435
4436 /**
4437 * struct tdls - Data for EVENT_TDLS
4438 */
4439 struct tdls {
4440 u8 peer[ETH_ALEN];
4441 enum {
4442 TDLS_REQUEST_SETUP,
4443 TDLS_REQUEST_TEARDOWN,
4444 TDLS_REQUEST_DISCOVER,
4445 } oper;
4446 u16 reason_code; /* for teardown */
4447 } tdls;
4448
4449 /**
4450 * struct wnm - Data for EVENT_WNM
4451 */
4452 struct wnm {
4453 u8 addr[ETH_ALEN];
4454 enum {
4455 WNM_OPER_SLEEP,
4456 } oper;
4457 enum {
4458 WNM_SLEEP_ENTER,
4459 WNM_SLEEP_EXIT
4460 } sleep_action;
4461 int sleep_intval;
4462 u16 reason_code;
4463 u8 *buf;
4464 u16 buf_len;
4465 } wnm;
4466
4467 /**
4468 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
4469 *
4470 * During FT (IEEE 802.11r) authentication sequence, the driver is
4471 * expected to use this event to report received FT IEs (MDIE, FTIE,
4472 * RSN IE, TIE, possible resource request) to the supplicant. The FT
4473 * IEs for the next message will be delivered through the
4474 * struct wpa_driver_ops::update_ft_ies() callback.
4475 */
4476 struct ft_ies {
4477 const u8 *ies;
4478 size_t ies_len;
4479 int ft_action;
4480 u8 target_ap[ETH_ALEN];
4481 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
4482 const u8 *ric_ies;
4483 /** Length of ric_ies buffer in octets */
4484 size_t ric_ies_len;
4485 } ft_ies;
4486
4487 /**
4488 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
4489 */
4490 struct ibss_rsn_start {
4491 u8 peer[ETH_ALEN];
4492 } ibss_rsn_start;
4493
4494 /**
4495 * struct auth_info - Data for EVENT_AUTH events
4496 */
4497 struct auth_info {
4498 u8 peer[ETH_ALEN];
4499 u8 bssid[ETH_ALEN];
4500 u16 auth_type;
4501 u16 auth_transaction;
4502 u16 status_code;
4503 const u8 *ies;
4504 size_t ies_len;
4505 } auth;
4506
4507 /**
4508 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
4509 */
4510 struct assoc_reject {
4511 /**
4512 * bssid - BSSID of the AP that rejected association
4513 */
4514 const u8 *bssid;
4515
4516 /**
4517 * resp_ies - (Re)Association Response IEs
4518 *
4519 * Optional association data from the driver. This data is not
4520 * required WPA, but may be useful for some protocols and as
4521 * such, should be reported if this is available to the driver
4522 * interface.
4523 *
4524 * This should start with the first IE (fixed fields before IEs
4525 * are not included).
4526 */
4527 const u8 *resp_ies;
4528
4529 /**
4530 * resp_ies_len - Length of resp_ies in bytes
4531 */
4532 size_t resp_ies_len;
4533
4534 /**
4535 * status_code - Status Code from (Re)association Response
4536 */
4537 u16 status_code;
4538
4539 /**
4540 * timed_out - Whether failure is due to timeout (etc.) rather
4541 * than explicit rejection response from the AP.
4542 */
4543 int timed_out;
4544 } assoc_reject;
4545
4546 struct timeout_event {
4547 u8 addr[ETH_ALEN];
4548 } timeout_event;
4549
4550 /**
4551 * struct tx_status - Data for EVENT_TX_STATUS events
4552 */
4553 struct tx_status {
4554 u16 type;
4555 u16 stype;
4556 const u8 *dst;
4557 const u8 *data;
4558 size_t data_len;
4559 int ack;
4560 } tx_status;
4561
4562 /**
4563 * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
4564 */
4565 struct rx_from_unknown {
4566 const u8 *bssid;
4567 const u8 *addr;
4568 int wds;
4569 } rx_from_unknown;
4570
4571 /**
4572 * struct rx_mgmt - Data for EVENT_RX_MGMT events
4573 */
4574 struct rx_mgmt {
4575 const u8 *frame;
4576 size_t frame_len;
4577 u32 datarate;
4578
4579 /**
4580 * drv_priv - Pointer to store driver private BSS information
4581 *
4582 * If not set to NULL, this is used for comparison with
4583 * hostapd_data->drv_priv to determine which BSS should process
4584 * the frame.
4585 */
4586 void *drv_priv;
4587
4588 /**
4589 * freq - Frequency (in MHz) on which the frame was received
4590 */
4591 int freq;
4592
4593 /**
4594 * ssi_signal - Signal strength in dBm (or 0 if not available)
4595 */
4596 int ssi_signal;
4597 } rx_mgmt;
4598
4599 /**
4600 * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
4601 *
4602 * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
4603 */
4604 struct remain_on_channel {
4605 /**
4606 * freq - Channel frequency in MHz
4607 */
4608 unsigned int freq;
4609
4610 /**
4611 * duration - Duration to remain on the channel in milliseconds
4612 */
4613 unsigned int duration;
4614 } remain_on_channel;
4615
4616 /**
4617 * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
4618 * @aborted: Whether the scan was aborted
4619 * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
4620 * @num_freqs: Number of entries in freqs array
4621 * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
4622 * SSID)
4623 * @num_ssids: Number of entries in ssids array
4624 * @external_scan: Whether the scan info is for an external scan
4625 * @nl_scan_event: 1 if the source of this scan event is a normal scan,
4626 * 0 if the source of the scan event is a vendor scan
4627 */
4628 struct scan_info {
4629 int aborted;
4630 const int *freqs;
4631 size_t num_freqs;
4632 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
4633 size_t num_ssids;
4634 int external_scan;
4635 int nl_scan_event;
4636 } scan_info;
4637
4638 /**
4639 * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
4640 */
4641 struct rx_probe_req {
4642 /**
4643 * sa - Source address of the received Probe Request frame
4644 */
4645 const u8 *sa;
4646
4647 /**
4648 * da - Destination address of the received Probe Request frame
4649 * or %NULL if not available
4650 */
4651 const u8 *da;
4652
4653 /**
4654 * bssid - BSSID of the received Probe Request frame or %NULL
4655 * if not available
4656 */
4657 const u8 *bssid;
4658
4659 /**
4660 * ie - IEs from the Probe Request body
4661 */
4662 const u8 *ie;
4663
4664 /**
4665 * ie_len - Length of ie buffer in octets
4666 */
4667 size_t ie_len;
4668
4669 /**
4670 * signal - signal strength in dBm (or 0 if not available)
4671 */
4672 int ssi_signal;
4673 } rx_probe_req;
4674
4675 /**
4676 * struct new_sta - Data for EVENT_NEW_STA events
4677 */
4678 struct new_sta {
4679 const u8 *addr;
4680 } new_sta;
4681
4682 /**
4683 * struct eapol_rx - Data for EVENT_EAPOL_RX events
4684 */
4685 struct eapol_rx {
4686 const u8 *src;
4687 const u8 *data;
4688 size_t data_len;
4689 } eapol_rx;
4690
4691 /**
4692 * signal_change - Data for EVENT_SIGNAL_CHANGE events
4693 */
4694 struct wpa_signal_info signal_change;
4695
4696 /**
4697 * struct best_channel - Data for EVENT_BEST_CHANNEL events
4698 * @freq_24: Best 2.4 GHz band channel frequency in MHz
4699 * @freq_5: Best 5 GHz band channel frequency in MHz
4700 * @freq_overall: Best channel frequency in MHz
4701 *
4702 * 0 can be used to indicate no preference in either band.
4703 */
4704 struct best_channel {
4705 int freq_24;
4706 int freq_5;
4707 int freq_overall;
4708 } best_chan;
4709
4710 struct unprot_deauth {
4711 const u8 *sa;
4712 const u8 *da;
4713 u16 reason_code;
4714 } unprot_deauth;
4715
4716 struct unprot_disassoc {
4717 const u8 *sa;
4718 const u8 *da;
4719 u16 reason_code;
4720 } unprot_disassoc;
4721
4722 /**
4723 * struct low_ack - Data for EVENT_STATION_LOW_ACK events
4724 * @addr: station address
4725 */
4726 struct low_ack {
4727 u8 addr[ETH_ALEN];
4728 } low_ack;
4729
4730 /**
4731 * struct ibss_peer_lost - Data for EVENT_IBSS_PEER_LOST
4732 */
4733 struct ibss_peer_lost {
4734 u8 peer[ETH_ALEN];
4735 } ibss_peer_lost;
4736
4737 /**
4738 * struct driver_gtk_rekey - Data for EVENT_DRIVER_GTK_REKEY
4739 */
4740 struct driver_gtk_rekey {
4741 const u8 *bssid;
4742 const u8 *replay_ctr;
4743 } driver_gtk_rekey;
4744
4745 /**
4746 * struct client_poll - Data for EVENT_DRIVER_CLIENT_POLL_OK events
4747 * @addr: station address
4748 */
4749 struct client_poll {
4750 u8 addr[ETH_ALEN];
4751 } client_poll;
4752
4753 /**
4754 * struct eapol_tx_status
4755 * @dst: Original destination
4756 * @data: Data starting with IEEE 802.1X header (!)
4757 * @data_len: Length of data
4758 * @ack: Indicates ack or lost frame
4759 *
4760 * This corresponds to hapd_send_eapol if the frame sent
4761 * there isn't just reported as EVENT_TX_STATUS.
4762 */
4763 struct eapol_tx_status {
4764 const u8 *dst;
4765 const u8 *data;
4766 int data_len;
4767 int ack;
4768 } eapol_tx_status;
4769
4770 /**
4771 * struct ch_switch
4772 * @freq: Frequency of new channel in MHz
4773 * @ht_enabled: Whether this is an HT channel
4774 * @ch_offset: Secondary channel offset
4775 * @ch_width: Channel width
4776 * @cf1: Center frequency 1
4777 * @cf2: Center frequency 2
4778 */
4779 struct ch_switch {
4780 int freq;
4781 int ht_enabled;
4782 int ch_offset;
4783 enum chan_width ch_width;
4784 int cf1;
4785 int cf2;
4786 } ch_switch;
4787
4788 /**
4789 * struct connect_failed - Data for EVENT_CONNECT_FAILED_REASON
4790 * @addr: Remote client address
4791 * @code: Reason code for connection failure
4792 */
4793 struct connect_failed_reason {
4794 u8 addr[ETH_ALEN];
4795 enum {
4796 MAX_CLIENT_REACHED,
4797 BLOCKED_CLIENT
4798 } code;
4799 } connect_failed_reason;
4800
4801 /**
4802 * struct dfs_event - Data for radar detected events
4803 * @freq: Frequency of the channel in MHz
4804 */
4805 struct dfs_event {
4806 int freq;
4807 int ht_enabled;
4808 int chan_offset;
4809 enum chan_width chan_width;
4810 int cf1;
4811 int cf2;
4812 } dfs_event;
4813
4814 /**
4815 * survey_results - Survey result data for EVENT_SURVEY
4816 * @freq_filter: Requested frequency survey filter, 0 if request
4817 * was for all survey data
4818 * @survey_list: Linked list of survey data (struct freq_survey)
4819 */
4820 struct survey_results {
4821 unsigned int freq_filter;
4822 struct dl_list survey_list; /* struct freq_survey */
4823 } survey_results;
4824
4825 /**
4826 * channel_list_changed - Data for EVENT_CHANNEL_LIST_CHANGED
4827 * @initiator: Initiator of the regulatory change
4828 * @type: Regulatory change type
4829 * @alpha2: Country code (or "" if not available)
4830 */
4831 struct channel_list_changed {
4832 enum reg_change_initiator initiator;
4833 enum reg_type type;
4834 char alpha2[3];
4835 } channel_list_changed;
4836
4837 /**
4838 * freq_range - List of frequency ranges
4839 *
4840 * This is used as the data with EVENT_AVOID_FREQUENCIES.
4841 */
4842 struct wpa_freq_range_list freq_range;
4843
4844 /**
4845 * struct mesh_peer
4846 *
4847 * @peer: Peer address
4848 * @ies: Beacon IEs
4849 * @ie_len: Length of @ies
4850 *
4851 * Notification of new candidate mesh peer.
4852 */
4853 struct mesh_peer {
4854 const u8 *peer;
4855 const u8 *ies;
4856 size_t ie_len;
4857 } mesh_peer;
4858
4859 /**
4860 * struct acs_selected_channels - Data for EVENT_ACS_CHANNEL_SELECTED
4861 * @pri_channel: Selected primary channel
4862 * @sec_channel: Selected secondary channel
4863 * @vht_seg0_center_ch: VHT mode Segment0 center channel
4864 * @vht_seg1_center_ch: VHT mode Segment1 center channel
4865 * @ch_width: Selected Channel width by driver. Driver may choose to
4866 * change hostapd configured ACS channel width due driver internal
4867 * channel restrictions.
4868 * hw_mode: Selected band (used with hw_mode=any)
4869 */
4870 struct acs_selected_channels {
4871 u8 pri_channel;
4872 u8 sec_channel;
4873 u8 vht_seg0_center_ch;
4874 u8 vht_seg1_center_ch;
4875 u16 ch_width;
4876 enum hostapd_hw_mode hw_mode;
4877 } acs_selected_channels;
4878
4879 /**
4880 * struct p2p_lo_stop - Reason code for P2P Listen offload stop event
4881 * @reason_code: Reason for stopping offload
4882 * P2P_LO_STOPPED_REASON_COMPLETE: Listen offload finished as
4883 * scheduled.
4884 * P2P_LO_STOPPED_REASON_RECV_STOP_CMD: Host requested offload to
4885 * be stopped.
4886 * P2P_LO_STOPPED_REASON_INVALID_PARAM: Invalid listen offload
4887 * parameters.
4888 * P2P_LO_STOPPED_REASON_NOT_SUPPORTED: Listen offload not
4889 * supported by device.
4890 */
4891 struct p2p_lo_stop {
4892 enum {
4893 P2P_LO_STOPPED_REASON_COMPLETE = 0,
4894 P2P_LO_STOPPED_REASON_RECV_STOP_CMD,
4895 P2P_LO_STOPPED_REASON_INVALID_PARAM,
4896 P2P_LO_STOPPED_REASON_NOT_SUPPORTED,
4897 } reason_code;
4898 } p2p_lo_stop;
4899 };
4900
4901 /**
4902 * wpa_supplicant_event - Report a driver event for wpa_supplicant
4903 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
4904 * with struct wpa_driver_ops::init()
4905 * @event: event type (defined above)
4906 * @data: possible extra data for the event
4907 *
4908 * Driver wrapper code should call this function whenever an event is received
4909 * from the driver.
4910 */
4911 void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
4912 union wpa_event_data *data);
4913
4914 /**
4915 * wpa_supplicant_event_global - Report a driver event for wpa_supplicant
4916 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
4917 * with struct wpa_driver_ops::init()
4918 * @event: event type (defined above)
4919 * @data: possible extra data for the event
4920 *
4921 * Same as wpa_supplicant_event(), but we search for the interface in
4922 * wpa_global.
4923 */
4924 void wpa_supplicant_event_global(void *ctx, enum wpa_event_type event,
4925 union wpa_event_data *data);
4926
4927 /*
4928 * The following inline functions are provided for convenience to simplify
4929 * event indication for some of the common events.
4930 */
4931
4932 static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie,
4933 size_t ielen, int reassoc)
4934 {
4935 union wpa_event_data event;
4936 os_memset(&event, 0, sizeof(event));
4937 event.assoc_info.reassoc = reassoc;
4938 event.assoc_info.req_ies = ie;
4939 event.assoc_info.req_ies_len = ielen;
4940 event.assoc_info.addr = addr;
4941 wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
4942 }
4943
4944 static inline void drv_event_disassoc(void *ctx, const u8 *addr)
4945 {
4946 union wpa_event_data event;
4947 os_memset(&event, 0, sizeof(event));
4948 event.disassoc_info.addr = addr;
4949 wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
4950 }
4951
4952 static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data,
4953 size_t data_len)
4954 {
4955 union wpa_event_data event;
4956 os_memset(&event, 0, sizeof(event));
4957 event.eapol_rx.src = src;
4958 event.eapol_rx.data = data;
4959 event.eapol_rx.data_len = data_len;
4960 wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
4961 }
4962
4963 /* driver_common.c */
4964 void wpa_scan_results_free(struct wpa_scan_results *res);
4965
4966 /* Convert wpa_event_type to a string for logging */
4967 const char * event_to_string(enum wpa_event_type event);
4968
4969 /* Convert chan_width to a string for logging and control interfaces */
4970 const char * channel_width_to_string(enum chan_width width);
4971
4972 int ht_supported(const struct hostapd_hw_modes *mode);
4973 int vht_supported(const struct hostapd_hw_modes *mode);
4974
4975 struct wowlan_triggers *
4976 wpa_get_wowlan_triggers(const char *wowlan_triggers,
4977 const struct wpa_driver_capa *capa);
4978 /* Convert driver flag to string */
4979 const char * driver_flag_to_string(u64 flag);
4980
4981 /* NULL terminated array of linked in driver wrappers */
4982 extern const struct wpa_driver_ops *const wpa_drivers[];
4983
4984
4985 /* Available drivers */
4986
4987 #ifdef CONFIG_DRIVER_WEXT
4988 extern const struct wpa_driver_ops wpa_driver_wext_ops; /* driver_wext.c */
4989 #endif /* CONFIG_DRIVER_WEXT */
4990 #ifdef CONFIG_DRIVER_NL80211
4991 /* driver_nl80211.c */
4992 extern const struct wpa_driver_ops wpa_driver_nl80211_ops;
4993 #endif /* CONFIG_DRIVER_NL80211 */
4994 #ifdef CONFIG_DRIVER_HOSTAP
4995 extern const struct wpa_driver_ops wpa_driver_hostap_ops; /* driver_hostap.c */
4996 #endif /* CONFIG_DRIVER_HOSTAP */
4997 #ifdef CONFIG_DRIVER_BSD
4998 extern const struct wpa_driver_ops wpa_driver_bsd_ops; /* driver_bsd.c */
4999 #endif /* CONFIG_DRIVER_BSD */
5000 #ifdef CONFIG_DRIVER_OPENBSD
5001 /* driver_openbsd.c */
5002 extern const struct wpa_driver_ops wpa_driver_openbsd_ops;
5003 #endif /* CONFIG_DRIVER_OPENBSD */
5004 #ifdef CONFIG_DRIVER_NDIS
5005 extern struct wpa_driver_ops wpa_driver_ndis_ops; /* driver_ndis.c */
5006 #endif /* CONFIG_DRIVER_NDIS */
5007 #ifdef CONFIG_DRIVER_WIRED
5008 extern const struct wpa_driver_ops wpa_driver_wired_ops; /* driver_wired.c */
5009 #endif /* CONFIG_DRIVER_WIRED */
5010 #ifdef CONFIG_DRIVER_MACSEC_QCA
5011 /* driver_macsec_qca.c */
5012 extern const struct wpa_driver_ops wpa_driver_macsec_qca_ops;
5013 #endif /* CONFIG_DRIVER_MACSEC_QCA */
5014 #ifdef CONFIG_DRIVER_ROBOSWITCH
5015 /* driver_roboswitch.c */
5016 extern const struct wpa_driver_ops wpa_driver_roboswitch_ops;
5017 #endif /* CONFIG_DRIVER_ROBOSWITCH */
5018 #ifdef CONFIG_DRIVER_ATHEROS
5019 /* driver_atheros.c */
5020 extern const struct wpa_driver_ops wpa_driver_atheros_ops;
5021 #endif /* CONFIG_DRIVER_ATHEROS */
5022 #ifdef CONFIG_DRIVER_NONE
5023 extern const struct wpa_driver_ops wpa_driver_none_ops; /* driver_none.c */
5024 #endif /* CONFIG_DRIVER_NONE */
5025
5026 #endif /* DRIVER_H */