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