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