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