]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/drivers/driver.h
Remove unneeded hostapd_wmm_sta_config()
[thirdparty/hostap.git] / src / drivers / driver.h
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant - driver interface definition
d3a98225 3 * Copyright (c) 2003-2009, 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.
13 */
14
15#ifndef DRIVER_H
16#define DRIVER_H
17
642187d6 18#define WPA_SUPPLICANT_DRIVER_VERSION 4
6fc6879b 19
90973fb2 20#include "common/defs.h"
6fc6879b 21
c5121837
JM
22#define HOSTAPD_CHAN_DISABLED 0x00000001
23#define HOSTAPD_CHAN_PASSIVE_SCAN 0x00000002
24#define HOSTAPD_CHAN_NO_IBSS 0x00000004
25#define HOSTAPD_CHAN_RADAR 0x00000008
26
27struct hostapd_channel_data {
28 short chan; /* channel number (IEEE 802.11) */
29 short freq; /* frequency in MHz */
30 int flag; /* flag for hostapd use (HOSTAPD_CHAN_*) */
31 u8 max_tx_power; /* maximum transmit power in dBm */
32};
33
c5121837
JM
34struct hostapd_hw_modes {
35 hostapd_hw_mode mode;
36 int num_channels;
37 struct hostapd_channel_data *channels;
38 int num_rates;
fb7842aa 39 int *rates; /* array of rates in 100 kbps units */
c5121837 40 u16 ht_capab;
08eb154d 41 u8 mcs_set[16];
be8eb8ab 42 u8 a_mpdu_params;
c5121837
JM
43};
44
45
6fc6879b
JM
46#define AUTH_ALG_OPEN_SYSTEM 0x01
47#define AUTH_ALG_SHARED_KEY 0x02
48#define AUTH_ALG_LEAP 0x04
c2a04078 49#define AUTH_ALG_FT 0x08
6fc6879b
JM
50
51#define IEEE80211_MODE_INFRA 0
52#define IEEE80211_MODE_IBSS 1
ad1e68e6 53#define IEEE80211_MODE_AP 2
6fc6879b
JM
54
55#define IEEE80211_CAP_ESS 0x0001
56#define IEEE80211_CAP_IBSS 0x0002
57#define IEEE80211_CAP_PRIVACY 0x0010
58
7c2849d2
JM
59#define WPA_SCAN_QUAL_INVALID BIT(0)
60#define WPA_SCAN_NOISE_INVALID BIT(1)
61#define WPA_SCAN_LEVEL_INVALID BIT(2)
62#define WPA_SCAN_LEVEL_DBM BIT(3)
e6b8efeb
JM
63#define WPA_SCAN_AUTHENTICATED BIT(4)
64#define WPA_SCAN_ASSOCIATED BIT(5)
7c2849d2 65
6fc6879b
JM
66/**
67 * struct wpa_scan_res - Scan result for an BSS/IBSS
7c2849d2 68 * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
6fc6879b
JM
69 * @bssid: BSSID
70 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
71 * @beacon_int: beacon interval in TUs (host byte order)
72 * @caps: capability information field in host byte order
73 * @qual: signal quality
74 * @noise: noise level
75 * @level: signal level
76 * @tsf: Timestamp
b3ad11bb
JM
77 * @age: Age of the information in milliseconds (i.e., how many milliseconds
78 * ago the last Beacon or Probe Response frame was received)
6fc6879b
JM
79 * @ie_len: length of the following IE field in octets
80 *
81 * This structure is used as a generic format for scan results from the
82 * driver. Each driver interface implementation is responsible for converting
83 * the driver or OS specific scan results into this format.
84 *
85 * If the driver does not support reporting all IEs, the IE data structure is
86 * constructed of the IEs that are available. This field will also need to
87 * include SSID in IE format. All drivers are encouraged to be extended to
88 * report all IEs to make it easier to support future additions.
89 */
90struct wpa_scan_res {
7c2849d2 91 unsigned int flags;
6fc6879b
JM
92 u8 bssid[ETH_ALEN];
93 int freq;
94 u16 beacon_int;
95 u16 caps;
96 int qual;
97 int noise;
98 int level;
99 u64 tsf;
b3ad11bb 100 unsigned int age;
6fc6879b
JM
101 size_t ie_len;
102 /* followed by ie_len octets of IEs */
103};
104
105/**
106 * struct wpa_scan_results - Scan results
107 * @res: Array of pointers to allocated variable length scan result entries
108 * @num: Number of entries in the scan result array
109 */
110struct wpa_scan_results {
111 struct wpa_scan_res **res;
112 size_t num;
113};
114
4b4a8ae5
JM
115/**
116 * struct wpa_interface_info - Network interface information
117 * @next: Pointer to the next interface or NULL if this is the last one
118 * @ifname: Interface name that can be used with init() or init2()
119 * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
120 * not available
121 * @drv_bame: struct wpa_driver_ops::name (note: unlike other strings, this one
122 * is not an allocated copy, i.e., get_interfaces() caller will not free
123 * this)
124 */
125struct wpa_interface_info {
126 struct wpa_interface_info *next;
127 char *ifname;
128 char *desc;
129 const char *drv_name;
130};
131
fc2b7ed5
JM
132#define WPAS_MAX_SCAN_SSIDS 4
133
134/**
135 * struct wpa_driver_scan_params - Scan parameters
136 * Data for struct wpa_driver_ops::scan2().
137 */
138struct wpa_driver_scan_params {
139 /**
140 * ssids - SSIDs to scan for
141 */
142 struct wpa_driver_scan_ssid {
143 /**
144 * ssid - specific SSID to scan for (ProbeReq)
145 * %NULL or zero-length SSID is used to indicate active scan
ba2a573c 146 * with wildcard SSID.
fc2b7ed5
JM
147 */
148 const u8 *ssid;
149 /**
150 * ssid_len: Length of the SSID in octets
151 */
152 size_t ssid_len;
153 } ssids[WPAS_MAX_SCAN_SSIDS];
154
155 /**
156 * num_ssids - Number of entries in ssids array
157 * Zero indicates a request for a passive scan.
158 */
159 size_t num_ssids;
160
161 /**
162 * extra_ies - Extra IE(s) to add into Probe Request or %NULL
163 */
164 const u8 *extra_ies;
165
166 /**
167 * extra_ies_len - Length of extra_ies in octets
168 */
169 size_t extra_ies_len;
d3a98225
JM
170
171 /**
172 * freqs - Array of frequencies to scan or %NULL for all frequencies
173 *
174 * The frequency is set in MHz. The array is zero-terminated.
175 */
176 int *freqs;
fc2b7ed5
JM
177};
178
c2a04078
JM
179/**
180 * struct wpa_driver_auth_params - Authentication parameters
181 * Data for struct wpa_driver_ops::authenticate().
182 */
183struct wpa_driver_auth_params {
184 int freq;
185 const u8 *bssid;
186 const u8 *ssid;
187 size_t ssid_len;
188 int auth_alg;
189 const u8 *ie;
190 size_t ie_len;
a0b2f99b
JM
191 const u8 *wep_key[4];
192 size_t wep_key_len[4];
193 int wep_tx_keyidx;
c2a04078
JM
194};
195
6fc6879b
JM
196/**
197 * struct wpa_driver_associate_params - Association parameters
198 * Data for struct wpa_driver_ops::associate().
199 */
200struct wpa_driver_associate_params {
201 /**
202 * bssid - BSSID of the selected AP
203 * This can be %NULL, if ap_scan=2 mode is used and the driver is
204 * responsible for selecting with which BSS to associate. */
205 const u8 *bssid;
206
207 /**
208 * ssid - The selected SSID
209 */
210 const u8 *ssid;
211 size_t ssid_len;
212
213 /**
214 * freq - Frequency of the channel the selected AP is using
215 * Frequency that the selected AP is using (in MHz as
216 * reported in the scan results)
217 */
218 int freq;
219
220 /**
221 * wpa_ie - WPA information element for (Re)Association Request
222 * WPA information element to be included in (Re)Association
223 * Request (including information element id and length). Use
224 * of this WPA IE is optional. If the driver generates the WPA
225 * IE, it can use pairwise_suite, group_suite, and
226 * key_mgmt_suite to select proper algorithms. In this case,
227 * the driver has to notify wpa_supplicant about the used WPA
228 * IE by generating an event that the interface code will
229 * convert into EVENT_ASSOCINFO data (see below).
230 *
231 * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
232 * instead. The driver can determine which version is used by
233 * looking at the first byte of the IE (0xdd for WPA, 0x30 for
234 * WPA2/RSN).
ad08c363
JM
235 *
236 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
6fc6879b
JM
237 */
238 const u8 *wpa_ie;
239 /**
240 * wpa_ie_len - length of the wpa_ie
241 */
242 size_t wpa_ie_len;
243
244 /* The selected pairwise/group cipher and key management
245 * suites. These are usually ignored if @wpa_ie is used. */
246 wpa_cipher pairwise_suite;
247 wpa_cipher group_suite;
248 wpa_key_mgmt key_mgmt_suite;
249
250 /**
251 * auth_alg - Allowed authentication algorithms
252 * Bit field of AUTH_ALG_*
253 */
254 int auth_alg;
255
256 /**
257 * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
258 */
259 int mode;
260
261 /**
262 * wep_key - WEP keys for static WEP configuration
263 */
264 const u8 *wep_key[4];
265
266 /**
267 * wep_key_len - WEP key length for static WEP configuration
268 */
269 size_t wep_key_len[4];
270
271 /**
272 * wep_tx_keyidx - WEP TX key index for static WEP configuration
273 */
274 int wep_tx_keyidx;
275
276 /**
277 * mgmt_frame_protection - IEEE 802.11w management frame protection
278 */
279 enum {
280 NO_MGMT_FRAME_PROTECTION,
281 MGMT_FRAME_PROTECTION_OPTIONAL,
282 MGMT_FRAME_PROTECTION_REQUIRED
283 } mgmt_frame_protection;
284
285 /**
286 * ft_ies - IEEE 802.11r / FT information elements
287 * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
288 * for fast transition, this parameter is set to include the IEs that
289 * are to be sent in the next FT Authentication Request message.
290 * update_ft_ies() handler is called to update the IEs for further
291 * FT messages in the sequence.
292 *
293 * The driver should use these IEs only if the target AP is advertising
294 * the same mobility domain as the one included in the MDIE here.
295 *
296 * In ap_scan=2 mode, the driver can use these IEs when moving to a new
297 * AP after the initial association. These IEs can only be used if the
298 * target AP is advertising support for FT and is using the same MDIE
299 * and SSID as the current AP.
300 *
301 * The driver is responsible for reporting the FT IEs received from the
302 * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
303 * type. update_ft_ies() handler will then be called with the FT IEs to
304 * include in the next frame in the authentication sequence.
305 */
306 const u8 *ft_ies;
307
308 /**
309 * ft_ies_len - Length of ft_ies in bytes
310 */
311 size_t ft_ies_len;
312
313 /**
314 * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
315 *
316 * This value is provided to allow the driver interface easier access
317 * to the current mobility domain. This value is set to %NULL if no
318 * mobility domain is currently active.
319 */
320 const u8 *ft_md;
321
322 /**
323 * passphrase - RSN passphrase for PSK
324 *
325 * This value is made available only for WPA/WPA2-Personal (PSK) and
326 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
327 * the 8..63 character ASCII passphrase, if available. Please note that
328 * this can be %NULL if passphrase was not used to generate the PSK. In
329 * that case, the psk field must be used to fetch the PSK.
330 */
331 const char *passphrase;
332
333 /**
334 * psk - RSN PSK (alternative for passphrase for PSK)
335 *
336 * This value is made available only for WPA/WPA2-Personal (PSK) and
337 * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
338 * the 32-octet (256-bit) PSK, if available. The driver wrapper should
339 * be prepared to handle %NULL value as an error.
340 */
341 const u8 *psk;
36b15723
JM
342
343 /**
344 * drop_unencrypted - Enable/disable unencrypted frame filtering
345 *
346 * Configure the driver to drop all non-EAPOL frames (both receive and
347 * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
348 * still be allowed for key negotiation.
349 */
350 int drop_unencrypted;
62fa124c
JM
351
352 /**
353 * prev_bssid - Previously used BSSID in this ESS
354 *
355 * When not %NULL, this is a request to use reassociation instead of
356 * association.
357 */
358 const u8 *prev_bssid;
6fc6879b
JM
359};
360
361/**
362 * struct wpa_driver_capa - Driver capability information
363 */
364struct wpa_driver_capa {
365#define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
366#define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
367#define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
368#define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
369#define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
370#define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
371#define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
372 unsigned int key_mgmt;
373
374#define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
375#define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
376#define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
377#define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
378 unsigned int enc;
379
380#define WPA_DRIVER_AUTH_OPEN 0x00000001
381#define WPA_DRIVER_AUTH_SHARED 0x00000002
382#define WPA_DRIVER_AUTH_LEAP 0x00000004
383 unsigned int auth;
384
385/* Driver generated WPA/RSN IE */
386#define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
0194fedb 387/* Driver needs static WEP key setup after association command */
6fc6879b
JM
388#define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
389#define WPA_DRIVER_FLAGS_USER_SPACE_MLME 0x00000004
390/* Driver takes care of RSN 4-way handshake internally; PMK is configured with
391 * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
392#define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
4ef1e644 393#define WPA_DRIVER_FLAGS_WIRED 0x00000010
c2a04078
JM
394/* Driver provides separate commands for authentication and association (SME in
395 * wpa_supplicant). */
396#define WPA_DRIVER_FLAGS_SME 0x00000020
1581b38b
JM
397/* Driver supports AP mode */
398#define WPA_DRIVER_FLAGS_AP 0x00000040
0194fedb
JB
399/* Driver needs static WEP key setup after association has been completed */
400#define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080
6fc6879b 401 unsigned int flags;
80bc75f1
JM
402
403 int max_scan_ssids;
6fc6879b
JM
404};
405
406
6fc6879b
JM
407struct ieee80211_rx_status {
408 int channel;
409 int ssi;
410};
411
412
c5121837
JM
413struct hostapd_data;
414
415struct hostap_sta_driver_data {
416 unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
417 unsigned long current_tx_rate;
418 unsigned long inactive_msec;
419 unsigned long flags;
420 unsigned long num_ps_buf_frames;
421 unsigned long tx_retry_failed;
422 unsigned long tx_retry_count;
423 int last_rssi;
424 int last_ack_rssi;
425};
426
427struct hostapd_sta_add_params {
428 const u8 *addr;
429 u16 aid;
430 u16 capability;
431 const u8 *supp_rates;
432 size_t supp_rates_len;
c5121837 433 u16 listen_interval;
fc4e2d95 434 const struct ieee80211_ht_capabilities *ht_capabilities;
c5121837
JM
435};
436
437struct hostapd_freq_params {
438 int mode;
439 int freq;
440 int channel;
441 int ht_enabled;
442 int sec_channel_offset; /* 0 = HT40 disabled, -1 = HT40 enabled,
443 * secondary channel below primary, 1 = HT40
444 * enabled, secondary channel above primary */
445};
446
22a7c9d7
JM
447enum wpa_driver_if_type {
448 /**
449 * WPA_IF_STATION - Station mode interface
450 */
451 WPA_IF_STATION,
452
453 /**
454 * WPA_IF_AP_VLAN - AP mode VLAN interface
455 *
456 * This interface shares its address and Beacon frame with the main
457 * BSS.
458 */
459 WPA_IF_AP_VLAN,
460
461 /**
462 * WPA_IF_AP_BSS - AP mode BSS interface
463 *
464 * This interface has its own address and Beacon frame.
465 */
466 WPA_IF_AP_BSS,
c5121837
JM
467};
468
92f475b4
JM
469struct wpa_init_params {
470 const u8 *bssid;
471 const char *ifname;
472 const u8 *ssid;
473 size_t ssid_len;
474 const char *test_socket;
475 int use_pae_group_addr;
92f475b4
JM
476 char **bridge;
477 size_t num_bridge;
412036f5
JM
478
479 u8 *own_addr; /* buffer for writing own MAC address */
92f475b4
JM
480};
481
c5121837 482
e3bd3912
JM
483struct wpa_bss_params {
484 /** Interface name (for multi-SSID/VLAN support) */
485 const char *ifname;
486 /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
487 int enabled;
af586419
JM
488
489 int wpa;
490 int ieee802_1x;
491 int wpa_group;
492 int wpa_pairwise;
493 int wpa_key_mgmt;
494 int rsn_preauth;
e3bd3912
JM
495};
496
497
6fc6879b
JM
498/**
499 * struct wpa_driver_ops - Driver interface API definition
500 *
501 * This structure defines the API that each driver interface needs to implement
502 * for core wpa_supplicant code. All driver specific functionality is captured
503 * in this wrapper.
504 */
505struct wpa_driver_ops {
506 /** Name of the driver interface */
507 const char *name;
508 /** One line description of the driver interface */
509 const char *desc;
510
511 /**
512 * get_bssid - Get the current BSSID
513 * @priv: private driver interface data
514 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
515 *
516 * Returns: 0 on success, -1 on failure
517 *
518 * Query kernel driver for the current BSSID and copy it to bssid.
519 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
520 * associated.
521 */
522 int (*get_bssid)(void *priv, u8 *bssid);
523
524 /**
525 * get_ssid - Get the current SSID
526 * @priv: private driver interface data
527 * @ssid: buffer for SSID (at least 32 bytes)
528 *
529 * Returns: Length of the SSID on success, -1 on failure
530 *
531 * Query kernel driver for the current SSID and copy it to ssid.
532 * Returning zero is recommended if the STA is not associated.
533 *
534 * Note: SSID is an array of octets, i.e., it is not nul terminated and
535 * can, at least in theory, contain control characters (including nul)
536 * and as such, should be processed as binary data, not a printable
537 * string.
538 */
539 int (*get_ssid)(void *priv, u8 *ssid);
540
6fc6879b
JM
541 /**
542 * set_key - Configure encryption key
642187d6 543 * @ifname: Interface name (for multi-SSID/VLAN support)
6fc6879b
JM
544 * @priv: private driver interface data
545 * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
546 * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
547 * %WPA_ALG_NONE clears the key.
548 * @addr: address of the peer STA or ff:ff:ff:ff:ff:ff for
549 * broadcast/default keys
550 * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
551 * IGTK
552 * @set_tx: configure this key as the default Tx key (only used when
553 * driver does not support separate unicast/individual key
554 * @seq: sequence number/packet number, seq_len octets, the next
555 * packet number to be used for in replay protection; configured
556 * for Rx keys (in most cases, this is only used with broadcast
557 * keys and set to zero for unicast keys)
558 * @seq_len: length of the seq, depends on the algorithm:
559 * TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
560 * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
561 * 8-byte Rx Mic Key
562 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
563 * TKIP: 32, CCMP: 16, IGTK: 16)
564 *
565 * Returns: 0 on success, -1 on failure
566 *
567 * Configure the given key for the kernel driver. If the driver
568 * supports separate individual keys (4 default keys + 1 individual),
569 * addr can be used to determine whether the key is default or
570 * individual. If only 4 keys are supported, the default key with key
571 * index 0 is used as the individual key. STA must be configured to use
572 * it as the default Tx key (set_tx is set) and accept Rx for all the
573 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
574 * broadcast keys, so key index 0 is available for this kind of
575 * configuration.
576 *
577 * Please note that TKIP keys include separate TX and RX MIC keys and
578 * some drivers may expect them in different order than wpa_supplicant
579 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
580 * will tricker Michael MIC errors. This can be fixed by changing the
581 * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
582 * in driver_*.c set_key() implementation, see driver_ndis.c for an
583 * example on how this can be done.
584 */
642187d6
JM
585 int (*set_key)(const char *ifname, void *priv, wpa_alg alg,
586 const u8 *addr, int key_idx, int set_tx,
587 const u8 *seq, size_t seq_len,
6fc6879b
JM
588 const u8 *key, size_t key_len);
589
590 /**
591 * init - Initialize driver interface
592 * @ctx: context to be used when calling wpa_supplicant functions,
593 * e.g., wpa_supplicant_event()
594 * @ifname: interface name, e.g., wlan0
595 *
596 * Returns: Pointer to private data, %NULL on failure
597 *
598 * Initialize driver interface, including event processing for kernel
599 * driver events (e.g., associated, scan results, Michael MIC failure).
600 * This function can allocate a private configuration data area for
601 * @ctx, file descriptor, interface name, etc. information that may be
602 * needed in future driver operations. If this is not used, non-NULL
603 * value will need to be returned because %NULL is used to indicate
604 * failure. The returned value will be used as 'void *priv' data for
605 * all other driver_ops functions.
606 *
607 * The main event loop (eloop.c) of wpa_supplicant can be used to
608 * register callback for read sockets (eloop_register_read_sock()).
609 *
610 * See below for more information about events and
611 * wpa_supplicant_event() function.
612 */
613 void * (*init)(void *ctx, const char *ifname);
614
615 /**
616 * deinit - Deinitialize driver interface
617 * @priv: private driver interface data from init()
618 *
619 * Shut down driver interface and processing of driver events. Free
620 * private data buffer if one was allocated in init() handler.
621 */
622 void (*deinit)(void *priv);
623
624 /**
625 * set_param - Set driver configuration parameters
626 * @priv: private driver interface data from init()
627 * @param: driver specific configuration parameters
628 *
629 * Returns: 0 on success, -1 on failure
630 *
631 * Optional handler for notifying driver interface about configuration
632 * parameters (driver_param).
633 */
634 int (*set_param)(void *priv, const char *param);
635
636 /**
637 * set_countermeasures - Enable/disable TKIP countermeasures
638 * @priv: private driver interface data
639 * @enabled: 1 = countermeasures enabled, 0 = disabled
640 *
641 * Returns: 0 on success, -1 on failure
642 *
643 * Configure TKIP countermeasures. When these are enabled, the driver
644 * should drop all received and queued frames that are using TKIP.
645 */
646 int (*set_countermeasures)(void *priv, int enabled);
647
6fc6879b
JM
648 /**
649 * deauthenticate - Request driver to deauthenticate
650 * @priv: private driver interface data
651 * @addr: peer address (BSSID of the AP)
652 * @reason_code: 16-bit reason code to be sent in the deauthentication
653 * frame
654 *
655 * Returns: 0 on success, -1 on failure
656 */
657 int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
658
659 /**
660 * disassociate - Request driver to disassociate
661 * @priv: private driver interface data
662 * @addr: peer address (BSSID of the AP)
663 * @reason_code: 16-bit reason code to be sent in the disassociation
664 * frame
665 *
666 * Returns: 0 on success, -1 on failure
667 */
668 int (*disassociate)(void *priv, const u8 *addr, int reason_code);
669
670 /**
671 * associate - Request driver to associate
672 * @priv: private driver interface data
673 * @params: association parameters
674 *
675 * Returns: 0 on success, -1 on failure
676 */
677 int (*associate)(void *priv,
678 struct wpa_driver_associate_params *params);
679
6fc6879b
JM
680 /**
681 * add_pmkid - Add PMKSA cache entry to the driver
682 * @priv: private driver interface data
683 * @bssid: BSSID for the PMKSA cache entry
684 * @pmkid: PMKID for the PMKSA cache entry
685 *
686 * Returns: 0 on success, -1 on failure
687 *
688 * This function is called when a new PMK is received, as a result of
689 * either normal authentication or RSN pre-authentication.
690 *
691 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
692 * associate(), add_pmkid() can be used to add new PMKSA cache entries
693 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
694 * driver_ops function does not need to be implemented. Likewise, if
695 * the driver does not support WPA, this function is not needed.
696 */
697 int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
698
699 /**
700 * remove_pmkid - Remove PMKSA cache entry to the driver
701 * @priv: private driver interface data
702 * @bssid: BSSID for the PMKSA cache entry
703 * @pmkid: PMKID for the PMKSA cache entry
704 *
705 * Returns: 0 on success, -1 on failure
706 *
707 * This function is called when the supplicant drops a PMKSA cache
708 * entry for any reason.
709 *
710 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
711 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
712 * between the driver and wpa_supplicant. If the driver uses wpa_ie
713 * from wpa_supplicant, this driver_ops function does not need to be
714 * implemented. Likewise, if the driver does not support WPA, this
715 * function is not needed.
716 */
717 int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
718
719 /**
720 * flush_pmkid - Flush PMKSA cache
721 * @priv: private driver interface data
722 *
723 * Returns: 0 on success, -1 on failure
724 *
725 * This function is called when the supplicant drops all PMKSA cache
726 * entries for any reason.
727 *
728 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
729 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
730 * between the driver and wpa_supplicant. If the driver uses wpa_ie
731 * from wpa_supplicant, this driver_ops function does not need to be
732 * implemented. Likewise, if the driver does not support WPA, this
733 * function is not needed.
734 */
735 int (*flush_pmkid)(void *priv);
736
737 /**
6179d2fd 738 * get_capa - Get driver capabilities
6fc6879b
JM
739 * @priv: private driver interface data
740 *
741 * Returns: 0 on success, -1 on failure
742 *
743 * Get driver/firmware/hardware capabilities.
744 */
745 int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
746
747 /**
748 * poll - Poll driver for association information
749 * @priv: private driver interface data
750 *
751 * This is an option callback that can be used when the driver does not
752 * provide event mechanism for association events. This is called when
753 * receiving WPA EAPOL-Key messages that require association
754 * information. The driver interface is supposed to generate associnfo
755 * event before returning from this callback function. In addition, the
756 * driver interface should generate an association event after having
757 * sent out associnfo.
758 */
759 void (*poll)(void *priv);
760
761 /**
762 * get_ifname - Get interface name
763 * @priv: private driver interface data
764 *
765 * Returns: Pointer to the interface name. This can differ from the
e519314e 766 * interface name used in init() call. Init() is called first.
6fc6879b
JM
767 *
768 * This optional function can be used to allow the driver interface to
769 * replace the interface name with something else, e.g., based on an
770 * interface mapping from a more descriptive name.
771 */
772 const char * (*get_ifname)(void *priv);
773
774 /**
775 * get_mac_addr - Get own MAC address
776 * @priv: private driver interface data
777 *
778 * Returns: Pointer to own MAC address or %NULL on failure
779 *
780 * This optional function can be used to get the own MAC address of the
781 * device from the driver interface code. This is only needed if the
782 * l2_packet implementation for the OS does not provide easy access to
783 * a MAC address. */
784 const u8 * (*get_mac_addr)(void *priv);
785
786 /**
787 * send_eapol - Optional function for sending EAPOL packets
788 * @priv: private driver interface data
789 * @dest: Destination MAC address
790 * @proto: Ethertype
791 * @data: EAPOL packet starting with IEEE 802.1X header
792 * @data_len: Size of the EAPOL packet
793 *
794 * Returns: 0 on success, -1 on failure
795 *
796 * This optional function can be used to override l2_packet operations
797 * with driver specific functionality. If this function pointer is set,
798 * l2_packet module is not used at all and the driver interface code is
799 * responsible for receiving and sending all EAPOL packets. The
800 * received EAPOL packets are sent to core code by calling
801 * wpa_supplicant_rx_eapol(). The driver interface is required to
802 * implement get_mac_addr() handler if send_eapol() is used.
803 */
804 int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
805 const u8 *data, size_t data_len);
806
807 /**
808 * set_operstate - Sets device operating state to DORMANT or UP
809 * @priv: private driver interface data
810 * @state: 0 = dormant, 1 = up
811 * Returns: 0 on success, -1 on failure
812 *
813 * This is an optional function that can be used on operating systems
814 * that support a concept of controlling network device state from user
815 * space applications. This function, if set, gets called with
816 * state = 1 when authentication has been completed and with state = 0
817 * when connection is lost.
818 */
819 int (*set_operstate)(void *priv, int state);
820
821 /**
822 * mlme_setprotection - MLME-SETPROTECTION.request primitive
823 * @priv: Private driver interface data
824 * @addr: Address of the station for which to set protection (may be
825 * %NULL for group keys)
826 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
827 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
828 * Returns: 0 on success, -1 on failure
829 *
830 * This is an optional function that can be used to set the driver to
831 * require protection for Tx and/or Rx frames. This uses the layer
832 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
833 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
834 * set protection operation; instead, they set protection implicitly
835 * based on configured keys.
836 */
837 int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
838 int key_type);
839
840 /**
841 * get_hw_feature_data - Get hardware support data (channels and rates)
842 * @priv: Private driver interface data
843 * @num_modes: Variable for returning the number of returned modes
844 * flags: Variable for returning hardware feature flags
845 * Returns: Pointer to allocated hardware data on success or %NULL on
846 * failure. Caller is responsible for freeing this.
847 *
848 * This function is only needed for drivers that export MLME
849 * (management frame processing) to wpa_supplicant.
850 */
6caf9ca6
JM
851 struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
852 u16 *num_modes,
853 u16 *flags);
6fc6879b
JM
854
855 /**
856 * set_channel - Set channel
857 * @priv: Private driver interface data
6caf9ca6 858 * @phymode: HOSTAPD_MODE_IEEE80211B, ..
6fc6879b
JM
859 * @chan: IEEE 802.11 channel number
860 * @freq: Frequency of the channel in MHz
861 * Returns: 0 on success, -1 on failure
862 *
863 * This function is only needed for drivers that export MLME
864 * (management frame processing) to wpa_supplicant.
865 */
6caf9ca6 866 int (*set_channel)(void *priv, hostapd_hw_mode phymode, int chan,
6fc6879b
JM
867 int freq);
868
869 /**
870 * set_ssid - Set SSID
871 * @priv: Private driver interface data
872 * @ssid: SSID
873 * @ssid_len: SSID length
874 * Returns: 0 on success, -1 on failure
875 *
876 * This function is only needed for drivers that export MLME
877 * (management frame processing) to wpa_supplicant.
878 */
879 int (*set_ssid)(void *priv, const u8 *ssid, size_t ssid_len);
880
881 /**
882 * set_bssid - Set BSSID
883 * @priv: Private driver interface data
884 * @bssid: BSSID
885 * Returns: 0 on success, -1 on failure
886 *
887 * This function is only needed for drivers that export MLME
888 * (management frame processing) to wpa_supplicant.
889 */
890 int (*set_bssid)(void *priv, const u8 *bssid);
891
892 /**
893 * send_mlme - Send management frame from MLME
894 * @priv: Private driver interface data
895 * @data: IEEE 802.11 management frame with IEEE 802.11 header
896 * @data_len: Size of the management frame
897 * Returns: 0 on success, -1 on failure
898 *
899 * This function is only needed for drivers that export MLME
900 * (management frame processing) to wpa_supplicant.
901 */
902 int (*send_mlme)(void *priv, const u8 *data, size_t data_len);
903
904 /**
905 * mlme_add_sta - Add a STA entry into the driver/netstack
906 * @priv: Private driver interface data
907 * @addr: MAC address of the STA (e.g., BSSID of the AP)
908 * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11
909 * format (one octet per rate, 1 = 0.5 Mbps)
910 * @supp_rates_len: Number of entries in supp_rates
911 * Returns: 0 on success, -1 on failure
912 *
913 * This function is only needed for drivers that export MLME
914 * (management frame processing) to wpa_supplicant. When the MLME code
915 * completes association with an AP, this function is called to
916 * configure the driver/netstack with a STA entry for data frame
917 * processing (TX rate control, encryption/decryption).
918 */
919 int (*mlme_add_sta)(void *priv, const u8 *addr, const u8 *supp_rates,
920 size_t supp_rates_len);
921
922 /**
923 * mlme_remove_sta - Remove a STA entry from the driver/netstack
924 * @priv: Private driver interface data
925 * @addr: MAC address of the STA (e.g., BSSID of the AP)
926 * Returns: 0 on success, -1 on failure
927 *
928 * This function is only needed for drivers that export MLME
929 * (management frame processing) to wpa_supplicant.
930 */
931 int (*mlme_remove_sta)(void *priv, const u8 *addr);
932
933 /**
934 * update_ft_ies - Update FT (IEEE 802.11r) IEs
935 * @priv: Private driver interface data
936 * @md: Mobility domain (2 octets) (also included inside ies)
937 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
938 * @ies_len: Length of FT IEs in bytes
939 * Returns: 0 on success, -1 on failure
940 *
941 * The supplicant uses this callback to let the driver know that keying
942 * material for FT is available and that the driver can use the
943 * provided IEs in the next message in FT authentication sequence.
944 *
945 * This function is only needed for driver that support IEEE 802.11r
946 * (Fast BSS Transition).
947 */
948 int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
949 size_t ies_len);
950
951 /**
952 * send_ft_action - Send FT Action frame (IEEE 802.11r)
953 * @priv: Private driver interface data
954 * @action: Action field value
955 * @target_ap: Target AP address
956 * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
957 * @ies_len: Length of FT IEs in bytes
958 * Returns: 0 on success, -1 on failure
959 *
960 * The supplicant uses this callback to request the driver to transmit
961 * an FT Action frame (action category 6) for over-the-DS fast BSS
962 * transition.
963 */
964 int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
965 const u8 *ies, size_t ies_len);
966
967 /**
968 * get_scan_results2 - Fetch the latest scan results
969 * @priv: private driver interface data
970 *
971 * Returns: Allocated buffer of scan results (caller is responsible for
972 * freeing the data structure) on success, NULL on failure
973 */
974 struct wpa_scan_results * (*get_scan_results2)(void *priv);
975
6d158490
LR
976 /**
977 * set_country - Set country
978 * @priv: Private driver interface data
979 * @alpha2: country to which to switch to
980 * Returns: 0 on success, -1 on failure
981 *
982 * This function is for drivers which support some form
983 * of setting a regulatory domain.
984 */
985 int (*set_country)(void *priv, const char *alpha2);
ac305589
JM
986
987 /**
988 * global_init - Global driver initialization
989 * Returns: Pointer to private data (global), %NULL on failure
990 *
991 * This optional function is called to initialize the driver wrapper
992 * for global data, i.e., data that applies to all interfaces. If this
993 * function is implemented, global_deinit() will also need to be
994 * implemented to free the private data. The driver will also likely
995 * use init2() function instead of init() to get the pointer to global
996 * data available to per-interface initializer.
997 */
998 void * (*global_init)(void);
999
1000 /**
1001 * global_deinit - Global driver deinitialization
1002 * @priv: private driver global data from global_init()
1003 *
1004 * Terminate any global driver related functionality and free the
1005 * global data structure.
1006 */
1007 void (*global_deinit)(void *priv);
1008
1009 /**
1010 * init2 - Initialize driver interface (with global data)
1011 * @ctx: context to be used when calling wpa_supplicant functions,
1012 * e.g., wpa_supplicant_event()
1013 * @ifname: interface name, e.g., wlan0
1014 * @global_priv: private driver global data from global_init()
1015 * Returns: Pointer to private data, %NULL on failure
1016 *
1017 * This function can be used instead of init() if the driver wrapper
1018 * uses global data.
1019 */
1020 void * (*init2)(void *ctx, const char *ifname, void *global_priv);
4b4a8ae5
JM
1021
1022 /**
1023 * get_interfaces - Get information about available interfaces
1024 * @global_priv: private driver global data from global_init()
1025 * Returns: Allocated buffer of interface information (caller is
1026 * responsible for freeing the data structure) on success, NULL on
1027 * failure
1028 */
1029 struct wpa_interface_info * (*get_interfaces)(void *global_priv);
fc2b7ed5
JM
1030
1031 /**
1032 * scan2 - Request the driver to initiate scan
1033 * @priv: private driver interface data
1034 * @params: Scan parameters
1035 *
1036 * Returns: 0 on success, -1 on failure
1037 *
1038 * Once the scan results are ready, the driver should report scan
1039 * results event for wpa_supplicant which will eventually request the
1040 * results with wpa_driver_get_scan_results2().
1041 */
1042 int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
c2a04078
JM
1043
1044 /**
1045 * authenticate - Request driver to authenticate
1046 * @priv: private driver interface data
1047 * @params: authentication parameters
1048 * Returns: 0 on success, -1 on failure
1049 *
1050 * This is an optional function that can be used with drivers that
1051 * support separate authentication and association steps, i.e., when
1052 * wpa_supplicant can act as the SME. If not implemented, associate()
1053 * function is expected to take care of IEEE 802.11 authentication,
1054 * too.
1055 */
d2440ba0
JM
1056 int (*authenticate)(void *priv,
1057 struct wpa_driver_auth_params *params);
1058
15333707
JM
1059 /**
1060 * set_beacon - Set Beacon frame template
1061 * @iface: Interface name (main interface or virtual BSS)
1062 * @priv: Private driver interface data
1063 * @head: Beacon head from IEEE 802.11 header to IEs before TIM IE
1064 * @head_len: Length of the head buffer in octets
1065 * @tail: Beacon tail following TIM IE
1066 * @tail_len: Length of the tail buffer in octets
1067 * @dtim_period: DTIM period
1068 * @beacon_int: Beacon interval
1069 * Returns: 0 on success, -1 on failure
1070 *
1071 * This function is used to configure Beacon template for the driver in
1072 * AP mode. The driver is responsible for building the full Beacon
1073 * frame by concatenating the head part with TIM IE generated by the
1074 * driver/firmware and finishing with the tail part.
1075 */
5d674872
JM
1076 int (*set_beacon)(const char *ifname, void *priv,
1077 const u8 *head, size_t head_len,
1078 const u8 *tail, size_t tail_len, int dtim_period,
1079 int beacon_int);
c5121837 1080
15333707
JM
1081 /**
1082 * hapd_init - Initialize driver interface (hostapd only)
1083 * @hapd: Pointer to hostapd context
1084 * @params: Configuration for the driver wrapper
1085 * Returns: Pointer to private data, %NULL on failure
1086 *
1087 * This function is used instead of init() or init2() when the driver
1088 * wrapper is used withh hostapd.
1089 */
92f475b4
JM
1090 void * (*hapd_init)(struct hostapd_data *hapd,
1091 struct wpa_init_params *params);
15333707
JM
1092
1093 /**
1094 * hapd_deinit - Deinitialize driver interface (hostapd only)
1095 * @priv: Private driver interface data from hapd_init()
1096 */
c5121837
JM
1097 void (*hapd_deinit)(void *priv);
1098
1099 /**
15333707 1100 * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
15333707 1101 * @priv: Private driver interface data
e3bd3912 1102 * @params: BSS parameters
c5121837
JM
1103 * Returns: 0 on success, -1 on failure
1104 *
15333707 1105 * This is an optional function to configure the kernel driver to
e3bd3912
JM
1106 * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
1107 * can be left undefined (set to %NULL) if IEEE 802.1X support is
1108 * always enabled and the driver uses set_beacon() to set WPA/RSN IE
1109 * for Beacon frames.
c5121837 1110 */
e3bd3912 1111 int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
c5121837
JM
1112
1113 /**
15333707
JM
1114 * set_privacy - Enable/disable privacy (AP only)
1115 * @priv: Private driver interface data
c5121837 1116 * @enabled: 1 = privacy enabled, 0 = disabled
15333707 1117 * Returns: 0 on success, -1 on failure
c5121837 1118 *
15333707
JM
1119 * This is an optional function to configure privacy field in the
1120 * kernel driver for Beacon frames. This can be left undefined (set to
1121 * %NULL) if the driver uses the Beacon template from set_beacon().
c5121837
JM
1122 */
1123 int (*set_privacy)(const char *ifname, void *priv, int enabled);
1124
15333707
JM
1125 /**
1126 * get_seqnum - Fetch the current TSC/packet number (AP only)
1127 * @ifname: The interface name (main or virtual)
1128 * @priv: Private driver interface data
1129 * @addr: MAC address of the station or %NULL for group keys
1130 * @idx: Key index
1131 * @seq: Buffer for returning the latest used TSC/packet number
1132 * Returns: 0 on success, -1 on failure
1133 *
1134 * This function is used to fetch the last used TSC/packet number for
9008a3e4
JM
1135 * a TKIP, CCMP, or BIP/IGTK key. It is mainly used with group keys, so
1136 * there is no strict requirement on implementing support for unicast
1137 * keys (i.e., addr != %NULL).
15333707 1138 */
c5121837
JM
1139 int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
1140 int idx, u8 *seq);
15333707 1141
15333707
JM
1142 /**
1143 * flush - Flush all association stations (AP only)
1144 * @priv: Private driver interface data
1145 * Returns: 0 on success, -1 on failure
1146 *
1147 * This function requests the driver to disassociate all associated
1148 * stations. This function does not need to be implemented if the
1149 * driver does not process association frames internally.
1150 */
c5121837 1151 int (*flush)(void *priv);
15333707
JM
1152
1153 /**
1154 * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
1155 * @ifname: The interface name (main or virtual BSS)
1156 * @priv: Private driver interface data
1157 * @elem: Information elements
1158 * @elem_len: Length of the elem buffer in octets
1159 * Returns: 0 on success, -1 on failure
1160 *
1161 * This is an optional function to add information elements in the
1162 * kernel driver for Beacon and Probe Response frames. This can be left
1163 * undefined (set to %NULL) if the driver uses the Beacon template from
1164 * set_beacon().
1165 */
c5121837
JM
1166 int (*set_generic_elem)(const char *ifname, void *priv, const u8 *elem,
1167 size_t elem_len);
1168
15333707
JM
1169 /**
1170 * read_sta_data - Fetch station data (AP only)
1171 * @priv: Private driver interface data
1172 * @data: Buffer for returning station information
1173 * @addr: MAC address of the station
1174 * Returns: 0 on success, -1 on failure
1175 */
c5121837
JM
1176 int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
1177 const u8 *addr);
15333707
JM
1178
1179 /**
1180 * hapd_send_eapol - Send an EAPOL packet (AP only)
1181 * @priv: private driver interface data
1182 * @addr: Destination MAC address
1183 * @data: EAPOL packet starting with IEEE 802.1X header
1184 * @data_len: Length of the EAPOL packet in octets
1185 * @encrypt: Whether the frame should be encrypted
1186 * @own_addr: Source MAC address
1187 *
1188 * Returns: 0 on success, -1 on failure
1189 */
c5121837
JM
1190 int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
1191 size_t data_len, int encrypt,
1192 const u8 *own_addr);
15333707 1193
90b8c4c5
JM
1194 /**
1195 * sta_deauth - Deauthenticate a station (AP only)
1196 * @priv: Private driver interface data
1197 * @own_addr: Source address and BSSID for the Deauthentication frame
1198 * @addr: MAC address of the station to deauthenticate
1199 * @reason: Reason code for the Deauthentiation frame
1200 * Returns: 0 on success, -1 on failure
1201 *
1202 * This function requests a specific station to be deauthenticated and
1203 * a Deauthentication frame to be sent to it.
1204 */
731723a5
JM
1205 int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
1206 int reason);
90b8c4c5
JM
1207
1208 /**
1209 * sta_disassoc - Disassociate a station (AP only)
1210 * @priv: Private driver interface data
1211 * @own_addr: Source address and BSSID for the Disassociation frame
1212 * @addr: MAC address of the station to disassociate
1213 * @reason: Reason code for the Disassociation frame
1214 * Returns: 0 on success, -1 on failure
1215 *
1216 * This function requests a specific station to be disassociated and
1217 * a Disassociation frame to be sent to it.
1218 */
731723a5
JM
1219 int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
1220 int reason);
90b8c4c5
JM
1221
1222 /**
1223 * sta_remove - Remove a station entry (AP only)
1224 * @priv: Private driver interface data
1225 * @addr: MAC address of the station to be removed
1226 * Returns: 0 on success, -1 on failure
1227 */
c5121837 1228 int (*sta_remove)(void *priv, const u8 *addr);
90b8c4c5
JM
1229
1230 /**
1231 * hapd_get_ssid - Get the current SSID (AP only)
1232 * @ifname: Interface (master or virtual BSS)
1233 * @priv: Private driver interface data
1234 * @buf: Buffer for returning the SSID
1235 * @len: Maximum length of the buffer
1236 * Returns: Length of the SSID on success, -1 on failure
1237 *
1238 * This function need not be implemented if the driver uses Beacon
1239 * template from set_beacon() and does not reply to Probe Request
1240 * frames.
1241 */
c5121837 1242 int (*hapd_get_ssid)(const char *ifname, void *priv, u8 *buf, int len);
90b8c4c5
JM
1243
1244 /**
1245 * hapd_set_ssid - Set SSID (AP only)
1246 * @ifname: Interface (master or virtual BSS)
1247 * @priv: Private driver interface data
1248 * @buf: SSID
1249 * @len: Length of the SSID in octets
1250 * Returns: 0 on success, -1 on failure
1251 */
c5121837
JM
1252 int (*hapd_set_ssid)(const char *ifname, void *priv, const u8 *buf,
1253 int len);
90b8c4c5
JM
1254 /**
1255 * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
1256 * @priv: Private driver interface data
1257 * @enabled: 1 = countermeasures enabled, 0 = disabled
1258 * Returns: 0 on success, -1 on failure
1259 *
1260 * This need not be implemented if the driver does not take care of
1261 * association processing.
1262 */
c5121837 1263 int (*hapd_set_countermeasures)(void *priv, int enabled);
90b8c4c5
JM
1264
1265 /**
1266 * sta_add - Add a station entry
1267 * @ifname: Interface (master or virtual)
1268 * @priv: Private driver interface data
1269 * @params: Station parameters
1270 * Returns: 0 on success, -1 on failure
1271 *
1272 * This function is used to add a station entry to the driver once the
1273 * station has completed association. This is only used if the driver
1274 * does not take care of association processing.
1275 */
c5121837
JM
1276 int (*sta_add)(const char *ifname, void *priv,
1277 struct hostapd_sta_add_params *params);
90b8c4c5
JM
1278
1279 /**
1280 * get_inact_sec - Get station inactivity duration (AP only)
1281 * @priv: Private driver interface data
1282 * @addr: Station address
1283 * Returns: Number of seconds station has been inactive, -1 on failure
1284 */
c5121837 1285 int (*get_inact_sec)(void *priv, const u8 *addr);
90b8c4c5
JM
1286
1287 /**
1288 * sta_clear_stats - Clear station statistics (AP only)
1289 * @priv: Private driver interface data
1290 * @addr: Station address
1291 * Returns: 0 on success, -1 on failure
1292 */
c5121837
JM
1293 int (*sta_clear_stats)(void *priv, const u8 *addr);
1294
90b8c4c5
JM
1295 /**
1296 * set_freq - Set channel/frequency (AP only)
1297 * @priv: Private driver interface data
1298 * @freq: Channel parameters
1299 * Returns: 0 on success, -1 on failure
1300 */
c5121837 1301 int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
90b8c4c5
JM
1302
1303 /**
1304 * set_rts - Set RTS threshold
1305 * @priv: Private driver interface data
1306 * @rts: RTS threshold in octets
1307 * Returns: 0 on success, -1 on failure
1308 */
c5121837 1309 int (*set_rts)(void *priv, int rts);
90b8c4c5
JM
1310
1311 /**
1312 * set_frag - Set fragmentation threshold
1313 * @priv: Private driver interface data
1314 * @frag: Fragmentation threshold in octets
1315 * Returns: 0 on success, -1 on failure
1316 */
c5121837 1317 int (*set_frag)(void *priv, int frag);
c5121837 1318
90b8c4c5
JM
1319 /**
1320 * sta_set_flags - Set station flags (AP only)
1321 * @priv: Private driver interface data
1322 * @addr: Station address
1323 * @total_flags: Bitmap of all WLAN_STA_* flags currently set
1324 * @flags_or: Bitmap of WLAN_STA_* flags to add
1325 * @flags_and: Bitmap of WLAN_STA_* flags to us as a mask
1326 * Returns: 0 on success, -1 on failure
1327 */
c5121837
JM
1328 int (*sta_set_flags)(void *priv, const u8 *addr,
1329 int total_flags, int flags_or, int flags_and);
90b8c4c5
JM
1330
1331 /**
1332 * set_rate_sets - Set supported and basic rate sets (AP only)
1333 * @priv: Private driver interface data
1334 * @supp_rates: -1 terminated array of supported rates in 100 kbps
1335 * @basic_rates: -1 terminated array of basic rates in 100 kbps
1336 * @mode: hardware mode (HOSTAPD_MODE_*)
1337 * Returns: 0 on success, -1 on failure
1338 */
c5121837
JM
1339 int (*set_rate_sets)(void *priv, int *supp_rates, int *basic_rates,
1340 int mode);
c5121837 1341
90b8c4c5
JM
1342 /**
1343 * set_cts_protect - Set CTS protection mode (AP only)
1344 * @priv: Private driver interface data
1345 * @value: Whether CTS protection is enabled
1346 * Returns: 0 on success, -1 on failure
1347 */
c5121837 1348 int (*set_cts_protect)(void *priv, int value);
90b8c4c5
JM
1349
1350 /**
1351 * set_preamble - Set preamble mode (AP only)
1352 * @priv: Private driver interface data
1353 * @value: Whether short preamble is enabled
1354 * Returns: 0 on success, -1 on failure
1355 */
c5121837 1356 int (*set_preamble)(void *priv, int value);
90b8c4c5
JM
1357
1358 /**
1359 * set_short_slot_time - Set short slot time (AP only)
1360 * @priv: Private driver interface data
1361 * @value: Whether short slot time is enabled
1362 * Returns: 0 on success, -1 on failure
1363 */
c5121837 1364 int (*set_short_slot_time)(void *priv, int value);
90b8c4c5
JM
1365
1366 /**
1367 * set_tx_queue_params - Set TX queue parameters
1368 * @priv: Private driver interface data
1369 * @queue: Queue number
1370 * @aifs: AIFS
1371 * @cw_min: cwMin
1372 * @cw_max: cwMax
1373 * @burst_time: Maximum length for bursting in 0.1 msec units
1374 */
c5121837
JM
1375 int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
1376 int cw_max, int burst_time);
90b8c4c5
JM
1377
1378 /**
1379 * valid_bss_mask - Validate BSSID mask
1380 * @priv: Private driver interface data
1381 * @addr: Address
1382 * @mask: Mask
1383 * Returns: 0 if mask is valid, -1 if mask is not valid, 1 if mask can
1384 * be used, but the main interface address must be the first address in
1385 * the block if mask is applied
1386 */
c5121837 1387 int (*valid_bss_mask)(void *priv, const u8 *addr, const u8 *mask);
22a7c9d7
JM
1388
1389 /**
1390 * if_add - Add a virtual interface
22a7c9d7 1391 * @iface: Parent interface name
15333707 1392 * @priv: Private driver interface data
22a7c9d7
JM
1393 * @type: Interface type
1394 * @ifname: Interface name for the new virtual interface
1395 * @addr: Local address to use for the interface or %NULL to use the
1396 * parent interface address
1397 * Returns: 0 on success, -1 on failure
1398 */
c5121837 1399 int (*if_add)(const char *iface, void *priv,
22a7c9d7 1400 enum wpa_driver_if_type type, const char *ifname,
c5121837 1401 const u8 *addr);
22a7c9d7
JM
1402
1403 /**
1404 * if_remove - Remove a virtual interface
1405 * @priv: Private driver interface data
1406 * @type: Interface type
1407 * @ifname: Interface name of the virtual interface to be removed
1408 * Returns: 0 on success, -1 on failure
1409 */
1410 int (*if_remove)(void *priv, enum wpa_driver_if_type type,
1411 const char *ifname);
90b8c4c5 1412
15333707
JM
1413 /**
1414 * set_sta_vlan - Bind a station into a specific interface (AP only)
1415 * @priv: Private driver interface data
1416 * @ifname: Interface (main or virtual BSS or VLAN)
1417 * @addr: MAC address of the associated station
1418 * @vlan_id: VLAN ID
1419 * Returns: 0 on success, -1 on failure
1420 *
1421 * This function is used to bind a station to a specific virtual
1422 * interface. It is only used if when virtual interfaces are supported,
1423 * e.g., to assign stations to different VLAN interfaces based on
1424 * information from a RADIUS server. This allows separate broadcast
1425 * domains to be used with a single BSS.
1426 */
c5121837
JM
1427 int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
1428 int vlan_id);
15333707 1429
c5121837 1430 /**
15333707 1431 * commit - Optional commit changes handler (AP only)
c5121837
JM
1432 * @priv: driver private data
1433 * Returns: 0 on success, -1 on failure
1434 *
1435 * This optional handler function can be registered if the driver
1436 * interface implementation needs to commit changes (e.g., by setting
1437 * network interface up) at the end of initial configuration. If set,
1438 * this handler will be called after initial setup has been completed.
1439 */
1440 int (*commit)(void *priv);
1441
90b8c4c5
JM
1442 /**
1443 * send_ether - Send an ethernet packet (AP only)
1444 * @priv: private driver interface data
1445 * @dst: Destination MAC address
1446 * @src: Source MAC address
1447 * @proto: Ethertype
1448 * @data: EAPOL packet starting with IEEE 802.1X header
1449 * @data_len: Length of the EAPOL packet in octets
1450 * Returns: 0 on success, -1 on failure
1451 */
c5121837
JM
1452 int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
1453 const u8 *data, size_t data_len);
1454
90b8c4c5
JM
1455 /**
1456 * set_radius_acl_auth - Notification of RADIUS ACL change
1457 * @priv: Private driver interface data
1458 * @mac: MAC address of the station
1459 * @accepted: Whether the station was accepted
1460 * @session_timeout: Session timeout for the station
1461 * Returns: 0 on success, -1 on failure
1462 */
c5121837
JM
1463 int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted,
1464 u32 session_timeout);
90b8c4c5
JM
1465
1466 /**
1467 * set_radius_acl_expire - Notification of RADIUS ACL expiration
1468 * @priv: Private driver interface data
1469 * @mac: MAC address of the station
1470 * Returns: 0 on success, -1 on failure
1471 */
c5121837
JM
1472 int (*set_radius_acl_expire)(void *priv, const u8 *mac);
1473
90b8c4c5
JM
1474 /**
1475 * set_ht_params - Set HT parameters (AP only)
1476 * @ifname: The interface name (main or virtual BSS)
1477 * @priv: Private driver interface data
1478 * @ht_capab: HT Capabilities IE
1479 * @ht_capab_len: Length of ht_capab in octets
1480 * @ht_oper: HT Operation IE
1481 * @ht_oper_len: Length of ht_oper in octets
1482 * Returns: 0 on success, -1 on failure
1483 */
c5121837
JM
1484 int (*set_ht_params)(const char *ifname, void *priv,
1485 const u8 *ht_capab, size_t ht_capab_len,
1486 const u8 *ht_oper, size_t ht_oper_len);
1487
15333707
JM
1488 /**
1489 * set_wps_beacon_ie - Add WPS IE into Beacon frames (AP only)
1490 * @ifname: The interface name (main or virtual BSS)
1491 * @priv: Private driver interface data
1492 * @ie: WPS IE
1493 * @len: Length of the ie buffer in octets
1494 * Returns: 0 on success, -1 on failure
1495 *
1496 * This is an optional function to add WPS IE in the kernel driver for
1497 * Beacon frames. This can be left undefined (set to %NULL) if the
1498 * driver uses the Beacon template from set_beacon().
1499 */
c5121837
JM
1500 int (*set_wps_beacon_ie)(const char *ifname, void *priv,
1501 const u8 *ie, size_t len);
15333707
JM
1502
1503 /**
1504 * set_wps_probe_resp_ie - Add WPS IE into Probe Response frames (AP)
1505 * @ifname: The interface name (main or virtual BSS)
1506 * @priv: Private driver interface data
1507 * @ie: WPS IE
1508 * @len: Length of the ie buffer in octets
1509 * Returns: 0 on success, -1 on failure
1510 *
1511 * This is an optional function to add WPS IE in the kernel driver for
1512 * Beacon frames. This can be left undefined (set to %NULL) if the
1513 * driver does process Probe Request frames.
1514 */
c5121837
JM
1515 int (*set_wps_probe_resp_ie)(const char *ifname, void *priv,
1516 const u8 *ie, size_t len);
4bc181ec
JM
1517
1518 /**
1519 * set_supp_port - Set IEEE 802.1X Supplicant Port status
1520 * @priv: Private driver interface data
1521 * @authorized: Whether the port is authorized
1522 * Returns: 0 on success, -1 on failure
1523 */
1524 int (*set_supp_port)(void *priv, int authorized);
6fc6879b
JM
1525};
1526
1527/**
1528 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
1529 */
1530typedef enum wpa_event_type {
1531 /**
1532 * EVENT_ASSOC - Association completed
1533 *
1534 * This event needs to be delivered when the driver completes IEEE
1535 * 802.11 association or reassociation successfully.
1536 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
1537 * after this event has been generated. In addition, optional
1538 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
1539 * more information about the association. If the driver interface gets
1540 * both of these events at the same time, it can also include the
1541 * assoc_info data in EVENT_ASSOC call.
1542 */
1543 EVENT_ASSOC,
1544
1545 /**
1546 * EVENT_DISASSOC - Association lost
1547 *
1548 * This event should be called when association is lost either due to
1549 * receiving deauthenticate or disassociate frame from the AP or when
c2a04078
JM
1550 * sending either of these frames to the current AP. If the driver
1551 * supports separate deauthentication event, EVENT_DISASSOC should only
1552 * be used for disassociation and EVENT_DEAUTH for deauthentication.
6fc6879b
JM
1553 */
1554 EVENT_DISASSOC,
1555
1556 /**
1557 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
1558 *
1559 * This event must be delivered when a Michael MIC error is detected by
1560 * the local driver. Additional data for event processing is
1561 * provided with union wpa_event_data::michael_mic_failure. This
1562 * information is used to request new encyption key and to initiate
1563 * TKIP countermeasures if needed.
1564 */
1565 EVENT_MICHAEL_MIC_FAILURE,
1566
1567 /**
1568 * EVENT_SCAN_RESULTS - Scan results available
1569 *
1570 * This event must be called whenever scan results are available to be
1571 * fetched with struct wpa_driver_ops::get_scan_results(). This event
1572 * is expected to be used some time after struct wpa_driver_ops::scan()
1573 * is called. If the driver provides an unsolicited event when the scan
1574 * has been completed, this event can be used to trigger
1575 * EVENT_SCAN_RESULTS call. If such event is not available from the
1576 * driver, the driver wrapper code is expected to use a registered
1577 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
1578 * scan is expected to be completed.
1579 */
1580 EVENT_SCAN_RESULTS,
1581
1582 /**
1583 * EVENT_ASSOCINFO - Report optional extra information for association
1584 *
1585 * This event can be used to report extra association information for
1586 * EVENT_ASSOC processing. This extra information includes IEs from
1587 * association frames and Beacon/Probe Response frames in union
1588 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
1589 * EVENT_ASSOC. Alternatively, the driver interface can include
1590 * assoc_info data in the EVENT_ASSOC call if it has all the
1591 * information available at the same point.
1592 */
1593 EVENT_ASSOCINFO,
1594
1595 /**
1596 * EVENT_INTERFACE_STATUS - Report interface status changes
1597 *
1598 * This optional event can be used to report changes in interface
1599 * status (interface added/removed) using union
1600 * wpa_event_data::interface_status. This can be used to trigger
1601 * wpa_supplicant to stop and re-start processing for the interface,
1602 * e.g., when a cardbus card is ejected/inserted.
1603 */
1604 EVENT_INTERFACE_STATUS,
1605
1606 /**
1607 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
1608 *
1609 * This event can be used to inform wpa_supplicant about candidates for
1610 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
1611 * for scan request (ap_scan=2 mode), this event is required for
1612 * pre-authentication. If wpa_supplicant is performing scan request
1613 * (ap_scan=1), this event is optional since scan results can be used
1614 * to add pre-authentication candidates. union
1615 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
1616 * candidate and priority of the candidate, e.g., based on the signal
1617 * strength, in order to try to pre-authenticate first with candidates
1618 * that are most likely targets for re-association.
1619 *
1620 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
1621 * on the candidate list. In addition, it can be called for the current
1622 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
1623 * will automatically skip pre-authentication in cases where a valid
1624 * PMKSA exists. When more than one candidate exists, this event should
1625 * be generated once for each candidate.
1626 *
1627 * Driver will be notified about successful pre-authentication with
1628 * struct wpa_driver_ops::add_pmkid() calls.
1629 */
1630 EVENT_PMKID_CANDIDATE,
1631
1632 /**
1633 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
1634 *
1635 * This event can be used to inform wpa_supplicant about desire to set
1636 * up secure direct link connection between two stations as defined in
1637 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
1638 * STAKey negotiation. The caller will need to set peer address for the
1639 * event.
1640 */
1641 EVENT_STKSTART,
1642
1643 /**
1644 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
1645 *
1646 * The driver is expected to report the received FT IEs from
1647 * FT authentication sequence from the AP. The FT IEs are included in
1648 * the extra information in union wpa_event_data::ft_ies.
1649 */
11ef8d35
JM
1650 EVENT_FT_RESPONSE,
1651
1652 /**
1653 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
1654 *
1655 * The driver can use this event to inform wpa_supplicant about a STA
1656 * in an IBSS with which protected frames could be exchanged. This
1657 * event starts RSN authentication with the other STA to authenticate
1658 * the STA and set up encryption keys with it.
1659 */
c2a04078
JM
1660 EVENT_IBSS_RSN_START,
1661
1662 /**
1663 * EVENT_AUTH - Authentication result
1664 *
1665 * This event should be called when authentication attempt has been
1666 * completed. This is only used if the driver supports separate
1667 * authentication step (struct wpa_driver_ops::authenticate).
1668 * Information about authentication result is included in
1669 * union wpa_event_data::auth.
1670 */
1671 EVENT_AUTH,
1672
1673 /**
1674 * EVENT_DEAUTH - Authentication lost
1675 *
1676 * This event should be called when authentication is lost either due
1677 * to receiving deauthenticate frame from the AP or when sending that
1678 * frame to the current AP.
1679 */
efa46078
JM
1680 EVENT_DEAUTH,
1681
1682 /**
1683 * EVENT_ASSOC_REJECT - Association rejected
1684 *
1685 * This event should be called when (re)association attempt has been
1686 * rejected by the AP. Information about authentication result is
1687 * included in union wpa_event_data::assoc_reject.
1688 */
da1fb17c
JM
1689 EVENT_ASSOC_REJECT,
1690
1691 /**
1692 * EVENT_AUTH_TIMED_OUT - Authentication timed out
1693 */
1694 EVENT_AUTH_TIMED_OUT,
1695
1696 /**
1697 * EVENT_ASSOC_TIMED_OUT - Association timed out
1698 */
08fd8c15
JM
1699 EVENT_ASSOC_TIMED_OUT,
1700
1701 /**
1702 * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
1703 */
1704 EVENT_FT_RRB_RX
6fc6879b
JM
1705} wpa_event_type;
1706
1707
1708/**
1709 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
1710 */
1711union wpa_event_data {
1712 /**
1713 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
1714 *
1715 * This structure is optional for EVENT_ASSOC calls and required for
1716 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
1717 * driver interface does not need to generate separate EVENT_ASSOCINFO
1718 * calls.
1719 */
1720 struct assoc_info {
1721 /**
1722 * req_ies - (Re)Association Request IEs
1723 *
1724 * If the driver generates WPA/RSN IE, this event data must be
1725 * returned for WPA handshake to have needed information. If
1726 * wpa_supplicant-generated WPA/RSN IE is used, this
1727 * information event is optional.
1728 *
1729 * This should start with the first IE (fixed fields before IEs
1730 * are not included).
1731 */
1732 u8 *req_ies;
1733
1734 /**
1735 * req_ies_len - Length of req_ies in bytes
1736 */
1737 size_t req_ies_len;
1738
1739 /**
1740 * resp_ies - (Re)Association Response IEs
1741 *
1742 * Optional association data from the driver. This data is not
1743 * required WPA, but may be useful for some protocols and as
1744 * such, should be reported if this is available to the driver
1745 * interface.
1746 *
1747 * This should start with the first IE (fixed fields before IEs
1748 * are not included).
1749 */
1750 u8 *resp_ies;
1751
1752 /**
1753 * resp_ies_len - Length of resp_ies in bytes
1754 */
1755 size_t resp_ies_len;
1756
1757 /**
1758 * beacon_ies - Beacon or Probe Response IEs
1759 *
1760 * Optional Beacon/ProbeResp data: IEs included in Beacon or
1761 * Probe Response frames from the current AP (i.e., the one
1762 * that the client just associated with). This information is
1763 * used to update WPA/RSN IE for the AP. If this field is not
1764 * set, the results from previous scan will be used. If no
1765 * data for the new AP is found, scan results will be requested
1766 * again (without scan request). At this point, the driver is
1767 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
1768 * used).
1769 *
1770 * This should start with the first IE (fixed fields before IEs
1771 * are not included).
1772 */
1773 u8 *beacon_ies;
1774
1775 /**
1776 * beacon_ies_len - Length of beacon_ies */
1777 size_t beacon_ies_len;
1778 } assoc_info;
1779
1780 /**
1781 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
1782 */
1783 struct michael_mic_failure {
1784 int unicast;
ad1e68e6 1785 const u8 *src;
6fc6879b
JM
1786 } michael_mic_failure;
1787
1788 /**
1789 * struct interface_status - Data for EVENT_INTERFACE_STATUS
1790 */
1791 struct interface_status {
1792 char ifname[100];
1793 enum {
1794 EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
1795 } ievent;
1796 } interface_status;
1797
1798 /**
1799 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
1800 */
1801 struct pmkid_candidate {
1802 /** BSSID of the PMKID candidate */
1803 u8 bssid[ETH_ALEN];
1804 /** Smaller the index, higher the priority */
1805 int index;
1806 /** Whether RSN IE includes pre-authenticate flag */
1807 int preauth;
1808 } pmkid_candidate;
1809
1810 /**
1811 * struct stkstart - Data for EVENT_STKSTART
1812 */
1813 struct stkstart {
1814 u8 peer[ETH_ALEN];
1815 } stkstart;
1816
1817 /**
1818 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
1819 *
1820 * During FT (IEEE 802.11r) authentication sequence, the driver is
1821 * expected to use this event to report received FT IEs (MDIE, FTIE,
1822 * RSN IE, TIE, possible resource request) to the supplicant. The FT
1823 * IEs for the next message will be delivered through the
1824 * struct wpa_driver_ops::update_ft_ies() callback.
1825 */
1826 struct ft_ies {
1827 const u8 *ies;
1828 size_t ies_len;
1829 int ft_action;
1830 u8 target_ap[ETH_ALEN];
babfbf15
JM
1831 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
1832 const u8 *ric_ies;
1833 /** Length of ric_ies buffer in octets */
1834 size_t ric_ies_len;
6fc6879b 1835 } ft_ies;
11ef8d35
JM
1836
1837 /**
1838 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
1839 */
1840 struct ibss_rsn_start {
1841 u8 peer[ETH_ALEN];
1842 } ibss_rsn_start;
c2a04078
JM
1843
1844 /**
1845 * struct auth_info - Data for EVENT_AUTH events
1846 */
1847 struct auth_info {
1848 u8 peer[ETH_ALEN];
1849 u16 auth_type;
1850 u16 status_code;
1851 const u8 *ies;
1852 size_t ies_len;
1853 } auth;
efa46078
JM
1854
1855 /**
1856 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
1857 */
1858 struct assoc_reject {
1859 /**
1860 * resp_ies - (Re)Association Response IEs
1861 *
1862 * Optional association data from the driver. This data is not
1863 * required WPA, but may be useful for some protocols and as
1864 * such, should be reported if this is available to the driver
1865 * interface.
1866 *
1867 * This should start with the first IE (fixed fields before IEs
1868 * are not included).
1869 */
1870 u8 *resp_ies;
1871
1872 /**
1873 * resp_ies_len - Length of resp_ies in bytes
1874 */
1875 size_t resp_ies_len;
1876
1877 /**
1878 * status_code - Status Code from (Re)association Response
1879 */
1880 u16 status_code;
1881 } assoc_reject;
da1fb17c
JM
1882
1883 struct timeout_event {
1884 u8 addr[ETH_ALEN];
1885 } timeout_event;
08fd8c15
JM
1886
1887 /**
1888 * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
1889 */
1890 struct ft_rrb_rx {
1891 const u8 *src;
1892 const u8 *data;
1893 size_t data_len;
1894 } ft_rrb_rx;
6fc6879b
JM
1895};
1896
1897/**
1898 * wpa_supplicant_event - Report a driver event for wpa_supplicant
1899 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
1900 * with struct wpa_driver_ops::init()
1901 * @event: event type (defined above)
1902 * @data: possible extra data for the event
1903 *
1904 * Driver wrapper code should call this function whenever an event is received
1905 * from the driver.
1906 */
1907void wpa_supplicant_event(void *ctx, wpa_event_type event,
1908 union wpa_event_data *data);
1909
1910/**
1911 * wpa_supplicant_rx_eapol - Deliver a received EAPOL frame to wpa_supplicant
1912 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
1913 * with struct wpa_driver_ops::init()
1914 * @src_addr: Source address of the EAPOL frame
1915 * @buf: EAPOL data starting from the EAPOL header (i.e., no Ethernet header)
1916 * @len: Length of the EAPOL data
1917 *
1918 * This function is called for each received EAPOL frame. Most driver
1919 * interfaces rely on more generic OS mechanism for receiving frames through
1920 * l2_packet, but if such a mechanism is not available, the driver wrapper may
1921 * take care of received EAPOL frames and deliver them to the core supplicant
1922 * code by calling this function.
1923 */
1924void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
1925 const u8 *buf, size_t len);
1926
1927void wpa_supplicant_sta_rx(void *ctx, const u8 *buf, size_t len,
1928 struct ieee80211_rx_status *rx_status);
6fc6879b
JM
1929
1930const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie);
6fc6879b
JM
1931const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res,
1932 u32 vendor_type);
351f09a2
JM
1933struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res,
1934 u32 vendor_type);
6fc6879b
JM
1935int wpa_scan_get_max_rate(const struct wpa_scan_res *res);
1936void wpa_scan_results_free(struct wpa_scan_results *res);
1937void wpa_scan_sort_results(struct wpa_scan_results *res);
1938
c5121837
JM
1939/* hostapd functions for driver wrappers */
1940
1941struct sta_info;
4b9841d3 1942struct ieee80211_hdr;
c5121837
JM
1943
1944void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
1945 int reassoc);
1946void hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr,
1947 const u8 *buf, size_t len, int ack);
4b9841d3
JM
1948void hostapd_rx_from_unknown_sta(struct hostapd_data *hapd,
1949 const struct ieee80211_hdr *hdr, size_t len);
05310066 1950int hostapd_notif_new_sta(struct hostapd_data *hapd, const u8 *addr);
c5121837
JM
1951int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
1952 const u8 *ie, size_t ielen);
1953void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
1954void hostapd_eapol_receive(struct hostapd_data *hapd, const u8 *sa,
1955 const u8 *buf, size_t len);
1956
1957struct hostapd_frame_info {
c5121837
JM
1958 u32 channel;
1959 u32 datarate;
1960 u32 ssi_signal;
c5121837
JM
1961};
1962
1963void hostapd_mgmt_rx(struct hostapd_data *hapd, u8 *buf, size_t len,
1964 u16 stype, struct hostapd_frame_info *fi);
1965void hostapd_mgmt_tx_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
1966 u16 stype, int ok);
1967void hostapd_michael_mic_failure(struct hostapd_data *hapd, const u8 *addr);
1968struct hostapd_data * hostapd_sta_get_bss(struct hostapd_data *hapd,
1969 const u8 *addr);
3fed6f25
JM
1970void hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa,
1971 const u8 *ie, size_t ie_len);
0c3abf8d 1972void hostapd_button_pushed(struct hostapd_data *hapd);
c5121837 1973
6fc6879b 1974#endif /* DRIVER_H */