1 /*
2 * Driver interface definition
3 * Copyright (c) 2003-2017, 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 #include "common/wpa_common.h"
25 #ifdef CONFIG_MACSEC
26 #include "pae/ieee802_1x_kay.h"
27 #endif /* CONFIG_MACSEC */
28 #include "utils/list.h"
29
30 #define HOSTAPD_CHAN_DISABLED 0x00000001
31 #define HOSTAPD_CHAN_NO_IR 0x00000002
32 #define HOSTAPD_CHAN_RADAR 0x00000008
33 #define HOSTAPD_CHAN_HT40PLUS 0x00000010
34 #define HOSTAPD_CHAN_HT40MINUS 0x00000020
35 #define HOSTAPD_CHAN_HT40 0x00000040
36 #define HOSTAPD_CHAN_SURVEY_LIST_INITIALIZED 0x00000080
37
38 #define HOSTAPD_CHAN_DFS_UNKNOWN 0x00000000
39 #define HOSTAPD_CHAN_DFS_USABLE 0x00000100
40 #define HOSTAPD_CHAN_DFS_UNAVAILABLE 0x00000200
41 #define HOSTAPD_CHAN_DFS_AVAILABLE 0x00000300
42 #define HOSTAPD_CHAN_DFS_MASK 0x00000300
43
44 #define HOSTAPD_CHAN_VHT_80MHZ_SUBCHANNEL 0x00000800
45 #define HOSTAPD_CHAN_VHT_160MHZ_SUBCHANNEL 0x00001000
46 #define HOSTAPD_CHAN_EHT_320MHZ_SUBCHANNEL 0x00002000
47
48 #define HOSTAPD_CHAN_INDOOR_ONLY 0x00010000
49 #define HOSTAPD_CHAN_GO_CONCURRENT 0x00020000
50
51 /* Allowed bandwidth mask */
52 enum hostapd_chan_width_attr {
53 HOSTAPD_CHAN_WIDTH_10 = BIT(0),
54 HOSTAPD_CHAN_WIDTH_20 = BIT(1),
55 HOSTAPD_CHAN_WIDTH_40P = BIT(2),
56 HOSTAPD_CHAN_WIDTH_40M = BIT(3),
57 HOSTAPD_CHAN_WIDTH_80 = BIT(4),
58 HOSTAPD_CHAN_WIDTH_160 = BIT(5),
59 HOSTAPD_CHAN_WIDTH_320 = BIT(6),
60 };
61
62 /* Filter gratuitous ARP */
63 #define WPA_DATA_FRAME_FILTER_FLAG_ARP BIT(0)
64 /* Filter unsolicited Neighbor Advertisement */
65 #define WPA_DATA_FRAME_FILTER_FLAG_NA BIT(1)
66 /* Filter unicast IP packets encrypted using the GTK */
67 #define WPA_DATA_FRAME_FILTER_FLAG_GTK BIT(2)
68
69 #define HOSTAPD_DFS_REGION_FCC 1
70 #define HOSTAPD_DFS_REGION_ETSI 2
71 #define HOSTAPD_DFS_REGION_JP 3
72
73 /**
74 * enum reg_change_initiator - Regulatory change initiator
75 */
76 enum reg_change_initiator {
77 REGDOM_SET_BY_CORE,
78 REGDOM_SET_BY_USER,
79 REGDOM_SET_BY_DRIVER,
80 REGDOM_SET_BY_COUNTRY_IE,
81 REGDOM_BEACON_HINT,
82 };
83
84 /**
85 * enum reg_type - Regulatory change types
86 */
87 enum reg_type {
88 REGDOM_TYPE_UNKNOWN,
89 REGDOM_TYPE_COUNTRY,
90 REGDOM_TYPE_WORLD,
91 REGDOM_TYPE_CUSTOM_WORLD,
92 REGDOM_TYPE_INTERSECTION,
93 };
94
95 /**
96 * struct hostapd_wmm_rule - WMM regulatory rule
97 * @min_cwmin: Lower bound of CW_min value
98 * @min_cwmax: Lower bound of CW_max value
99 * @min_aifs: Lower bound of AIFS value
100 * @max_txop: Upper bound of TXOP, value in units of 32 usec
101 */
102 struct hostapd_wmm_rule {
103 int min_cwmin;
104 int min_cwmax;
105 int min_aifs;
106 int max_txop;
107 };
108
109 /**
110 * struct hostapd_channel_data - Channel information
111 */
112 struct hostapd_channel_data {
113 /**
114 * chan - Channel number (IEEE 802.11)
115 */
116 short chan;
117
118 /**
119 * freq - Frequency in MHz
120 */
121 int freq;
122
123 /**
124 * flag - Channel flags (HOSTAPD_CHAN_*)
125 */
126 int flag;
127
128 /**
129 * allowed_bw - Allowed channel width bitmask
130 *
131 * See enum hostapd_chan_width_attr.
132 */
133 u32 allowed_bw;
134
135 /**
136 * max_tx_power - Regulatory transmit power limit in dBm
137 */
138 u8 max_tx_power;
139
140 /**
141 * survey_list - Linked list of surveys (struct freq_survey)
142 */
143 struct dl_list survey_list;
144
145 /**
146 * min_nf - Minimum observed noise floor, in dBm, based on all
147 * surveyed channel data
148 */
149 s8 min_nf;
150
151 #ifdef CONFIG_ACS
152 /**
153 * interference_factor - Computed interference factor on this
154 * channel (used internally in src/ap/acs.c; driver wrappers do not
155 * need to set this)
156 */
157 long double interference_factor;
158 #endif /* CONFIG_ACS */
159
160 /**
161 * dfs_cac_ms - DFS CAC time in milliseconds
162 */
163 unsigned int dfs_cac_ms;
164
165 /**
166 * wmm_rules_valid - Indicates wmm_rules state
167 */
168 int wmm_rules_valid;
169
170 /**
171 * wmm_rules - WMM regulatory rules
172 */
173 struct hostapd_wmm_rule wmm_rules[WMM_AC_NUM];
174
175 /**
176 * punct_bitmap - RU puncturing bitmap
177 */
178 u16 punct_bitmap;
179 };
180
181 #define HE_MAC_CAPAB_0 0
182 #define HE_MAX_MAC_CAPAB_SIZE 6
183 #define HE_MAX_PHY_CAPAB_SIZE 11
184 #define HE_MAX_MCS_CAPAB_SIZE 12
185 #define HE_MAX_PPET_CAPAB_SIZE 25
186
187 /**
188 * struct he_capabilities - IEEE 802.11ax HE capabilities
189 */
190 struct he_capabilities {
191 u8 he_supported;
192 u8 phy_cap[HE_MAX_PHY_CAPAB_SIZE];
193 u8 mac_cap[HE_MAX_MAC_CAPAB_SIZE];
194 u8 mcs[HE_MAX_MCS_CAPAB_SIZE];
195 u8 ppet[HE_MAX_PPET_CAPAB_SIZE];
196 u16 he_6ghz_capa;
197 };
198
199 /* struct eht_capabilities - IEEE 802.11be EHT capabilities */
200 struct eht_capabilities {
201 bool eht_supported;
202 u16 mac_cap;
203 u8 phy_cap[EHT_PHY_CAPAB_LEN];
204 u8 mcs[EHT_MCS_NSS_CAPAB_LEN];
205 u8 ppet[EHT_PPE_THRESH_CAPAB_LEN];
206 };
207
208 #define HOSTAPD_MODE_FLAG_HT_INFO_KNOWN BIT(0)
209 #define HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN BIT(1)
210 #define HOSTAPD_MODE_FLAG_HE_INFO_KNOWN BIT(2)
211
212
213 enum ieee80211_op_mode {
214 IEEE80211_MODE_INFRA = 0,
215 IEEE80211_MODE_IBSS = 1,
216 IEEE80211_MODE_AP = 2,
217 IEEE80211_MODE_MESH = 5,
218
219 /* only add new entries before IEEE80211_MODE_NUM */
220 IEEE80211_MODE_NUM
221 };
222
223 /**
224 * struct ieee80211_edmg_config - EDMG configuration
225 *
226 * This structure describes most essential parameters needed
227 * for IEEE 802.11ay EDMG configuration
228 *
229 * @channels: Bitmap that indicates the 2.16 GHz channel(s)
230 * that are allowed to be used for transmissions.
231 * Bit 0 indicates channel 1, bit 1 indicates channel 2, etc.
232 * Set to 0 to indicate EDMG not supported.
233 * @bw_config: Channel BW Configuration subfield encodes
234 * the allowed channel bandwidth configurations
235 */
236 struct ieee80211_edmg_config {
237 u8 channels;
238 enum edmg_bw_config bw_config;
239 };
240
241 /**
242 * struct hostapd_hw_modes - Supported hardware mode information
243 */
244 struct hostapd_hw_modes {
245 /**
246 * mode - Hardware mode
247 */
248 enum hostapd_hw_mode mode;
249
250 /**
251 * is_6ghz - Whether the mode information is for the 6 GHz band
252 */
253 bool is_6ghz;
254
255 /**
256 * num_channels - Number of entries in the channels array
257 */
258 int num_channels;
259
260 /**
261 * channels - Array of supported channels
262 */
263 struct hostapd_channel_data *channels;
264
265 /**
266 * num_rates - Number of entries in the rates array
267 */
268 int num_rates;
269
270 /**
271 * rates - Array of supported rates in 100 kbps units
272 */
273 int *rates;
274
275 /**
276 * ht_capab - HT (IEEE 802.11n) capabilities
277 */
278 u16 ht_capab;
279
280 /**
281 * mcs_set - MCS (IEEE 802.11n) rate parameters
282 */
283 u8 mcs_set[16];
284
285 /**
286 * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
287 */
288 u8 a_mpdu_params;
289
290 /**
291 * vht_capab - VHT (IEEE 802.11ac) capabilities
292 */
293 u32 vht_capab;
294
295 /**
296 * vht_mcs_set - VHT MCS (IEEE 802.11ac) rate parameters
297 */
298 u8 vht_mcs_set[8];
299
300 unsigned int flags; /* HOSTAPD_MODE_FLAG_* */
301
302 /**
303 * he_capab - HE (IEEE 802.11ax) capabilities
304 */
305 struct he_capabilities he_capab[IEEE80211_MODE_NUM];
306
307 /**
308 * This structure describes the most essential parameters needed
309 * for IEEE 802.11ay EDMG configuration.
310 */
311 struct ieee80211_edmg_config edmg;
312
313 /**
314 * eht_capab - EHT (IEEE 802.11be) capabilities
315 */
316 struct eht_capabilities eht_capab[IEEE80211_MODE_NUM];
317 };
318
319
320 #define IEEE80211_CAP_ESS 0x0001
321 #define IEEE80211_CAP_IBSS 0x0002
322 #define IEEE80211_CAP_PRIVACY 0x0010
323 #define IEEE80211_CAP_RRM 0x1000
324
325 /* DMG (60 GHz) IEEE 802.11ad */
326 /* type - bits 0..1 */
327 #define IEEE80211_CAP_DMG_MASK 0x0003
328 #define IEEE80211_CAP_DMG_IBSS 0x0001 /* Tx by: STA */
329 #define IEEE80211_CAP_DMG_PBSS 0x0002 /* Tx by: PCP */
330 #define IEEE80211_CAP_DMG_AP 0x0003 /* Tx by: AP */
331
332 #define WPA_SCAN_QUAL_INVALID BIT(0)
333 #define WPA_SCAN_NOISE_INVALID BIT(1)
334 #define WPA_SCAN_LEVEL_INVALID BIT(2)
335 #define WPA_SCAN_LEVEL_DBM BIT(3)
336 #define WPA_SCAN_ASSOCIATED BIT(5)
337
338 /**
339 * struct wpa_scan_res - Scan result for an BSS/IBSS
340 * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
341 * @bssid: BSSID
342 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
343 * @max_cw: the max channel width of the connection (calculated during scan
344 * result processing)
345 * @beacon_int: beacon interval in TUs (host byte order)
346 * @caps: capability information field in host byte order
347 * @qual: signal quality
348 * @noise: noise level
349 * @level: signal level
350 * @tsf: Timestamp
351 * @age: Age of the information in milliseconds (i.e., how many milliseconds
352 * ago the last Beacon or Probe Response frame was received)
353 * @est_throughput: Estimated throughput in kbps (this is calculated during
354 * scan result processing if left zero by the driver wrapper)
355 * @snr: Signal-to-noise ratio in dB (calculated during scan result processing)
356 * @parent_tsf: Time when the Beacon/Probe Response frame was received in terms
357 * of TSF of the BSS specified by %tsf_bssid.
358 * @tsf_bssid: The BSS that %parent_tsf TSF time refers to.
359 * @beacon_newer: Whether the Beacon frame data is known to be newer
360 * @ie_len: length of the following IE field in octets
361 * @beacon_ie_len: length of the following Beacon IE field in octets
362 *
363 * This structure is used as a generic format for scan results from the
364 * driver. Each driver interface implementation is responsible for converting
365 * the driver or OS specific scan results into this format.
366 *
367 * If the driver does not support reporting all IEs, the IE data structure is
368 * constructed of the IEs that are available. This field will also need to
369 * include SSID in IE format. All drivers are encouraged to be extended to
370 * report all IEs to make it easier to support future additions.
371 *
372 * This structure data is followed by ie_len octets of IEs from Probe Response
373 * frame (or if the driver does not indicate source of IEs, these may also be
374 * from Beacon frame). After the first set of IEs, another set of IEs may follow
375 * (with beacon_ie_len octets of data) if the driver provides both IE sets.
376 */
377 struct wpa_scan_res {
378 unsigned int flags;
379 u8 bssid[ETH_ALEN];
380 int freq;
381 enum chan_width max_cw;
382 u16 beacon_int;
383 u16 caps;
384 int qual;
385 int noise;
386 int level;
387 u64 tsf;
388 unsigned int age;
389 unsigned int est_throughput;
390 int snr;
391 u64 parent_tsf;
392 u8 tsf_bssid[ETH_ALEN];
393 bool beacon_newer;
394 size_t ie_len;
395 size_t beacon_ie_len;
396 /* Followed by ie_len + beacon_ie_len octets of IE data */
397 };
398
399 /**
400 * struct wpa_scan_results - Scan results
401 * @res: Array of pointers to allocated variable length scan result entries
402 * @num: Number of entries in the scan result array
403 * @fetch_time: Time when the results were fetched from the driver
404 */
405 struct wpa_scan_results {
406 struct wpa_scan_res **res;
407 size_t num;
408 struct os_reltime fetch_time;
409 };
410
411 /**
412 * struct wpa_interface_info - Network interface information
413 * @next: Pointer to the next interface or NULL if this is the last one
414 * @ifname: Interface name that can be used with init() or init2()
415 * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
416 * not available
417 * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
418 * is not an allocated copy, i.e., get_interfaces() caller will not free
419 * this)
420 */
421 struct wpa_interface_info {
422 struct wpa_interface_info *next;
423 char *ifname;
424 char *desc;
425 const char *drv_name;
426 };
427
428 #define WPAS_MAX_SCAN_SSIDS 16
429
430 /**
431 * struct wpa_driver_scan_ssid - SSIDs to scan for
432 * @ssid - specific SSID to scan for (ProbeReq)
433 * %NULL or zero-length SSID is used to indicate active scan
434 * with wildcard SSID.
435 * @ssid_len - Length of the SSID in octets
436 */
437 struct wpa_driver_scan_ssid {
438 const u8 *ssid;
439 size_t ssid_len;
440 };
441
442 struct t2lm_mapping {
443 /**
444 * downlink - Bitmap of TIDs mapped with a link in downlink direction
445 */
446 u8 downlink;
447
448 /**
449 * uplink - Bitmap of TIDs mapped with a link in uplink direction
450 */
451 u8 uplink;
452 };
453
454 /**
455 * struct wpa_driver_scan_params - Scan parameters
456 * Data for struct wpa_driver_ops::scan2().
457 */
458 struct wpa_driver_scan_params {
459 /**
460 * ssids - SSIDs to scan for
461 */
462 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
463
464 /**
465 * num_ssids - Number of entries in ssids array
466 * Zero indicates a request for a passive scan.
467 */
468 size_t num_ssids;
469
470 /**
471 * extra_ies - Extra IE(s) to add into Probe Request or %NULL
472 */
473 const u8 *extra_ies;
474
475 /**
476 * extra_ies_len - Length of extra_ies in octets
477 */
478 size_t extra_ies_len;
479
480 /**
481 * freqs - Array of frequencies to scan or %NULL for all frequencies
482 *
483 * The frequency is set in MHz. The array is zero-terminated.
484 */
485 int *freqs;
486
487 /**
488 * filter_ssids - Filter for reporting SSIDs
489 *
490 * This optional parameter can be used to request the driver wrapper to
491 * filter scan results to include only the specified SSIDs. %NULL
492 * indicates that no filtering is to be done. This can be used to
493 * reduce memory needs for scan results in environments that have large
494 * number of APs with different SSIDs.
495 *
496 * The driver wrapper is allowed to take this allocated buffer into its
497 * own use by setting the pointer to %NULL. In that case, the driver
498 * wrapper is responsible for freeing the buffer with os_free() once it
499 * is not needed anymore.
500 */
501 struct wpa_driver_scan_filter {
502 u8 ssid[SSID_MAX_LEN];
503 size_t ssid_len;
504 } *filter_ssids;
505
506 /**
507 * num_filter_ssids - Number of entries in filter_ssids array
508 */
509 size_t num_filter_ssids;
510
511 /**
512 * filter_rssi - Filter by RSSI
513 *
514 * The driver may filter scan results in firmware to reduce host
515 * wakeups and thereby save power. Specify the RSSI threshold in s32
516 * dBm.
517 */
518 s32 filter_rssi;
519
520 /**
521 * p2p_probe - Used to disable CCK (802.11b) rates for P2P probes
522 *
523 * When set, the driver is expected to remove rates 1, 2, 5.5, and 11
524 * Mbps from the support rates element(s) in the Probe Request frames
525 * and not to transmit the frames at any of those rates.
526 */
527 unsigned int p2p_probe:1;
528
529 /**
530 * only_new_results - Request driver to report only new results
531 *
532 * This is used to request the driver to report only BSSes that have
533 * been detected after this scan request has been started, i.e., to
534 * flush old cached BSS entries.
535 */
536 unsigned int only_new_results:1;
537
538 /**
539 * low_priority - Requests driver to use a lower scan priority
540 *
541 * This is used to request the driver to use a lower scan priority
542 * if it supports such a thing.
543 */
544 unsigned int low_priority:1;
545
546 /**
547 * mac_addr_rand - Requests driver to randomize MAC address
548 */
549 unsigned int mac_addr_rand:1;
550
551 /**
552 * mac_addr - MAC address used with randomization. The address cannot be
553 * a multicast one, i.e., bit 0 of byte 0 should not be set.
554 */
555 u8 *mac_addr;
556
557 /**
558 * mac_addr_mask - MAC address mask used with randomization.
559 *
560 * Bits that are 0 in the mask should be randomized. Bits that are 1 in
561 * the mask should be taken as is from mac_addr. The mask should not
562 * allow the generation of a multicast address, i.e., bit 0 of byte 0
563 * must be set.
564 */
565 const u8 *mac_addr_mask;
566
567 /**
568 * sched_scan_plans - Scan plans for scheduled scan
569 *
570 * Each scan plan consists of the number of iterations to scan and the
571 * interval between scans. When a scan plan finishes (i.e., it was run
572 * for the specified number of iterations), the next scan plan is
573 * executed. The scan plans are executed in the order they appear in
574 * the array (lower index first). The last scan plan will run infinitely
575 * (until requested to stop), thus must not specify the number of
576 * iterations. All other scan plans must specify the number of
577 * iterations.
578 */
579 struct sched_scan_plan {
580 u32 interval; /* In seconds */
581 u32 iterations; /* Zero to run infinitely */
582 } *sched_scan_plans;
583
584 /**
585 * sched_scan_plans_num - Number of scan plans in sched_scan_plans array
586 */
587 unsigned int sched_scan_plans_num;
588
589 /**
590 * sched_scan_start_delay - Delay to use before starting the first scan
591 *
592 * Delay (in seconds) before scheduling first scan plan cycle. The
593 * driver may ignore this parameter and start immediately (or at any
594 * other time), if this feature is not supported.
595 */
596 u32 sched_scan_start_delay;
597
598 /**
599 * bssid - Specific BSSID to scan for
600 *
601 * This optional parameter can be used to replace the default wildcard
602 * BSSID with a specific BSSID to scan for if results are needed from
603 * only a single BSS.
604 */
605 const u8 *bssid;
606
607 /**
608 * scan_cookie - Unique identification representing the scan request
609 *
610 * This scan_cookie carries a unique identification representing the
611 * scan request if the host driver/kernel supports concurrent scan
612 * requests. This cookie is returned from the corresponding driver
613 * interface.
614 *
615 * Note: Unlike other parameters in this structure, scan_cookie is used
616 * only to return information instead of setting parameters for the
617 * scan.
618 */
619 u64 scan_cookie;
620
621 /**
622 * duration - Dwell time on each channel
623 *
624 * This optional parameter can be used to set the dwell time on each
625 * channel. In TUs.
626 */
627 u16 duration;
628
629 /**
630 * duration_mandatory - Whether the specified duration is mandatory
631 *
632 * If this is set, the duration specified by the %duration field is
633 * mandatory (and the driver should reject the scan request if it is
634 * unable to comply with the specified duration), otherwise it is the
635 * maximum duration and the actual duration may be shorter.
636 */
637 unsigned int duration_mandatory:1;
638
639 /**
640 * relative_rssi_set - Whether relative RSSI parameters are set
641 */
642 unsigned int relative_rssi_set:1;
643
644 /**
645 * relative_rssi - Relative RSSI for reporting better BSSs
646 *
647 * Amount of RSSI by which a BSS should be better than the current
648 * connected BSS to report the new BSS to user space.
649 */
650 s8 relative_rssi;
651
652 /**
653 * relative_adjust_band - Band to which RSSI should be adjusted
654 *
655 * The relative_adjust_rssi should be added to the band specified
656 * by relative_adjust_band.
657 */
658 enum set_band relative_adjust_band;
659
660 /**
661 * relative_adjust_rssi - RSSI to be added to relative_adjust_band
662 *
663 * An amount of relative_band_rssi should be added to the BSSs that
664 * belong to the band specified by relative_adjust_band while comparing
665 * with other bands for BSS reporting.
666 */
667 s8 relative_adjust_rssi;
668
669 /**
670 * oce_scan
671 *
672 * Enable the following OCE scan features: (WFA OCE TechSpec v1.0)
673 * - Accept broadcast Probe Response frame.
674 * - Probe Request frame deferral and suppression.
675 * - Max Channel Time - driver fills FILS request params IE with
676 * Maximum Channel Time.
677 * - Send 1st Probe Request frame in rate of minimum 5.5 Mbps.
678 */
679 unsigned int oce_scan:1;
680
681 /**
682 * p2p_include_6ghz - Include 6 GHz channels for P2P full scan
683 *
684 */
685 unsigned int p2p_include_6ghz:1;
686
687 /**
688 * non_coloc_6ghz - Force scanning of non-PSC 6 GHz channels
689 *
690 * If this is set, the driver should scan non-PSC channels from the
691 * scan request even if neighbor reports from 2.4/5 GHz APs did not
692 * report a co-located AP on these channels. The default is to scan
693 * non-PSC channels only if a co-located AP was reported on the channel.
694 */
695 unsigned int non_coloc_6ghz:1;
696
697 /**
698 * min_probe_req_content - Minimize probe request content to only have
699 * minimal requirement elements, e.g., supported rates etc., and no
700 * additional elements other then those provided by user space.
701 */
702 unsigned int min_probe_req_content:1;
703
704 /**
705 * link_id - Specify the link that is requesting the scan on an MLD
706 *
707 * This is set when operating as an AP MLD and doing an OBSS scan.
708 * -1 indicates that no particular link ID is set.
709 */
710 s8 link_id;
711
712 /*
713 * NOTE: Whenever adding new parameters here, please make sure
714 * wpa_scan_clone_params() and wpa_scan_free_params() get updated with
715 * matching changes.
716 */
717 };
718
719 /**
720 * struct wpa_driver_auth_params - Authentication parameters
721 * Data for struct wpa_driver_ops::authenticate().
722 */
723 struct wpa_driver_auth_params {
724 int freq;
725 const u8 *bssid;
726 const u8 *ssid;
727 size_t ssid_len;
728 int auth_alg;
729 const u8 *ie;
730 size_t ie_len;
731 const u8 *wep_key[4];
732 size_t wep_key_len[4];
733 int wep_tx_keyidx;
734 int local_state_change;
735
736 /**
737 * p2p - Whether this connection is a P2P group
738 */
739 int p2p;
740
741 /**
742 * auth_data - Additional elements for Authentication frame
743 *
744 * This buffer starts with the Authentication transaction sequence
745 * number field. If no special handling of such elements is needed, this
746 * pointer is %NULL. This is used with SAE and FILS.
747 */
748 const u8 *auth_data;
749
750 /**
751 * auth_data_len - Length of auth_data buffer in octets
752 */
753 size_t auth_data_len;
754
755 /**
756 * mld - Establish an MLD connection
757 */
758 bool mld;
759
760 /**
761 * mld_link_id - The link ID of the MLD AP to which we are associating
762 */
763 u8 mld_link_id;
764
765 /**
766 * The MLD AP address
767 */
768 const u8 *ap_mld_addr;
769 };
770
771 /**
772 * enum wps_mode - WPS mode
773 */
774 enum wps_mode {
775 /**
776 * WPS_MODE_NONE - No WPS provisioning being used
777 */
778 WPS_MODE_NONE,
779
780 /**
781 * WPS_MODE_OPEN - WPS provisioning with AP that is in open mode
782 */
783 WPS_MODE_OPEN,
784
785 /**
786 * WPS_MODE_PRIVACY - WPS provisioning with AP that is using protection
787 */
788 WPS_MODE_PRIVACY
789 };
790
791 /**
792 * struct hostapd_freq_params - Channel parameters
793 */
794 struct hostapd_freq_params {
795 /**
796 * mode - Mode/band (HOSTAPD_MODE_IEEE80211A, ..)
797 */
798 enum hostapd_hw_mode mode;
799
800 /**
801 * freq - Primary channel center frequency in MHz
802 */
803 int freq;
804
805 /**
806 * channel - Channel number
807 */
808 int channel;
809
810 /**
811 * ht_enabled - Whether HT is enabled
812 */
813 int ht_enabled;
814
815 /**
816 * sec_channel_offset - Secondary channel offset for HT40
817 *
818 * 0 = HT40 disabled,
819 * -1 = HT40 enabled, secondary channel below primary,
820 * 1 = HT40 enabled, secondary channel above primary
821 */
822 int sec_channel_offset;
823
824 /**
825 * vht_enabled - Whether VHT is enabled
826 */
827 int vht_enabled;
828
829 /**
830 * he_enabled - Whether HE is enabled
831 */
832 int he_enabled;
833
834 /**
835 * center_freq1 - Segment 0 center frequency in MHz
836 *
837 * Valid for both HT and VHT.
838 */
839 int center_freq1;
840
841 /**
842 * center_freq2 - Segment 1 center frequency in MHz
843 *
844 * Non-zero only for bandwidth 80 and an 80+80 channel
845 */
846 int center_freq2;
847
848 /**
849 * bandwidth - Channel bandwidth in MHz (20, 40, 80, 160)
850 */
851 int bandwidth;
852
853 /**
854 * This structure describes the most essential parameters needed
855 * for IEEE 802.11ay EDMG configuration.
856 */
857 struct ieee80211_edmg_config edmg;
858
859 /**
860 * radar_background - Whether radar/CAC background is requested
861 */
862 bool radar_background;
863
864 /**
865 * eht_enabled - Whether EHT is enabled
866 */
867 bool eht_enabled;
868
869 /**
870 * link_id: If >=0 indicates the link of the AP MLD to configure
871 */
872 int link_id;
873 };
874
875 /**
876 * struct wpa_driver_sta_auth_params - Authentication parameters
877 * Data for struct wpa_driver_ops::sta_auth().
878 */
879 struct wpa_driver_sta_auth_params {
880
881 /**
882 * own_addr - Source address and BSSID for authentication frame
883 */
884 const u8 *own_addr;
885
886 /**
887 * addr - MAC address of the station to associate
888 */
889 const u8 *addr;
890
891 /**
892 * seq - authentication sequence number
893 */
894 u16 seq;
895
896 /**
897 * status - authentication response status code
898 */
899 u16 status;
900
901 /**
902 * ie - authentication frame ie buffer
903 */
904 const u8 *ie;
905
906 /**
907 * len - ie buffer length
908 */
909 size_t len;
910
911 /**
912 * fils_auth - Indicates whether FILS authentication is being performed
913 */
914 int fils_auth;
915
916 /**
917 * fils_anonce - ANonce (required for FILS)
918 */
919 u8 fils_anonce[WPA_NONCE_LEN];
920
921 /**
922 * fils_snonce - SNonce (required for FILS)
923 */
924 u8 fils_snonce[WPA_NONCE_LEN];
925
926 /**
927 * fils_kek - key for encryption (required for FILS)
928 */
929 u8 fils_kek[WPA_KEK_MAX_LEN];
930
931 /**
932 * fils_kek_len - Length of the fils_kek in octets (required for FILS)
933 */
934 size_t fils_kek_len;
935 };
936
937 struct wpa_driver_mld_params {
938 /**
939 * mld_addr - AP's MLD address
940 */
941 const u8 *mld_addr;
942
943 /**
944 * valid_links - The valid links including the association link
945 */
946 u16 valid_links;
947
948 /**
949 * assoc_link_id - The link on which the association is performed
950 */
951 u8 assoc_link_id;
952
953 /**
954 * mld_links - Link information
955 *
956 * Should include information on all the requested links for association
957 * including the link on which the association should take place.
958 * For the association link, the ies and ies_len should be NULL and
959 * 0 respectively.
960 */
961 struct {
962 int freq;
963 const u8 *bssid;
964 const u8 *ies;
965 size_t ies_len;
966 int error;
967 bool disabled;
968 } mld_links[MAX_NUM_MLD_LINKS];
969 };
970
971 /**
972 * struct wpa_driver_associate_params - Association parameters
973 * Data for struct wpa_driver_ops::associate().
974 */
975 struct wpa_driver_associate_params {
976 /**
977 * bssid - BSSID of the selected AP
978 * This can be %NULL, if ap_scan=2 mode is used and the driver is
979 * responsible for selecting with which BSS to associate. */
980 const u8 *bssid;
981
982 /**
983 * bssid_hint - BSSID of a proposed AP
984 *
985 * This indicates which BSS has been found a suitable candidate for
986 * initial association for drivers that use driver/firmwate-based BSS
987 * selection. Unlike the @bssid parameter, @bssid_hint does not limit
988 * the driver from selecting other BSSes in the ESS.
989 */
990 const u8 *bssid_hint;
991
992 /**
993 * ssid - The selected SSID
994 */
995 const u8 *ssid;
996
997 /**
998 * ssid_len - Length of the SSID (1..32)
999 */
1000 size_t ssid_len;
1001
1002 /**
1003 * freq - channel parameters
1004 */
1005 struct hostapd_freq_params freq;
1006
1007 /**
1008 * freq_hint - Frequency of the channel the proposed AP is using
1009 *
1010 * This provides a channel on which a suitable BSS has been found as a
1011 * hint for the driver. Unlike the @freq parameter, @freq_hint does not
1012 * limit the driver from selecting other channels for
1013 * driver/firmware-based BSS selection.
1014 */
1015 int freq_hint;
1016
1017 /**
1018 * bg_scan_period - Background scan period in seconds, 0 to disable
1019 * background scan, or -1 to indicate no change to default driver
1020 * configuration
1021 */
1022 int bg_scan_period;
1023
1024 /**
1025 * beacon_int - Beacon interval for IBSS or 0 to use driver default
1026 */
1027 int beacon_int;
1028
1029 /**
1030 * wpa_ie - WPA information element for (Re)Association Request
1031 * WPA information element to be included in (Re)Association
1032 * Request (including information element id and length). Use
1033 * of this WPA IE is optional. If the driver generates the WPA
1034 * IE, it can use pairwise_suite, group_suite, group_mgmt_suite, and
1035 * key_mgmt_suite to select proper algorithms. In this case,
1036 * the driver has to notify wpa_supplicant about the used WPA
1037 * IE by generating an event that the interface code will
1038 * convert into EVENT_ASSOCINFO data (see below).
1039 *
1040 * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
1041 * instead. The driver can determine which version is used by
1042 * looking at the first byte of the IE (0xdd for WPA, 0x30 for
1043 * WPA2/RSN).
1044 *
1045 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
1046 */
1047 const u8 *wpa_ie;
1048
1049 /**
1050 * wpa_ie_len - length of the wpa_ie
1051 */
1052 size_t wpa_ie_len;
1053
1054 /**
1055 * wpa_proto - Bitfield of WPA_PROTO_* values to indicate WPA/WPA2
1056 */
1057 unsigned int wpa_proto;
1058
1059 /**
1060 * pairwise_suite - Selected pairwise cipher suite (WPA_CIPHER_*)
1061 *
1062 * This is usually ignored if @wpa_ie is used.
1063 */
1064 unsigned int pairwise_suite;
1065
1066 /**
1067 * group_suite - Selected group cipher suite (WPA_CIPHER_*)
1068 *
1069 * This is usually ignored if @wpa_ie is used.
1070 */
1071 unsigned int group_suite;
1072
1073 /**
1074 * mgmt_group_suite - Selected group management cipher suite (WPA_CIPHER_*)
1075 *
1076 * This is usually ignored if @wpa_ie is used.
1077 */
1078 unsigned int mgmt_group_suite;
1079
1080 /**
1081 * key_mgmt_suite - Selected key management suite (WPA_KEY_MGMT_*)
1082 *
1083 * This is usually ignored if @wpa_ie is used.
1084 */
1085 unsigned int key_mgmt_suite;
1086
1087 /**
1088 * allowed_key_mgmts - Bitfield of allowed key management suites
1089 * (WPA_KEY_MGMT_*) other than @key_mgmt_suite for the current
1090 * connection
1091 *
1092 * SME in the driver may choose key_mgmt from this list for the initial
1093 * connection or roaming. The driver which doesn't support this
1094 * ignores this parameter.
1095 */
1096 unsigned int allowed_key_mgmts;
1097
1098 /**
1099 * auth_alg - Allowed authentication algorithms
1100 * Bit field of WPA_AUTH_ALG_*
1101 */
1102 int auth_alg;
1103
1104 /**
1105 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
1106 */
1107 int mode;
1108
1109 /**
1110 * wep_key - WEP keys for static WEP configuration
1111 */
1112 const u8 *wep_key[4];
1113
1114 /**
1115 * wep_key_len - WEP key length for static WEP configuration
1116 */
1117 size_t wep_key_len[4];
1118
1119 /**
1120 * wep_tx_keyidx - WEP TX key index for static WEP configuration
1121 */
1122 int wep_tx_keyidx;
1123
1124 /**
1125 * mgmt_frame_protection - IEEE 802.11w management frame protection
1126 */
1127 enum mfp_options mgmt_frame_protection;
1128
1129 /**
1130 * passphrase - RSN passphrase for PSK
1131 *
1132 * This value is made available only for WPA/WPA2-Personal (PSK) and
1133 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE_PSK. This
1134 * is the 8..63 character ASCII passphrase, if available. Please note
1135 * that this can be %NULL if passphrase was not used to generate the
1136 * PSK. In that case, the psk field must be used to fetch the PSK.
1137 */
1138 const char *passphrase;
1139
1140 /**
1141 * psk - RSN PSK (alternative for passphrase for PSK)
1142 *
1143 * This value is made available only for WPA/WPA2-Personal (PSK) and
1144 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE_PSK. This
1145 * is the 32-octet (256-bit) PSK, if available. The driver wrapper
1146 * should be prepared to handle %NULL value as an error.
1147 */
1148 const u8 *psk;
1149
1150 /**
1151 * sae_password - Password for SAE authentication
1152 *
1153 * This value is made available only for WPA3-Personal (SAE) and only
1154 * for drivers that set WPA_DRIVER_FLAGS2_SAE_OFFLOAD.
1155 */
1156 const char *sae_password;
1157
1158 /**
1159 * sae_password_id - Password Identifier for SAE authentication
1160 *
1161 * This value is made available only for WPA3-Personal (SAE) and only
1162 * for drivers that set WPA_DRIVER_FLAGS2_SAE_OFFLOAD. If %NULL, SAE
1163 * password identifier is not used.
1164 */
1165 const char *sae_password_id;
1166
1167 /**
1168 * drop_unencrypted - Enable/disable unencrypted frame filtering
1169 *
1170 * Configure the driver to drop all non-EAPOL frames (both receive and
1171 * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
1172 * still be allowed for key negotiation.
1173 */
1174 int drop_unencrypted;
1175
1176 /**
1177 * prev_bssid - Previously used BSSID in this ESS
1178 *
1179 * When not %NULL, this is a request to use reassociation instead of
1180 * association.
1181 */
1182 const u8 *prev_bssid;
1183
1184 /**
1185 * wps - WPS mode
1186 *
1187 * If the driver needs to do special configuration for WPS association,
1188 * this variable provides more information on what type of association
1189 * is being requested. Most drivers should not need to use this.
1190 */
1191 enum wps_mode wps;
1192
1193 /**
1194 * p2p - Whether this connection is a P2P group
1195 */
1196 int p2p;
1197
1198 /**
1199 * uapsd - UAPSD parameters for the network
1200 * -1 = do not change defaults
1201 * AP mode: 1 = enabled, 0 = disabled
1202 * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE
1203 */
1204 int uapsd;
1205
1206 /**
1207 * fixed_bssid - Whether to force this BSSID in IBSS mode
1208 * 1 = Fix this BSSID and prevent merges.
1209 * 0 = Do not fix BSSID.
1210 */
1211 int fixed_bssid;
1212
1213 /**
1214 * fixed_freq - Fix control channel in IBSS mode
1215 * 0 = don't fix control channel (default)
1216 * 1 = fix control channel; this prevents IBSS merging with another
1217 * channel
1218 */
1219 int fixed_freq;
1220
1221 /**
1222 * disable_ht - Disable HT (IEEE 802.11n) for this connection
1223 */
1224 int disable_ht;
1225
1226 /**
1227 * htcaps - HT Capabilities over-rides
1228 *
1229 * Only bits set in the mask will be used, and not all values are used
1230 * by the kernel anyway. Currently, MCS, MPDU and MSDU fields are used.
1231 *
1232 * Pointer to struct ieee80211_ht_capabilities.
1233 */
1234 const u8 *htcaps;
1235
1236 /**
1237 * htcaps_mask - HT Capabilities over-rides mask
1238 *
1239 * Pointer to struct ieee80211_ht_capabilities.
1240 */
1241 const u8 *htcaps_mask;
1242
1243 #ifdef CONFIG_VHT_OVERRIDES
1244 /**
1245 * disable_vht - Disable VHT for this connection
1246 */
1247 int disable_vht;
1248
1249 /**
1250 * VHT capability overrides.
1251 */
1252 const struct ieee80211_vht_capabilities *vhtcaps;
1253 const struct ieee80211_vht_capabilities *vhtcaps_mask;
1254 #endif /* CONFIG_VHT_OVERRIDES */
1255
1256 #ifdef CONFIG_HE_OVERRIDES
1257 /**
1258 * disable_he - Disable HE for this connection
1259 */
1260 int disable_he;
1261 #endif /* CONFIG_HE_OVERRIDES */
1262
1263 /**
1264 * req_key_mgmt_offload - Request key management offload for connection
1265 *
1266 * Request key management offload for this connection if the device
1267 * supports it.
1268 */
1269 int req_key_mgmt_offload;
1270
1271 /**
1272 * req_handshake_offload - Request EAPOL handshake offload
1273 *
1274 * Request EAPOL handshake offload for this connection if the device
1275 * supports it.
1276 */
1277 int req_handshake_offload;
1278
1279 /**
1280 * Flag for indicating whether this association includes support for
1281 * RRM (Radio Resource Measurements)
1282 */
1283 int rrm_used;
1284
1285 /**
1286 * pbss - If set, connect to a PCP in a PBSS. Otherwise, connect to an
1287 * AP as usual. Valid for DMG network only.
1288 */
1289 int pbss;
1290
1291 /**
1292 * fils_kek - KEK for FILS association frame protection (AES-SIV)
1293 */
1294 const u8 *fils_kek;
1295
1296 /**
1297 * fils_kek_len: Length of fils_kek in bytes
1298 */
1299 size_t fils_kek_len;
1300
1301 /**
1302 * fils_nonces - Nonces for FILS association frame protection
1303 * (AES-SIV AAD)
1304 */
1305 const u8 *fils_nonces;
1306
1307 /**
1308 * fils_nonces_len: Length of fils_nonce in bytes
1309 */
1310 size_t fils_nonces_len;
1311
1312 /**
1313 * fils_erp_username - Username part of keyName-NAI
1314 */
1315 const u8 *fils_erp_username;
1316
1317 /**
1318 * fils_erp_username_len - Length of fils_erp_username in bytes
1319 */
1320 size_t fils_erp_username_len;
1321
1322 /**
1323 * fils_erp_realm - Realm/domain name to use in FILS ERP
1324 */
1325 const u8 *fils_erp_realm;
1326
1327 /**
1328 * fils_erp_realm_len - Length of fils_erp_realm in bytes
1329 */
1330 size_t fils_erp_realm_len;
1331
1332 /**
1333 * fils_erp_next_seq_num - The next sequence number to use in FILS ERP
1334 * messages
1335 */
1336 u16 fils_erp_next_seq_num;
1337
1338 /**
1339 * fils_erp_rrk - Re-authentication root key (rRK) for the keyName-NAI
1340 * specified by fils_erp_username@fils_erp_realm.
1341 */
1342 const u8 *fils_erp_rrk;
1343
1344 /**
1345 * fils_erp_rrk_len - Length of fils_erp_rrk in bytes
1346 */
1347 size_t fils_erp_rrk_len;
1348
1349 /**
1350 * sae_pwe - SAE mechanism for PWE derivation
1351 * 0 = hunting-and-pecking loop only
1352 * 1 = hash-to-element only
1353 * 2 = both hunting-and-pecking loop and hash-to-element enabled
1354 */
1355 enum sae_pwe sae_pwe;
1356
1357 /**
1358 * BSS Max Idle Period - Used to set the BSS Max Idle Period IE in
1359 * the Association Request frame.
1360 */
1361 unsigned short bss_max_idle_period;
1362
1363 /**
1364 * disable_eht - Disable EHT for this connection
1365 */
1366 int disable_eht;
1367
1368 /*
1369 * mld_params - MLD association parameters
1370 */
1371 struct wpa_driver_mld_params mld_params;
1372
1373
1374 /**
1375 * rsn_overriding - wpa_supplicant RSN overriding support
1376 */
1377 bool rsn_overriding;
1378 };
1379
1380 enum hide_ssid {
1381 NO_SSID_HIDING,
1382 HIDDEN_SSID_ZERO_LEN,
1383 HIDDEN_SSID_ZERO_CONTENTS
1384 };
1385
1386 enum ch_switch_state {
1387 CH_SW_STARTED,
1388 CH_SW_FINISHED
1389 };
1390
1391 struct wowlan_triggers {
1392 u8 any;
1393 u8 disconnect;
1394 u8 magic_pkt;
1395 u8 gtk_rekey_failure;
1396 u8 eap_identity_req;
1397 u8 four_way_handshake;
1398 u8 rfkill_release;
1399 };
1400
1401 struct unsol_bcast_probe_resp {
1402 /**
1403 * Unsolicited broadcast Probe Response interval in TUs
1404 */
1405 unsigned int unsol_bcast_probe_resp_interval;
1406
1407 /**
1408 * Unsolicited broadcast Probe Response template data
1409 */
1410 u8 *unsol_bcast_probe_resp_tmpl;
1411
1412 /**
1413 * Unsolicited broadcast Probe Response template length
1414 */
1415 size_t unsol_bcast_probe_resp_tmpl_len;
1416 };
1417
1418 struct wpa_driver_ap_params {
1419 /**
1420 * head - Beacon head from IEEE 802.11 header to IEs before TIM IE
1421 */
1422 u8 *head;
1423
1424 /**
1425 * head_len - Length of the head buffer in octets
1426 */
1427 size_t head_len;
1428
1429 /**
1430 * tail - Beacon tail following TIM IE
1431 */
1432 u8 *tail;
1433
1434 /**
1435 * tail_len - Length of the tail buffer in octets
1436 */
1437 size_t tail_len;
1438
1439 /**
1440 * dtim_period - DTIM period
1441 */
1442 int dtim_period;
1443
1444 /**
1445 * beacon_int - Beacon interval
1446 */
1447 int beacon_int;
1448
1449 /**
1450 * basic_rates: -1 terminated array of basic rates in 100 kbps
1451 *
1452 * This parameter can be used to set a specific basic rate set for the
1453 * BSS. If %NULL, default basic rate set is used.
1454 */
1455 int *basic_rates;
1456
1457 /**
1458 * beacon_rate: Beacon frame data rate
1459 *
1460 * This parameter can be used to set a specific Beacon frame data rate
1461 * for the BSS. The interpretation of this value depends on the
1462 * rate_type (legacy: in 100 kbps units, HT: HT-MCS, VHT: VHT-MCS,
1463 * HE: HE-MCS). If beacon_rate == 0 and rate_type == 0
1464 * (BEACON_RATE_LEGACY), the default Beacon frame data rate is used.
1465 */
1466 unsigned int beacon_rate;
1467
1468 /**
1469 * beacon_rate_type: Beacon data rate type (legacy/HT/VHT/HE)
1470 */
1471 enum beacon_rate_type rate_type;
1472
1473 /**
1474 * proberesp - Probe Response template
1475 *
1476 * This is used by drivers that reply to Probe Requests internally in
1477 * AP mode and require the full Probe Response template.
1478 */
1479 u8 *proberesp;
1480
1481 /**
1482 * proberesp_len - Length of the proberesp buffer in octets
1483 */
1484 size_t proberesp_len;
1485
1486 /**
1487 * ssid - The SSID to use in Beacon/Probe Response frames
1488 */
1489 const u8 *ssid;
1490
1491 /**
1492 * ssid_len - Length of the SSID (1..32)
1493 */
1494 size_t ssid_len;
1495
1496 /**
1497 * hide_ssid - Whether to hide the SSID
1498 */
1499 enum hide_ssid hide_ssid;
1500
1501 /**
1502 * pairwise_ciphers - WPA_CIPHER_* bitfield
1503 */
1504 unsigned int pairwise_ciphers;
1505
1506 /**
1507 * group_cipher - WPA_CIPHER_*
1508 */
1509 unsigned int group_cipher;
1510
1511 /**
1512 * key_mgmt_suites - WPA_KEY_MGMT_* bitfield
1513 */
1514 unsigned int key_mgmt_suites;
1515
1516 /**
1517 * auth_algs - WPA_AUTH_ALG_* bitfield
1518 */
1519 unsigned int auth_algs;
1520
1521 /**
1522 * wpa_version - WPA_PROTO_* bitfield
1523 */
1524 unsigned int wpa_version;
1525
1526 /**
1527 * privacy - Whether privacy is used in the BSS
1528 */
1529 int privacy;
1530
1531 /**
1532 * beacon_ies - WPS/P2P IE(s) for Beacon frames
1533 *
1534 * This is used to add IEs like WPS IE and P2P IE by drivers that do
1535 * not use the full Beacon template.
1536 */
1537 const struct wpabuf *beacon_ies;
1538
1539 /**
1540 * proberesp_ies - P2P/WPS IE(s) for Probe Response frames
1541 *
1542 * This is used to add IEs like WPS IE and P2P IE by drivers that
1543 * reply to Probe Request frames internally.
1544 */
1545 const struct wpabuf *proberesp_ies;
1546
1547 /**
1548 * assocresp_ies - WPS IE(s) for (Re)Association Response frames
1549 *
1550 * This is used to add IEs like WPS IE by drivers that reply to
1551 * (Re)Association Request frames internally.
1552 */
1553 const struct wpabuf *assocresp_ies;
1554
1555 /**
1556 * isolate - Whether to isolate frames between associated stations
1557 *
1558 * If this is non-zero, the AP is requested to disable forwarding of
1559 * frames between associated stations.
1560 */
1561 int isolate;
1562
1563 /**
1564 * cts_protect - Whether CTS protection is enabled
1565 */
1566 int cts_protect;
1567
1568 /**
1569 * preamble - Whether short preamble is enabled
1570 */
1571 int preamble;
1572
1573 /**
1574 * short_slot_time - Whether short slot time is enabled
1575 *
1576 * 0 = short slot time disable, 1 = short slot time enabled, -1 = do
1577 * not set (e.g., when 802.11g mode is not in use)
1578 */
1579 int short_slot_time;
1580
1581 /**
1582 * ht_opmode - HT operation mode or -1 if HT not in use
1583 */
1584 int ht_opmode;
1585
1586 /**
1587 * interworking - Whether Interworking is enabled
1588 */
1589 int interworking;
1590
1591 /**
1592 * hessid - Homogeneous ESS identifier or %NULL if not set
1593 */
1594 const u8 *hessid;
1595
1596 /**
1597 * access_network_type - Access Network Type (0..15)
1598 *
1599 * This is used for filtering Probe Request frames when Interworking is
1600 * enabled.
1601 */
1602 u8 access_network_type;
1603
1604 /**
1605 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
1606 *
1607 * This is used by driver which advertises this capability.
1608 */
1609 int ap_max_inactivity;
1610
1611 /**
1612 * ctwindow - Client Traffic Window (in TUs)
1613 */
1614 u8 p2p_go_ctwindow;
1615
1616 /**
1617 * disable_dgaf - Whether group-addressed frames are disabled
1618 */
1619 int disable_dgaf;
1620
1621 /**
1622 * osen - Whether OSEN security is enabled
1623 */
1624 int osen;
1625
1626 /**
1627 * freq - Channel parameters for dynamic bandwidth changes
1628 */
1629 struct hostapd_freq_params *freq;
1630
1631 /**
1632 * reenable - Whether this is to re-enable beaconing
1633 */
1634 int reenable;
1635
1636 /**
1637 * pbss - Whether to start a PCP (in PBSS) instead of an AP in
1638 * infrastructure BSS. Valid only for DMG network.
1639 */
1640 int pbss;
1641
1642 /**
1643 * multicast_to_unicast - Whether to use multicast_to_unicast
1644 *
1645 * If this is non-zero, the AP is requested to perform multicast to
1646 * unicast conversion for ARP, IPv4, and IPv6 frames (possibly within
1647 * 802.1Q). If enabled, such frames are to be sent to each station
1648 * separately, with the DA replaced by their own MAC address rather
1649 * than the group address.
1650 *
1651 * Note that this may break certain expectations of the receiver, such
1652 * as the ability to drop unicast IP packets received within multicast
1653 * L2 frames, or the ability to not send ICMP destination unreachable
1654 * messages for packets received in L2 multicast (which is required,
1655 * but the receiver can't tell the difference if this new option is
1656 * enabled.)
1657 *
1658 * This also doesn't implement the 802.11 DMS (directed multicast
1659 * service).
1660 */
1661 int multicast_to_unicast;
1662
1663 /**
1664 * ftm_responder - Whether FTM responder is enabled
1665 */
1666 int ftm_responder;
1667
1668 /**
1669 * lci - Binary data, the content of an LCI report IE with type 8 as
1670 * defined in IEEE Std 802.11-2016, 9.4.2.22.10
1671 */
1672 const struct wpabuf *lci;
1673
1674 /**
1675 * civic - Binary data, the content of a measurement report IE with
1676 * type 11 as defined in IEEE Std 802.11-2016, 9.4.2.22.13
1677 */
1678 const struct wpabuf *civic;
1679
1680 /**
1681 * he_spr_ctrl - Spatial Reuse control field of SPR element
1682 */
1683 u8 he_spr_ctrl;
1684
1685 /**
1686 * he_spr_non_srg_obss_pd_max_offset - Non-SRG Maximum TX power offset
1687 */
1688 u8 he_spr_non_srg_obss_pd_max_offset;
1689
1690 /**
1691 * he_spr_srg_obss_pd_min_offset - Minimum TX power offset
1692 */
1693 u8 he_spr_srg_obss_pd_min_offset;
1694
1695 /**
1696 * he_spr_srg_obss_pd_max_offset - Maximum TX power offset
1697 */
1698 u8 he_spr_srg_obss_pd_max_offset;
1699
1700 /**
1701 * he_spr_bss_color_bitmap - BSS color values used by members of the
1702 * SRG.
1703 */
1704 u8 he_spr_bss_color_bitmap[8];
1705
1706 /**
1707 * he_spr_partial_bssid_bitmap - Partial BSSID values used by members
1708 * of the SRG.
1709 */
1710 u8 he_spr_partial_bssid_bitmap[8];
1711
1712 /**
1713 * he_bss_color - Whether the BSS Color is disabled
1714 */
1715 int he_bss_color_disabled;
1716
1717 /**
1718 * he_bss_color_partial - The BSS Color AID equation
1719 */
1720 int he_bss_color_partial;
1721
1722 /**
1723 * he_bss_color - The BSS Color of the AP
1724 */
1725 int he_bss_color;
1726
1727 /**
1728 * twt_responder - Whether Target Wait Time responder is enabled
1729 */
1730 int twt_responder;
1731
1732 /**
1733 * sae_pwe - SAE mechanism for PWE derivation
1734 * 0 = hunting-and-pecking loop only
1735 * 1 = hash-to-element only
1736 * 2 = both hunting-and-pecking loop and hash-to-element enabled
1737 */
1738 enum sae_pwe sae_pwe;
1739
1740 /**
1741 * FILS Discovery frame minimum interval in TUs
1742 */
1743 u32 fd_min_int;
1744
1745 /**
1746 * FILS Discovery frame maximum interval in TUs (0 = FD frame disabled)
1747 */
1748 u32 fd_max_int;
1749
1750 /**
1751 * FILS Discovery frame template data
1752 */
1753 u8 *fd_frame_tmpl;
1754
1755 /**
1756 * FILS Discovery frame template length
1757 */
1758 size_t fd_frame_tmpl_len;
1759
1760 /**
1761 * mbssid_tx_iface - Transmitting interface of the MBSSID set
1762 */
1763 const char *mbssid_tx_iface;
1764
1765 /**
1766 * mbssid_index - The index of this BSS in the MBSSID set
1767 */
1768 unsigned int mbssid_index;
1769
1770 /**
1771 * mbssid_elem - Buffer containing all MBSSID elements
1772 */
1773 u8 *mbssid_elem;
1774
1775 /**
1776 * mbssid_elem_len - Total length of all MBSSID elements
1777 */
1778 size_t mbssid_elem_len;
1779
1780 /**
1781 * mbssid_elem_count - The number of MBSSID elements
1782 */
1783 u8 mbssid_elem_count;
1784
1785 /**
1786 * mbssid_elem_offset - Offsets to elements in mbssid_elem.
1787 * Kernel will use these offsets to generate multiple BSSID beacons.
1788 */
1789 u8 **mbssid_elem_offset;
1790
1791 /**
1792 * ema - Enhanced MBSSID advertisements support.
1793 */
1794 bool ema;
1795
1796 /**
1797 * punct_bitmap - Preamble puncturing bitmap
1798 * Each bit corresponds to a 20 MHz subchannel, the lowest bit for the
1799 * channel with the lowest frequency. A bit set to 1 indicates that the
1800 * subchannel is punctured, otherwise active.
1801 */
1802 u16 punct_bitmap;
1803
1804 /**
1805 * rnr_elem - This buffer contains all of reduced neighbor report (RNR)
1806 * elements
1807 */
1808 u8 *rnr_elem;
1809
1810 /**
1811 * rnr_elem_len - Length of rnr_elem buffer
1812 */
1813 size_t rnr_elem_len;
1814
1815 /**
1816 * rnr_elem_count - Number of RNR elements
1817 */
1818 unsigned int rnr_elem_count;
1819
1820 /**
1821 * rnr_elem_offset - The offsets to the elements in rnr_elem.
1822 * The driver will use these to include RNR elements in EMA beacons.
1823 */
1824 u8 **rnr_elem_offset;
1825
1826 /* Unsolicited broadcast Probe Response data */
1827 struct unsol_bcast_probe_resp ubpr;
1828
1829 /**
1830 * allowed_freqs - List of allowed 20 MHz channel center frequencies in
1831 * MHz for AP operation. Drivers which support this parameter will
1832 * generate a new list based on this provided list by filtering out
1833 * channels that cannot be used at that time due to regulatory or other
1834 * constraints. The resulting list is used as the list of all allowed
1835 * channels whenever performing operations like ACS and DFS.
1836 */
1837 int *allowed_freqs;
1838
1839 /*
1840 * mld_ap - Whether operating as an AP MLD
1841 */
1842 bool mld_ap;
1843
1844 /**
1845 * mld_link_id - Link id for MLD BSS's
1846 */
1847 u8 mld_link_id;
1848
1849 /**
1850 * psk - PSK passed to the driver for 4-way handshake offload
1851 */
1852 u8 psk[PMK_LEN];
1853
1854 /**
1855 * psk_len - PSK length in bytes (0 = not set)
1856 */
1857 size_t psk_len;
1858
1859 /**
1860 * sae_password - SAE password for SAE offload
1861 */
1862 const char *sae_password;
1863 };
1864
1865 struct wpa_driver_mesh_bss_params {
1866 #define WPA_DRIVER_MESH_CONF_FLAG_AUTO_PLINKS 0x00000001
1867 #define WPA_DRIVER_MESH_CONF_FLAG_PEER_LINK_TIMEOUT 0x00000002
1868 #define WPA_DRIVER_MESH_CONF_FLAG_MAX_PEER_LINKS 0x00000004
1869 #define WPA_DRIVER_MESH_CONF_FLAG_HT_OP_MODE 0x00000008
1870 #define WPA_DRIVER_MESH_CONF_FLAG_RSSI_THRESHOLD 0x00000010
1871 #define WPA_DRIVER_MESH_CONF_FLAG_FORWARDING 0x00000020
1872 /*
1873 * TODO: Other mesh configuration parameters would go here.
1874 * See NL80211_MESHCONF_* for all the mesh config parameters.
1875 */
1876 unsigned int flags;
1877 int auto_plinks;
1878 int peer_link_timeout;
1879 int max_peer_links;
1880 int rssi_threshold;
1881 int forwarding;
1882 u16 ht_opmode;
1883 };
1884
1885 struct wpa_driver_mesh_join_params {
1886 const u8 *meshid;
1887 int meshid_len;
1888 const int *basic_rates;
1889 const u8 *ies;
1890 int ie_len;
1891 struct hostapd_freq_params freq;
1892 int beacon_int;
1893 int dtim_period;
1894 struct wpa_driver_mesh_bss_params conf;
1895 #define WPA_DRIVER_MESH_FLAG_USER_MPM 0x00000001
1896 #define WPA_DRIVER_MESH_FLAG_DRIVER_MPM 0x00000002
1897 #define WPA_DRIVER_MESH_FLAG_SAE_AUTH 0x00000004
1898 #define WPA_DRIVER_MESH_FLAG_AMPE 0x00000008
1899 unsigned int flags;
1900 bool handle_dfs;
1901 };
1902
1903 struct wpa_driver_set_key_params {
1904 /**
1905 * ifname - Interface name (for multi-SSID/VLAN support) */
1906 const char *ifname;
1907
1908 /**
1909 * alg - Encryption algorithm
1910 *
1911 * (%WPA_ALG_NONE, %WPA_ALG_WEP, %WPA_ALG_TKIP, %WPA_ALG_CCMP,
1912 * %WPA_ALG_BIP_AES_CMAC_128, %WPA_ALG_GCMP, %WPA_ALG_GCMP_256,
1913 * %WPA_ALG_CCMP_256, %WPA_ALG_BIP_GMAC_128, %WPA_ALG_BIP_GMAC_256,
1914 * %WPA_ALG_BIP_CMAC_256);
1915 * %WPA_ALG_NONE clears the key. */
1916 enum wpa_alg alg;
1917
1918 /**
1919 * addr - Address of the peer STA
1920 *
1921 * (BSSID of the current AP when setting pairwise key in station mode),
1922 * ff:ff:ff:ff:ff:ff for broadcast keys, %NULL for default keys that
1923 * are used both for broadcast and unicast; when clearing keys, %NULL
1924 * is used to indicate that both the broadcast-only and default key of
1925 * the specified key index is to be cleared */
1926 const u8 *addr;
1927
1928 /**
1929 * key_idx - Key index
1930 *
1931 * (0..3), usually 0 for unicast keys; 4..5 for IGTK; 6..7 for BIGTK */
1932 int key_idx;
1933
1934 /**
1935 * set_tx - Configure this key as the default Tx key
1936 *
1937 * Only used when driver does not support separate unicast/individual
1938 * key */
1939 int set_tx;
1940
1941 /**
1942 * seq - Sequence number/packet number
1943 *
1944 * seq_len octets, the next packet number to be used for in replay
1945 * protection; configured for Rx keys (in most cases, this is only used
1946 * with broadcast keys and set to zero for unicast keys); %NULL if not
1947 * set */
1948 const u8 *seq;
1949
1950 /**
1951 * seq_len - Length of the seq, depends on the algorithm
1952 *
1953 * TKIP: 6 octets, CCMP/GCMP: 6 octets, IGTK: 6 octets */
1954 size_t seq_len;
1955
1956 /**
1957 * key - Key buffer
1958 *
1959 * TKIP: 16-byte temporal key, 8-byte Tx Mic key, 8-byte Rx Mic Key */
1960 const u8 *key;
1961
1962 /**
1963 * key_len - Length of the key buffer in octets
1964 *
1965 * WEP: 5 or 13, TKIP: 32, CCMP/GCMP: 16, IGTK: 16 */
1966 size_t key_len;
1967
1968 /**
1969 * vlan_id - VLAN index (0..4095) for VLAN offload cases */
1970 int vlan_id;
1971
1972 /**
1973 * key_flag - Additional key flags
1974 *
1975 * %KEY_FLAG_MODIFY
1976 * Set when an already installed key must be updated.
1977 * So far the only use-case is changing RX/TX status for
1978 * pairwise keys. Must not be set when deleting a key.
1979 * %KEY_FLAG_DEFAULT
1980 * Set when the key is also a default key. Must not be set when
1981 * deleting a key.
1982 * %KEY_FLAG_RX
1983 * The key is valid for RX. Must not be set when deleting a key.
1984 * %KEY_FLAG_TX
1985 * The key is valid for TX. Must not be set when deleting a key.
1986 * %KEY_FLAG_GROUP
1987 * The key is a broadcast or group key.
1988 * %KEY_FLAG_PAIRWISE
1989 * The key is a pairwise key.
1990 * %KEY_FLAG_PMK
1991 * The key is a Pairwise Master Key (PMK).
1992 *
1993 * Valid and pre-defined combinations are:
1994 * %KEY_FLAG_GROUP_RX_TX
1995 * WEP key not to be installed as default key.
1996 * %KEY_FLAG_GROUP_RX_TX_DEFAULT
1997 * Default WEP or WPA-NONE key.
1998 * %KEY_FLAG_GROUP_RX
1999 * GTK key valid for RX only.
2000 * %KEY_FLAG_GROUP_TX_DEFAULT
2001 * GTK key valid for TX only, immediately taking over TX.
2002 * %KEY_FLAG_PAIRWISE_RX_TX
2003 * Pairwise key immediately becoming the active pairwise key.
2004 * %KEY_FLAG_PAIRWISE_RX
2005 * Pairwise key not yet valid for TX. (Only usable when Extended
2006 * Key ID is supported by the driver.)
2007 * %KEY_FLAG_PAIRWISE_RX_TX_MODIFY
2008 * Enable TX for a pairwise key installed with
2009 * KEY_FLAG_PAIRWISE_RX.
2010 *
2011 * Not a valid standalone key type but pre-defined to be combined
2012 * with other key_flags:
2013 * %KEY_FLAG_RX_TX
2014 * RX/TX key. */
2015 enum key_flag key_flag;
2016
2017 /**
2018 * link_id - MLO Link ID
2019 *
2020 * Set to a valid Link ID (0-14) when applicable, otherwise -1. */
2021 int link_id;
2022 };
2023
2024 enum wpa_driver_if_type {
2025 /**
2026 * WPA_IF_STATION - Station mode interface
2027 */
2028 WPA_IF_STATION,
2029
2030 /**
2031 * WPA_IF_AP_VLAN - AP mode VLAN interface
2032 *
2033 * This interface shares its address and Beacon frame with the main
2034 * BSS.
2035 */
2036 WPA_IF_AP_VLAN,
2037
2038 /**
2039 * WPA_IF_AP_BSS - AP mode BSS interface
2040 *
2041 * This interface has its own address and Beacon frame.
2042 */
2043 WPA_IF_AP_BSS,
2044
2045 /**
2046 * WPA_IF_P2P_GO - P2P Group Owner
2047 */
2048 WPA_IF_P2P_GO,
2049
2050 /**
2051 * WPA_IF_P2P_CLIENT - P2P Client
2052 */
2053 WPA_IF_P2P_CLIENT,
2054
2055 /**
2056 * WPA_IF_P2P_GROUP - P2P Group interface (will become either
2057 * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known)
2058 */
2059 WPA_IF_P2P_GROUP,
2060
2061 /**
2062 * WPA_IF_P2P_DEVICE - P2P Device interface is used to identify the
2063 * abstracted P2P Device function in the driver
2064 */
2065 WPA_IF_P2P_DEVICE,
2066
2067 /*
2068 * WPA_IF_MESH - Mesh interface
2069 */
2070 WPA_IF_MESH,
2071
2072 /*
2073 * WPA_IF_TDLS - TDLS offchannel interface (used for pref freq only)
2074 */
2075 WPA_IF_TDLS,
2076
2077 /*
2078 * WPA_IF_IBSS - IBSS interface (used for pref freq only)
2079 */
2080 WPA_IF_IBSS,
2081
2082 /*
2083 * WPA_IF_NAN - NAN Device
2084 */
2085 WPA_IF_NAN,
2086
2087 /* keep last */
2088 WPA_IF_MAX
2089 };
2090
2091 /**
2092 * struct wpa_driver_capa - Driver capability information
2093 */
2094 struct wpa_driver_capa {
2095 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
2096 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
2097 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
2098 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
2099 #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
2100 #define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
2101 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
2102 #define WPA_DRIVER_CAPA_KEY_MGMT_WAPI_PSK 0x00000080
2103 #define WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B 0x00000100
2104 #define WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B_192 0x00000200
2105 #define WPA_DRIVER_CAPA_KEY_MGMT_OWE 0x00000400
2106 #define WPA_DRIVER_CAPA_KEY_MGMT_DPP 0x00000800
2107 #define WPA_DRIVER_CAPA_KEY_MGMT_FILS_SHA256 0x00001000
2108 #define WPA_DRIVER_CAPA_KEY_MGMT_FILS_SHA384 0x00002000
2109 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_FILS_SHA256 0x00004000
2110 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_FILS_SHA384 0x00008000
2111 #define WPA_DRIVER_CAPA_KEY_MGMT_SAE 0x00010000
2112 #define WPA_DRIVER_CAPA_KEY_MGMT_802_1X_SHA256 0x00020000
2113 #define WPA_DRIVER_CAPA_KEY_MGMT_PSK_SHA256 0x00040000
2114 #define WPA_DRIVER_CAPA_KEY_MGMT_TPK_HANDSHAKE 0x00080000
2115 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_SAE 0x00100000
2116 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_802_1X_SHA384 0x00200000
2117 #define WPA_DRIVER_CAPA_KEY_MGMT_CCKM 0x00400000
2118 #define WPA_DRIVER_CAPA_KEY_MGMT_OSEN 0x00800000
2119 #define WPA_DRIVER_CAPA_KEY_MGMT_SAE_EXT_KEY 0x01000000
2120 #define WPA_DRIVER_CAPA_KEY_MGMT_FT_SAE_EXT_KEY 0x02000000
2121 /** Bitfield of supported key management suites */
2122 unsigned int key_mgmt;
2123 unsigned int key_mgmt_iftype[WPA_IF_MAX];
2124
2125 #define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
2126 #define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
2127 #define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
2128 #define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
2129 #define WPA_DRIVER_CAPA_ENC_WEP128 0x00000010
2130 #define WPA_DRIVER_CAPA_ENC_GCMP 0x00000020
2131 #define WPA_DRIVER_CAPA_ENC_GCMP_256 0x00000040
2132 #define WPA_DRIVER_CAPA_ENC_CCMP_256 0x00000080
2133 #define WPA_DRIVER_CAPA_ENC_BIP 0x00000100
2134 #define WPA_DRIVER_CAPA_ENC_BIP_GMAC_128 0x00000200
2135 #define WPA_DRIVER_CAPA_ENC_BIP_GMAC_256 0x00000400
2136 #define WPA_DRIVER_CAPA_ENC_BIP_CMAC_256 0x00000800
2137 #define WPA_DRIVER_CAPA_ENC_GTK_NOT_USED 0x00001000
2138 /** Bitfield of supported cipher suites */
2139 unsigned int enc;
2140
2141 #define WPA_DRIVER_AUTH_OPEN 0x00000001
2142 #define WPA_DRIVER_AUTH_SHARED 0x00000002
2143 #define WPA_DRIVER_AUTH_LEAP 0x00000004
2144 /** Bitfield of supported IEEE 802.11 authentication algorithms */
2145 unsigned int auth;
2146
2147 /** Driver generated WPA/RSN IE */
2148 #define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
2149 /** Driver needs static WEP key setup after association command */
2150 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
2151 /** Driver takes care of all DFS operations */
2152 #define WPA_DRIVER_FLAGS_DFS_OFFLOAD 0x00000004
2153 /** Driver takes care of RSN 4-way handshake internally; PMK is configured with
2154 * struct wpa_driver_ops::set_key using key_flag = KEY_FLAG_PMK */
2155 #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE_8021X 0x00000008
2156 /** Driver is for a wired Ethernet interface */
2157 #define WPA_DRIVER_FLAGS_WIRED 0x00000010
2158 /** Driver provides separate commands for authentication and association (SME in
2159 * wpa_supplicant). */
2160 #define WPA_DRIVER_FLAGS_SME 0x00000020
2161 /** Driver supports AP mode */
2162 #define WPA_DRIVER_FLAGS_AP 0x00000040
2163 /** Driver needs static WEP key setup after association has been completed */
2164 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080
2165 /** Driver supports dynamic HT 20/40 MHz channel changes during BSS lifetime */
2166 #define WPA_DRIVER_FLAGS_HT_2040_COEX 0x00000100
2167 /** Driver supports concurrent P2P operations */
2168 #define WPA_DRIVER_FLAGS_P2P_CONCURRENT 0x00000200
2169 /**
2170 * Driver uses the initial interface as a dedicated management interface, i.e.,
2171 * it cannot be used for P2P group operations or non-P2P purposes.
2172 */
2173 #define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE 0x00000400
2174 /** This interface is P2P capable (P2P GO or P2P Client) */
2175 #define WPA_DRIVER_FLAGS_P2P_CAPABLE 0x00000800
2176 /** Driver supports station and key removal when stopping an AP */
2177 #define WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT 0x00001000
2178 /**
2179 * Driver uses the initial interface for P2P management interface and non-P2P
2180 * purposes (e.g., connect to infra AP), but this interface cannot be used for
2181 * P2P group operations.
2182 */
2183 #define WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P 0x00002000
2184 /**
2185 * Driver is known to use valid error codes, i.e., when it indicates that
2186 * something (e.g., association) fails, there was indeed a failure and the
2187 * operation does not end up getting completed successfully later.
2188 */
2189 #define WPA_DRIVER_FLAGS_VALID_ERROR_CODES 0x00004000
2190 /** Driver supports off-channel TX */
2191 #define WPA_DRIVER_FLAGS_OFFCHANNEL_TX 0x00008000
2192 /** Driver indicates TX status events for EAPOL Data frames */
2193 #define WPA_DRIVER_FLAGS_EAPOL_TX_STATUS 0x00010000
2194 /** Driver indicates TX status events for Deauth/Disassoc frames */
2195 #define WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS 0x00020000
2196 /** Driver supports roaming (BSS selection) in firmware */
2197 #define WPA_DRIVER_FLAGS_BSS_SELECTION 0x00040000
2198 /** Driver supports operating as a TDLS peer */
2199 #define WPA_DRIVER_FLAGS_TDLS_SUPPORT 0x00080000
2200 /** Driver requires external TDLS setup/teardown/discovery */
2201 #define WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP 0x00100000
2202 /** Driver indicates support for Probe Response offloading in AP mode */
2203 #define WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD 0x00200000
2204 /** Driver supports U-APSD in AP mode */
2205 #define WPA_DRIVER_FLAGS_AP_UAPSD 0x00400000
2206 /** Driver supports inactivity timer in AP mode */
2207 #define WPA_DRIVER_FLAGS_INACTIVITY_TIMER 0x00800000
2208 /** Driver expects user space implementation of MLME in AP mode */
2209 #define WPA_DRIVER_FLAGS_AP_MLME 0x01000000
2210 /** Driver supports SAE with user space SME */
2211 #define WPA_DRIVER_FLAGS_SAE 0x02000000
2212 /** Driver makes use of OBSS scan mechanism in wpa_supplicant */
2213 #define WPA_DRIVER_FLAGS_OBSS_SCAN 0x04000000
2214 /** Driver supports IBSS (Ad-hoc) mode */
2215 #define WPA_DRIVER_FLAGS_IBSS 0x08000000
2216 /** Driver supports radar detection */
2217 #define WPA_DRIVER_FLAGS_RADAR 0x10000000
2218 /** Driver supports a dedicated interface for P2P Device */
2219 #define WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE 0x20000000
2220 /** Driver supports QoS Mapping */
2221 #define WPA_DRIVER_FLAGS_QOS_MAPPING 0x40000000
2222 /** Driver supports CSA in AP mode */
2223 #define WPA_DRIVER_FLAGS_AP_CSA 0x80000000
2224 /** Driver supports mesh */
2225 #define WPA_DRIVER_FLAGS_MESH 0x0000000100000000ULL
2226 /** Driver support ACS offload */
2227 #define WPA_DRIVER_FLAGS_ACS_OFFLOAD 0x0000000200000000ULL
2228 /** Driver supports key management offload */
2229 #define WPA_DRIVER_FLAGS_KEY_MGMT_OFFLOAD 0x0000000400000000ULL
2230 /** Driver supports TDLS channel switching */
2231 #define WPA_DRIVER_FLAGS_TDLS_CHANNEL_SWITCH 0x0000000800000000ULL
2232 /** Driver supports IBSS with HT datarates */
2233 #define WPA_DRIVER_FLAGS_HT_IBSS 0x0000001000000000ULL
2234 /** Driver supports IBSS with VHT datarates */
2235 #define WPA_DRIVER_FLAGS_VHT_IBSS 0x0000002000000000ULL
2236 /** Driver supports automatic band selection */
2237 #define WPA_DRIVER_FLAGS_SUPPORT_HW_MODE_ANY 0x0000004000000000ULL
2238 /** Driver supports simultaneous off-channel operations */
2239 #define WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS 0x0000008000000000ULL
2240 /** Driver supports full AP client state */
2241 #define WPA_DRIVER_FLAGS_FULL_AP_CLIENT_STATE 0x0000010000000000ULL
2242 /** Driver supports P2P Listen offload */
2243 #define WPA_DRIVER_FLAGS_P2P_LISTEN_OFFLOAD 0x0000020000000000ULL
2244 /** Driver supports FILS */
2245 #define WPA_DRIVER_FLAGS_SUPPORT_FILS 0x0000040000000000ULL
2246 /** Driver supports Beacon frame TX rate configuration (legacy rates) */
2247 #define WPA_DRIVER_FLAGS_BEACON_RATE_LEGACY 0x0000080000000000ULL
2248 /** Driver supports Beacon frame TX rate configuration (HT rates) */
2249 #define WPA_DRIVER_FLAGS_BEACON_RATE_HT 0x0000100000000000ULL
2250 /** Driver supports Beacon frame TX rate configuration (VHT rates) */
2251 #define WPA_DRIVER_FLAGS_BEACON_RATE_VHT 0x0000200000000000ULL
2252 /** Driver supports mgmt_tx with random TX address in non-connected state */
2253 #define WPA_DRIVER_FLAGS_MGMT_TX_RANDOM_TA 0x0000400000000000ULL
2254 /** Driver supports mgmt_tx with random TX addr in connected state */
2255 #define WPA_DRIVER_FLAGS_MGMT_TX_RANDOM_TA_CONNECTED 0x0000800000000000ULL
2256 /** Driver supports better BSS reporting with sched_scan in connected mode */
2257 #define WPA_DRIVER_FLAGS_SCHED_SCAN_RELATIVE_RSSI 0x0001000000000000ULL
2258 /** Driver supports HE capabilities */
2259 #define WPA_DRIVER_FLAGS_HE_CAPABILITIES 0x0002000000000000ULL
2260 /** Driver supports FILS shared key offload */
2261 #define WPA_DRIVER_FLAGS_FILS_SK_OFFLOAD 0x0004000000000000ULL
2262 /** Driver supports all OCE STA specific mandatory features */
2263 #define WPA_DRIVER_FLAGS_OCE_STA 0x0008000000000000ULL
2264 /** Driver supports all OCE AP specific mandatory features */
2265 #define WPA_DRIVER_FLAGS_OCE_AP 0x0010000000000000ULL
2266 /**
2267 * Driver supports all OCE STA-CFON specific mandatory features only.
2268 * If a driver sets this bit but not the %WPA_DRIVER_FLAGS_OCE_AP, the
2269 * userspace shall assume that this driver may not support all OCE AP
2270 * functionality but can support only OCE STA-CFON functionality.
2271 */
2272 #define WPA_DRIVER_FLAGS_OCE_STA_CFON 0x0020000000000000ULL
2273 /** Driver supports MFP-optional in the connect command */
2274 #define WPA_DRIVER_FLAGS_MFP_OPTIONAL 0x0040000000000000ULL
2275 /** Driver is a self-managed regulatory device */
2276 #define WPA_DRIVER_FLAGS_SELF_MANAGED_REGULATORY 0x0080000000000000ULL
2277 /** Driver supports FTM responder functionality */
2278 #define WPA_DRIVER_FLAGS_FTM_RESPONDER 0x0100000000000000ULL
2279 /** Driver support 4-way handshake offload for WPA-Personal */
2280 #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE_PSK 0x0200000000000000ULL
2281 /** Driver supports a separate control port TX for EAPOL frames */
2282 #define WPA_DRIVER_FLAGS_CONTROL_PORT 0x0400000000000000ULL
2283 /** Driver supports VLAN offload */
2284 #define WPA_DRIVER_FLAGS_VLAN_OFFLOAD 0x0800000000000000ULL
2285 /** Driver supports UPDATE_FT_IES command */
2286 #define WPA_DRIVER_FLAGS_UPDATE_FT_IES 0x1000000000000000ULL
2287 /** Driver can correctly rekey PTKs without Extended Key ID */
2288 #define WPA_DRIVER_FLAGS_SAFE_PTK0_REKEYS 0x2000000000000000ULL
2289 /** Driver supports Beacon protection */
2290 #define WPA_DRIVER_FLAGS_BEACON_PROTECTION 0x4000000000000000ULL
2291 /** Driver supports Extended Key ID */
2292 #define WPA_DRIVER_FLAGS_EXTENDED_KEY_ID 0x8000000000000000ULL
2293 u64 flags;
2294
2295 /** Driver supports a separate control port RX for EAPOL frames */
2296 #define WPA_DRIVER_FLAGS2_CONTROL_PORT_RX 0x0000000000000001ULL
2297 /** Driver supports TX status reports for EAPOL frames through control port */
2298 #define WPA_DRIVER_FLAGS2_CONTROL_PORT_TX_STATUS 0x0000000000000002ULL
2299 /** Driver supports secure LTF in AP mode */
2300 #define WPA_DRIVER_FLAGS2_SEC_LTF_AP 0x0000000000000004ULL
2301 /** Driver supports secure RTT measurement exchange in AP mode */
2302 #define WPA_DRIVER_FLAGS2_SEC_RTT_AP 0x0000000000000008ULL
2303 /**
2304 * Driver supports protection of range negotiation and measurement management
2305 * frames in AP mode
2306 */
2307 #define WPA_DRIVER_FLAGS2_PROT_RANGE_NEG_AP 0x0000000000000010ULL
2308 /** Driver supports Beacon frame TX rate configuration (HE rates) */
2309 #define WPA_DRIVER_FLAGS2_BEACON_RATE_HE 0x0000000000000020ULL
2310 /** Driver supports Beacon protection only in client mode */
2311 #define WPA_DRIVER_FLAGS2_BEACON_PROTECTION_CLIENT 0x0000000000000040ULL
2312 /** Driver supports Operating Channel Validation */
2313 #define WPA_DRIVER_FLAGS2_OCV 0x0000000000000080ULL
2314 /** Driver expects user space implementation of SME in AP mode */
2315 #define WPA_DRIVER_FLAGS2_AP_SME 0x0000000000000100ULL
2316 /** Driver handles SA Query procedures in AP mode */
2317 #define WPA_DRIVER_FLAGS2_SA_QUERY_OFFLOAD_AP 0x0000000000000200ULL
2318 /** Driver supports background radar/CAC detection */
2319 #define WPA_DRIVER_FLAGS2_RADAR_BACKGROUND 0x0000000000000400ULL
2320 /** Driver supports secure LTF in STA mode */
2321 #define WPA_DRIVER_FLAGS2_SEC_LTF_STA 0x0000000000000800ULL
2322 /** Driver supports secure RTT measurement exchange in STA mode */
2323 #define WPA_DRIVER_FLAGS2_SEC_RTT_STA 0x0000000000001000ULL
2324 /**
2325 * Driver supports protection of range negotiation and measurement management
2326 * frames in STA mode
2327 */
2328 #define WPA_DRIVER_FLAGS2_PROT_RANGE_NEG_STA 0x0000000000002000ULL
2329 /** Driver supports MLO in station/AP mode */
2330 #define WPA_DRIVER_FLAGS2_MLO 0x0000000000004000ULL
2331 /** Driver supports minimal scan request probe content */
2332 #define WPA_DRIVER_FLAGS2_SCAN_MIN_PREQ 0x0000000000008000ULL
2333 /** Driver supports SAE authentication offload in STA mode */
2334 #define WPA_DRIVER_FLAGS2_SAE_OFFLOAD_STA 0x0000000000010000ULL
2335 /** Driver support AP_PSK authentication offload */
2336 #define WPA_DRIVER_FLAGS2_4WAY_HANDSHAKE_AP_PSK 0x0000000000020000ULL
2337 /** Driver supports OWE STA offload */
2338 #define WPA_DRIVER_FLAGS2_OWE_OFFLOAD_STA 0x0000000000040000ULL
2339 /** Driver supports OWE AP offload */
2340 #define WPA_DRIVER_FLAGS2_OWE_OFFLOAD_AP 0x0000000000080000ULL
2341 /** Driver support AP SAE authentication offload */
2342 #define WPA_DRIVER_FLAGS2_SAE_OFFLOAD_AP 0x0000000000100000ULL
2343 /** Driver supports TWT responder in HT and VHT modes */
2344 #define WPA_DRIVER_FLAGS2_HT_VHT_TWT_RESPONDER 0x0000000000200000ULL
2345 /** Driver supports RSN override elements */
2346 #define WPA_DRIVER_FLAGS2_RSN_OVERRIDE_STA 0x0000000000400000ULL
2347 u64 flags2;
2348
2349 #define FULL_AP_CLIENT_STATE_SUPP(drv_flags) \
2350 (drv_flags & WPA_DRIVER_FLAGS_FULL_AP_CLIENT_STATE)
2351
2352 unsigned int wmm_ac_supported:1;
2353
2354 unsigned int mac_addr_rand_scan_supported:1;
2355 unsigned int mac_addr_rand_sched_scan_supported:1;
2356
2357 /** Maximum number of supported active probe SSIDs */
2358 int max_scan_ssids;
2359
2360 /** Maximum number of supported active probe SSIDs for sched_scan */
2361 int max_sched_scan_ssids;
2362
2363 /** Maximum number of supported scan plans for scheduled scan */
2364 unsigned int max_sched_scan_plans;
2365
2366 /** Maximum interval in a scan plan. In seconds */
2367 u32 max_sched_scan_plan_interval;
2368
2369 /** Maximum number of iterations in a single scan plan */
2370 u32 max_sched_scan_plan_iterations;
2371
2372 /** Whether sched_scan (offloaded scanning) is supported */
2373 int sched_scan_supported;
2374
2375 /** Maximum number of supported match sets for sched_scan */
2376 int max_match_sets;
2377
2378 /**
2379 * max_remain_on_chan - Maximum remain-on-channel duration in msec
2380 */
2381 unsigned int max_remain_on_chan;
2382
2383 /**
2384 * max_stations - Maximum number of associated stations the driver
2385 * supports in AP mode
2386 */
2387 unsigned int max_stations;
2388
2389 /**
2390 * probe_resp_offloads - Bitmap of supported protocols by the driver
2391 * for Probe Response offloading.
2392 */
2393 /** Driver Probe Response offloading support for WPS ver. 1 */
2394 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS 0x00000001
2395 /** Driver Probe Response offloading support for WPS ver. 2 */
2396 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2 0x00000002
2397 /** Driver Probe Response offloading support for P2P */
2398 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P 0x00000004
2399 /** Driver Probe Response offloading support for IEEE 802.11u (Interworking) */
2400 #define WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING 0x00000008
2401 unsigned int probe_resp_offloads;
2402
2403 unsigned int max_acl_mac_addrs;
2404
2405 /**
2406 * Number of supported concurrent channels
2407 */
2408 unsigned int num_multichan_concurrent;
2409
2410 /**
2411 * extended_capa - extended capabilities in driver/device
2412 *
2413 * Must be allocated and freed by driver and the pointers must be
2414 * valid for the lifetime of the driver, i.e., freed in deinit()
2415 */
2416 const u8 *extended_capa, *extended_capa_mask;
2417 unsigned int extended_capa_len;
2418
2419 struct wowlan_triggers wowlan_triggers;
2420
2421 /** Driver adds the DS Params Set IE in Probe Request frames */
2422 #define WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES 0x00000001
2423 /** Driver adds the WFA TPC IE in Probe Request frames */
2424 #define WPA_DRIVER_FLAGS_WFA_TPC_IE_IN_PROBES 0x00000002
2425 /** Driver handles quiet period requests */
2426 #define WPA_DRIVER_FLAGS_QUIET 0x00000004
2427 /**
2428 * Driver is capable of inserting the current TX power value into the body of
2429 * transmitted frames.
2430 * Background: Some Action frames include a TPC Report IE. This IE contains a
2431 * TX power field, which has to be updated by lower layers. One such Action
2432 * frame is Link Measurement Report (part of RRM). Another is TPC Report (part
2433 * of spectrum management). Note that this insertion takes place at a fixed
2434 * offset, namely the 6th byte in the Action frame body.
2435 */
2436 #define WPA_DRIVER_FLAGS_TX_POWER_INSERTION 0x00000008
2437 /**
2438 * Driver supports RRM. With this support, the driver will accept to use RRM in
2439 * (Re)Association Request frames, without supporting quiet period.
2440 */
2441 #define WPA_DRIVER_FLAGS_SUPPORT_RRM 0x00000010
2442
2443 /** Driver supports setting the scan dwell time */
2444 #define WPA_DRIVER_FLAGS_SUPPORT_SET_SCAN_DWELL 0x00000020
2445 /** Driver supports Beacon Report Measurement */
2446 #define WPA_DRIVER_FLAGS_SUPPORT_BEACON_REPORT 0x00000040
2447
2448 u32 rrm_flags;
2449
2450 /* Driver concurrency capabilities */
2451 unsigned int conc_capab;
2452 /* Maximum number of concurrent channels on 2.4 GHz */
2453 unsigned int max_conc_chan_2_4;
2454 /* Maximum number of concurrent channels on 5 GHz */
2455 unsigned int max_conc_chan_5_0;
2456
2457 /* Maximum number of supported CSA counters */
2458 u16 max_csa_counters;
2459
2460 /* Maximum number of supported AKM suites in commands */
2461 unsigned int max_num_akms;
2462
2463 /* Maximum number of interfaces supported for MBSSID advertisement */
2464 unsigned int mbssid_max_interfaces;
2465 /* Maximum profile periodicity for enhanced MBSSID advertisement */
2466 unsigned int ema_max_periodicity;
2467 };
2468
2469
2470 struct hostapd_data;
2471
2472 enum guard_interval {
2473 GUARD_INTERVAL_0_4 = 1,
2474 GUARD_INTERVAL_0_8 = 2,
2475 GUARD_INTERVAL_1_6 = 3,
2476 GUARD_INTERVAL_3_2 = 4,
2477 };
2478
2479 #define STA_DRV_DATA_TX_MCS BIT(0)
2480 #define STA_DRV_DATA_RX_MCS BIT(1)
2481 #define STA_DRV_DATA_TX_VHT_MCS BIT(2)
2482 #define STA_DRV_DATA_RX_VHT_MCS BIT(3)
2483 #define STA_DRV_DATA_TX_VHT_NSS BIT(4)
2484 #define STA_DRV_DATA_RX_VHT_NSS BIT(5)
2485 #define STA_DRV_DATA_TX_SHORT_GI BIT(6)
2486 #define STA_DRV_DATA_RX_SHORT_GI BIT(7)
2487 #define STA_DRV_DATA_LAST_ACK_RSSI BIT(8)
2488 #define STA_DRV_DATA_CONN_TIME BIT(9)
2489 #define STA_DRV_DATA_TX_HE_MCS BIT(10)
2490 #define STA_DRV_DATA_RX_HE_MCS BIT(11)
2491 #define STA_DRV_DATA_TX_HE_NSS BIT(12)
2492 #define STA_DRV_DATA_RX_HE_NSS BIT(13)
2493 #define STA_DRV_DATA_TX_HE_DCM BIT(14)
2494 #define STA_DRV_DATA_RX_HE_DCM BIT(15)
2495 #define STA_DRV_DATA_TX_HE_GI BIT(16)
2496 #define STA_DRV_DATA_RX_HE_GI BIT(17)
2497
2498 struct hostap_sta_driver_data {
2499 unsigned long rx_packets, tx_packets;
2500 unsigned long long rx_bytes, tx_bytes;
2501 unsigned long long rx_airtime, tx_airtime;
2502 unsigned long long beacons_count;
2503 int bytes_64bit; /* whether 64-bit byte counters are supported */
2504 unsigned long current_tx_rate; /* in kbps */
2505 unsigned long current_rx_rate; /* in kbps */
2506 unsigned long inactive_msec;
2507 unsigned long connected_sec;
2508 unsigned long flags; /* bitfield of STA_DRV_DATA_* */
2509 unsigned long num_ps_buf_frames;
2510 unsigned long tx_retry_failed;
2511 unsigned long tx_retry_count;
2512 s8 last_ack_rssi;
2513 unsigned long backlog_packets;
2514 unsigned long backlog_bytes;
2515 unsigned long fcs_error_count;
2516 unsigned long beacon_loss_count;
2517 unsigned long expected_throughput;
2518 unsigned long rx_drop_misc;
2519 unsigned long rx_mpdus;
2520 int signal; /* dBm; or -WPA_INVALID_NOISE */
2521 u8 rx_hemcs;
2522 u8 tx_hemcs;
2523 u8 rx_vhtmcs;
2524 u8 tx_vhtmcs;
2525 u8 rx_mcs;
2526 u8 tx_mcs;
2527 u8 rx_he_nss;
2528 u8 tx_he_nss;
2529 u8 rx_vht_nss;
2530 u8 tx_vht_nss;
2531 s8 avg_signal; /* dBm */
2532 s8 avg_beacon_signal; /* dBm */
2533 s8 avg_ack_signal; /* dBm */
2534 enum guard_interval rx_guard_interval, tx_guard_interval;
2535 u8 rx_dcm, tx_dcm;
2536 };
2537
2538 struct hostapd_sta_add_params {
2539 const u8 *addr;
2540 u16 aid;
2541 u16 capability;
2542 const u8 *supp_rates;
2543 size_t supp_rates_len;
2544 u16 listen_interval;
2545 const struct ieee80211_ht_capabilities *ht_capabilities;
2546 const struct ieee80211_vht_capabilities *vht_capabilities;
2547 int vht_opmode_enabled;
2548 u8 vht_opmode;
2549 const struct ieee80211_he_capabilities *he_capab;
2550 size_t he_capab_len;
2551 const struct ieee80211_he_6ghz_band_cap *he_6ghz_capab;
2552 const struct ieee80211_eht_capabilities *eht_capab;
2553 size_t eht_capab_len;
2554 u32 flags; /* bitmask of WPA_STA_* flags */
2555 u32 flags_mask; /* unset bits in flags */
2556 #ifdef CONFIG_MESH
2557 enum mesh_plink_state plink_state;
2558 u16 peer_aid;
2559 #endif /* CONFIG_MESH */
2560 int set; /* Set STA parameters instead of add */
2561 u8 qosinfo;
2562 const u8 *ext_capab;
2563 size_t ext_capab_len;
2564 const u8 *supp_channels;
2565 size_t supp_channels_len;
2566 const u8 *supp_oper_classes;
2567 size_t supp_oper_classes_len;
2568 int support_p2p_ps;
2569
2570 bool mld_link_sta;
2571 s8 mld_link_id;
2572 const u8 *mld_link_addr;
2573 };
2574
2575 struct mac_address {
2576 u8 addr[ETH_ALEN];
2577 };
2578
2579 struct hostapd_acl_params {
2580 u8 acl_policy;
2581 unsigned int num_mac_acl;
2582 struct mac_address mac_acl[0];
2583 };
2584
2585 struct wpa_init_params {
2586 void *global_priv;
2587 const u8 *bssid;
2588 const char *ifname;
2589 const char *driver_params;
2590 int use_pae_group_addr;
2591 char **bridge;
2592 size_t num_bridge;
2593
2594 u8 *own_addr; /* buffer for writing own MAC address */
2595 };
2596
2597
2598 struct wpa_bss_params {
2599 /** Interface name (for multi-SSID/VLAN support) */
2600 const char *ifname;
2601 /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
2602 int enabled;
2603
2604 int wpa;
2605 int ieee802_1x;
2606 int wpa_group;
2607 int wpa_pairwise;
2608 int wpa_key_mgmt;
2609 int rsn_preauth;
2610 enum mfp_options ieee80211w;
2611 };
2612
2613 #define WPA_STA_AUTHORIZED BIT(0)
2614 #define WPA_STA_WMM BIT(1)
2615 #define WPA_STA_SHORT_PREAMBLE BIT(2)
2616 #define WPA_STA_MFP BIT(3)
2617 #define WPA_STA_TDLS_PEER BIT(4)
2618 #define WPA_STA_AUTHENTICATED BIT(5)
2619 #define WPA_STA_ASSOCIATED BIT(6)
2620
2621 enum tdls_oper {
2622 TDLS_DISCOVERY_REQ,
2623 TDLS_SETUP,
2624 TDLS_TEARDOWN,
2625 TDLS_ENABLE_LINK,
2626 TDLS_DISABLE_LINK,
2627 TDLS_ENABLE,
2628 TDLS_DISABLE
2629 };
2630
2631 enum wnm_oper {
2632 WNM_SLEEP_ENTER_CONFIRM,
2633 WNM_SLEEP_ENTER_FAIL,
2634 WNM_SLEEP_EXIT_CONFIRM,
2635 WNM_SLEEP_EXIT_FAIL,
2636 WNM_SLEEP_TFS_REQ_IE_ADD, /* STA requests driver to add TFS req IE */
2637 WNM_SLEEP_TFS_REQ_IE_NONE, /* STA requests empty TFS req IE */
2638 WNM_SLEEP_TFS_REQ_IE_SET, /* AP requests driver to set TFS req IE for
2639 * a STA */
2640 WNM_SLEEP_TFS_RESP_IE_ADD, /* AP requests driver to add TFS resp IE
2641 * for a STA */
2642 WNM_SLEEP_TFS_RESP_IE_NONE, /* AP requests empty TFS resp IE */
2643 WNM_SLEEP_TFS_RESP_IE_SET, /* AP requests driver to set TFS resp IE
2644 * for a STA */
2645 WNM_SLEEP_TFS_IE_DEL /* AP delete the TFS IE */
2646 };
2647
2648 /* enum smps_mode - SMPS mode definitions */
2649 enum smps_mode {
2650 SMPS_AUTOMATIC,
2651 SMPS_OFF,
2652 SMPS_DYNAMIC,
2653 SMPS_STATIC,
2654
2655 /* Keep last */
2656 SMPS_INVALID,
2657 };
2658
2659 #define WPA_INVALID_NOISE 9999
2660
2661 /**
2662 * struct wpa_signal_info - Information about channel signal quality
2663 * @frequency: control frequency
2664 * @above_threshold: true if the above threshold was crossed
2665 * (relevant for a CQM event)
2666 * @data: STA information
2667 * @current_noise: %WPA_INVALID_NOISE if not supported
2668 * @chanwidth: channel width
2669 * @center_frq1: center frequency for the first segment
2670 * @center_frq2: center frequency for the second segment (if relevant)
2671 */
2672 struct wpa_signal_info {
2673 u32 frequency;
2674 int above_threshold;
2675 struct hostap_sta_driver_data data;
2676 int current_noise;
2677 enum chan_width chanwidth;
2678 int center_frq1;
2679 int center_frq2;
2680 };
2681
2682
2683 struct wpa_conn_info {
2684 unsigned short beacon_interval;
2685 unsigned char dtim_period;
2686 bool twt_capable;
2687 };
2688
2689
2690 struct wpa_mlo_signal_info {
2691 u16 valid_links;
2692 struct wpa_signal_info links[MAX_NUM_MLD_LINKS];
2693 };
2694
2695 /**
2696 * struct wpa_channel_info - Information about the current channel
2697 * @frequency: Center frequency of the primary 20 MHz channel
2698 * @chanwidth: Width of the current operating channel
2699 * @sec_channel: Location of the secondary 20 MHz channel (either +1 or -1).
2700 * This field is only filled in when using a 40 MHz channel.
2701 * @center_frq1: Center frequency of frequency segment 0
2702 * @center_frq2: Center frequency of frequency segment 1 (for 80+80 channels)
2703 * @seg1_idx: Frequency segment 1 index when using a 80+80 channel. This is
2704 * derived from center_frq2 for convenience.
2705 */
2706 struct wpa_channel_info {
2707 u32 frequency;
2708 enum chan_width chanwidth;
2709 int sec_channel;
2710 int center_frq1;
2711 int center_frq2;
2712 u8 seg1_idx;
2713 };
2714
2715 /**
2716 * struct beacon_data - Beacon data
2717 * @head: Head portion of Beacon frame (before TIM IE)
2718 * @tail: Tail portion of Beacon frame (after TIM IE)
2719 * @beacon_ies: Extra information element(s) to add into Beacon frames or %NULL
2720 * @proberesp_ies: Extra information element(s) to add into Probe Response
2721 * frames or %NULL
2722 * @assocresp_ies: Extra information element(s) to add into (Re)Association
2723 * Response frames or %NULL
2724 * @probe_resp: Probe Response frame template
2725 * @head_len: Length of @head
2726 * @tail_len: Length of @tail
2727 * @beacon_ies_len: Length of beacon_ies in octets
2728 * @proberesp_ies_len: Length of proberesp_ies in octets
2729 * @proberesp_ies_len: Length of proberesp_ies in octets
2730 * @probe_resp_len: Length of probe response template (@probe_resp)
2731 */
2732 struct beacon_data {
2733 u8 *head, *tail;
2734 u8 *beacon_ies;
2735 u8 *proberesp_ies;
2736 u8 *assocresp_ies;
2737 u8 *probe_resp;
2738
2739 size_t head_len, tail_len;
2740 size_t beacon_ies_len;
2741 size_t proberesp_ies_len;
2742 size_t assocresp_ies_len;
2743 size_t probe_resp_len;
2744 };
2745
2746 /**
2747 * struct csa_settings - Settings for channel switch command
2748 * @cs_count: Count in Beacon frames (TBTT) to perform the switch
2749 * @block_tx: 1 - block transmission for CSA period
2750 * @freq_params: Next channel frequency parameter
2751 * @beacon_csa: Beacon/probe resp/asooc resp info for CSA period
2752 * @beacon_after: Next beacon/probe resp/asooc resp info
2753 * @counter_offset_beacon: Offset to the count field in beacon's tail
2754 * @counter_offset_presp: Offset to the count field in probe resp.
2755 * @punct_bitmap - Preamble puncturing bitmap
2756 * @link_id: Link ID to determine the link for MLD; -1 for non-MLD
2757 * @ubpr: Unsolicited broadcast Probe Response frame data
2758 */
2759 struct csa_settings {
2760 u8 cs_count;
2761 u8 block_tx;
2762
2763 struct hostapd_freq_params freq_params;
2764 struct beacon_data beacon_csa;
2765 struct beacon_data beacon_after;
2766
2767 u16 counter_offset_beacon[2];
2768 u16 counter_offset_presp[2];
2769
2770 u16 punct_bitmap;
2771 int link_id;
2772
2773 struct unsol_bcast_probe_resp ubpr;
2774 };
2775
2776 /**
2777 * struct cca_settings - Settings for color switch command
2778 * @cca_count: Count in Beacon frames (TBTT) to perform the switch
2779 * @cca_color: The new color that we are switching to
2780 * @beacon_cca: Beacon/Probe Response/(Re)Association Response frame info for
2781 * color switch period
2782 * @beacon_after: Next Beacon/Probe Response/(Re)Association Response frame info
2783 * @counter_offset_beacon: Offset to the count field in Beacon frame tail
2784 * @counter_offset_presp: Offset to the count field in Probe Response frame
2785 * @ubpr: Unsolicited broadcast Probe Response frame data
2786 * @link_id: If >= 0 indicates the link of the AP MLD to configure
2787 */
2788 struct cca_settings {
2789 u8 cca_count;
2790 u8 cca_color;
2791
2792 struct beacon_data beacon_cca;
2793 struct beacon_data beacon_after;
2794
2795 u16 counter_offset_beacon;
2796 u16 counter_offset_presp;
2797
2798 struct unsol_bcast_probe_resp ubpr;
2799
2800 int link_id;
2801 };
2802
2803 /* TDLS peer capabilities for send_tdls_mgmt() */
2804 enum tdls_peer_capability {
2805 TDLS_PEER_HT = BIT(0),
2806 TDLS_PEER_VHT = BIT(1),
2807 TDLS_PEER_WMM = BIT(2),
2808 TDLS_PEER_HE = BIT(3),
2809 };
2810
2811 /* valid info in the wmm_params struct */
2812 enum wmm_params_valid_info {
2813 WMM_PARAMS_UAPSD_QUEUES_INFO = BIT(0),
2814 };
2815
2816 /**
2817 * struct wmm_params - WMM parameterss configured for this association
2818 * @info_bitmap: Bitmap of valid wmm_params info; indicates what fields
2819 * of the struct contain valid information.
2820 * @uapsd_queues: Bitmap of ACs configured for uapsd (valid only if
2821 * %WMM_PARAMS_UAPSD_QUEUES_INFO is set)
2822 */
2823 struct wmm_params {
2824 u8 info_bitmap;
2825 u8 uapsd_queues;
2826 };
2827
2828 #ifdef CONFIG_MACSEC
2829 struct macsec_init_params {
2830 bool always_include_sci;
2831 bool use_es;
2832 bool use_scb;
2833 };
2834 #endif /* CONFIG_MACSEC */
2835
2836 enum drv_br_port_attr {
2837 DRV_BR_PORT_ATTR_PROXYARP,
2838 DRV_BR_PORT_ATTR_HAIRPIN_MODE,
2839 DRV_BR_PORT_ATTR_MCAST2UCAST,
2840 };
2841
2842 enum drv_br_net_param {
2843 DRV_BR_NET_PARAM_GARP_ACCEPT,
2844 DRV_BR_MULTICAST_SNOOPING,
2845 };
2846
2847 struct drv_acs_params {
2848 /* Selected mode (HOSTAPD_MODE_*) */
2849 enum hostapd_hw_mode hw_mode;
2850
2851 /* Indicates whether HT is enabled */
2852 int ht_enabled;
2853
2854 /* Indicates whether HT40 is enabled */
2855 int ht40_enabled;
2856
2857 /* Indicates whether VHT is enabled */
2858 int vht_enabled;
2859
2860 /* Configured ACS channel width */
2861 u16 ch_width;
2862
2863 /* ACS frequency list info */
2864 const int *freq_list;
2865
2866 /* Indicates whether EDMG is enabled */
2867 int edmg_enabled;
2868
2869 /* Indicates whether EHT is enabled */
2870 bool eht_enabled;
2871
2872 /* Indicates the link if MLO case; -1 otherwise */
2873 int link_id;
2874 };
2875
2876 struct wpa_bss_trans_info {
2877 u8 mbo_transition_reason;
2878 u8 n_candidates;
2879 u8 *bssid;
2880 };
2881
2882 struct wpa_bss_candidate_info {
2883 u8 num;
2884 struct candidate_list {
2885 u8 bssid[ETH_ALEN];
2886 u8 is_accept;
2887 u32 reject_reason;
2888 } *candidates;
2889 };
2890
2891 struct wpa_pmkid_params {
2892 const u8 *bssid;
2893 const u8 *ssid;
2894 size_t ssid_len;
2895 const u8 *fils_cache_id;
2896 const u8 *pmkid;
2897 const u8 *pmk;
2898 size_t pmk_len;
2899 u32 pmk_lifetime;
2900 u8 pmk_reauth_threshold;
2901 };
2902
2903 /* Mask used to specify which connection parameters have to be updated */
2904 enum wpa_drv_update_connect_params_mask {
2905 WPA_DRV_UPDATE_ASSOC_IES = BIT(0),
2906 WPA_DRV_UPDATE_FILS_ERP_INFO = BIT(1),
2907 WPA_DRV_UPDATE_AUTH_TYPE = BIT(2),
2908 };
2909
2910 /**
2911 * struct external_auth - External authentication trigger parameters
2912 *
2913 * These are used across the external authentication request and event
2914 * interfaces.
2915 * @action: Action type / trigger for external authentication. Only significant
2916 * for the event interface.
2917 * @bssid: BSSID of the peer with which the authentication has to happen. Used
2918 * by both the request and event interface.
2919 * @ssid: SSID of the AP. Used by both the request and event interface.
2920 * @ssid_len: SSID length in octets.
2921 * @key_mgmt_suite: AKM suite of the respective authentication. Optional for
2922 * the request interface.
2923 * @status: Status code, %WLAN_STATUS_SUCCESS for successful authentication,
2924 * use %WLAN_STATUS_UNSPECIFIED_FAILURE if wpa_supplicant cannot give
2925 * the real status code for failures. Used only for the request interface
2926 * from user space to the driver.
2927 * @pmkid: Generated PMKID as part of external auth exchange (e.g., SAE).
2928 * @mld_addr: AP's MLD address or %NULL if MLO is not used
2929 */
2930 struct external_auth {
2931 enum {
2932 EXT_AUTH_START,
2933 EXT_AUTH_ABORT,
2934 } action;
2935 const u8 *bssid;
2936 const u8 *ssid;
2937 size_t ssid_len;
2938 unsigned int key_mgmt_suite;
2939 u16 status;
2940 const u8 *pmkid;
2941 const u8 *mld_addr;
2942 };
2943
2944 #define WPAS_MAX_PASN_PEERS 10
2945
2946 enum pasn_status {
2947 PASN_STATUS_SUCCESS = 0,
2948 PASN_STATUS_FAILURE = 1,
2949 };
2950
2951 /**
2952 * struct pasn_peer - PASN peer parameters
2953 *
2954 * Used to process the PASN authentication event from the driver to
2955 * userspace and to send a response back.
2956 * @own_addr: Own MAC address specified by the driver to use for PASN
2957 * handshake.
2958 * @peer_addr: MAC address of the peer with which PASN authentication is to be
2959 * performed.
2960 * @network_id: Unique id for the network.
2961 * This identifier is used as a unique identifier for each network
2962 * block when using the control interface. Each network is allocated an
2963 * id when it is being created, either when reading the configuration
2964 * file or when a new network is added through the control interface.
2965 * @akmp: Authentication key management protocol type supported.
2966 * @cipher: Cipher suite.
2967 * @group: Finite cyclic group. Default group used is 19 (ECC).
2968 * @ltf_keyseed_required: Indicates whether LTF keyseed generation is required
2969 * @status: PASN response status, %PASN_STATUS_SUCCESS for successful
2970 * authentication, use %PASN_STATUS_FAILURE if PASN authentication
2971 * fails or if wpa_supplicant fails to set the security ranging context to
2972 * the driver
2973 */
2974 struct pasn_peer {
2975 u8 own_addr[ETH_ALEN];
2976 u8 peer_addr[ETH_ALEN];
2977 int network_id;
2978 int akmp;
2979 int cipher;
2980 int group;
2981 bool ltf_keyseed_required;
2982 enum pasn_status status;
2983 };
2984
2985 /**
2986 * struct pasn_auth - PASN authentication trigger parameters
2987 *
2988 * These are used across the PASN authentication event from the driver to
2989 * userspace and to send a response to it.
2990 * @action: Action type. Only significant for the event interface.
2991 * @num_peers: The number of peers for which the PASN handshake is requested
2992 * for.
2993 * @peer: Holds the peer details.
2994 */
2995 struct pasn_auth {
2996 enum {
2997 PASN_ACTION_AUTH,
2998 PASN_ACTION_DELETE_SECURE_RANGING_CONTEXT,
2999 } action;
3000 unsigned int num_peers;
3001 struct pasn_peer peer[WPAS_MAX_PASN_PEERS];
3002 };
3003
3004 /**
3005 * struct secure_ranging_params - Parameters required to set secure ranging
3006 * context for a peer.
3007 *
3008 * @action: Add or delete a security context to the driver.
3009 * @own_addr: Own MAC address used during key derivation.
3010 * @peer_addr: Address of the peer device.
3011 * @cipher: Cipher suite.
3012 * @tk_len: Length of temporal key.
3013 * @tk: Temporal key buffer.
3014 * @ltf_keyseed_len: Length of LTF keyseed.
3015 * @ltf_keyeed: LTF keyseed buffer.
3016 */
3017 struct secure_ranging_params {
3018 u32 action;
3019 const u8 *own_addr;
3020 const u8 *peer_addr;
3021 u32 cipher;
3022 u8 tk_len;
3023 const u8 *tk;
3024 u8 ltf_keyseed_len;
3025 const u8 *ltf_keyseed;
3026 };
3027
3028 /* enum nested_attr - Used to specify if subcommand uses nested attributes */
3029 enum nested_attr {
3030 NESTED_ATTR_NOT_USED = 0,
3031 NESTED_ATTR_USED = 1,
3032 NESTED_ATTR_UNSPECIFIED = 2,
3033 };
3034
3035 /* Preferred channel list information */
3036
3037 /* GO role */
3038 #define WEIGHTED_PCL_GO BIT(0)
3039 /* P2P Client role */
3040 #define WEIGHTED_PCL_CLI BIT(1)
3041 /* Must be considered for operating channel */
3042 #define WEIGHTED_PCL_MUST_CONSIDER BIT(2)
3043 /* Should be excluded in GO negotiation */
3044 #define WEIGHTED_PCL_EXCLUDE BIT(3)
3045
3046 /* Preferred channel list with weight */
3047 struct weighted_pcl {
3048 u32 freq; /* MHz */
3049 u8 weight;
3050 u32 flag; /* bitmap for WEIGHTED_PCL_* */
3051 };
3052
3053 struct driver_sta_mlo_info {
3054 bool default_map;
3055 u16 req_links; /* bitmap of requested link IDs */
3056 u16 valid_links; /* bitmap of accepted link IDs */
3057 u8 assoc_link_id;
3058 u8 ap_mld_addr[ETH_ALEN];
3059 struct {
3060 u8 addr[ETH_ALEN];
3061 u8 bssid[ETH_ALEN];
3062 unsigned int freq;
3063 struct t2lm_mapping t2lmap;
3064 } links[MAX_NUM_MLD_LINKS];
3065 };
3066
3067 /**
3068 * struct wpa_driver_ops - Driver interface API definition
3069 *
3070 * This structure defines the API that each driver interface needs to implement
3071 * for core wpa_supplicant code. All driver specific functionality is captured
3072 * in this wrapper.
3073 */
3074 struct wpa_driver_ops {
3075 /** Name of the driver interface */
3076 const char *name;
3077 /** One line description of the driver interface */
3078 const char *desc;
3079
3080 /**
3081 * get_bssid - Get the current BSSID
3082 * @priv: private driver interface data
3083 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
3084 *
3085 * Returns: 0 on success, -1 on failure
3086 *
3087 * Query kernel driver for the current BSSID and copy it to bssid.
3088 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
3089 * associated.
3090 */
3091 int (*get_bssid)(void *priv, u8 *bssid);
3092
3093 /**
3094 * get_ssid - Get the current SSID
3095 * @priv: private driver interface data
3096 * @ssid: buffer for SSID (at least 32 bytes)
3097 *
3098 * Returns: Length of the SSID on success, -1 on failure
3099 *
3100 * Query kernel driver for the current SSID and copy it to ssid.
3101 * Returning zero is recommended if the STA is not associated.
3102 *
3103 * Note: SSID is an array of octets, i.e., it is not nul terminated and
3104 * can, at least in theory, contain control characters (including nul)
3105 * and as such, should be processed as binary data, not a printable
3106 * string.
3107 */
3108 int (*get_ssid)(void *priv, u8 *ssid);
3109
3110 /**
3111 * set_key - Configure encryption key
3112 * @priv: private driver interface data
3113 * @params: Key parameters
3114 * Returns: 0 on success, -1 on failure
3115 *
3116 * Configure the given key for the kernel driver. If the driver
3117 * supports separate individual keys (4 default keys + 1 individual),
3118 * addr can be used to determine whether the key is default or
3119 * individual. If only 4 keys are supported, the default key with key
3120 * index 0 is used as the individual key. STA must be configured to use
3121 * it as the default Tx key (set_tx is set) and accept Rx for all the
3122 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
3123 * broadcast keys, so key index 0 is available for this kind of
3124 * configuration.
3125 *
3126 * Please note that TKIP keys include separate TX and RX MIC keys and
3127 * some drivers may expect them in different order than wpa_supplicant
3128 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
3129 * will trigger Michael MIC errors. This can be fixed by changing the
3130 * order of MIC keys by swapping the bytes 16..23 and 24..31 of the key
3131 * in driver_*.c set_key() implementation, see driver_ndis.c for an
3132 * example on how this can be done.
3133 */
3134 int (*set_key)(void *priv, struct wpa_driver_set_key_params *params);
3135
3136 /**
3137 * init - Initialize driver interface
3138 * @ctx: context to be used when calling wpa_supplicant functions,
3139 * e.g., wpa_supplicant_event()
3140 * @ifname: interface name, e.g., wlan0
3141 *
3142 * Returns: Pointer to private data, %NULL on failure
3143 *
3144 * Initialize driver interface, including event processing for kernel
3145 * driver events (e.g., associated, scan results, Michael MIC failure).
3146 * This function can allocate a private configuration data area for
3147 * @ctx, file descriptor, interface name, etc. information that may be
3148 * needed in future driver operations. If this is not used, non-NULL
3149 * value will need to be returned because %NULL is used to indicate
3150 * failure. The returned value will be used as 'void *priv' data for
3151 * all other driver_ops functions.
3152 *
3153 * The main event loop (eloop.c) of wpa_supplicant can be used to
3154 * register callback for read sockets (eloop_register_read_sock()).
3155 *
3156 * See below for more information about events and
3157 * wpa_supplicant_event() function.
3158 */
3159 void * (*init)(void *ctx, const char *ifname);
3160
3161 /**
3162 * deinit - Deinitialize driver interface
3163 * @priv: private driver interface data from init()
3164 *
3165 * Shut down driver interface and processing of driver events. Free
3166 * private data buffer if one was allocated in init() handler.
3167 */
3168 void (*deinit)(void *priv);
3169
3170 /**
3171 * set_param - Set driver configuration parameters
3172 * @priv: private driver interface data from init()
3173 * @param: driver specific configuration parameters
3174 *
3175 * Returns: 0 on success, -1 on failure
3176 *
3177 * Optional handler for notifying driver interface about configuration
3178 * parameters (driver_param).
3179 */
3180 int (*set_param)(void *priv, const char *param);
3181
3182 /**
3183 * set_countermeasures - Enable/disable TKIP countermeasures
3184 * @priv: private driver interface data
3185 * @enabled: 1 = countermeasures enabled, 0 = disabled
3186 *
3187 * Returns: 0 on success, -1 on failure
3188 *
3189 * Configure TKIP countermeasures. When these are enabled, the driver
3190 * should drop all received and queued frames that are using TKIP.
3191 */
3192 int (*set_countermeasures)(void *priv, int enabled);
3193
3194 /**
3195 * deauthenticate - Request driver to deauthenticate
3196 * @priv: private driver interface data
3197 * @addr: peer address (BSSID of the AP)
3198 * @reason_code: 16-bit reason code to be sent in the deauthentication
3199 * frame
3200 *
3201 * Returns: 0 on success, -1 on failure
3202 */
3203 int (*deauthenticate)(void *priv, const u8 *addr, u16 reason_code);
3204
3205 /**
3206 * associate - Request driver to associate
3207 * @priv: private driver interface data
3208 * @params: association parameters
3209 *
3210 * Returns: 0 on success, -1 on failure
3211 */
3212 int (*associate)(void *priv,
3213 struct wpa_driver_associate_params *params);
3214
3215 /**
3216 * add_pmkid - Add PMKSA cache entry to the driver
3217 * @priv: private driver interface data
3218 * @params: PMKSA parameters
3219 *
3220 * Returns: 0 on success, -1 on failure
3221 *
3222 * This function is called when a new PMK is received, as a result of
3223 * either normal authentication or RSN pre-authentication. The PMKSA
3224 * parameters are either a set of bssid, pmkid, and pmk; or a set of
3225 * ssid, fils_cache_id, pmkid, and pmk.
3226 *
3227 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
3228 * associate(), add_pmkid() can be used to add new PMKSA cache entries
3229 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
3230 * driver_ops function does not need to be implemented. Likewise, if
3231 * the driver does not support WPA, this function is not needed.
3232 */
3233 int (*add_pmkid)(void *priv, struct wpa_pmkid_params *params);
3234
3235 /**
3236 * remove_pmkid - Remove PMKSA cache entry to the driver
3237 * @priv: private driver interface data
3238 * @params: PMKSA parameters
3239 *
3240 * Returns: 0 on success, -1 on failure
3241 *
3242 * This function is called when the supplicant drops a PMKSA cache
3243 * entry for any reason. The PMKSA parameters are either a set of
3244 * bssid and pmkid; or a set of ssid, fils_cache_id, and pmkid.
3245 *
3246 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
3247 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
3248 * between the driver and wpa_supplicant. If the driver uses wpa_ie
3249 * from wpa_supplicant, this driver_ops function does not need to be
3250 * implemented. Likewise, if the driver does not support WPA, this
3251 * function is not needed.
3252 */
3253 int (*remove_pmkid)(void *priv, struct wpa_pmkid_params *params);
3254
3255 /**
3256 * flush_pmkid - Flush PMKSA cache
3257 * @priv: private driver interface data
3258 *
3259 * Returns: 0 on success, -1 on failure
3260 *
3261 * This function is called when the supplicant drops all PMKSA cache
3262 * entries for any reason.
3263 *
3264 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
3265 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
3266 * between the driver and wpa_supplicant. If the driver uses wpa_ie
3267 * from wpa_supplicant, this driver_ops function does not need to be
3268 * implemented. Likewise, if the driver does not support WPA, this
3269 * function is not needed.
3270 */
3271 int (*flush_pmkid)(void *priv);
3272
3273 /**
3274 * get_capa - Get driver capabilities
3275 * @priv: private driver interface data
3276 *
3277 * Returns: 0 on success, -1 on failure
3278 *
3279 * Get driver/firmware/hardware capabilities.
3280 */
3281 int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
3282
3283 /**
3284 * poll - Poll driver for association information
3285 * @priv: private driver interface data
3286 *
3287 * This is an optional callback that can be used when the driver does
3288 * not provide event mechanism for association events. This is called
3289 * when receiving WPA/RSN EAPOL-Key messages that require association
3290 * information. The driver interface is supposed to generate associnfo
3291 * event before returning from this callback function. In addition, the
3292 * driver interface should generate an association event after having
3293 * sent out associnfo.
3294 */
3295 void (*poll)(void *priv);
3296
3297 /**
3298 * get_ifindex - Get interface index
3299 * @priv: private driver interface data
3300 *
3301 * Returns: Interface index
3302 */
3303 unsigned int (*get_ifindex)(void *priv);
3304
3305 /**
3306 * get_ifname - Get interface name
3307 * @priv: private driver interface data
3308 *
3309 * Returns: Pointer to the interface name. This can differ from the
3310 * interface name used in init() call. Init() is called first.
3311 *
3312 * This optional function can be used to allow the driver interface to
3313 * replace the interface name with something else, e.g., based on an
3314 * interface mapping from a more descriptive name.
3315 */
3316 const char * (*get_ifname)(void *priv);
3317
3318 /**
3319 * get_mac_addr - Get own MAC address
3320 * @priv: private driver interface data
3321 *
3322 * Returns: Pointer to own MAC address or %NULL on failure
3323 *
3324 * This optional function can be used to get the own MAC address of the
3325 * device from the driver interface code. This is only needed if the
3326 * l2_packet implementation for the OS does not provide easy access to
3327 * a MAC address. */
3328 const u8 * (*get_mac_addr)(void *priv);
3329
3330 /**
3331 * set_operstate - Sets device operating state to DORMANT or UP
3332 * @priv: private driver interface data
3333 * @state: 0 = dormant, 1 = up
3334 * Returns: 0 on success, -1 on failure
3335 *
3336 * This is an optional function that can be used on operating systems
3337 * that support a concept of controlling network device state from user
3338 * space applications. This function, if set, gets called with
3339 * state = 1 when authentication has been completed and with state = 0
3340 * when connection is lost.
3341 */
3342 int (*set_operstate)(void *priv, int state);
3343
3344 /**
3345 * mlme_setprotection - MLME-SETPROTECTION.request primitive
3346 * @priv: Private driver interface data
3347 * @addr: Address of the station for which to set protection (may be
3348 * %NULL for group keys)
3349 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
3350 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
3351 * Returns: 0 on success, -1 on failure
3352 *
3353 * This is an optional function that can be used to set the driver to
3354 * require protection for Tx and/or Rx frames. This uses the layer
3355 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
3356 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
3357 * set protection operation; instead, they set protection implicitly
3358 * based on configured keys.
3359 */
3360 int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
3361 int key_type);
3362
3363 /**
3364 * get_hw_feature_data - Get hardware support data (channels and rates)
3365 * @priv: Private driver interface data
3366 * @num_modes: Variable for returning the number of returned modes
3367 * flags: Variable for returning hardware feature flags
3368 * @dfs: Variable for returning DFS region (HOSTAPD_DFS_REGION_*)
3369 * Returns: Pointer to allocated hardware data on success or %NULL on
3370 * failure. Caller is responsible for freeing this.
3371 */
3372 struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
3373 u16 *num_modes,
3374 u16 *flags, u8 *dfs);
3375
3376 /**
3377 * send_mlme - Send management frame from MLME
3378 * @priv: Private driver interface data
3379 * @data: IEEE 802.11 management frame with IEEE 802.11 header
3380 * @data_len: Size of the management frame
3381 * @noack: Do not wait for this frame to be acked (disable retries)
3382 * @freq: Frequency (in MHz) to send the frame on, or 0 to let the
3383 * driver decide
3384 * @csa_offs: Array of CSA offsets or %NULL
3385 * @csa_offs_len: Number of elements in csa_offs
3386 * @no_encrypt: Do not encrypt frame even if appropriate key exists
3387 * (used only for testing purposes)
3388 * @wait: Time to wait off-channel for a response (in ms), or zero
3389 * @link_id: Link ID to use for TX, or -1 if not set
3390 * Returns: 0 on success, -1 on failure
3391 */
3392 int (*send_mlme)(void *priv, const u8 *data, size_t data_len,
3393 int noack, unsigned int freq, const u16 *csa_offs,
3394 size_t csa_offs_len, int no_encrypt,
3395 unsigned int wait, int link_id);
3396
3397 /**
3398 * update_ft_ies - Update FT (IEEE 802.11r) IEs
3399 * @priv: Private driver interface data
3400 * @md: Mobility domain (2 octets) (also included inside ies)
3401 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
3402 * @ies_len: Length of FT IEs in bytes
3403 * Returns: 0 on success, -1 on failure
3404 *
3405 * The supplicant uses this callback to let the driver know that keying
3406 * material for FT is available and that the driver can use the
3407 * provided IEs in the next message in FT authentication sequence.
3408 *
3409 * This function is only needed for driver that support IEEE 802.11r
3410 * (Fast BSS Transition).
3411 */
3412 int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
3413 size_t ies_len);
3414
3415 /**
3416 * get_scan_results - Fetch the latest scan results
3417 * @priv: Private driver interface data
3418 * @bssid: Return results only for the specified BSSID, %NULL for all
3419 *
3420 * Returns: Allocated buffer of scan results (caller is responsible for
3421 * freeing the data structure) on success, NULL on failure
3422 */
3423 struct wpa_scan_results * (*get_scan_results)(void *priv,
3424 const u8 *bssid);
3425
3426 /**
3427 * get_scan_results2 - Fetch the latest scan results
3428 * @priv: private driver interface data
3429 *
3430 * Returns: Allocated buffer of scan results (caller is responsible for
3431 * freeing the data structure) on success, NULL on failure
3432 */
3433 struct wpa_scan_results * (*get_scan_results2)(void *priv);
3434
3435 /**
3436 * set_country - Set country
3437 * @priv: Private driver interface data
3438 * @alpha2: country to which to switch to
3439 * Returns: 0 on success, -1 on failure
3440 *
3441 * This function is for drivers which support some form
3442 * of setting a regulatory domain.
3443 */
3444 int (*set_country)(void *priv, const char *alpha2);
3445
3446 /**
3447 * get_country - Get country
3448 * @priv: Private driver interface data
3449 * @alpha2: Buffer for returning country code (at least 3 octets)
3450 * Returns: 0 on success, -1 on failure
3451 */
3452 int (*get_country)(void *priv, char *alpha2);
3453
3454 /**
3455 * global_init - Global driver initialization
3456 * @ctx: wpa_global pointer
3457 * Returns: Pointer to private data (global), %NULL on failure
3458 *
3459 * This optional function is called to initialize the driver wrapper
3460 * for global data, i.e., data that applies to all interfaces. If this
3461 * function is implemented, global_deinit() will also need to be
3462 * implemented to free the private data. The driver will also likely
3463 * use init2() function instead of init() to get the pointer to global
3464 * data available to per-interface initializer.
3465 */
3466 void * (*global_init)(void *ctx);
3467
3468 /**
3469 * global_deinit - Global driver deinitialization
3470 * @priv: private driver global data from global_init()
3471 *
3472 * Terminate any global driver related functionality and free the
3473 * global data structure.
3474 */
3475 void (*global_deinit)(void *priv);
3476
3477 /**
3478 * init2 - Initialize driver interface (with global data)
3479 * @ctx: context to be used when calling wpa_supplicant functions,
3480 * e.g., wpa_supplicant_event()
3481 * @ifname: interface name, e.g., wlan0
3482 * @global_priv: private driver global data from global_init()
3483 * Returns: Pointer to private data, %NULL on failure
3484 *
3485 * This function can be used instead of init() if the driver wrapper
3486 * uses global data.
3487 */
3488 void * (*init2)(void *ctx, const char *ifname, void *global_priv);
3489
3490 /**
3491 * get_interfaces - Get information about available interfaces
3492 * @global_priv: private driver global data from global_init()
3493 * Returns: Allocated buffer of interface information (caller is
3494 * responsible for freeing the data structure) on success, NULL on
3495 * failure
3496 */
3497 struct wpa_interface_info * (*get_interfaces)(void *global_priv);
3498
3499 /**
3500 * scan2 - Request the driver to initiate scan
3501 * @priv: private driver interface data
3502 * @params: Scan parameters
3503 *
3504 * Returns: 0 on success, -1 on failure
3505 *
3506 * Once the scan results are ready, the driver should report scan
3507 * results event for wpa_supplicant which will eventually request the
3508 * results with wpa_driver_get_scan_results2().
3509 */
3510 int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
3511
3512 /**
3513 * authenticate - Request driver to authenticate
3514 * @priv: private driver interface data
3515 * @params: authentication parameters
3516 * Returns: 0 on success, -1 on failure
3517 *
3518 * This is an optional function that can be used with drivers that
3519 * support separate authentication and association steps, i.e., when
3520 * wpa_supplicant can act as the SME. If not implemented, associate()
3521 * function is expected to take care of IEEE 802.11 authentication,
3522 * too.
3523 */
3524 int (*authenticate)(void *priv,
3525 struct wpa_driver_auth_params *params);
3526
3527 /**
3528 * set_ap - Set Beacon and Probe Response information for AP mode
3529 * @priv: Private driver interface data
3530 * @params: Parameters to use in AP mode
3531 *
3532 * This function is used to configure Beacon template and/or extra IEs
3533 * to add for Beacon and Probe Response frames for the driver in
3534 * AP mode. The driver is responsible for building the full Beacon
3535 * frame by concatenating the head part with TIM IE generated by the
3536 * driver/firmware and finishing with the tail part. Depending on the
3537 * driver architectue, this can be done either by using the full
3538 * template or the set of additional IEs (e.g., WPS and P2P IE).
3539 * Similarly, Probe Response processing depends on the driver design.
3540 * If the driver (or firmware) takes care of replying to Probe Request
3541 * frames, the extra IEs provided here needs to be added to the Probe
3542 * Response frames.
3543 *
3544 * Returns: 0 on success, -1 on failure
3545 */
3546 int (*set_ap)(void *priv, struct wpa_driver_ap_params *params);
3547
3548 /**
3549 * set_acl - Set ACL in AP mode
3550 * @priv: Private driver interface data
3551 * @params: Parameters to configure ACL
3552 * Returns: 0 on success, -1 on failure
3553 *
3554 * This is used only for the drivers which support MAC address ACL.
3555 */
3556 int (*set_acl)(void *priv, struct hostapd_acl_params *params);
3557
3558 /**
3559 * hapd_init - Initialize driver interface (hostapd only)
3560 * @hapd: Pointer to hostapd context
3561 * @params: Configuration for the driver wrapper
3562 * Returns: Pointer to private data, %NULL on failure
3563 *
3564 * This function is used instead of init() or init2() when the driver
3565 * wrapper is used with hostapd.
3566 */
3567 void * (*hapd_init)(struct hostapd_data *hapd,
3568 struct wpa_init_params *params);
3569
3570 /**
3571 * hapd_deinit - Deinitialize driver interface (hostapd only)
3572 * @priv: Private driver interface data from hapd_init()
3573 */
3574 void (*hapd_deinit)(void *priv);
3575
3576 /**
3577 * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
3578 * @priv: Private driver interface data
3579 * @params: BSS parameters
3580 * Returns: 0 on success, -1 on failure
3581 *
3582 * This is an optional function to configure the kernel driver to
3583 * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
3584 * can be left undefined (set to %NULL) if IEEE 802.1X support is
3585 * always enabled and the driver uses set_ap() to set WPA/RSN IE
3586 * for Beacon frames.
3587 *
3588 * DEPRECATED - use set_ap() instead
3589 */
3590 int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
3591
3592 /**
3593 * set_privacy - Enable/disable privacy (AP only)
3594 * @priv: Private driver interface data
3595 * @enabled: 1 = privacy enabled, 0 = disabled
3596 * Returns: 0 on success, -1 on failure
3597 *
3598 * This is an optional function to configure privacy field in the
3599 * kernel driver for Beacon frames. This can be left undefined (set to
3600 * %NULL) if the driver uses the Beacon template from set_ap().
3601 *
3602 * DEPRECATED - use set_ap() instead
3603 */
3604 int (*set_privacy)(void *priv, int enabled);
3605
3606 /**
3607 * get_seqnum - Fetch the current TSC/packet number (AP only)
3608 * @ifname: The interface name (main or virtual)
3609 * @priv: Private driver interface data
3610 * @addr: MAC address of the station or %NULL for group keys
3611 * @idx: Key index
3612 * @link_id: Link ID for a group key, or -1 if not set
3613 * @seq: Buffer for returning the latest used TSC/packet number
3614 * Returns: 0 on success, -1 on failure
3615 *
3616 * This function is used to fetch the last used TSC/packet number for
3617 * a TKIP, CCMP, GCMP, or BIP/IGTK key. It is mainly used with group
3618 * keys, so there is no strict requirement on implementing support for
3619 * unicast keys (i.e., addr != %NULL).
3620 */
3621 int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
3622 int idx, int link_id, u8 *seq);
3623
3624 /**
3625 * flush - Flush all association stations (AP only)
3626 * @priv: Private driver interface data
3627 * @link_id: In case of MLO, valid link ID on which all associated
3628 * stations will be flushed, -1 otherwise.
3629 * Returns: 0 on success, -1 on failure
3630 *
3631 * This function requests the driver to disassociate all associated
3632 * stations. This function does not need to be implemented if the
3633 * driver does not process association frames internally.
3634 */
3635 int (*flush)(void *priv, int link_id);
3636
3637 /**
3638 * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
3639 * @priv: Private driver interface data
3640 * @elem: Information elements
3641 * @elem_len: Length of the elem buffer in octets
3642 * Returns: 0 on success, -1 on failure
3643 *
3644 * This is an optional function to add information elements in the
3645 * kernel driver for Beacon and Probe Response frames. This can be left
3646 * undefined (set to %NULL) if the driver uses the Beacon template from
3647 * set_ap().
3648 *
3649 * DEPRECATED - use set_ap() instead
3650 */
3651 int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
3652
3653 /**
3654 * read_sta_data - Fetch station data
3655 * @priv: Private driver interface data
3656 * @data: Buffer for returning station information
3657 * @addr: MAC address of the station
3658 * Returns: 0 on success, -1 on failure
3659 */
3660 int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
3661 const u8 *addr);
3662
3663 /**
3664 * tx_control_port - Send a frame over the 802.1X controlled port
3665 * @priv: Private driver interface data
3666 * @dest: Destination MAC address
3667 * @proto: Ethertype in host byte order
3668 * @buf: Frame payload starting from IEEE 802.1X header
3669 * @len: Frame payload length
3670 * @no_encrypt: Do not encrypt frame
3671 * @link_id: Link ID to use for TX, or -1 if not set
3672 *
3673 * Returns 0 on success, else an error
3674 *
3675 * This is like a normal Ethernet send except that the driver is aware
3676 * (by other means than the Ethertype) that this frame is special,
3677 * and more importantly it gains an ordering between the transmission of
3678 * the frame and other driver management operations such as key
3679 * installations. This can be used to work around known limitations in
3680 * IEEE 802.11 protocols such as race conditions between rekeying 4-way
3681 * handshake message 4/4 and a PTK being overwritten.
3682 *
3683 * This function is only used for a given interface if the driver
3684 * instance reports WPA_DRIVER_FLAGS_CONTROL_PORT capability. Otherwise,
3685 * API users will fall back to sending the frame via a normal socket.
3686 */
3687 int (*tx_control_port)(void *priv, const u8 *dest,
3688 u16 proto, const u8 *buf, size_t len,
3689 int no_encrypt, int link_id);
3690
3691 /**
3692 * hapd_send_eapol - Send an EAPOL packet (AP only)
3693 * @priv: private driver interface data
3694 * @addr: Destination MAC address
3695 * @data: EAPOL packet starting with IEEE 802.1X header
3696 * @data_len: Length of the EAPOL packet in octets
3697 * @encrypt: Whether the frame should be encrypted
3698 * @own_addr: Source MAC address
3699 * @flags: WPA_STA_* flags for the destination station
3700 * @link_id: Link ID to use for TX, or -1 if not set
3701 *
3702 * Returns: 0 on success, -1 on failure
3703 */
3704 int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
3705 size_t data_len, int encrypt,
3706 const u8 *own_addr, u32 flags, int link_id);
3707
3708 /**
3709 * sta_deauth - Deauthenticate a station (AP only)
3710 * @priv: Private driver interface data
3711 * @own_addr: Source address and BSSID for the Deauthentication frame
3712 * @addr: MAC address of the station to deauthenticate
3713 * @reason: Reason code for the Deauthentication frame
3714 * @link_id: Link ID to use for Deauthentication frame, or -1 if not set
3715 * Returns: 0 on success, -1 on failure
3716 *
3717 * This function requests a specific station to be deauthenticated and
3718 * a Deauthentication frame to be sent to it.
3719 */
3720 int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
3721 u16 reason, int link_id);
3722
3723 /**
3724 * sta_disassoc - Disassociate a station (AP only)
3725 * @priv: Private driver interface data
3726 * @own_addr: Source address and BSSID for the Disassociation frame
3727 * @addr: MAC address of the station to disassociate
3728 * @reason: Reason code for the Disassociation frame
3729 * Returns: 0 on success, -1 on failure
3730 *
3731 * This function requests a specific station to be disassociated and
3732 * a Disassociation frame to be sent to it.
3733 */
3734 int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
3735 u16 reason);
3736
3737 /**
3738 * sta_remove - Remove a station entry (AP only)
3739 * @priv: Private driver interface data
3740 * @addr: MAC address of the station to be removed
3741 * Returns: 0 on success, -1 on failure
3742 */
3743 int (*sta_remove)(void *priv, const u8 *addr);
3744
3745 /**
3746 * hapd_get_ssid - Get the current SSID (AP only)
3747 * @priv: Private driver interface data
3748 * @buf: Buffer for returning the SSID
3749 * @len: Maximum length of the buffer
3750 * Returns: Length of the SSID on success, -1 on failure
3751 *
3752 * This function need not be implemented if the driver uses Beacon
3753 * template from set_ap() and does not reply to Probe Request frames.
3754 */
3755 int (*hapd_get_ssid)(void *priv, u8 *buf, int len);
3756
3757 /**
3758 * hapd_set_ssid - Set SSID (AP only)
3759 * @priv: Private driver interface data
3760 * @buf: SSID
3761 * @len: Length of the SSID in octets
3762 * Returns: 0 on success, -1 on failure
3763 *
3764 * DEPRECATED - use set_ap() instead
3765 */
3766 int (*hapd_set_ssid)(void *priv, const u8 *buf, int len);
3767
3768 /**
3769 * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
3770 * @priv: Private driver interface data
3771 * @enabled: 1 = countermeasures enabled, 0 = disabled
3772 * Returns: 0 on success, -1 on failure
3773 *
3774 * This need not be implemented if the driver does not take care of
3775 * association processing.
3776 */
3777 int (*hapd_set_countermeasures)(void *priv, int enabled);
3778
3779 /**
3780 * sta_add - Add a station entry
3781 * @priv: Private driver interface data
3782 * @params: Station parameters
3783 * Returns: 0 on success, -1 on failure
3784 *
3785 * This function is used to add or set (params->set 1) a station
3786 * entry in the driver. Adding STA entries is used only if the driver
3787 * does not take care of association processing.
3788 *
3789 * With drivers that don't support full AP client state, this function
3790 * is used to add a station entry to the driver once the station has
3791 * completed association.
3792 *
3793 * With TDLS, this function is used to add or set (params->set 1)
3794 * TDLS peer entries (even with drivers that do not support full AP
3795 * client state).
3796 */
3797 int (*sta_add)(void *priv, struct hostapd_sta_add_params *params);
3798
3799 /**
3800 * get_inact_sec - Get station inactivity duration (AP only)
3801 * @priv: Private driver interface data
3802 * @addr: Station address
3803 * Returns: Number of seconds station has been inactive, -1 on failure
3804 */
3805 int (*get_inact_sec)(void *priv, const u8 *addr);
3806
3807 /**
3808 * sta_clear_stats - Clear station statistics (AP only)
3809 * @priv: Private driver interface data
3810 * @addr: Station address
3811 * Returns: 0 on success, -1 on failure
3812 */
3813 int (*sta_clear_stats)(void *priv, const u8 *addr);
3814
3815 /**
3816 * set_freq - Set channel/frequency (AP only)
3817 * @priv: Private driver interface data
3818 * @freq: Channel parameters
3819 * Returns: 0 on success, -1 on failure
3820 */
3821 int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
3822
3823 /**
3824 * set_rts - Set RTS threshold
3825 * @priv: Private driver interface data
3826 * @rts: RTS threshold in octets
3827 * Returns: 0 on success, -1 on failure
3828 */
3829 int (*set_rts)(void *priv, int rts);
3830
3831 /**
3832 * set_frag - Set fragmentation threshold
3833 * @priv: Private driver interface data
3834 * @frag: Fragmentation threshold in octets
3835 * Returns: 0 on success, -1 on failure
3836 */
3837 int (*set_frag)(void *priv, int frag);
3838
3839 /**
3840 * sta_set_flags - Set station flags (AP only)
3841 * @priv: Private driver interface data
3842 * @addr: Station address
3843 * @total_flags: Bitmap of all WPA_STA_* flags currently set
3844 * @flags_or: Bitmap of WPA_STA_* flags to add
3845 * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
3846 * Returns: 0 on success, -1 on failure
3847 */
3848 int (*sta_set_flags)(void *priv, const u8 *addr,
3849 unsigned int total_flags, unsigned int flags_or,
3850 unsigned int flags_and);
3851
3852 /**
3853 * sta_set_airtime_weight - Set station airtime weight (AP only)
3854 * @priv: Private driver interface data
3855 * @addr: Station address
3856 * @weight: New weight for station airtime assignment
3857 * Returns: 0 on success, -1 on failure
3858 */
3859 int (*sta_set_airtime_weight)(void *priv, const u8 *addr,
3860 unsigned int weight);
3861
3862 /**
3863 * set_tx_queue_params - Set TX queue parameters
3864 * @priv: Private driver interface data
3865 * @queue: Queue number (0 = VO, 1 = VI, 2 = BE, 3 = BK)
3866 * @aifs: AIFS
3867 * @cw_min: cwMin
3868 * @cw_max: cwMax
3869 * @burst_time: Maximum length for bursting in 0.1 msec units
3870 * @link_id: Link ID to use, or -1 for non MLD.
3871 */
3872 int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
3873 int cw_max, int burst_time, int link_id);
3874
3875 /**
3876 * if_add - Add a virtual interface
3877 * @priv: Private driver interface data
3878 * @type: Interface type
3879 * @ifname: Interface name for the new virtual interface
3880 * @addr: Local address to use for the interface or %NULL to use the
3881 * parent interface address
3882 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
3883 * @drv_priv: Pointer for overwriting the driver context or %NULL if
3884 * not allowed (applies only to %WPA_IF_AP_BSS type)
3885 * @force_ifname: Buffer for returning an interface name that the
3886 * driver ended up using if it differs from the requested ifname
3887 * @if_addr: Buffer for returning the allocated interface address
3888 * (this may differ from the requested addr if the driver cannot
3889 * change interface address)
3890 * @bridge: Bridge interface to use or %NULL if no bridge configured
3891 * @use_existing: Whether to allow existing interface to be used
3892 * @setup_ap: Whether to setup AP for %WPA_IF_AP_BSS interfaces
3893 * Returns: 0 on success, -1 on failure
3894 */
3895 int (*if_add)(void *priv, enum wpa_driver_if_type type,
3896 const char *ifname, const u8 *addr, void *bss_ctx,
3897 void **drv_priv, char *force_ifname, u8 *if_addr,
3898 const char *bridge, int use_existing, int setup_ap);
3899
3900 /**
3901 * if_remove - Remove a virtual interface
3902 * @priv: Private driver interface data
3903 * @type: Interface type
3904 * @ifname: Interface name of the virtual interface to be removed
3905 * Returns: 0 on success, -1 on failure
3906 */
3907 int (*if_remove)(void *priv, enum wpa_driver_if_type type,
3908 const char *ifname);
3909
3910 /**
3911 * set_sta_vlan - Bind a station into a specific interface (AP only)
3912 * @priv: Private driver interface data
3913 * @ifname: Interface (main or virtual BSS or VLAN)
3914 * @addr: MAC address of the associated station
3915 * @vlan_id: VLAN ID
3916 * @link_id: The link ID or -1 for non-MLO
3917 * Returns: 0 on success, -1 on failure
3918 *
3919 * This function is used to bind a station to a specific virtual
3920 * interface. It is only used if when virtual interfaces are supported,
3921 * e.g., to assign stations to different VLAN interfaces based on
3922 * information from a RADIUS server. This allows separate broadcast
3923 * domains to be used with a single BSS.
3924 */
3925 int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
3926 int vlan_id, int link_id);
3927
3928 /**
3929 * commit - Optional commit changes handler (AP only)
3930 * @priv: driver private data
3931 * Returns: 0 on success, -1 on failure
3932 *
3933 * This optional handler function can be registered if the driver
3934 * interface implementation needs to commit changes (e.g., by setting
3935 * network interface up) at the end of initial configuration. If set,
3936 * this handler will be called after initial setup has been completed.
3937 */
3938 int (*commit)(void *priv);
3939
3940 /**
3941 * set_radius_acl_auth - Notification of RADIUS ACL change
3942 * @priv: Private driver interface data
3943 * @mac: MAC address of the station
3944 * @accepted: Whether the station was accepted
3945 * @session_timeout: Session timeout for the station
3946 * Returns: 0 on success, -1 on failure
3947 */
3948 int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted,
3949 u32 session_timeout);
3950
3951 /**
3952 * set_radius_acl_expire - Notification of RADIUS ACL expiration
3953 * @priv: Private driver interface data
3954 * @mac: MAC address of the station
3955 * Returns: 0 on success, -1 on failure
3956 */
3957 int (*set_radius_acl_expire)(void *priv, const u8 *mac);
3958
3959 /**
3960 * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
3961 * @priv: Private driver interface data
3962 * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
3963 * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
3964 * extra IE(s)
3965 * @assocresp: WPS IE(s) for (Re)Association Response frames or %NULL
3966 * to remove extra IE(s)
3967 * Returns: 0 on success, -1 on failure
3968 *
3969 * This is an optional function to add WPS IE in the kernel driver for
3970 * Beacon and Probe Response frames. This can be left undefined (set
3971 * to %NULL) if the driver uses the Beacon template from set_ap()
3972 * and does not process Probe Request frames. If the driver takes care
3973 * of (Re)Association frame processing, the assocresp buffer includes
3974 * WPS IE(s) that need to be added to (Re)Association Response frames
3975 * whenever a (Re)Association Request frame indicated use of WPS.
3976 *
3977 * This will also be used to add P2P IE(s) into Beacon/Probe Response
3978 * frames when operating as a GO. The driver is responsible for adding
3979 * timing related attributes (e.g., NoA) in addition to the IEs
3980 * included here by appending them after these buffers. This call is
3981 * also used to provide Probe Response IEs for P2P Listen state
3982 * operations for drivers that generate the Probe Response frames
3983 * internally.
3984 *
3985 * DEPRECATED - use set_ap() instead
3986 */
3987 int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon,
3988 const struct wpabuf *proberesp,
3989 const struct wpabuf *assocresp);
3990
3991 /**
3992 * set_supp_port - Set IEEE 802.1X Supplicant Port status
3993 * @priv: Private driver interface data
3994 * @authorized: Whether the port is authorized
3995 * Returns: 0 on success, -1 on failure
3996 */
3997 int (*set_supp_port)(void *priv, int authorized);
3998
3999 /**
4000 * set_wds_sta - Bind a station into a 4-address WDS (AP only)
4001 * @priv: Private driver interface data
4002 * @addr: MAC address of the associated station
4003 * @aid: Association ID
4004 * @val: 1 = bind to 4-address WDS; 0 = unbind
4005 * @bridge_ifname: Bridge interface to use for the WDS station or %NULL
4006 * to indicate that bridge is not to be used
4007 * @ifname_wds: Buffer to return the interface name for the new WDS
4008 * station or %NULL to indicate name is not returned.
4009 * Returns: 0 on success, -1 on failure
4010 */
4011 int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val,
4012 const char *bridge_ifname, char *ifname_wds);
4013
4014 /**
4015 * send_action - Transmit an Action frame
4016 * @priv: Private driver interface data
4017 * @freq: Frequency (in MHz) of the channel
4018 * @wait: Time to wait off-channel for a response (in ms), or zero
4019 * @dst: Destination MAC address (Address 1)
4020 * @src: Source MAC address (Address 2)
4021 * @bssid: BSSID (Address 3)
4022 * @data: Frame body
4023 * @data_len: data length in octets
4024 @ @no_cck: Whether CCK rates must not be used to transmit this frame
4025 * Returns: 0 on success, -1 on failure
4026 *
4027 * This command can be used to request the driver to transmit an action
4028 * frame to the specified destination.
4029 *
4030 * If the %WPA_DRIVER_FLAGS_OFFCHANNEL_TX flag is set, the frame will
4031 * be transmitted on the given channel and the device will wait for a
4032 * response on that channel for the given wait time.
4033 *
4034 * If the flag is not set, the wait time will be ignored. In this case,
4035 * if a remain-on-channel duration is in progress, the frame must be
4036 * transmitted on that channel; alternatively the frame may be sent on
4037 * the current operational channel (if in associated state in station
4038 * mode or while operating as an AP.)
4039 *
4040 * If @src differs from the device MAC address, use of a random
4041 * transmitter address is requested for this message exchange.
4042 */
4043 int (*send_action)(void *priv, unsigned int freq, unsigned int wait,
4044 const u8 *dst, const u8 *src, const u8 *bssid,
4045 const u8 *data, size_t data_len, int no_cck);
4046
4047 /**
4048 * send_action_cancel_wait - Cancel action frame TX wait
4049 * @priv: Private driver interface data
4050 *
4051 * This command cancels the wait time associated with sending an action
4052 * frame. It is only available when %WPA_DRIVER_FLAGS_OFFCHANNEL_TX is
4053 * set in the driver flags.
4054 */
4055 void (*send_action_cancel_wait)(void *priv);
4056
4057 /**
4058 * remain_on_channel - Remain awake on a channel
4059 * @priv: Private driver interface data
4060 * @freq: Frequency (in MHz) of the channel
4061 * @duration: Duration in milliseconds
4062 * Returns: 0 on success, -1 on failure
4063 *
4064 * This command is used to request the driver to remain awake on the
4065 * specified channel for the specified duration and report received
4066 * Action frames with EVENT_RX_MGMT events. Optionally, received
4067 * Probe Request frames may also be requested to be reported by calling
4068 * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
4069 *
4070 * The driver may not be at the requested channel when this function
4071 * returns, i.e., the return code is only indicating whether the
4072 * request was accepted. The caller will need to wait until the
4073 * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
4074 * completed the channel change. This may take some time due to other
4075 * need for the radio and the caller should be prepared to timing out
4076 * its wait since there are no guarantees on when this request can be
4077 * executed.
4078 */
4079 int (*remain_on_channel)(void *priv, unsigned int freq,
4080 unsigned int duration);
4081
4082 /**
4083 * cancel_remain_on_channel - Cancel remain-on-channel operation
4084 * @priv: Private driver interface data
4085 *
4086 * This command can be used to cancel a remain-on-channel operation
4087 * before its originally requested duration has passed. This could be
4088 * used, e.g., when remain_on_channel() is used to request extra time
4089 * to receive a response to an Action frame and the response is
4090 * received when there is still unneeded time remaining on the
4091 * remain-on-channel operation.
4092 */
4093 int (*cancel_remain_on_channel)(void *priv);
4094
4095 /**
4096 * probe_req_report - Request Probe Request frames to be indicated
4097 * @priv: Private driver interface data
4098 * @report: Whether to report received Probe Request frames
4099 * Returns: 0 on success, -1 on failure (or if not supported)
4100 *
4101 * This command can be used to request the driver to indicate when
4102 * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
4103 * Since this operation may require extra resources, e.g., due to less
4104 * optimal hardware/firmware RX filtering, many drivers may disable
4105 * Probe Request reporting at least in station mode. This command is
4106 * used to notify the driver when the Probe Request frames need to be
4107 * reported, e.g., during remain-on-channel operations.
4108 */
4109 int (*probe_req_report)(void *priv, int report);
4110
4111 /**
4112 * deinit_ap - Deinitialize AP mode
4113 * @priv: Private driver interface data
4114 * Returns: 0 on success, -1 on failure (or if not supported)
4115 *
4116 * This optional function can be used to disable AP mode related
4117 * configuration. If the interface was not dynamically added,
4118 * change the driver mode to station mode to allow normal station
4119 * operations like scanning to be completed.
4120 */
4121 int (*deinit_ap)(void *priv);
4122
4123 /**
4124 * deinit_p2p_cli - Deinitialize P2P client mode
4125 * @priv: Private driver interface data
4126 * Returns: 0 on success, -1 on failure (or if not supported)
4127 *
4128 * This optional function can be used to disable P2P client mode. If the
4129 * interface was not dynamically added, change the interface type back
4130 * to station mode.
4131 */
4132 int (*deinit_p2p_cli)(void *priv);
4133
4134 /**
4135 * suspend - Notification on system suspend/hibernate event
4136 * @priv: Private driver interface data
4137 */
4138 void (*suspend)(void *priv);
4139
4140 /**
4141 * resume - Notification on system resume/thaw event
4142 * @priv: Private driver interface data
4143 */
4144 void (*resume)(void *priv);
4145
4146 /**
4147 * signal_monitor - Set signal monitoring parameters
4148 * @priv: Private driver interface data
4149 * @threshold: Threshold value for signal change events; 0 = disabled
4150 * @hysteresis: Minimum change in signal strength before indicating a
4151 * new event
4152 * Returns: 0 on success, -1 on failure (or if not supported)
4153 *
4154 * This function can be used to configure monitoring of signal strength
4155 * with the current AP. Whenever signal strength drops below the
4156 * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
4157 * should be generated assuming the signal strength has changed at
4158 * least %hysteresis from the previously indicated signal change event.
4159 */
4160 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
4161
4162 /**
4163 * get_noa - Get current Notice of Absence attribute payload
4164 * @priv: Private driver interface data
4165 * @buf: Buffer for returning NoA
4166 * @buf_len: Buffer length in octets
4167 * Returns: Number of octets used in buf, 0 to indicate no NoA is being
4168 * advertized, or -1 on failure
4169 *
4170 * This function is used to fetch the current Notice of Absence
4171 * attribute value from GO.
4172 */
4173 int (*get_noa)(void *priv, u8 *buf, size_t buf_len);
4174
4175 /**
4176 * set_noa - Set Notice of Absence parameters for GO (testing)
4177 * @priv: Private driver interface data
4178 * @count: Count
4179 * @start: Start time in ms from next TBTT
4180 * @duration: Duration in ms
4181 * Returns: 0 on success or -1 on failure
4182 *
4183 * This function is used to set Notice of Absence parameters for GO. It
4184 * is used only for testing. To disable NoA, all parameters are set to
4185 * 0.
4186 */
4187 int (*set_noa)(void *priv, u8 count, int start, int duration);
4188
4189 /**
4190 * set_p2p_powersave - Set P2P power save options
4191 * @priv: Private driver interface data
4192 * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change
4193 * @opp_ps: 0 = disable, 1 = enable, -1 = no change
4194 * @ctwindow: 0.. = change (msec), -1 = no change
4195 * Returns: 0 on success or -1 on failure
4196 */
4197 int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps,
4198 int ctwindow);
4199
4200 /**
4201 * ampdu - Enable/disable aggregation
4202 * @priv: Private driver interface data
4203 * @ampdu: 1/0 = enable/disable A-MPDU aggregation
4204 * Returns: 0 on success or -1 on failure
4205 */
4206 int (*ampdu)(void *priv, int ampdu);
4207
4208 /**
4209 * get_radio_name - Get physical radio name for the device
4210 * @priv: Private driver interface data
4211 * Returns: Radio name or %NULL if not known
4212 *
4213 * The returned data must not be modified by the caller. It is assumed
4214 * that any interface that has the same radio name as another is
4215 * sharing the same physical radio. This information can be used to
4216 * share scan results etc. information between the virtual interfaces
4217 * to speed up various operations.
4218 */
4219 const char * (*get_radio_name)(void *priv);
4220
4221 /**
4222 * send_tdls_mgmt - for sending TDLS management packets
4223 * @priv: private driver interface data
4224 * @dst: Destination (peer) MAC address
4225 * @action_code: TDLS action code for the mssage
4226 * @dialog_token: Dialog Token to use in the message (if needed)
4227 * @status_code: Status Code or Reason Code to use (if needed)
4228 * @peer_capab: TDLS peer capability (TDLS_PEER_* bitfield)
4229 * @initiator: Is the current end the TDLS link initiator
4230 * @buf: TDLS IEs to add to the message
4231 * @len: Length of buf in octets
4232 * @link_id: If >= 0 indicates the link of the AP MLD to specify the
4233 * operating channel on which to send a TDLS Discovery Response frame.
4234 * Returns: 0 on success, negative (<0) on failure
4235 *
4236 * This optional function can be used to send packet to driver which is
4237 * responsible for receiving and sending all TDLS packets.
4238 */
4239 int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code,
4240 u8 dialog_token, u16 status_code, u32 peer_capab,
4241 int initiator, const u8 *buf, size_t len,
4242 int link_id);
4243
4244 /**
4245 * tdls_oper - Ask the driver to perform high-level TDLS operations
4246 * @priv: Private driver interface data
4247 * @oper: TDLS high-level operation. See %enum tdls_oper
4248 * @peer: Destination (peer) MAC address
4249 * Returns: 0 on success, negative (<0) on failure
4250 *
4251 * This optional function can be used to send high-level TDLS commands
4252 * to the driver.
4253 */
4254 int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer);
4255
4256 /**
4257 * wnm_oper - Notify driver of the WNM frame reception
4258 * @priv: Private driver interface data
4259 * @oper: WNM operation. See %enum wnm_oper
4260 * @peer: Destination (peer) MAC address
4261 * @buf: Buffer for the driver to fill in (for getting IE)
4262 * @buf_len: Return the len of buf
4263 * Returns: 0 on success, negative (<0) on failure
4264 */
4265 int (*wnm_oper)(void *priv, enum wnm_oper oper, const u8 *peer,
4266 u8 *buf, u16 *buf_len);
4267
4268 /**
4269 * set_qos_map - Set QoS Map
4270 * @priv: Private driver interface data
4271 * @qos_map_set: QoS Map
4272 * @qos_map_set_len: Length of QoS Map
4273 */
4274 int (*set_qos_map)(void *priv, const u8 *qos_map_set,
4275 u8 qos_map_set_len);
4276
4277 /**
4278 * br_add_ip_neigh - Add a neigh to the bridge ip neigh table
4279 * @priv: Private driver interface data
4280 * @version: IP version of the IP address, 4 or 6
4281 * @ipaddr: IP address for the neigh entry
4282 * @prefixlen: IP address prefix length
4283 * @addr: Corresponding MAC address
4284 * Returns: 0 on success, negative (<0) on failure
4285 */
4286 int (*br_add_ip_neigh)(void *priv, u8 version, const u8 *ipaddr,
4287 int prefixlen, const u8 *addr);
4288
4289 /**
4290 * br_delete_ip_neigh - Remove a neigh from the bridge ip neigh table
4291 * @priv: Private driver interface data
4292 * @version: IP version of the IP address, 4 or 6
4293 * @ipaddr: IP address for the neigh entry
4294 * Returns: 0 on success, negative (<0) on failure
4295 */
4296 int (*br_delete_ip_neigh)(void *priv, u8 version, const u8 *ipaddr);
4297
4298 /**
4299 * br_port_set_attr - Set a bridge port attribute
4300 * @attr: Bridge port attribute to set
4301 * @val: Value to be set
4302 * Returns: 0 on success, negative (<0) on failure
4303 */
4304 int (*br_port_set_attr)(void *priv, enum drv_br_port_attr attr,
4305 unsigned int val);
4306
4307 /**
4308 * br_port_set_attr - Set a bridge network parameter
4309 * @param: Bridge parameter to set
4310 * @val: Value to be set
4311 * Returns: 0 on success, negative (<0) on failure
4312 */
4313 int (*br_set_net_param)(void *priv, enum drv_br_net_param param,
4314 unsigned int val);
4315
4316 /**
4317 * get_wowlan - Get wake-on-wireless status
4318 * @priv: Private driver interface data
4319 */
4320 int (*get_wowlan)(void *priv);
4321
4322 /**
4323 * set_wowlan - Set wake-on-wireless triggers
4324 * @priv: Private driver interface data
4325 * @triggers: wowlan triggers
4326 */
4327 int (*set_wowlan)(void *priv, const struct wowlan_triggers *triggers);
4328
4329 /**
4330 * signal_poll - Get current connection information
4331 * @priv: Private driver interface data
4332 * @signal_info: Connection info structure
4333 */
4334 int (*signal_poll)(void *priv, struct wpa_signal_info *signal_info);
4335
4336 /**
4337 * beacon_poll - Get beacon info of current SSID
4338 * @priv: Private driver interface data
4339 * @beacon_info: Beacon info structure
4340 */
4341 int (*get_conn_info)(void *priv, struct wpa_conn_info *conn_info);
4342
4343 /**
4344 * mlo_signal_poll - Get current MLO connection information
4345 * @priv: Private driver interface data
4346 * @mlo_signal_info: MLO connection info structure
4347 */
4348 int (*mlo_signal_poll)(void *priv,
4349 struct wpa_mlo_signal_info *mlo_signal_info);
4350
4351 /**
4352 * channel_info - Get parameters of the current operating channel
4353 * @priv: Private driver interface data
4354 * @channel_info: Channel info structure
4355 * Returns: 0 on success, negative (<0) on failure
4356 */
4357 int (*channel_info)(void *priv, struct wpa_channel_info *channel_info);
4358
4359 /**
4360 * set_authmode - Set authentication algorithm(s) for static WEP
4361 * @priv: Private driver interface data
4362 * @authmode: 1=Open System, 2=Shared Key, 3=both
4363 * Returns: 0 on success, -1 on failure
4364 *
4365 * This function can be used to set authentication algorithms for AP
4366 * mode when static WEP is used. If the driver uses user space MLME/SME
4367 * implementation, there is no need to implement this function.
4368 *
4369 * DEPRECATED - use set_ap() instead
4370 */
4371 int (*set_authmode)(void *priv, int authmode);
4372
4373 #ifdef ANDROID
4374 /**
4375 * driver_cmd - Execute driver-specific command
4376 * @priv: Private driver interface data
4377 * @cmd: Command to execute
4378 * @buf: Return buffer
4379 * @buf_len: Buffer length
4380 * Returns: 0 on success, -1 on failure
4381 */
4382 int (*driver_cmd)(void *priv, char *cmd, char *buf, size_t buf_len);
4383 #endif /* ANDROID */
4384
4385 /**
4386 * vendor_cmd - Execute vendor specific command
4387 * @priv: Private driver interface data
4388 * @vendor_id: Vendor id
4389 * @subcmd: Vendor command id
4390 * @nested_attr_flag: Specifies if vendor subcommand uses nested
4391 * attributes or not
4392 * @data: Vendor command parameters (%NULL if no parameters)
4393 * @data_len: Data length
4394 * @buf: Return buffer (%NULL to ignore reply)
4395 * Returns: 0 on success, negative (<0) on failure
4396 *
4397 * This function handles vendor specific commands that are passed to
4398 * the driver/device. The command is identified by vendor id and
4399 * command id. The nested_attr_flag specifies whether the subcommand
4400 * uses nested attributes or not. Parameters can be passed
4401 * as argument to the command in the data buffer. Reply (if any) will be
4402 * filled in the supplied return buffer.
4403 *
4404 * The exact driver behavior is driver interface and vendor specific. As
4405 * an example, this will be converted to a vendor specific cfg80211
4406 * command in case of the nl80211 driver interface.
4407 */
4408 int (*vendor_cmd)(void *priv, unsigned int vendor_id,
4409 unsigned int subcmd, const u8 *data, size_t data_len,
4410 enum nested_attr nested_attr_flag,
4411 struct wpabuf *buf);
4412
4413 /**
4414 * set_rekey_info - Set rekey information
4415 * @priv: Private driver interface data
4416 * @kek: Current KEK
4417 * @kek_len: KEK length in octets
4418 * @kck: Current KCK
4419 * @kck_len: KCK length in octets
4420 * @replay_ctr: Current EAPOL-Key Replay Counter
4421 *
4422 * This optional function can be used to provide information for the
4423 * driver/firmware to process EAPOL-Key frames in Group Key Handshake
4424 * while the host (including wpa_supplicant) is sleeping.
4425 */
4426 void (*set_rekey_info)(void *priv, const u8 *kek, size_t kek_len,
4427 const u8 *kck, size_t kck_len,
4428 const u8 *replay_ctr);
4429
4430 /**
4431 * sta_assoc - Station association indication
4432 * @priv: Private driver interface data
4433 * @own_addr: Source address and BSSID for association frame
4434 * @addr: MAC address of the station to associate
4435 * @reassoc: flag to indicate re-association
4436 * @status: association response status code
4437 * @ie: assoc response ie buffer
4438 * @len: ie buffer length
4439 * Returns: 0 on success, -1 on failure
4440 *
4441 * This function indicates the driver to send (Re)Association
4442 * Response frame to the station.
4443 */
4444 int (*sta_assoc)(void *priv, const u8 *own_addr, const u8 *addr,
4445 int reassoc, u16 status, const u8 *ie, size_t len);
4446
4447 /**
4448 * sta_auth - Station authentication indication
4449 * @priv: private driver interface data
4450 * @params: Station authentication parameters
4451 *
4452 * Returns: 0 on success, -1 on failure
4453 */
4454 int (*sta_auth)(void *priv,
4455 struct wpa_driver_sta_auth_params *params);
4456
4457 /**
4458 * add_tspec - Add traffic stream
4459 * @priv: Private driver interface data
4460 * @addr: MAC address of the station to associate
4461 * @tspec_ie: tspec ie buffer
4462 * @tspec_ielen: tspec ie length
4463 * Returns: 0 on success, -1 on failure
4464 *
4465 * This function adds the traffic steam for the station
4466 * and fills the medium_time in tspec_ie.
4467 */
4468 int (*add_tspec)(void *priv, const u8 *addr, u8 *tspec_ie,
4469 size_t tspec_ielen);
4470
4471 /**
4472 * add_sta_node - Add a station node in the driver
4473 * @priv: Private driver interface data
4474 * @addr: MAC address of the station to add
4475 * @auth_alg: authentication algorithm used by the station
4476 * Returns: 0 on success, -1 on failure
4477 *
4478 * This function adds the station node in the driver, when
4479 * the station gets added by FT-over-DS.
4480 */
4481 int (*add_sta_node)(void *priv, const u8 *addr, u16 auth_alg);
4482
4483 /**
4484 * sched_scan - Request the driver to initiate scheduled scan
4485 * @priv: Private driver interface data
4486 * @params: Scan parameters
4487 * Returns: 0 on success, -1 on failure
4488 *
4489 * This operation should be used for scheduled scan offload to
4490 * the hardware. Every time scan results are available, the
4491 * driver should report scan results event for wpa_supplicant
4492 * which will eventually request the results with
4493 * wpa_driver_get_scan_results2(). This operation is optional
4494 * and if not provided or if it returns -1, we fall back to
4495 * normal host-scheduled scans.
4496 */
4497 int (*sched_scan)(void *priv, struct wpa_driver_scan_params *params);
4498
4499 /**
4500 * stop_sched_scan - Request the driver to stop a scheduled scan
4501 * @priv: Private driver interface data
4502 * Returns: 0 on success, -1 on failure
4503 *
4504 * This should cause the scheduled scan to be stopped and
4505 * results should stop being sent. Must be supported if
4506 * sched_scan is supported.
4507 */
4508 int (*stop_sched_scan)(void *priv);
4509
4510 /**
4511 * poll_client - Probe (null data or such) the given station
4512 * @priv: Private driver interface data
4513 * @own_addr: MAC address of sending interface
4514 * @addr: MAC address of the station to probe
4515 * @qos: Indicates whether station is QoS station
4516 *
4517 * This function is used to verify whether an associated station is
4518 * still present. This function does not need to be implemented if the
4519 * driver provides such inactivity polling mechanism.
4520 */
4521 void (*poll_client)(void *priv, const u8 *own_addr,
4522 const u8 *addr, int qos);
4523
4524 /**
4525 * radio_disable - Disable/enable radio
4526 * @priv: Private driver interface data
4527 * @disabled: 1=disable 0=enable radio
4528 * Returns: 0 on success, -1 on failure
4529 *
4530 * This optional command is for testing purposes. It can be used to
4531 * disable the radio on a testbed device to simulate out-of-radio-range
4532 * conditions.
4533 */
4534 int (*radio_disable)(void *priv, int disabled);
4535
4536 /**
4537 * switch_channel - Announce channel switch and migrate the GO to the
4538 * given frequency
4539 * @priv: Private driver interface data
4540 * @settings: Settings for CSA period and new channel
4541 * Returns: 0 on success, -1 on failure
4542 *
4543 * This function is used to move the GO to the legacy STA channel to
4544 * avoid frequency conflict in single channel concurrency.
4545 */
4546 int (*switch_channel)(void *priv, struct csa_settings *settings);
4547
4548 /**
4549 * switch_color - Announce color switch and migrate the BSS to the
4550 * given color
4551 * @priv: Private driver interface data
4552 * @settings: Settings for CCA period and new color
4553 * Returns: 0 on success, -1 on failure
4554 *
4555 * This function is used to move the BSS to its new color.
4556 */
4557 int (*switch_color)(void *priv, struct cca_settings *settings);
4558
4559 /**
4560 * add_tx_ts - Add traffic stream
4561 * @priv: Private driver interface data
4562 * @tsid: Traffic stream ID
4563 * @addr: Receiver address
4564 * @user_prio: User priority of the traffic stream
4565 * @admitted_time: Admitted time for this TS in units of
4566 * 32 microsecond periods (per second).
4567 * Returns: 0 on success, -1 on failure
4568 */
4569 int (*add_tx_ts)(void *priv, u8 tsid, const u8 *addr, u8 user_prio,
4570 u16 admitted_time);
4571
4572 /**
4573 * del_tx_ts - Delete traffic stream
4574 * @priv: Private driver interface data
4575 * @tsid: Traffic stream ID
4576 * @addr: Receiver address
4577 * Returns: 0 on success, -1 on failure
4578 */
4579 int (*del_tx_ts)(void *priv, u8 tsid, const u8 *addr);
4580
4581 /**
4582 * Enable channel-switching with TDLS peer
4583 * @priv: Private driver interface data
4584 * @addr: MAC address of the TDLS peer
4585 * @oper_class: Operating class of the switch channel
4586 * @params: Channel specification
4587 * Returns: 0 on success, -1 on failure
4588 *
4589 * The function indicates to driver that it can start switching to a
4590 * different channel with a specified TDLS peer. The switching is
4591 * assumed on until canceled with tdls_disable_channel_switch().
4592 */
4593 int (*tdls_enable_channel_switch)(
4594 void *priv, const u8 *addr, u8 oper_class,
4595 const struct hostapd_freq_params *params);
4596
4597 /**
4598 * Disable channel switching with TDLS peer
4599 * @priv: Private driver interface data
4600 * @addr: MAC address of the TDLS peer
4601 * Returns: 0 on success, -1 on failure
4602 *
4603 * This function indicates to the driver that it should stop switching
4604 * with a given TDLS peer.
4605 */
4606 int (*tdls_disable_channel_switch)(void *priv, const u8 *addr);
4607
4608 /**
4609 * start_dfs_cac - Listen for radar interference on the channel
4610 * @priv: Private driver interface data
4611 * @freq: Channel parameters
4612 * Returns: 0 on success, -1 on failure
4613 */
4614 int (*start_dfs_cac)(void *priv, struct hostapd_freq_params *freq);
4615
4616 /**
4617 * stop_ap - Removes beacon from AP
4618 * @priv: Private driver interface data
4619 * @link_id: Link ID of the specified link; -1 for non-MLD
4620 * Returns: 0 on success, -1 on failure (or if not supported)
4621 *
4622 * This optional function can be used to disable AP mode related
4623 * configuration. Unlike deinit_ap, it does not change to station
4624 * mode.
4625 */
4626 int (*stop_ap)(void *priv, int link_id);
4627
4628 /**
4629 * get_survey - Retrieve survey data
4630 * @priv: Private driver interface data
4631 * @freq: If set, survey data for the specified frequency is only
4632 * being requested. If not set, all survey data is requested.
4633 * Returns: 0 on success, -1 on failure
4634 *
4635 * Use this to retrieve:
4636 *
4637 * - the observed channel noise floor
4638 * - the amount of time we have spent on the channel
4639 * - the amount of time during which we have spent on the channel that
4640 * the radio has determined the medium is busy and we cannot
4641 * transmit
4642 * - the amount of time we have spent receiving data
4643 * - the amount of time we have spent transmitting data
4644 *
4645 * This data can be used for spectrum heuristics. One example is
4646 * Automatic Channel Selection (ACS). The channel survey data is
4647 * kept on a linked list on the channel data, one entry is added
4648 * for each survey. The min_nf of the channel is updated for each
4649 * survey.
4650 */
4651 int (*get_survey)(void *priv, unsigned int freq);
4652
4653 /**
4654 * status - Get driver interface status information
4655 * @priv: Private driver interface data
4656 * @buf: Buffer for printing the status information
4657 * @buflen: Maximum length of the buffer
4658 * Returns: Length of written status information or -1 on failure
4659 */
4660 int (*status)(void *priv, char *buf, size_t buflen);
4661
4662 /**
4663 * roaming - Set roaming policy for driver-based BSS selection
4664 * @priv: Private driver interface data
4665 * @allowed: Whether roaming within ESS is allowed
4666 * @bssid: Forced BSSID if roaming is disabled or %NULL if not set
4667 * Returns: Length of written status information or -1 on failure
4668 *
4669 * This optional callback can be used to update roaming policy from the
4670 * associate() command (bssid being set there indicates that the driver
4671 * should not roam before getting this roaming() call to allow roaming.
4672 * If the driver does not indicate WPA_DRIVER_FLAGS_BSS_SELECTION
4673 * capability, roaming policy is handled within wpa_supplicant and there
4674 * is no need to implement or react to this callback.
4675 */
4676 int (*roaming)(void *priv, int allowed, const u8 *bssid);
4677
4678 /**
4679 * disable_fils - Enable/disable FILS feature
4680 * @priv: Private driver interface data
4681 * @disable: 0-enable and 1-disable FILS feature
4682 * Returns: 0 on success, -1 on failure
4683 *
4684 * This callback can be used to configure driver and below layers to
4685 * enable/disable all FILS features.
4686 */
4687 int (*disable_fils)(void *priv, int disable);
4688
4689 /**
4690 * set_mac_addr - Set MAC address
4691 * @priv: Private driver interface data
4692 * @addr: MAC address to use or %NULL for setting back to permanent
4693 * Returns: 0 on success, -1 on failure
4694 */
4695 int (*set_mac_addr)(void *priv, const u8 *addr);
4696
4697 #ifdef CONFIG_MACSEC
4698 int (*macsec_init)(void *priv, struct macsec_init_params *params);
4699
4700 int (*macsec_deinit)(void *priv);
4701
4702 /**
4703 * macsec_get_capability - Inform MKA of this driver's capability
4704 * @priv: Private driver interface data
4705 * @cap: Driver's capability
4706 * Returns: 0 on success, -1 on failure
4707 */
4708 int (*macsec_get_capability)(void *priv, enum macsec_cap *cap);
4709
4710 /**
4711 * enable_protect_frames - Set protect frames status
4712 * @priv: Private driver interface data
4713 * @enabled: true = protect frames enabled
4714 * false = protect frames disabled
4715 * Returns: 0 on success, -1 on failure (or if not supported)
4716 */
4717 int (*enable_protect_frames)(void *priv, bool enabled);
4718
4719 /**
4720 * enable_encrypt - Set encryption status
4721 * @priv: Private driver interface data
4722 * @enabled: true = encrypt outgoing traffic
4723 * false = integrity-only protection on outgoing traffic
4724 * Returns: 0 on success, -1 on failure (or if not supported)
4725 */
4726 int (*enable_encrypt)(void *priv, bool enabled);
4727
4728 /**
4729 * set_replay_protect - Set replay protect status and window size
4730 * @priv: Private driver interface data
4731 * @enabled: true = replay protect enabled
4732 * false = replay protect disabled
4733 * @window: replay window size, valid only when replay protect enabled
4734 * Returns: 0 on success, -1 on failure (or if not supported)
4735 */
4736 int (*set_replay_protect)(void *priv, bool enabled, u32 window);
4737
4738 /**
4739 * set_offload - Set MACsec hardware offload
4740 * @priv: Private driver interface data
4741 * @offload: 0 = MACSEC_OFFLOAD_OFF
4742 * 1 = MACSEC_OFFLOAD_PHY
4743 * 2 = MACSEC_OFFLOAD_MAC
4744 * Returns: 0 on success, -1 on failure (or if not supported)
4745 */
4746 int (*set_offload)(void *priv, u8 offload);
4747
4748 /**
4749 * set_current_cipher_suite - Set current cipher suite
4750 * @priv: Private driver interface data
4751 * @cs: EUI64 identifier
4752 * Returns: 0 on success, -1 on failure (or if not supported)
4753 */
4754 int (*set_current_cipher_suite)(void *priv, u64 cs);
4755
4756 /**
4757 * enable_controlled_port - Set controlled port status
4758 * @priv: Private driver interface data
4759 * @enabled: true = controlled port enabled
4760 * false = controlled port disabled
4761 * Returns: 0 on success, -1 on failure (or if not supported)
4762 */
4763 int (*enable_controlled_port)(void *priv, bool enabled);
4764
4765 /**
4766 * get_receive_lowest_pn - Get receive lowest pn
4767 * @priv: Private driver interface data
4768 * @sa: secure association
4769 * Returns: 0 on success, -1 on failure (or if not supported)
4770 */
4771 int (*get_receive_lowest_pn)(void *priv, struct receive_sa *sa);
4772
4773 /**
4774 * get_transmit_next_pn - Get transmit next pn
4775 * @priv: Private driver interface data
4776 * @sa: secure association
4777 * Returns: 0 on success, -1 on failure (or if not supported)
4778 */
4779 int (*get_transmit_next_pn)(void *priv, struct transmit_sa *sa);
4780
4781 /**
4782 * set_transmit_next_pn - Set transmit next pn
4783 * @priv: Private driver interface data
4784 * @sa: secure association
4785 * Returns: 0 on success, -1 on failure (or if not supported)
4786 */
4787 int (*set_transmit_next_pn)(void *priv, struct transmit_sa *sa);
4788
4789 /**
4790 * set_receive_lowest_pn - Set receive lowest PN
4791 * @priv: Private driver interface data
4792 * @sa: secure association
4793 * Returns: 0 on success, -1 on failure (or if not supported)
4794 */
4795 int (*set_receive_lowest_pn)(void *priv, struct receive_sa *sa);
4796
4797 /**
4798 * create_receive_sc - create secure channel for receiving
4799 * @priv: Private driver interface data
4800 * @sc: secure channel
4801 * @conf_offset: confidentiality offset (0, 30, or 50)
4802 * @validation: frame validation policy (0 = Disabled, 1 = Checked,
4803 * 2 = Strict)
4804 * Returns: 0 on success, -1 on failure (or if not supported)
4805 */
4806 int (*create_receive_sc)(void *priv, struct receive_sc *sc,
4807 unsigned int conf_offset,
4808 int validation);
4809
4810 /**
4811 * delete_receive_sc - delete secure connection for receiving
4812 * @priv: private driver interface data from init()
4813 * @sc: secure channel
4814 * Returns: 0 on success, -1 on failure
4815 */
4816 int (*delete_receive_sc)(void *priv, struct receive_sc *sc);
4817
4818 /**
4819 * create_receive_sa - create secure association for receive
4820 * @priv: private driver interface data from init()
4821 * @sa: secure association
4822 * Returns: 0 on success, -1 on failure
4823 */
4824 int (*create_receive_sa)(void *priv, struct receive_sa *sa);
4825
4826 /**
4827 * delete_receive_sa - Delete secure association for receive
4828 * @priv: Private driver interface data from init()
4829 * @sa: Secure association
4830 * Returns: 0 on success, -1 on failure
4831 */
4832 int (*delete_receive_sa)(void *priv, struct receive_sa *sa);
4833
4834 /**
4835 * enable_receive_sa - enable the SA for receive
4836 * @priv: private driver interface data from init()
4837 * @sa: secure association
4838 * Returns: 0 on success, -1 on failure
4839 */
4840 int (*enable_receive_sa)(void *priv, struct receive_sa *sa);
4841
4842 /**
4843 * disable_receive_sa - disable SA for receive
4844 * @priv: private driver interface data from init()
4845 * @sa: secure association
4846 * Returns: 0 on success, -1 on failure
4847 */
4848 int (*disable_receive_sa)(void *priv, struct receive_sa *sa);
4849
4850 /**
4851 * create_transmit_sc - create secure connection for transmit
4852 * @priv: private driver interface data from init()
4853 * @sc: secure channel
4854 * @conf_offset: confidentiality offset (0, 30, or 50)
4855 * Returns: 0 on success, -1 on failure
4856 */
4857 int (*create_transmit_sc)(void *priv, struct transmit_sc *sc,
4858 unsigned int conf_offset);
4859
4860 /**
4861 * delete_transmit_sc - delete secure connection for transmit
4862 * @priv: private driver interface data from init()
4863 * @sc: secure channel
4864 * Returns: 0 on success, -1 on failure
4865 */
4866 int (*delete_transmit_sc)(void *priv, struct transmit_sc *sc);
4867
4868 /**
4869 * create_transmit_sa - create secure association for transmit
4870 * @priv: private driver interface data from init()
4871 * @sa: secure association
4872 * Returns: 0 on success, -1 on failure
4873 */
4874 int (*create_transmit_sa)(void *priv, struct transmit_sa *sa);
4875
4876 /**
4877 * delete_transmit_sa - Delete secure association for transmit
4878 * @priv: Private driver interface data from init()
4879 * @sa: Secure association
4880 * Returns: 0 on success, -1 on failure
4881 */
4882 int (*delete_transmit_sa)(void *priv, struct transmit_sa *sa);
4883
4884 /**
4885 * enable_transmit_sa - enable SA for transmit
4886 * @priv: private driver interface data from init()
4887 * @sa: secure association
4888 * Returns: 0 on success, -1 on failure
4889 */
4890 int (*enable_transmit_sa)(void *priv, struct transmit_sa *sa);
4891
4892 /**
4893 * disable_transmit_sa - disable SA for transmit
4894 * @priv: private driver interface data from init()
4895 * @sa: secure association
4896 * Returns: 0 on success, -1 on failure
4897 */
4898 int (*disable_transmit_sa)(void *priv, struct transmit_sa *sa);
4899 #endif /* CONFIG_MACSEC */
4900
4901 /**
4902 * init_mesh - Driver specific initialization for mesh
4903 * @priv: Private driver interface data
4904 * Returns: 0 on success, -1 on failure
4905 */
4906 int (*init_mesh)(void *priv);
4907
4908 /**
4909 * join_mesh - Join a mesh network
4910 * @priv: Private driver interface data
4911 * @params: Mesh configuration parameters
4912 * Returns: 0 on success, -1 on failure
4913 */
4914 int (*join_mesh)(void *priv,
4915 struct wpa_driver_mesh_join_params *params);
4916
4917 /**
4918 * leave_mesh - Leave a mesh network
4919 * @priv: Private driver interface data
4920 * Returns 0 on success, -1 on failure
4921 */
4922 int (*leave_mesh)(void *priv);
4923
4924 /**
4925 * probe_mesh_link - Inject a frame over direct mesh link to a given
4926 * peer skipping the next_hop lookup from mpath table.
4927 * @priv: Private driver interface data
4928 * @addr: Peer MAC address
4929 * @eth: Ethernet frame to be sent
4930 * @len: Ethernet frame lengtn in bytes
4931 * Returns 0 on success, -1 on failure
4932 */
4933 int (*probe_mesh_link)(void *priv, const u8 *addr, const u8 *eth,
4934 size_t len);
4935
4936 /**
4937 * do_acs - Automatically select channel
4938 * @priv: Private driver interface data
4939 * @params: Parameters for ACS
4940 * Returns 0 on success, -1 on failure
4941 *
4942 * This command can be used to offload ACS to the driver if the driver
4943 * indicates support for such offloading (WPA_DRIVER_FLAGS_ACS_OFFLOAD).
4944 */
4945 int (*do_acs)(void *priv, struct drv_acs_params *params);
4946
4947 /**
4948 * set_band - Notify driver of band(s) selection
4949 * @priv: Private driver interface data
4950 * @band_mask: The selected band(s) bit mask (from enum set_band)
4951 * Returns 0 on success, -1 on failure
4952 */
4953 int (*set_band)(void *priv, u32 band_mask);
4954
4955 /**
4956 * get_pref_freq_list - Get preferred frequency list for an interface
4957 * @priv: Private driver interface data
4958 * @if_type: Interface type
4959 * @num: Number of channels
4960 * @freq_list: Weighted preferred channel list
4961 * Returns 0 on success, -1 on failure
4962 *
4963 * This command can be used to query the preferred frequency list from
4964 * the driver specific to a particular interface type. The freq_list
4965 * array needs to have room for *num entries. *num will be updated to
4966 * indicate the number of entries fetched from the driver.
4967 */
4968 int (*get_pref_freq_list)(void *priv, enum wpa_driver_if_type if_type,
4969 unsigned int *num,
4970 struct weighted_pcl *freq_list);
4971
4972 /**
4973 * set_prob_oper_freq - Indicate probable P2P operating channel
4974 * @priv: Private driver interface data
4975 * @freq: Channel frequency in MHz
4976 * Returns 0 on success, -1 on failure
4977 *
4978 * This command can be used to inform the driver of the operating
4979 * frequency that an ongoing P2P group formation is likely to come up
4980 * on. Local device is assuming P2P Client role.
4981 */
4982 int (*set_prob_oper_freq)(void *priv, unsigned int freq);
4983
4984 /**
4985 * abort_scan - Request the driver to abort an ongoing scan
4986 * @priv: Private driver interface data
4987 * @scan_cookie: Cookie identifying the scan request. This is used only
4988 * when the vendor interface QCA_NL80211_VENDOR_SUBCMD_TRIGGER_SCAN
4989 * was used to trigger scan. Otherwise, 0 is used.
4990 * Returns 0 on success, -1 on failure
4991 */
4992 int (*abort_scan)(void *priv, u64 scan_cookie);
4993
4994 /**
4995 * configure_data_frame_filters - Request to configure frame filters
4996 * @priv: Private driver interface data
4997 * @filter_flags: The type of frames to filter (bitfield of
4998 * WPA_DATA_FRAME_FILTER_FLAG_*)
4999 * Returns: 0 on success or -1 on failure
5000 */
5001 int (*configure_data_frame_filters)(void *priv, u32 filter_flags);
5002
5003 /**
5004 * get_ext_capab - Get extended capabilities for the specified interface
5005 * @priv: Private driver interface data
5006 * @type: Interface type for which to get extended capabilities
5007 * @ext_capab: Extended capabilities fetched
5008 * @ext_capab_mask: Extended capabilities mask
5009 * @ext_capab_len: Length of the extended capabilities
5010 * Returns: 0 on success or -1 on failure
5011 */
5012 int (*get_ext_capab)(void *priv, enum wpa_driver_if_type type,
5013 const u8 **ext_capab, const u8 **ext_capab_mask,
5014 unsigned int *ext_capab_len);
5015
5016 /**
5017 * get_mld_capab - Get MLD capabilities for the specified interface
5018 * @priv: Private driver interface data
5019 * @type: Interface type for which to get MLD capabilities
5020 * @eml_capa: EML capabilities
5021 * @mld_capa_and_ops: MLD Capabilities and Operations
5022 * Returns: 0 on success or -1 on failure
5023 */
5024 int (*get_mld_capab)(void *priv, enum wpa_driver_if_type type,
5025 u16 *eml_capa, u16 *mld_capa_and_ops);
5026
5027 /**
5028 * p2p_lo_start - Start offloading P2P listen to device
5029 * @priv: Private driver interface data
5030 * @freq: Listening frequency (MHz) for P2P listen
5031 * @period: Length of the listen operation in milliseconds
5032 * @interval: Interval for running the listen operation in milliseconds
5033 * @count: Number of times to run the listen operation
5034 * @device_types: Device primary and secondary types
5035 * @dev_types_len: Number of bytes for device_types
5036 * @ies: P2P IE and WSC IE for Probe Response frames
5037 * @ies_len: Length of ies in bytes
5038 * Returns: 0 on success or -1 on failure
5039 */
5040 int (*p2p_lo_start)(void *priv, unsigned int freq,
5041 unsigned int period, unsigned int interval,
5042 unsigned int count,
5043 const u8 *device_types, size_t dev_types_len,
5044 const u8 *ies, size_t ies_len);
5045
5046 /**
5047 * p2p_lo_stop - Stop P2P listen offload
5048 * @priv: Private driver interface data
5049 * Returns: 0 on success or -1 on failure
5050 */
5051 int (*p2p_lo_stop)(void *priv);
5052
5053 /**
5054 * set_default_scan_ies - Set default scan IEs
5055 * @priv: Private driver interface data
5056 * @ies: Scan default IEs buffer
5057 * @ies_len: Length of IEs in bytes
5058 * Returns: 0 on success or -1 on failure
5059 *
5060 * The driver can use these by default when there are no scan IEs coming
5061 * in the subsequent scan requests. Also in case of one or more of IEs
5062 * given in set_default_scan_ies() are missing in the subsequent scan
5063 * request, the driver should merge the missing scan IEs in the scan
5064 * request from the IEs set by set_default_scan_ies() in the Probe
5065 * Request frames sent.
5066 */
5067 int (*set_default_scan_ies)(void *priv, const u8 *ies, size_t ies_len);
5068
5069 /**
5070 * set_tdls_mode - Set TDLS trigger mode to the host driver
5071 * @priv: Private driver interface data
5072 * @tdls_external_control: Represents if TDLS external trigger control
5073 * mode is enabled/disabled.
5074 *
5075 * This optional callback can be used to configure the TDLS external
5076 * trigger control mode to the host driver.
5077 */
5078 int (*set_tdls_mode)(void *priv, int tdls_external_control);
5079
5080 /**
5081 * get_bss_transition_status - Get candidate BSS's transition status
5082 * @priv: Private driver interface data
5083 * @params: Candidate BSS list
5084 *
5085 * Get the accept or reject reason code for a list of BSS transition
5086 * candidates.
5087 */
5088 struct wpa_bss_candidate_info *
5089 (*get_bss_transition_status)(void *priv,
5090 struct wpa_bss_trans_info *params);
5091 /**
5092 * ignore_assoc_disallow - Configure driver to ignore assoc_disallow
5093 * @priv: Private driver interface data
5094 * @ignore_disallow: 0 to not ignore, 1 to ignore
5095 * Returns: 0 on success, -1 on failure
5096 */
5097 int (*ignore_assoc_disallow)(void *priv, int ignore_disallow);
5098
5099 /**
5100 * set_bssid_tmp_disallow - Set disallowed BSSIDs to the driver
5101 * @priv: Private driver interface data
5102 * @num_bssid: Number of temporarily disallowed BSSIDs
5103 * @bssids: List of temporarily disallowed BSSIDs
5104 */
5105 int (*set_bssid_tmp_disallow)(void *priv, unsigned int num_bssid,
5106 const u8 *bssid);
5107
5108 /**
5109 * update_connect_params - Update the connection parameters
5110 * @priv: Private driver interface data
5111 * @params: Association parameters
5112 * @mask: Bit mask indicating which parameters in @params have to be
5113 * updated
5114 * Returns: 0 on success, -1 on failure
5115 *
5116 * Update the connection parameters when in connected state so that the
5117 * driver uses the updated parameters for subsequent roaming. This is
5118 * used only with drivers that implement internal BSS selection and
5119 * roaming.
5120 */
5121 int (*update_connect_params)(
5122 void *priv, struct wpa_driver_associate_params *params,
5123 enum wpa_drv_update_connect_params_mask mask);
5124
5125 /**
5126 * send_external_auth_status - Indicate the status of external
5127 * authentication processing to the host driver.
5128 * @priv: Private driver interface data
5129 * @params: Status of authentication processing.
5130 * Returns: 0 on success, -1 on failure
5131 */
5132 int (*send_external_auth_status)(void *priv,
5133 struct external_auth *params);
5134
5135 /**
5136 * set_4addr_mode - Set 4-address mode
5137 * @priv: Private driver interface data
5138 * @bridge_ifname: Bridge interface name
5139 * @val: 0 - disable 4addr mode, 1 - enable 4addr mode
5140 * Returns: 0 on success, < 0 on failure
5141 */
5142 int (*set_4addr_mode)(void *priv, const char *bridge_ifname, int val);
5143
5144 /**
5145 * update_dh_ie - Update DH IE
5146 * @priv: Private driver interface data
5147 * @peer_mac: Peer MAC address
5148 * @reason_code: Reacon code
5149 * @ie: DH IE
5150 * @ie_len: DH IE length in bytes
5151 * Returns: 0 on success, -1 on failure
5152 *
5153 * This callback is used to let the driver know the DH processing result
5154 * and DH IE for a pending association.
5155 */
5156 int (*update_dh_ie)(void *priv, const u8 *peer_mac, u16 reason_code,
5157 const u8 *ie, size_t ie_len);
5158
5159 /**
5160 * dpp_listen - Notify driver about start/stop of DPP listen
5161 * @priv: Private driver interface data
5162 * @enable: Whether listen state is enabled (or disabled)
5163 * Returns: 0 on success, -1 on failure
5164 *
5165 * This optional callback can be used to update RX frame filtering to
5166 * explicitly allow reception of broadcast Public Action frames.
5167 */
5168 int (*dpp_listen)(void *priv, bool enable);
5169
5170 /**
5171 * set_secure_ranging_ctx - Add or delete secure ranging parameters of
5172 * the specified peer to the driver.
5173 * @priv: Private driver interface data
5174 * @params: Secure ranging parameters
5175 * Returns: 0 on success, -1 on failure
5176 *
5177 */
5178 int (*set_secure_ranging_ctx)(void *priv,
5179 struct secure_ranging_params *params);
5180
5181 /**
5182 * send_pasn_resp - Send PASN response for a set of peers to the
5183 * driver.
5184 * @priv: Private driver interface data
5185 * @params: Parameters holding peers and respective status.
5186 * Returns: 0 on success, -1 on failure
5187 */
5188 int (*send_pasn_resp)(void *priv, struct pasn_auth *params);
5189
5190 /**
5191 * get_sta_mlo_info - Get the current multi-link association info
5192 * @priv: Private driver interface data
5193 * @mlo: Pointer to fill multi-link association info
5194 * Returns: 0 on success, -1 on failure
5195 *
5196 * This callback is used to fetch multi-link of the current association.
5197 */
5198 int (*get_sta_mlo_info)(void *priv,
5199 struct driver_sta_mlo_info *mlo_info);
5200
5201 /**
5202 * link_add - Add a link to the AP MLD interface
5203 * @priv: Private driver interface data
5204 * @link_id: The link ID
5205 * @addr: The MAC address to use for the link
5206 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
5207 * Returns: 0 on success, negative value on failure
5208 */
5209 int (*link_add)(void *priv, u8 link_id, const u8 *addr, void *bss_ctx);
5210
5211 /**
5212 * link_remove - Remove a link from the AP MLD interface
5213 * @priv: Private driver interface data
5214 * @type: Interface type
5215 * @ifname: Interface name of the virtual interface from where the link
5216 * is to be removed.
5217 * @link_id: Valid link ID to remove
5218 * Returns: 0 on success, -1 on failure
5219 */
5220 int (*link_remove)(void *priv, enum wpa_driver_if_type type,
5221 const char *ifname, u8 link_id);
5222
5223 /**
5224 * is_drv_shared - Check whether the driver interface is shared
5225 * @priv: Private driver interface data from init()
5226 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
5227 *
5228 * Checks whether the driver interface is being used by other partner
5229 * BSS(s) or not. This is used to decide whether the driver interface
5230 * needs to be deinitilized when one interface is getting deinitialized.
5231 *
5232 * Returns: true if it is being used or else false.
5233 */
5234 bool (*is_drv_shared)(void *priv, void *bss_ctx);
5235
5236 /**
5237 * link_sta_remove - Remove a link STA from an MLD STA
5238 * @priv: Private driver interface data
5239 * @link_id: The link ID which the link STA is using
5240 * @addr: The MLD MAC address of the MLD STA
5241 * Returns: 0 on success, negative value on failure
5242 */
5243 int (*link_sta_remove)(void *priv, u8 link_id, const u8 *addr);
5244
5245 #ifdef CONFIG_TESTING_OPTIONS
5246 int (*register_frame)(void *priv, u16 type,
5247 const u8 *match, size_t match_len,
5248 bool multicast);
5249 #endif /* CONFIG_TESTING_OPTIONS */
5250 };
5251
5252 /**
5253 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
5254 */
5255 enum wpa_event_type {
5256 /**
5257 * EVENT_ASSOC - Association completed
5258 *
5259 * This event needs to be delivered when the driver completes IEEE
5260 * 802.11 association or reassociation successfully.
5261 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
5262 * after this event has been generated. In addition, optional
5263 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
5264 * more information about the association. If the driver interface gets
5265 * both of these events at the same time, it can also include the
5266 * assoc_info data in EVENT_ASSOC call.
5267 */
5268 EVENT_ASSOC,
5269
5270 /**
5271 * EVENT_DISASSOC - Association lost
5272 *
5273 * This event should be called when association is lost either due to
5274 * receiving deauthenticate or disassociate frame from the AP or when
5275 * sending either of these frames to the current AP. If the driver
5276 * supports separate deauthentication event, EVENT_DISASSOC should only
5277 * be used for disassociation and EVENT_DEAUTH for deauthentication.
5278 * In AP mode, union wpa_event_data::disassoc_info is required.
5279 */
5280 EVENT_DISASSOC,
5281
5282 /**
5283 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
5284 *
5285 * This event must be delivered when a Michael MIC error is detected by
5286 * the local driver. Additional data for event processing is
5287 * provided with union wpa_event_data::michael_mic_failure. This
5288 * information is used to request new encryption key and to initiate
5289 * TKIP countermeasures if needed.
5290 */
5291 EVENT_MICHAEL_MIC_FAILURE,
5292
5293 /**
5294 * EVENT_SCAN_RESULTS - Scan results available
5295 *
5296 * This event must be called whenever scan results are available to be
5297 * fetched with struct wpa_driver_ops::get_scan_results(). This event
5298 * is expected to be used some time after struct wpa_driver_ops::scan()
5299 * is called. If the driver provides an unsolicited event when the scan
5300 * has been completed, this event can be used to trigger
5301 * EVENT_SCAN_RESULTS call. If such event is not available from the
5302 * driver, the driver wrapper code is expected to use a registered
5303 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
5304 * scan is expected to be completed. Optional information about
5305 * completed scan can be provided with union wpa_event_data::scan_info.
5306 */
5307 EVENT_SCAN_RESULTS,
5308
5309 /**
5310 * EVENT_ASSOCINFO - Report optional extra information for association
5311 *
5312 * This event can be used to report extra association information for
5313 * EVENT_ASSOC processing. This extra information includes IEs from
5314 * association frames and Beacon/Probe Response frames in union
5315 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
5316 * EVENT_ASSOC. Alternatively, the driver interface can include
5317 * assoc_info data in the EVENT_ASSOC call if it has all the
5318 * information available at the same point.
5319 */
5320 EVENT_ASSOCINFO,
5321
5322 /**
5323 * EVENT_INTERFACE_STATUS - Report interface status changes
5324 *
5325 * This optional event can be used to report changes in interface
5326 * status (interface added/removed) using union
5327 * wpa_event_data::interface_status. This can be used to trigger
5328 * wpa_supplicant to stop and re-start processing for the interface,
5329 * e.g., when a cardbus card is ejected/inserted.
5330 */
5331 EVENT_INTERFACE_STATUS,
5332
5333 /**
5334 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
5335 *
5336 * This event can be used to inform wpa_supplicant about candidates for
5337 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
5338 * for scan request (ap_scan=2 mode), this event is required for
5339 * pre-authentication. If wpa_supplicant is performing scan request
5340 * (ap_scan=1), this event is optional since scan results can be used
5341 * to add pre-authentication candidates. union
5342 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
5343 * candidate and priority of the candidate, e.g., based on the signal
5344 * strength, in order to try to pre-authenticate first with candidates
5345 * that are most likely targets for re-association.
5346 *
5347 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
5348 * on the candidate list. In addition, it can be called for the current
5349 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
5350 * will automatically skip pre-authentication in cases where a valid
5351 * PMKSA exists. When more than one candidate exists, this event should
5352 * be generated once for each candidate.
5353 *
5354 * Driver will be notified about successful pre-authentication with
5355 * struct wpa_driver_ops::add_pmkid() calls.
5356 */
5357 EVENT_PMKID_CANDIDATE,
5358
5359 /**
5360 * EVENT_TDLS - Request TDLS operation
5361 *
5362 * This event can be used to request a TDLS operation to be performed.
5363 */
5364 EVENT_TDLS,
5365
5366 /**
5367 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
5368 *
5369 * The driver is expected to report the received FT IEs from
5370 * FT authentication sequence from the AP. The FT IEs are included in
5371 * the extra information in union wpa_event_data::ft_ies.
5372 */
5373 EVENT_FT_RESPONSE,
5374
5375 /**
5376 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
5377 *
5378 * The driver can use this event to inform wpa_supplicant about a STA
5379 * in an IBSS with which protected frames could be exchanged. This
5380 * event starts RSN authentication with the other STA to authenticate
5381 * the STA and set up encryption keys with it.
5382 */
5383 EVENT_IBSS_RSN_START,
5384
5385 /**
5386 * EVENT_AUTH - Authentication result
5387 *
5388 * This event should be called when authentication attempt has been
5389 * completed. This is only used if the driver supports separate
5390 * authentication step (struct wpa_driver_ops::authenticate).
5391 * Information about authentication result is included in
5392 * union wpa_event_data::auth.
5393 */
5394 EVENT_AUTH,
5395
5396 /**
5397 * EVENT_DEAUTH - Authentication lost
5398 *
5399 * This event should be called when authentication is lost either due
5400 * to receiving deauthenticate frame from the AP or when sending that
5401 * frame to the current AP.
5402 * In AP mode, union wpa_event_data::deauth_info is required.
5403 */
5404 EVENT_DEAUTH,
5405
5406 /**
5407 * EVENT_ASSOC_REJECT - Association rejected
5408 *
5409 * This event should be called when (re)association attempt has been
5410 * rejected by the AP. Information about the association response is
5411 * included in union wpa_event_data::assoc_reject.
5412 */
5413 EVENT_ASSOC_REJECT,
5414
5415 /**
5416 * EVENT_AUTH_TIMED_OUT - Authentication timed out
5417 */
5418 EVENT_AUTH_TIMED_OUT,
5419
5420 /**
5421 * EVENT_ASSOC_TIMED_OUT - Association timed out
5422 */
5423 EVENT_ASSOC_TIMED_OUT,
5424
5425 /**
5426 * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
5427 */
5428 EVENT_WPS_BUTTON_PUSHED,
5429
5430 /**
5431 * EVENT_TX_STATUS - Report TX status
5432 */
5433 EVENT_TX_STATUS,
5434
5435 /**
5436 * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
5437 */
5438 EVENT_RX_FROM_UNKNOWN,
5439
5440 /**
5441 * EVENT_RX_MGMT - Report RX of a management frame
5442 */
5443 EVENT_RX_MGMT,
5444
5445 /**
5446 * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
5447 *
5448 * This event is used to indicate when the driver has started the
5449 * requested remain-on-channel duration. Information about the
5450 * operation is included in union wpa_event_data::remain_on_channel.
5451 */
5452 EVENT_REMAIN_ON_CHANNEL,
5453
5454 /**
5455 * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
5456 *
5457 * This event is used to indicate when the driver has completed
5458 * remain-on-channel duration, i.e., may noot be available on the
5459 * requested channel anymore. Information about the
5460 * operation is included in union wpa_event_data::remain_on_channel.
5461 */
5462 EVENT_CANCEL_REMAIN_ON_CHANNEL,
5463
5464 /**
5465 * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
5466 *
5467 * This event is used to indicate when a Probe Request frame has been
5468 * received. Information about the received frame is included in
5469 * union wpa_event_data::rx_probe_req. The driver is required to report
5470 * these events only after successfully completed probe_req_report()
5471 * commands to request the events (i.e., report parameter is non-zero)
5472 * in station mode. In AP mode, Probe Request frames should always be
5473 * reported.
5474 */
5475 EVENT_RX_PROBE_REQ,
5476
5477 /**
5478 * EVENT_NEW_STA - New wired device noticed
5479 *
5480 * This event is used to indicate that a new device has been detected
5481 * in a network that does not use association-like functionality (i.e.,
5482 * mainly wired Ethernet). This can be used to start EAPOL
5483 * authenticator when receiving a frame from a device. The address of
5484 * the device is included in union wpa_event_data::new_sta.
5485 */
5486 EVENT_NEW_STA,
5487
5488 /**
5489 * EVENT_EAPOL_RX - Report received EAPOL frame
5490 *
5491 * When in AP mode with hostapd, this event is required to be used to
5492 * deliver the receive EAPOL frames from the driver.
5493 */
5494 EVENT_EAPOL_RX,
5495
5496 /**
5497 * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
5498 *
5499 * This event is used to indicate changes in the signal strength
5500 * observed in frames received from the current AP if signal strength
5501 * monitoring has been enabled with signal_monitor().
5502 */
5503 EVENT_SIGNAL_CHANGE,
5504
5505 /**
5506 * EVENT_INTERFACE_ENABLED - Notify that interface was enabled
5507 *
5508 * This event is used to indicate that the interface was enabled after
5509 * having been previously disabled, e.g., due to rfkill.
5510 */
5511 EVENT_INTERFACE_ENABLED,
5512
5513 /**
5514 * EVENT_INTERFACE_DISABLED - Notify that interface was disabled
5515 *
5516 * This event is used to indicate that the interface was disabled,
5517 * e.g., due to rfkill.
5518 */
5519 EVENT_INTERFACE_DISABLED,
5520
5521 /**
5522 * EVENT_CHANNEL_LIST_CHANGED - Channel list changed
5523 *
5524 * This event is used to indicate that the channel list has changed,
5525 * e.g., because of a regulatory domain change triggered by scan
5526 * results including an AP advertising a country code.
5527 */
5528 EVENT_CHANNEL_LIST_CHANGED,
5529
5530 /**
5531 * EVENT_INTERFACE_UNAVAILABLE - Notify that interface is unavailable
5532 *
5533 * This event is used to indicate that the driver cannot maintain this
5534 * interface in its operation mode anymore. The most likely use for
5535 * this is to indicate that AP mode operation is not available due to
5536 * operating channel would need to be changed to a DFS channel when
5537 * the driver does not support radar detection and another virtual
5538 * interfaces caused the operating channel to change. Other similar
5539 * resource conflicts could also trigger this for station mode
5540 * interfaces. This event can be propagated when channel switching
5541 * fails.
5542 */
5543 EVENT_INTERFACE_UNAVAILABLE,
5544
5545 /**
5546 * EVENT_BEST_CHANNEL
5547 *
5548 * Driver generates this event whenever it detects a better channel
5549 * (e.g., based on RSSI or channel use). This information can be used
5550 * to improve channel selection for a new AP/P2P group.
5551 */
5552 EVENT_BEST_CHANNEL,
5553
5554 /**
5555 * EVENT_UNPROT_DEAUTH - Unprotected Deauthentication frame received
5556 *
5557 * This event should be called when a Deauthentication frame is dropped
5558 * due to it not being protected (MFP/IEEE 802.11w).
5559 * union wpa_event_data::unprot_deauth is required to provide more
5560 * details of the frame.
5561 */
5562 EVENT_UNPROT_DEAUTH,
5563
5564 /**
5565 * EVENT_UNPROT_DISASSOC - Unprotected Disassociation frame received
5566 *
5567 * This event should be called when a Disassociation frame is dropped
5568 * due to it not being protected (MFP/IEEE 802.11w).
5569 * union wpa_event_data::unprot_disassoc is required to provide more
5570 * details of the frame.
5571 */
5572 EVENT_UNPROT_DISASSOC,
5573
5574 /**
5575 * EVENT_STATION_LOW_ACK
5576 *
5577 * Driver generates this event whenever it detected that a particular
5578 * station was lost. Detection can be through massive transmission
5579 * failures for example.
5580 */
5581 EVENT_STATION_LOW_ACK,
5582
5583 /**
5584 * EVENT_IBSS_PEER_LOST - IBSS peer not reachable anymore
5585 */
5586 EVENT_IBSS_PEER_LOST,
5587
5588 /**
5589 * EVENT_DRIVER_GTK_REKEY - Device/driver did GTK rekey
5590 *
5591 * This event carries the new replay counter to notify wpa_supplicant
5592 * of the current EAPOL-Key Replay Counter in case the driver/firmware
5593 * completed Group Key Handshake while the host (including
5594 * wpa_supplicant was sleeping).
5595 */
5596 EVENT_DRIVER_GTK_REKEY,
5597
5598 /**
5599 * EVENT_SCHED_SCAN_STOPPED - Scheduled scan was stopped
5600 */
5601 EVENT_SCHED_SCAN_STOPPED,
5602
5603 /**
5604 * EVENT_DRIVER_CLIENT_POLL_OK - Station responded to poll
5605 *
5606 * This event indicates that the station responded to the poll
5607 * initiated with @poll_client.
5608 */
5609 EVENT_DRIVER_CLIENT_POLL_OK,
5610
5611 /**
5612 * EVENT_EAPOL_TX_STATUS - notify of EAPOL TX status
5613 */
5614 EVENT_EAPOL_TX_STATUS,
5615
5616 /**
5617 * EVENT_CH_SWITCH - AP or GO decided to switch channels
5618 *
5619 * Described in wpa_event_data.ch_switch
5620 * */
5621 EVENT_CH_SWITCH,
5622
5623 /**
5624 * EVENT_CH_SWITCH_STARTED - AP or GO started to switch channels
5625 *
5626 * This is a pre-switch event indicating the shortly following switch
5627 * of operating channels.
5628 *
5629 * Described in wpa_event_data.ch_switch
5630 */
5631 EVENT_CH_SWITCH_STARTED,
5632 /**
5633 * EVENT_WNM - Request WNM operation
5634 *
5635 * This event can be used to request a WNM operation to be performed.
5636 */
5637 EVENT_WNM,
5638
5639 /**
5640 * EVENT_CONNECT_FAILED_REASON - Connection failure reason in AP mode
5641 *
5642 * This event indicates that the driver reported a connection failure
5643 * with the specified client (for example, max client reached, etc.) in
5644 * AP mode.
5645 */
5646 EVENT_CONNECT_FAILED_REASON,
5647
5648 /**
5649 * EVENT_DFS_RADAR_DETECTED - Notify of radar detection
5650 *
5651 * A radar has been detected on the supplied frequency, hostapd should
5652 * react accordingly (e.g., change channel).
5653 */
5654 EVENT_DFS_RADAR_DETECTED,
5655
5656 /**
5657 * EVENT_DFS_CAC_FINISHED - Notify that channel availability check has been completed
5658 *
5659 * After a successful CAC, the channel can be marked clear and used.
5660 */
5661 EVENT_DFS_CAC_FINISHED,
5662
5663 /**
5664 * EVENT_DFS_CAC_ABORTED - Notify that channel availability check has been aborted
5665 *
5666 * The CAC was not successful, and the channel remains in the previous
5667 * state. This may happen due to a radar being detected or other
5668 * external influences.
5669 */
5670 EVENT_DFS_CAC_ABORTED,
5671
5672 /**
5673 * EVENT_DFS_NOP_FINISHED - Notify that non-occupancy period is over
5674 *
5675 * The channel which was previously unavailable is now available again.
5676 */
5677 EVENT_DFS_NOP_FINISHED,
5678
5679 /**
5680 * EVENT_SURVEY - Received survey data
5681 *
5682 * This event gets triggered when a driver query is issued for survey
5683 * data and the requested data becomes available. The returned data is
5684 * stored in struct survey_results. The results provide at most one
5685 * survey entry for each frequency and at minimum will provide one
5686 * survey entry for one frequency. The survey data can be os_malloc()'d
5687 * and then os_free()'d, so the event callback must only copy data.
5688 */
5689 EVENT_SURVEY,
5690
5691 /**
5692 * EVENT_SCAN_STARTED - Scan started
5693 *
5694 * This indicates that driver has started a scan operation either based
5695 * on a request from wpa_supplicant/hostapd or from another application.
5696 * EVENT_SCAN_RESULTS is used to indicate when the scan has been
5697 * completed (either successfully or by getting cancelled).
5698 */
5699 EVENT_SCAN_STARTED,
5700
5701 /**
5702 * EVENT_AVOID_FREQUENCIES - Received avoid frequency range
5703 *
5704 * This event indicates a set of frequency ranges that should be avoided
5705 * to reduce issues due to interference or internal co-existence
5706 * information in the driver.
5707 */
5708 EVENT_AVOID_FREQUENCIES,
5709
5710 /**
5711 * EVENT_NEW_PEER_CANDIDATE - new (unknown) mesh peer notification
5712 */
5713 EVENT_NEW_PEER_CANDIDATE,
5714
5715 /**
5716 * EVENT_ACS_CHANNEL_SELECTED - Received selected channels by ACS
5717 *
5718 * Indicates a pair of primary and secondary channels chosen by ACS
5719 * in device.
5720 */
5721 EVENT_ACS_CHANNEL_SELECTED,
5722
5723 /**
5724 * EVENT_DFS_CAC_STARTED - Notify that channel availability check has
5725 * been started.
5726 *
5727 * This event indicates that channel availability check has been started
5728 * on a DFS frequency by a driver that supports DFS Offload.
5729 */
5730 EVENT_DFS_CAC_STARTED,
5731
5732 /**
5733 * EVENT_P2P_LO_STOP - Notify that P2P listen offload is stopped
5734 */
5735 EVENT_P2P_LO_STOP,
5736
5737 /**
5738 * EVENT_BEACON_LOSS - Beacon loss detected
5739 *
5740 * This event indicates that no Beacon frames has been received from
5741 * the current AP. This may indicate that the AP is not anymore in
5742 * range.
5743 */
5744 EVENT_BEACON_LOSS,
5745
5746 /**
5747 * EVENT_DFS_PRE_CAC_EXPIRED - Notify that channel availability check
5748 * done previously (Pre-CAC) on the channel has expired. This would
5749 * normally be on a non-ETSI DFS regulatory domain. DFS state of the
5750 * channel will be moved from available to usable. A new CAC has to be
5751 * performed before start operating on this channel.
5752 */
5753 EVENT_DFS_PRE_CAC_EXPIRED,
5754
5755 /**
5756 * EVENT_EXTERNAL_AUTH - This event interface is used by host drivers
5757 * that do not define separate commands for authentication and
5758 * association (~WPA_DRIVER_FLAGS_SME) but offload the 802.11
5759 * authentication to wpa_supplicant. This event carries all the
5760 * necessary information from the host driver for the authentication to
5761 * happen.
5762 */
5763 EVENT_EXTERNAL_AUTH,
5764
5765 /**
5766 * EVENT_PORT_AUTHORIZED - Notification that a connection is authorized
5767 *
5768 * This event should be indicated when the driver completes the 4-way
5769 * handshake. This event should be preceded by an EVENT_ASSOC that
5770 * indicates the completion of IEEE 802.11 association.
5771 */
5772 EVENT_PORT_AUTHORIZED,
5773
5774 /**
5775 * EVENT_STATION_OPMODE_CHANGED - Notify STA's HT/VHT operation mode
5776 * change event.
5777 */
5778 EVENT_STATION_OPMODE_CHANGED,
5779
5780 /**
5781 * EVENT_INTERFACE_MAC_CHANGED - Notify that interface MAC changed
5782 *
5783 * This event is emitted when the MAC changes while the interface is
5784 * enabled. When an interface was disabled and becomes enabled, it
5785 * must be always assumed that the MAC possibly changed.
5786 */
5787 EVENT_INTERFACE_MAC_CHANGED,
5788
5789 /**
5790 * EVENT_WDS_STA_INTERFACE_STATUS - Notify WDS STA interface status
5791 *
5792 * This event is emitted when an interface is added/removed for WDS STA.
5793 */
5794 EVENT_WDS_STA_INTERFACE_STATUS,
5795
5796 /**
5797 * EVENT_UPDATE_DH - Notification of updated DH information
5798 */
5799 EVENT_UPDATE_DH,
5800
5801 /**
5802 * EVENT_UNPROT_BEACON - Unprotected Beacon frame received
5803 *
5804 * This event should be called when a Beacon frame is dropped due to it
5805 * not being protected correctly. union wpa_event_data::unprot_beacon
5806 * is required to provide more details of the frame.
5807 */
5808 EVENT_UNPROT_BEACON,
5809
5810 /**
5811 * EVENT_TX_WAIT_EXPIRE - TX wait timed out
5812 *
5813 * This event is used to indicate when the driver has completed
5814 * wait for a response frame based on a TX request that specified a
5815 * non-zero wait time and that has not been explicitly cancelled.
5816 */
5817 EVENT_TX_WAIT_EXPIRE,
5818
5819 /**
5820 * EVENT_BSS_COLOR_COLLISION - Notification of a BSS color collision
5821 */
5822 EVENT_BSS_COLOR_COLLISION,
5823
5824 /**
5825 * EVENT_CCA_STARTED_NOTIFY - Notification that CCA has started
5826 */
5827 EVENT_CCA_STARTED_NOTIFY,
5828
5829 /**
5830 * EVENT_CCA_ABORTED_NOTIFY - Notification that CCA has aborted
5831 */
5832 EVENT_CCA_ABORTED_NOTIFY,
5833
5834 /**
5835 * EVENT_CCA_NOTIFY - Notification that CCA has completed
5836 */
5837 EVENT_CCA_NOTIFY,
5838
5839 /**
5840 * EVENT_PASN_AUTH - This event is used by the driver that requests
5841 * PASN authentication and secure ranging context for multiple peers.
5842 */
5843 EVENT_PASN_AUTH,
5844
5845 /**
5846 * EVENT_LINK_CH_SWITCH - MLD AP link decided to switch channels
5847 *
5848 * Described in wpa_event_data.ch_switch.
5849 *
5850 */
5851 EVENT_LINK_CH_SWITCH,
5852
5853 /**
5854 * EVENT_LINK_CH_SWITCH_STARTED - MLD AP link started to switch channels
5855 *
5856 * This is a pre-switch event indicating the shortly following switch
5857 * of operating channels.
5858 *
5859 * Described in wpa_event_data.ch_switch.
5860 */
5861 EVENT_LINK_CH_SWITCH_STARTED,
5862
5863 /**
5864 * EVENT_TID_LINK_MAP - MLD event to set TID-to-link mapping
5865 *
5866 * This event is used by the driver to indicate the received TID-to-link
5867 * mapping response from the associated AP MLD.
5868 *
5869 * Described in wpa_event_data.t2l_map_info.
5870 */
5871 EVENT_TID_LINK_MAP,
5872
5873 /**
5874 * EVENT_LINK_RECONFIG - Notification that AP links removed
5875 */
5876 EVENT_LINK_RECONFIG,
5877 };
5878
5879
5880 /**
5881 * struct freq_survey - Channel survey info
5882 *
5883 * @ifidx: Interface index in which this survey was observed
5884 * @freq: Center of frequency of the surveyed channel
5885 * @nf: Channel noise floor in dBm
5886 * @channel_time: Amount of time in ms the radio spent on the channel
5887 * @channel_time_busy: Amount of time in ms the radio detected some signal
5888 * that indicated to the radio the channel was not clear
5889 * @channel_time_rx: Amount of time the radio spent receiving data
5890 * @channel_time_tx: Amount of time the radio spent transmitting data
5891 * @filled: bitmask indicating which fields have been reported, see
5892 * SURVEY_HAS_* defines.
5893 * @list: Internal list pointers
5894 */
5895 struct freq_survey {
5896 u32 ifidx;
5897 unsigned int freq;
5898 s8 nf;
5899 u64 channel_time;
5900 u64 channel_time_busy;
5901 u64 channel_time_rx;
5902 u64 channel_time_tx;
5903 unsigned int filled;
5904 struct dl_list list;
5905 };
5906
5907 #define SURVEY_HAS_NF BIT(0)
5908 #define SURVEY_HAS_CHAN_TIME BIT(1)
5909 #define SURVEY_HAS_CHAN_TIME_BUSY BIT(2)
5910 #define SURVEY_HAS_CHAN_TIME_RX BIT(3)
5911 #define SURVEY_HAS_CHAN_TIME_TX BIT(4)
5912
5913 /**
5914 * enum sta_connect_fail_reason_codes - STA connect failure reason code values
5915 * @STA_CONNECT_FAIL_REASON_UNSPECIFIED: No reason code specified for
5916 * connection failure.
5917 * @STA_CONNECT_FAIL_REASON_NO_BSS_FOUND: No Probe Response frame received
5918 * for unicast Probe Request frame.
5919 * @STA_CONNECT_FAIL_REASON_AUTH_TX_FAIL: STA failed to send auth request.
5920 * @STA_CONNECT_FAIL_REASON_AUTH_NO_ACK_RECEIVED: AP didn't send ACK for
5921 * auth request.
5922 * @STA_CONNECT_FAIL_REASON_AUTH_NO_RESP_RECEIVED: Auth response is not
5923 * received from AP.
5924 * @STA_CONNECT_FAIL_REASON_ASSOC_REQ_TX_FAIL: STA failed to send
5925 * Association Request frame.
5926 * @STA_CONNECT_FAIL_REASON_ASSOC_NO_ACK_RECEIVED: AP didn't send ACK for
5927 * Association Request frame.
5928 * @STA_CONNECT_FAIL_REASON_ASSOC_NO_RESP_RECEIVED: Association Response
5929 * frame is not received from AP.
5930 */
5931 enum sta_connect_fail_reason_codes {
5932 STA_CONNECT_FAIL_REASON_UNSPECIFIED = 0,
5933 STA_CONNECT_FAIL_REASON_NO_BSS_FOUND = 1,
5934 STA_CONNECT_FAIL_REASON_AUTH_TX_FAIL = 2,
5935 STA_CONNECT_FAIL_REASON_AUTH_NO_ACK_RECEIVED = 3,
5936 STA_CONNECT_FAIL_REASON_AUTH_NO_RESP_RECEIVED = 4,
5937 STA_CONNECT_FAIL_REASON_ASSOC_REQ_TX_FAIL = 5,
5938 STA_CONNECT_FAIL_REASON_ASSOC_NO_ACK_RECEIVED = 6,
5939 STA_CONNECT_FAIL_REASON_ASSOC_NO_RESP_RECEIVED = 7,
5940 };
5941
5942 /**
5943 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
5944 */
5945 union wpa_event_data {
5946 /**
5947 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
5948 *
5949 * This structure is optional for EVENT_ASSOC calls and required for
5950 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
5951 * driver interface does not need to generate separate EVENT_ASSOCINFO
5952 * calls.
5953 */
5954 struct assoc_info {
5955 /**
5956 * reassoc - Flag to indicate association or reassociation
5957 */
5958 int reassoc;
5959
5960 /**
5961 * req_ies - (Re)Association Request IEs
5962 *
5963 * If the driver generates WPA/RSN IE, this event data must be
5964 * returned for WPA handshake to have needed information. If
5965 * wpa_supplicant-generated WPA/RSN IE is used, this
5966 * information event is optional.
5967 *
5968 * This should start with the first IE (fixed fields before IEs
5969 * are not included).
5970 */
5971 const u8 *req_ies;
5972
5973 /**
5974 * req_ies_len - Length of req_ies in bytes
5975 */
5976 size_t req_ies_len;
5977
5978 /**
5979 * resp_ies - (Re)Association Response IEs
5980 *
5981 * Optional association data from the driver. This data is not
5982 * required WPA, but may be useful for some protocols and as
5983 * such, should be reported if this is available to the driver
5984 * interface.
5985 *
5986 * This should start with the first IE (fixed fields before IEs
5987 * are not included).
5988 */
5989 const u8 *resp_ies;
5990
5991 /**
5992 * resp_ies_len - Length of resp_ies in bytes
5993 */
5994 size_t resp_ies_len;
5995
5996 /**
5997 * resp_frame - (Re)Association Response frame
5998 */
5999 const u8 *resp_frame;
6000
6001 /**
6002 * resp_frame_len - (Re)Association Response frame length
6003 */
6004 size_t resp_frame_len;
6005
6006 /**
6007 * beacon_ies - Beacon or Probe Response IEs
6008 *
6009 * Optional Beacon/ProbeResp data: IEs included in Beacon or
6010 * Probe Response frames from the current AP (i.e., the one
6011 * that the client just associated with). This information is
6012 * used to update WPA/RSN IE for the AP. If this field is not
6013 * set, the results from previous scan will be used. If no
6014 * data for the new AP is found, scan results will be requested
6015 * again (without scan request). At this point, the driver is
6016 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
6017 * used).
6018 *
6019 * This should start with the first IE (fixed fields before IEs
6020 * are not included).
6021 */
6022 const u8 *beacon_ies;
6023
6024 /**
6025 * beacon_ies_len - Length of beacon_ies */
6026 size_t beacon_ies_len;
6027
6028 /**
6029 * freq - Frequency of the operational channel in MHz
6030 */
6031 unsigned int freq;
6032
6033 /**
6034 * wmm_params - WMM parameters used in this association.
6035 */
6036 struct wmm_params wmm_params;
6037
6038 /**
6039 * addr - Station address (for AP mode)
6040 */
6041 const u8 *addr;
6042
6043 /**
6044 * The following is the key management offload information
6045 * @authorized
6046 * @key_replay_ctr
6047 * @key_replay_ctr_len
6048 * @ptk_kck
6049 * @ptk_kek_len
6050 * @ptk_kek
6051 * @ptk_kek_len
6052 */
6053
6054 /**
6055 * authorized - Status of key management offload,
6056 * 1 = successful
6057 */
6058 int authorized;
6059
6060 /**
6061 * key_replay_ctr - Key replay counter value last used
6062 * in a valid EAPOL-Key frame
6063 */
6064 const u8 *key_replay_ctr;
6065
6066 /**
6067 * key_replay_ctr_len - The length of key_replay_ctr
6068 */
6069 size_t key_replay_ctr_len;
6070
6071 /**
6072 * ptk_kck - The derived PTK KCK
6073 */
6074 const u8 *ptk_kck;
6075
6076 /**
6077 * ptk_kek_len - The length of ptk_kck
6078 */
6079 size_t ptk_kck_len;
6080
6081 /**
6082 * ptk_kek - The derived PTK KEK
6083 * This is used in key management offload and also in FILS SK
6084 * offload.
6085 */
6086 const u8 *ptk_kek;
6087
6088 /**
6089 * ptk_kek_len - The length of ptk_kek
6090 */
6091 size_t ptk_kek_len;
6092
6093 /**
6094 * subnet_status - The subnet status:
6095 * 0 = unknown, 1 = unchanged, 2 = changed
6096 */
6097 u8 subnet_status;
6098
6099 /**
6100 * The following information is used in FILS SK offload
6101 * @fils_erp_next_seq_num
6102 * @fils_pmk
6103 * @fils_pmk_len
6104 * @fils_pmkid
6105 */
6106
6107 /**
6108 * fils_erp_next_seq_num - The next sequence number to use in
6109 * FILS ERP messages
6110 */
6111 u16 fils_erp_next_seq_num;
6112
6113 /**
6114 * fils_pmk - A new PMK if generated in case of FILS
6115 * authentication
6116 */
6117 const u8 *fils_pmk;
6118
6119 /**
6120 * fils_pmk_len - Length of fils_pmk
6121 */
6122 size_t fils_pmk_len;
6123
6124 /**
6125 * fils_pmkid - PMKID used or generated in FILS authentication
6126 */
6127 const u8 *fils_pmkid;
6128
6129 /**
6130 * link_addr - Link address of the STA
6131 */
6132 const u8 *link_addr;
6133
6134 /**
6135 * assoc_link_id - Association link id of the MLO association or
6136 * -1 if MLO is not used
6137 */
6138 int assoc_link_id;
6139 } assoc_info;
6140
6141 /**
6142 * struct disassoc_info - Data for EVENT_DISASSOC events
6143 */
6144 struct disassoc_info {
6145 /**
6146 * addr - Station address (for AP mode)
6147 */
6148 const u8 *addr;
6149
6150 /**
6151 * reason_code - Reason Code (host byte order) used in
6152 * Deauthentication frame
6153 */
6154 u16 reason_code;
6155
6156 /**
6157 * ie - Optional IE(s) in Disassociation frame
6158 */
6159 const u8 *ie;
6160
6161 /**
6162 * ie_len - Length of ie buffer in octets
6163 */
6164 size_t ie_len;
6165
6166 /**
6167 * locally_generated - Whether the frame was locally generated
6168 */
6169 int locally_generated;
6170 } disassoc_info;
6171
6172 /**
6173 * struct deauth_info - Data for EVENT_DEAUTH events
6174 */
6175 struct deauth_info {
6176 /**
6177 * addr - Station address (for AP mode)
6178 */
6179 const u8 *addr;
6180
6181 /**
6182 * reason_code - Reason Code (host byte order) used in
6183 * Deauthentication frame
6184 */
6185 u16 reason_code;
6186
6187 /**
6188 * ie - Optional IE(s) in Deauthentication frame
6189 */
6190 const u8 *ie;
6191
6192 /**
6193 * ie_len - Length of ie buffer in octets
6194 */
6195 size_t ie_len;
6196
6197 /**
6198 * locally_generated - Whether the frame was locally generated
6199 */
6200 int locally_generated;
6201 } deauth_info;
6202
6203 /**
6204 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
6205 */
6206 struct michael_mic_failure {
6207 int unicast;
6208 const u8 *src;
6209 } michael_mic_failure;
6210
6211 /**
6212 * struct interface_status - Data for EVENT_INTERFACE_STATUS
6213 */
6214 struct interface_status {
6215 unsigned int ifindex;
6216 char ifname[100];
6217 enum {
6218 EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
6219 } ievent;
6220 } interface_status;
6221
6222 /**
6223 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
6224 */
6225 struct pmkid_candidate {
6226 /** BSSID of the PMKID candidate */
6227 u8 bssid[ETH_ALEN];
6228 /** Smaller the index, higher the priority */
6229 int index;
6230 /** Whether RSN IE includes pre-authenticate flag */
6231 int preauth;
6232 } pmkid_candidate;
6233
6234 /**
6235 * struct tdls - Data for EVENT_TDLS
6236 */
6237 struct tdls {
6238 u8 peer[ETH_ALEN];
6239 enum {
6240 TDLS_REQUEST_SETUP,
6241 TDLS_REQUEST_TEARDOWN,
6242 TDLS_REQUEST_DISCOVER,
6243 } oper;
6244 u16 reason_code; /* for teardown */
6245 } tdls;
6246
6247 /**
6248 * struct wnm - Data for EVENT_WNM
6249 */
6250 struct wnm {
6251 u8 addr[ETH_ALEN];
6252 enum {
6253 WNM_OPER_SLEEP,
6254 } oper;
6255 enum {
6256 WNM_SLEEP_ENTER,
6257 WNM_SLEEP_EXIT
6258 } sleep_action;
6259 int sleep_intval;
6260 u16 reason_code;
6261 u8 *buf;
6262 u16 buf_len;
6263 } wnm;
6264
6265 /**
6266 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
6267 *
6268 * During FT (IEEE 802.11r) authentication sequence, the driver is
6269 * expected to use this event to report received FT IEs (MDIE, FTIE,
6270 * RSN IE, TIE, possible resource request) to the supplicant. The FT
6271 * IEs for the next message will be delivered through the
6272 * struct wpa_driver_ops::update_ft_ies() callback.
6273 */
6274 struct ft_ies {
6275 const u8 *ies;
6276 size_t ies_len;
6277 int ft_action;
6278 u8 target_ap[ETH_ALEN];
6279 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
6280 const u8 *ric_ies;
6281 /** Length of ric_ies buffer in octets */
6282 size_t ric_ies_len;
6283 } ft_ies;
6284
6285 /**
6286 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
6287 */
6288 struct ibss_rsn_start {
6289 u8 peer[ETH_ALEN];
6290 } ibss_rsn_start;
6291
6292 /**
6293 * struct auth_info - Data for EVENT_AUTH events
6294 */
6295 struct auth_info {
6296 u8 peer[ETH_ALEN];
6297 u8 bssid[ETH_ALEN];
6298 u16 auth_type;
6299 u16 auth_transaction;
6300 u16 status_code;
6301 const u8 *ies;
6302 size_t ies_len;
6303 } auth;
6304
6305 /**
6306 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
6307 */
6308 struct assoc_reject {
6309 /**
6310 * bssid - BSSID of the AP that rejected association
6311 */
6312 const u8 *bssid;
6313
6314 /**
6315 * resp_ies - (Re)Association Response IEs
6316 *
6317 * Optional association data from the driver. This data is not
6318 * required WPA, but may be useful for some protocols and as
6319 * such, should be reported if this is available to the driver
6320 * interface.
6321 *
6322 * This should start with the first IE (fixed fields before IEs
6323 * are not included).
6324 */
6325 const u8 *resp_ies;
6326
6327 /**
6328 * resp_ies_len - Length of resp_ies in bytes
6329 */
6330 size_t resp_ies_len;
6331
6332 /**
6333 * status_code - Status Code from (Re)association Response
6334 */
6335 u16 status_code;
6336
6337 /**
6338 * timed_out - Whether failure is due to timeout (etc.) rather
6339 * than explicit rejection response from the AP.
6340 */
6341 int timed_out;
6342
6343 /**
6344 * timeout_reason - Reason for the timeout
6345 */
6346 const char *timeout_reason;
6347
6348 /**
6349 * fils_erp_next_seq_num - The next sequence number to use in
6350 * FILS ERP messages
6351 */
6352 u16 fils_erp_next_seq_num;
6353
6354 /**
6355 * reason_code - Connection failure reason code from the driver
6356 */
6357 enum sta_connect_fail_reason_codes reason_code;
6358 } assoc_reject;
6359
6360 struct timeout_event {
6361 u8 addr[ETH_ALEN];
6362 } timeout_event;
6363
6364 /**
6365 * struct tx_status - Data for EVENT_TX_STATUS events
6366 */
6367 struct tx_status {
6368 u16 type;
6369 u16 stype;
6370 const u8 *dst;
6371 const u8 *data;
6372 size_t data_len;
6373 int ack;
6374 int link_id;
6375 } tx_status;
6376
6377 /**
6378 * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
6379 */
6380 struct rx_from_unknown {
6381 const u8 *bssid;
6382 const u8 *addr;
6383 int wds;
6384 } rx_from_unknown;
6385
6386 /**
6387 * struct rx_mgmt - Data for EVENT_RX_MGMT events
6388 */
6389 struct rx_mgmt {
6390 const u8 *frame;
6391 size_t frame_len;
6392 u32 datarate;
6393
6394 /**
6395 * drv_priv - Pointer to store driver private BSS information
6396 *
6397 * If not set to NULL, this is used for comparison with
6398 * hostapd_data->drv_priv to determine which BSS should process
6399 * the frame.
6400 */
6401 void *drv_priv;
6402
6403 /**
6404 * ctx - Pointer to store ctx of private BSS information
6405 *
6406 * If not set to NULL, this is used for forwarding the packet
6407 * to right link BSS of ML BSS.
6408 */
6409 void *ctx;
6410
6411 /**
6412 * freq - Frequency (in MHz) on which the frame was received
6413 */
6414 int freq;
6415
6416 /**
6417 * ssi_signal - Signal strength in dBm (or 0 if not available)
6418 */
6419 int ssi_signal;
6420
6421 /**
6422 * link_id - MLO link on which the frame was received or -1 for
6423 * non MLD.
6424 */
6425 int link_id;
6426 } rx_mgmt;
6427
6428 /**
6429 * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
6430 *
6431 * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
6432 */
6433 struct remain_on_channel {
6434 /**
6435 * freq - Channel frequency in MHz
6436 */
6437 unsigned int freq;
6438
6439 /**
6440 * duration - Duration to remain on the channel in milliseconds
6441 */
6442 unsigned int duration;
6443 } remain_on_channel;
6444
6445 /**
6446 * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
6447 * @aborted: Whether the scan was aborted
6448 * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
6449 * @num_freqs: Number of entries in freqs array
6450 * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
6451 * SSID)
6452 * @num_ssids: Number of entries in ssids array
6453 * @external_scan: Whether the scan info is for an external scan
6454 * @nl_scan_event: 1 if the source of this scan event is a normal scan,
6455 * 0 if the source of the scan event is a vendor scan
6456 * @scan_start_tsf: Time when the scan started in terms of TSF of the
6457 * BSS that the interface that requested the scan is connected to
6458 * (if available).
6459 * @scan_start_tsf_bssid: The BSSID according to which %scan_start_tsf
6460 * is set.
6461 * @scan_cookie: Unique identification representing the corresponding
6462 * scan request. 0 if no unique identification is available.
6463 */
6464 struct scan_info {
6465 int aborted;
6466 const int *freqs;
6467 size_t num_freqs;
6468 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
6469 size_t num_ssids;
6470 int external_scan;
6471 int nl_scan_event;
6472 u64 scan_start_tsf;
6473 u8 scan_start_tsf_bssid[ETH_ALEN];
6474 u64 scan_cookie;
6475 } scan_info;
6476
6477 /**
6478 * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
6479 */
6480 struct rx_probe_req {
6481 /**
6482 * sa - Source address of the received Probe Request frame
6483 */
6484 const u8 *sa;
6485
6486 /**
6487 * da - Destination address of the received Probe Request frame
6488 * or %NULL if not available
6489 */
6490 const u8 *da;
6491
6492 /**
6493 * bssid - BSSID of the received Probe Request frame or %NULL
6494 * if not available
6495 */
6496 const u8 *bssid;
6497
6498 /**
6499 * ie - IEs from the Probe Request body
6500 */
6501 const u8 *ie;
6502
6503 /**
6504 * ie_len - Length of ie buffer in octets
6505 */
6506 size_t ie_len;
6507
6508 /**
6509 * signal - signal strength in dBm (or 0 if not available)
6510 */
6511 int ssi_signal;
6512 } rx_probe_req;
6513
6514 /**
6515 * struct new_sta - Data for EVENT_NEW_STA events
6516 */
6517 struct new_sta {
6518 const u8 *addr;
6519 } new_sta;
6520
6521 /**
6522 * struct eapol_rx - Data for EVENT_EAPOL_RX events
6523 */
6524 struct eapol_rx {
6525 const u8 *src;
6526 const u8 *data;
6527 size_t data_len;
6528 enum frame_encryption encrypted;
6529 int link_id;
6530 } eapol_rx;
6531
6532 /**
6533 * signal_change - Data for EVENT_SIGNAL_CHANGE events
6534 */
6535 struct wpa_signal_info signal_change;
6536
6537 /**
6538 * struct best_channel - Data for EVENT_BEST_CHANNEL events
6539 * @freq_24: Best 2.4 GHz band channel frequency in MHz
6540 * @freq_5: Best 5 GHz band channel frequency in MHz
6541 * @freq_overall: Best channel frequency in MHz
6542 *
6543 * 0 can be used to indicate no preference in either band.
6544 */
6545 struct best_channel {
6546 int freq_24;
6547 int freq_5;
6548 int freq_overall;
6549 } best_chan;
6550
6551 struct unprot_deauth {
6552 const u8 *sa;
6553 const u8 *da;
6554 u16 reason_code;
6555 } unprot_deauth;
6556
6557 struct unprot_disassoc {
6558 const u8 *sa;
6559 const u8 *da;
6560 u16 reason_code;
6561 } unprot_disassoc;
6562
6563 /**
6564 * struct low_ack - Data for EVENT_STATION_LOW_ACK events
6565 * @addr: station address
6566 * @num_packets: Number of packets lost (consecutive packets not
6567 * acknowledged)
6568 */
6569 struct low_ack {
6570 u8 addr[ETH_ALEN];
6571 u32 num_packets;
6572 } low_ack;
6573
6574 /**
6575 * struct ibss_peer_lost - Data for EVENT_IBSS_PEER_LOST
6576 */
6577 struct ibss_peer_lost {
6578 u8 peer[ETH_ALEN];
6579 } ibss_peer_lost;
6580
6581 /**
6582 * struct driver_gtk_rekey - Data for EVENT_DRIVER_GTK_REKEY
6583 */
6584 struct driver_gtk_rekey {
6585 const u8 *bssid;
6586 const u8 *replay_ctr;
6587 } driver_gtk_rekey;
6588
6589 /**
6590 * struct client_poll - Data for EVENT_DRIVER_CLIENT_POLL_OK events
6591 * @addr: station address
6592 */
6593 struct client_poll {
6594 u8 addr[ETH_ALEN];
6595 } client_poll;
6596
6597 /**
6598 * struct eapol_tx_status
6599 * @dst: Original destination
6600 * @data: Data starting with IEEE 802.1X header (!)
6601 * @data_len: Length of data
6602 * @ack: Indicates ack or lost frame
6603 * @link_id: MLD link id used to transmit the frame or -1 for non MLO
6604 *
6605 * This corresponds to hapd_send_eapol if the frame sent
6606 * there isn't just reported as EVENT_TX_STATUS.
6607 */
6608 struct eapol_tx_status {
6609 const u8 *dst;
6610 const u8 *data;
6611 int data_len;
6612 int ack;
6613 int link_id;
6614 } eapol_tx_status;
6615
6616 /**
6617 * struct ch_switch
6618 * @freq: Frequency of new channel in MHz
6619 * @ht_enabled: Whether this is an HT channel
6620 * @ch_offset: Secondary channel offset
6621 * @ch_width: Channel width
6622 * @cf1: Center frequency 1
6623 * @cf2: Center frequency 2
6624 * @link_id: Link ID of the MLO link
6625 * @punct_bitmap: Puncturing bitmap
6626 */
6627 struct ch_switch {
6628 int freq;
6629 int ht_enabled;
6630 int ch_offset;
6631 enum chan_width ch_width;
6632 int cf1;
6633 int cf2;
6634 int link_id;
6635 u16 punct_bitmap;
6636 } ch_switch;
6637
6638 /**
6639 * struct connect_failed - Data for EVENT_CONNECT_FAILED_REASON
6640 * @addr: Remote client address
6641 * @code: Reason code for connection failure
6642 */
6643 struct connect_failed_reason {
6644 u8 addr[ETH_ALEN];
6645 enum {
6646 MAX_CLIENT_REACHED,
6647 BLOCKED_CLIENT
6648 } code;
6649 } connect_failed_reason;
6650
6651 /**
6652 * struct dfs_event - Data for radar detected events
6653 * @freq: Frequency of the channel in MHz
6654 * @link_id: If >= 0, Link ID of the MLO link
6655 */
6656 struct dfs_event {
6657 int freq;
6658 int ht_enabled;
6659 int chan_offset;
6660 enum chan_width chan_width;
6661 int cf1;
6662 int cf2;
6663 int link_id;
6664 } dfs_event;
6665
6666 /**
6667 * survey_results - Survey result data for EVENT_SURVEY
6668 * @freq_filter: Requested frequency survey filter, 0 if request
6669 * was for all survey data
6670 * @survey_list: Linked list of survey data (struct freq_survey)
6671 */
6672 struct survey_results {
6673 unsigned int freq_filter;
6674 struct dl_list survey_list; /* struct freq_survey */
6675 } survey_results;
6676
6677 /**
6678 * channel_list_changed - Data for EVENT_CHANNEL_LIST_CHANGED
6679 * @initiator: Initiator of the regulatory change
6680 * @type: Regulatory change type
6681 * @alpha2: Country code (or "" if not available)
6682 * @beacon_hint_before: Data for frequency attributes before beacon hint
6683 * event if initiator == REGDOM_BEACON_HINT
6684 * @beacon_hint_after: Data for frequency attributes after beacon hint
6685 * event if initiator == REGDOM_BEACON_HINT
6686 */
6687 struct channel_list_changed {
6688 enum reg_change_initiator initiator;
6689 enum reg_type type;
6690 char alpha2[3];
6691 struct frequency_attrs {
6692 unsigned int freq;
6693 unsigned int max_tx_power;
6694 bool disabled;
6695 bool no_ir;
6696 bool radar;
6697 } beacon_hint_before, beacon_hint_after;
6698 } channel_list_changed;
6699
6700 /**
6701 * freq_range - List of frequency ranges
6702 *
6703 * This is used as the data with EVENT_AVOID_FREQUENCIES.
6704 */
6705 struct wpa_freq_range_list freq_range;
6706
6707 /**
6708 * struct mesh_peer
6709 *
6710 * @peer: Peer address
6711 * @ies: Beacon IEs
6712 * @ie_len: Length of @ies
6713 *
6714 * Notification of new candidate mesh peer.
6715 */
6716 struct mesh_peer {
6717 const u8 *peer;
6718 const u8 *ies;
6719 size_t ie_len;
6720 } mesh_peer;
6721
6722 /**
6723 * struct acs_selected_channels - Data for EVENT_ACS_CHANNEL_SELECTED
6724 * @pri_freq: Selected primary frequency
6725 * @sec_freq: Selected secondary frequency
6726 * @edmg_channel: Selected EDMG channel
6727 * @vht_seg0_center_ch: VHT mode Segment0 center channel
6728 * The value is the index of the channel center frequency for
6729 * 20 MHz, 40 MHz, and 80 MHz channels. The value is the center
6730 * frequency index of the primary 80 MHz segment for 160 MHz and
6731 * 80+80 MHz channels.
6732 * @vht_seg1_center_ch: VHT mode Segment1 center channel
6733 * The value is zero for 20 MHz, 40 MHz, and 80 MHz channels. The
6734 * value is the index of the channel center frequency for 160 MHz
6735 * channels and the center frequency index of the secondary 80 MHz
6736 * segment for 80+80 MHz channels.
6737 * @ch_width: Selected Channel width by driver. Driver may choose to
6738 * change hostapd configured ACS channel width due driver internal
6739 * channel restrictions.
6740 * @hw_mode: Selected band (used with hw_mode=any)
6741 * @puncture_bitmap: Indicate the puncturing channels
6742 * @link_id: Indicate the link id if operating as AP MLD; -1 otherwise
6743 */
6744 struct acs_selected_channels {
6745 unsigned int pri_freq;
6746 unsigned int sec_freq;
6747 u8 edmg_channel;
6748 u8 vht_seg0_center_ch;
6749 u8 vht_seg1_center_ch;
6750 u16 ch_width;
6751 enum hostapd_hw_mode hw_mode;
6752 u16 puncture_bitmap;
6753 int link_id;
6754 } acs_selected_channels;
6755
6756 /**
6757 * struct p2p_lo_stop - Reason code for P2P Listen offload stop event
6758 * @reason_code: Reason for stopping offload
6759 * P2P_LO_STOPPED_REASON_COMPLETE: Listen offload finished as
6760 * scheduled.
6761 * P2P_LO_STOPPED_REASON_RECV_STOP_CMD: Host requested offload to
6762 * be stopped.
6763 * P2P_LO_STOPPED_REASON_INVALID_PARAM: Invalid listen offload
6764 * parameters.
6765 * P2P_LO_STOPPED_REASON_NOT_SUPPORTED: Listen offload not
6766 * supported by device.
6767 */
6768 struct p2p_lo_stop {
6769 enum {
6770 P2P_LO_STOPPED_REASON_COMPLETE = 0,
6771 P2P_LO_STOPPED_REASON_RECV_STOP_CMD,
6772 P2P_LO_STOPPED_REASON_INVALID_PARAM,
6773 P2P_LO_STOPPED_REASON_NOT_SUPPORTED,
6774 } reason_code;
6775 } p2p_lo_stop;
6776
6777 /* For EVENT_EXTERNAL_AUTH */
6778 struct external_auth external_auth;
6779
6780 /**
6781 * struct sta_opmode - Station's operation mode change event
6782 * @addr: The station MAC address
6783 * @smps_mode: SMPS mode of the station
6784 * @chan_width: Channel width of the station
6785 * @rx_nss: RX_NSS of the station
6786 *
6787 * This is used as data with EVENT_STATION_OPMODE_CHANGED.
6788 */
6789 struct sta_opmode {
6790 const u8 *addr;
6791 enum smps_mode smps_mode;
6792 enum chan_width chan_width;
6793 u8 rx_nss;
6794 } sta_opmode;
6795
6796 /**
6797 * struct wds_sta_interface - Data for EVENT_WDS_STA_INTERFACE_STATUS.
6798 */
6799 struct wds_sta_interface {
6800 const u8 *sta_addr;
6801 const char *ifname;
6802 enum {
6803 INTERFACE_ADDED,
6804 INTERFACE_REMOVED
6805 } istatus;
6806 } wds_sta_interface;
6807
6808 /**
6809 * struct update_dh - Data for EVENT_UPDATE_DH
6810 */
6811 struct update_dh {
6812 const u8 *peer;
6813 const u8 *ie;
6814 size_t ie_len;
6815 int assoc_link_id;
6816 const u8 *link_addr;
6817 } update_dh;
6818
6819 /**
6820 * struct unprot_beacon - Data for EVENT_UNPROT_BEACON
6821 */
6822 struct unprot_beacon {
6823 const u8 *sa;
6824 } unprot_beacon;
6825
6826 /**
6827 * struct bss_color_collision - Data for EVENT_BSS_COLOR_COLLISION
6828 */
6829 struct bss_color_collision {
6830 u64 bitmap;
6831 int link_id;
6832 } bss_color_collision;
6833
6834 /**
6835 * struct pasn_auth - Data for EVENT_PASN_AUTH
6836 */
6837 struct pasn_auth pasn_auth;
6838
6839 /**
6840 * struct port_authorized - Data for EVENT_PORT_AUTHORIZED
6841 * @td_bitmap: For STA mode, transition disable bitmap, if received in
6842 * EAPOL-Key msg 3/4
6843 * @td_bitmap_len: For STA mode, length of td_bitmap
6844 * @sta_addr: For AP mode, the MAC address of the associated STA
6845 *
6846 * This event is used to indicate that the port is authorized and
6847 * open for normal data in STA and AP modes when 4-way handshake is
6848 * offloaded to the driver.
6849 */
6850 struct port_authorized {
6851 const u8 *td_bitmap;
6852 size_t td_bitmap_len;
6853 const u8 *sta_addr;
6854 } port_authorized;
6855
6856 /**
6857 * struct tid_link_map_info - Data for EVENT_TID_LINK_MAP
6858 */
6859 struct tid_link_map_info {
6860 bool default_map;
6861 u8 valid_links;
6862 struct t2lm_mapping t2lmap[MAX_NUM_MLD_LINKS];
6863 } t2l_map_info;
6864 };
6865
6866 /**
6867 * wpa_supplicant_event - Report a driver event for wpa_supplicant
6868 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
6869 * with struct wpa_driver_ops::init()
6870 * @event: event type (defined above)
6871 * @data: possible extra data for the event
6872 *
6873 * Driver wrapper code should call this function whenever an event is received
6874 * from the driver.
6875 */
6876 void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
6877 union wpa_event_data *data);
6878 #ifdef __ZEPHYR__
6879 void hostapd_event(void *ctx, enum wpa_event_type event,
6880 union wpa_event_data *data);
6881 void hostapd_event_eapol_rx(void *ctx, const u8 *src,
6882 const u8 *data, size_t data_len,
6883 enum frame_encryption encrypted, int link_id);
6884 #endif
6885
6886 /**
6887 * wpa_supplicant_event_global - Report a driver event for wpa_supplicant
6888 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
6889 * with struct wpa_driver_ops::init()
6890 * @event: event type (defined above)
6891 * @data: possible extra data for the event
6892 *
6893 * Same as wpa_supplicant_event(), but we search for the interface in
6894 * wpa_global.
6895 */
6896 void wpa_supplicant_event_global(void *ctx, enum wpa_event_type event,
6897 union wpa_event_data *data);
6898
6899 #ifdef __ZEPHYR__
6900 void hostapd_event_global(void *ctx, enum wpa_event_type event,
6901 union wpa_event_data *data);
6902 #endif
6903
6904 /*
6905 * The following inline functions are provided for convenience to simplify
6906 * event indication for some of the common events.
6907 */
6908
drv_event_assoc(void * ctx,const u8 * addr,const u8 * req_ies,size_t req_ielen,const u8 * resp_ies,size_t resp_ielen,const u8 * link_addr,int assoc_link_id,int reassoc)6909 static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *req_ies,
6910 size_t req_ielen, const u8 *resp_ies,
6911 size_t resp_ielen, const u8 *link_addr,
6912 int assoc_link_id, int reassoc)
6913 {
6914 union wpa_event_data event;
6915 os_memset(&event, 0, sizeof(event));
6916 event.assoc_info.reassoc = reassoc;
6917 event.assoc_info.req_ies = req_ies;
6918 event.assoc_info.req_ies_len = req_ielen;
6919 event.assoc_info.resp_ies = resp_ies;
6920 event.assoc_info.resp_ies_len = resp_ielen;
6921 event.assoc_info.addr = addr;
6922 event.assoc_info.link_addr = link_addr;
6923 event.assoc_info.assoc_link_id = assoc_link_id;
6924 wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
6925 }
6926
drv_event_disassoc(void * ctx,const u8 * addr)6927 static inline void drv_event_disassoc(void *ctx, const u8 *addr)
6928 {
6929 union wpa_event_data event;
6930 os_memset(&event, 0, sizeof(event));
6931 event.disassoc_info.addr = addr;
6932 wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
6933 }
6934
drv_event_eapol_rx(void * ctx,const u8 * src,const u8 * data,size_t data_len)6935 static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data,
6936 size_t data_len)
6937 {
6938 union wpa_event_data event;
6939 os_memset(&event, 0, sizeof(event));
6940 event.eapol_rx.src = src;
6941 event.eapol_rx.data = data;
6942 event.eapol_rx.data_len = data_len;
6943 event.eapol_rx.encrypted = FRAME_ENCRYPTION_UNKNOWN;
6944 event.eapol_rx.link_id = -1;
6945 wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
6946 }
6947
drv_event_eapol_rx2(void * ctx,const u8 * src,const u8 * data,size_t data_len,enum frame_encryption encrypted,int link_id)6948 static inline void drv_event_eapol_rx2(void *ctx, const u8 *src, const u8 *data,
6949 size_t data_len,
6950 enum frame_encryption encrypted,
6951 int link_id)
6952 {
6953 union wpa_event_data event;
6954 os_memset(&event, 0, sizeof(event));
6955 event.eapol_rx.src = src;
6956 event.eapol_rx.data = data;
6957 event.eapol_rx.data_len = data_len;
6958 event.eapol_rx.encrypted = encrypted;
6959 event.eapol_rx.link_id = link_id;
6960 wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
6961 }
6962
6963 /* driver_common.c */
6964 void wpa_scan_results_free(struct wpa_scan_results *res);
6965
6966 /* Convert wpa_event_type to a string for logging */
6967 const char * event_to_string(enum wpa_event_type event);
6968
6969 /* Convert chan_width to a string for logging and control interfaces */
6970 const char * channel_width_to_string(enum chan_width width);
6971
6972 int channel_width_to_int(enum chan_width width);
6973
6974 int ht_supported(const struct hostapd_hw_modes *mode);
6975 int vht_supported(const struct hostapd_hw_modes *mode);
6976 bool he_supported(const struct hostapd_hw_modes *hw_mode,
6977 enum ieee80211_op_mode op_mode);
6978
6979 struct wowlan_triggers *
6980 wpa_get_wowlan_triggers(const char *wowlan_triggers,
6981 const struct wpa_driver_capa *capa);
6982 /* Convert driver flag to string */
6983 const char * driver_flag_to_string(u64 flag);
6984 const char * driver_flag2_to_string(u64 flag2);
6985
6986 /* NULL terminated array of linked in driver wrappers */
6987 extern const struct wpa_driver_ops *const wpa_drivers[];
6988
6989
6990 /* Available drivers */
6991
6992 #ifdef CONFIG_DRIVER_WEXT
6993 extern const struct wpa_driver_ops wpa_driver_wext_ops; /* driver_wext.c */
6994 #endif /* CONFIG_DRIVER_WEXT */
6995 #ifdef CONFIG_DRIVER_NL80211
6996 /* driver_nl80211.c */
6997 extern const struct wpa_driver_ops wpa_driver_nl80211_ops;
6998 #endif /* CONFIG_DRIVER_NL80211 */
6999 #ifdef CONFIG_DRIVER_HOSTAP
7000 extern const struct wpa_driver_ops wpa_driver_hostap_ops; /* driver_hostap.c */
7001 #endif /* CONFIG_DRIVER_HOSTAP */
7002 #ifdef CONFIG_DRIVER_BSD
7003 extern const struct wpa_driver_ops wpa_driver_bsd_ops; /* driver_bsd.c */
7004 #endif /* CONFIG_DRIVER_BSD */
7005 #ifdef CONFIG_DRIVER_OPENBSD
7006 /* driver_openbsd.c */
7007 extern const struct wpa_driver_ops wpa_driver_openbsd_ops;
7008 #endif /* CONFIG_DRIVER_OPENBSD */
7009 #ifdef CONFIG_DRIVER_NDIS
7010 extern struct wpa_driver_ops wpa_driver_ndis_ops; /* driver_ndis.c */
7011 #endif /* CONFIG_DRIVER_NDIS */
7012 #ifdef CONFIG_DRIVER_WIRED
7013 extern const struct wpa_driver_ops wpa_driver_wired_ops; /* driver_wired.c */
7014 #endif /* CONFIG_DRIVER_WIRED */
7015 #ifdef CONFIG_DRIVER_MACSEC_QCA
7016 /* driver_macsec_qca.c */
7017 extern const struct wpa_driver_ops wpa_driver_macsec_qca_ops;
7018 #endif /* CONFIG_DRIVER_MACSEC_QCA */
7019 #ifdef CONFIG_DRIVER_MACSEC_LINUX
7020 /* driver_macsec_linux.c */
7021 extern const struct wpa_driver_ops wpa_driver_macsec_linux_ops;
7022 #endif /* CONFIG_DRIVER_MACSEC_LINUX */
7023 #ifdef CONFIG_DRIVER_ROBOSWITCH
7024 /* driver_roboswitch.c */
7025 extern const struct wpa_driver_ops wpa_driver_roboswitch_ops;
7026 #endif /* CONFIG_DRIVER_ROBOSWITCH */
7027 #ifdef CONFIG_DRIVER_ATHEROS
7028 /* driver_atheros.c */
7029 extern const struct wpa_driver_ops wpa_driver_atheros_ops;
7030 #endif /* CONFIG_DRIVER_ATHEROS */
7031 #ifdef CONFIG_DRIVER_NONE
7032 extern const struct wpa_driver_ops wpa_driver_none_ops; /* driver_none.c */
7033 #endif /* CONFIG_DRIVER_NONE */
7034 #ifdef __ZEPHYR__
7035 #define CONFIG_DRIVER_ZEPHYR
7036 extern const struct wpa_driver_ops wpa_driver_zep_ops; /* driver_zephyr.c */
7037 #endif /* __ZEPHYR__ */
7038
7039 #endif /* DRIVER_H */
7040