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