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