]> git.ipfire.org Git - thirdparty/hostap.git/blob - src/drivers/driver.h
Use generic driver event notification for AP mode assoc/disassoc
[thirdparty/hostap.git] / src / drivers / driver.h
1 /*
2 * WPA Supplicant - driver interface definition
3 * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
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
18 #define WPA_SUPPLICANT_DRIVER_VERSION 4
19
20 #include "common/defs.h"
21
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
27 struct 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
34 struct hostapd_hw_modes {
35 enum hostapd_hw_mode mode;
36 int num_channels;
37 struct hostapd_channel_data *channels;
38 int num_rates;
39 int *rates; /* array of rates in 100 kbps units */
40 u16 ht_capab;
41 u8 mcs_set[16];
42 u8 a_mpdu_params;
43 };
44
45
46 #define AUTH_ALG_OPEN_SYSTEM 0x01
47 #define AUTH_ALG_SHARED_KEY 0x02
48 #define AUTH_ALG_LEAP 0x04
49 #define AUTH_ALG_FT 0x08
50
51 #define IEEE80211_MODE_INFRA 0
52 #define IEEE80211_MODE_IBSS 1
53 #define IEEE80211_MODE_AP 2
54
55 #define IEEE80211_CAP_ESS 0x0001
56 #define IEEE80211_CAP_IBSS 0x0002
57 #define IEEE80211_CAP_PRIVACY 0x0010
58
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)
63 #define WPA_SCAN_AUTHENTICATED BIT(4)
64 #define WPA_SCAN_ASSOCIATED BIT(5)
65
66 /**
67 * struct wpa_scan_res - Scan result for an BSS/IBSS
68 * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
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
77 * @age: Age of the information in milliseconds (i.e., how many milliseconds
78 * ago the last Beacon or Probe Response frame was received)
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 */
90 struct wpa_scan_res {
91 unsigned int flags;
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;
100 unsigned int age;
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 */
110 struct wpa_scan_results {
111 struct wpa_scan_res **res;
112 size_t num;
113 };
114
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_name: 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 */
125 struct wpa_interface_info {
126 struct wpa_interface_info *next;
127 char *ifname;
128 char *desc;
129 const char *drv_name;
130 };
131
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 */
138 struct 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
146 * with wildcard SSID.
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;
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;
177 };
178
179 /**
180 * struct wpa_driver_auth_params - Authentication parameters
181 * Data for struct wpa_driver_ops::authenticate().
182 */
183 struct 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;
191 const u8 *wep_key[4];
192 size_t wep_key_len[4];
193 int wep_tx_keyidx;
194 };
195
196 /**
197 * struct wpa_driver_associate_params - Association parameters
198 * Data for struct wpa_driver_ops::associate().
199 */
200 struct 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).
235 *
236 * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
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 enum wpa_cipher pairwise_suite;
247 enum wpa_cipher group_suite;
248 enum 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;
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;
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;
359 };
360
361 /**
362 * struct wpa_driver_capa - Driver capability information
363 */
364 struct 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
387 /* Driver needs static WEP key setup after association command */
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
393 #define WPA_DRIVER_FLAGS_WIRED 0x00000010
394 /* Driver provides separate commands for authentication and association (SME in
395 * wpa_supplicant). */
396 #define WPA_DRIVER_FLAGS_SME 0x00000020
397 /* Driver supports AP mode */
398 #define WPA_DRIVER_FLAGS_AP 0x00000040
399 /* Driver needs static WEP key setup after association has been completed */
400 #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080
401 unsigned int flags;
402
403 int max_scan_ssids;
404 };
405
406
407 struct hostapd_data;
408
409 struct hostap_sta_driver_data {
410 unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
411 unsigned long current_tx_rate;
412 unsigned long inactive_msec;
413 unsigned long flags;
414 unsigned long num_ps_buf_frames;
415 unsigned long tx_retry_failed;
416 unsigned long tx_retry_count;
417 int last_rssi;
418 int last_ack_rssi;
419 };
420
421 struct hostapd_sta_add_params {
422 const u8 *addr;
423 u16 aid;
424 u16 capability;
425 const u8 *supp_rates;
426 size_t supp_rates_len;
427 u16 listen_interval;
428 const struct ieee80211_ht_capabilities *ht_capabilities;
429 };
430
431 struct hostapd_freq_params {
432 int mode;
433 int freq;
434 int channel;
435 int ht_enabled;
436 int sec_channel_offset; /* 0 = HT40 disabled, -1 = HT40 enabled,
437 * secondary channel below primary, 1 = HT40
438 * enabled, secondary channel above primary */
439 };
440
441 enum wpa_driver_if_type {
442 /**
443 * WPA_IF_STATION - Station mode interface
444 */
445 WPA_IF_STATION,
446
447 /**
448 * WPA_IF_AP_VLAN - AP mode VLAN interface
449 *
450 * This interface shares its address and Beacon frame with the main
451 * BSS.
452 */
453 WPA_IF_AP_VLAN,
454
455 /**
456 * WPA_IF_AP_BSS - AP mode BSS interface
457 *
458 * This interface has its own address and Beacon frame.
459 */
460 WPA_IF_AP_BSS,
461 };
462
463 struct wpa_init_params {
464 const u8 *bssid;
465 const char *ifname;
466 const u8 *ssid;
467 size_t ssid_len;
468 const char *test_socket;
469 int use_pae_group_addr;
470 char **bridge;
471 size_t num_bridge;
472
473 u8 *own_addr; /* buffer for writing own MAC address */
474 };
475
476
477 struct wpa_bss_params {
478 /** Interface name (for multi-SSID/VLAN support) */
479 const char *ifname;
480 /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
481 int enabled;
482
483 int wpa;
484 int ieee802_1x;
485 int wpa_group;
486 int wpa_pairwise;
487 int wpa_key_mgmt;
488 int rsn_preauth;
489 };
490
491 #define WPA_STA_AUTHORIZED BIT(0)
492 #define WPA_STA_WMM BIT(1)
493 #define WPA_STA_SHORT_PREAMBLE BIT(2)
494 #define WPA_STA_MFP BIT(3)
495
496 /**
497 * struct wpa_driver_ops - Driver interface API definition
498 *
499 * This structure defines the API that each driver interface needs to implement
500 * for core wpa_supplicant code. All driver specific functionality is captured
501 * in this wrapper.
502 */
503 struct wpa_driver_ops {
504 /** Name of the driver interface */
505 const char *name;
506 /** One line description of the driver interface */
507 const char *desc;
508
509 /**
510 * get_bssid - Get the current BSSID
511 * @priv: private driver interface data
512 * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
513 *
514 * Returns: 0 on success, -1 on failure
515 *
516 * Query kernel driver for the current BSSID and copy it to bssid.
517 * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
518 * associated.
519 */
520 int (*get_bssid)(void *priv, u8 *bssid);
521
522 /**
523 * get_ssid - Get the current SSID
524 * @priv: private driver interface data
525 * @ssid: buffer for SSID (at least 32 bytes)
526 *
527 * Returns: Length of the SSID on success, -1 on failure
528 *
529 * Query kernel driver for the current SSID and copy it to ssid.
530 * Returning zero is recommended if the STA is not associated.
531 *
532 * Note: SSID is an array of octets, i.e., it is not nul terminated and
533 * can, at least in theory, contain control characters (including nul)
534 * and as such, should be processed as binary data, not a printable
535 * string.
536 */
537 int (*get_ssid)(void *priv, u8 *ssid);
538
539 /**
540 * set_key - Configure encryption key
541 * @ifname: Interface name (for multi-SSID/VLAN support)
542 * @priv: private driver interface data
543 * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
544 * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK);
545 * %WPA_ALG_NONE clears the key.
546 * @addr: address of the peer STA or ff:ff:ff:ff:ff:ff for
547 * broadcast/default keys
548 * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
549 * IGTK
550 * @set_tx: configure this key as the default Tx key (only used when
551 * driver does not support separate unicast/individual key
552 * @seq: sequence number/packet number, seq_len octets, the next
553 * packet number to be used for in replay protection; configured
554 * for Rx keys (in most cases, this is only used with broadcast
555 * keys and set to zero for unicast keys)
556 * @seq_len: length of the seq, depends on the algorithm:
557 * TKIP: 6 octets, CCMP: 6 octets, IGTK: 6 octets
558 * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
559 * 8-byte Rx Mic Key
560 * @key_len: length of the key buffer in octets (WEP: 5 or 13,
561 * TKIP: 32, CCMP: 16, IGTK: 16)
562 *
563 * Returns: 0 on success, -1 on failure
564 *
565 * Configure the given key for the kernel driver. If the driver
566 * supports separate individual keys (4 default keys + 1 individual),
567 * addr can be used to determine whether the key is default or
568 * individual. If only 4 keys are supported, the default key with key
569 * index 0 is used as the individual key. STA must be configured to use
570 * it as the default Tx key (set_tx is set) and accept Rx for all the
571 * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
572 * broadcast keys, so key index 0 is available for this kind of
573 * configuration.
574 *
575 * Please note that TKIP keys include separate TX and RX MIC keys and
576 * some drivers may expect them in different order than wpa_supplicant
577 * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
578 * will tricker Michael MIC errors. This can be fixed by changing the
579 * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
580 * in driver_*.c set_key() implementation, see driver_ndis.c for an
581 * example on how this can be done.
582 */
583 int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg,
584 const u8 *addr, int key_idx, int set_tx,
585 const u8 *seq, size_t seq_len,
586 const u8 *key, size_t key_len);
587
588 /**
589 * init - Initialize driver interface
590 * @ctx: context to be used when calling wpa_supplicant functions,
591 * e.g., wpa_supplicant_event()
592 * @ifname: interface name, e.g., wlan0
593 *
594 * Returns: Pointer to private data, %NULL on failure
595 *
596 * Initialize driver interface, including event processing for kernel
597 * driver events (e.g., associated, scan results, Michael MIC failure).
598 * This function can allocate a private configuration data area for
599 * @ctx, file descriptor, interface name, etc. information that may be
600 * needed in future driver operations. If this is not used, non-NULL
601 * value will need to be returned because %NULL is used to indicate
602 * failure. The returned value will be used as 'void *priv' data for
603 * all other driver_ops functions.
604 *
605 * The main event loop (eloop.c) of wpa_supplicant can be used to
606 * register callback for read sockets (eloop_register_read_sock()).
607 *
608 * See below for more information about events and
609 * wpa_supplicant_event() function.
610 */
611 void * (*init)(void *ctx, const char *ifname);
612
613 /**
614 * deinit - Deinitialize driver interface
615 * @priv: private driver interface data from init()
616 *
617 * Shut down driver interface and processing of driver events. Free
618 * private data buffer if one was allocated in init() handler.
619 */
620 void (*deinit)(void *priv);
621
622 /**
623 * set_param - Set driver configuration parameters
624 * @priv: private driver interface data from init()
625 * @param: driver specific configuration parameters
626 *
627 * Returns: 0 on success, -1 on failure
628 *
629 * Optional handler for notifying driver interface about configuration
630 * parameters (driver_param).
631 */
632 int (*set_param)(void *priv, const char *param);
633
634 /**
635 * set_countermeasures - Enable/disable TKIP countermeasures
636 * @priv: private driver interface data
637 * @enabled: 1 = countermeasures enabled, 0 = disabled
638 *
639 * Returns: 0 on success, -1 on failure
640 *
641 * Configure TKIP countermeasures. When these are enabled, the driver
642 * should drop all received and queued frames that are using TKIP.
643 */
644 int (*set_countermeasures)(void *priv, int enabled);
645
646 /**
647 * deauthenticate - Request driver to deauthenticate
648 * @priv: private driver interface data
649 * @addr: peer address (BSSID of the AP)
650 * @reason_code: 16-bit reason code to be sent in the deauthentication
651 * frame
652 *
653 * Returns: 0 on success, -1 on failure
654 */
655 int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
656
657 /**
658 * disassociate - Request driver to disassociate
659 * @priv: private driver interface data
660 * @addr: peer address (BSSID of the AP)
661 * @reason_code: 16-bit reason code to be sent in the disassociation
662 * frame
663 *
664 * Returns: 0 on success, -1 on failure
665 */
666 int (*disassociate)(void *priv, const u8 *addr, int reason_code);
667
668 /**
669 * associate - Request driver to associate
670 * @priv: private driver interface data
671 * @params: association parameters
672 *
673 * Returns: 0 on success, -1 on failure
674 */
675 int (*associate)(void *priv,
676 struct wpa_driver_associate_params *params);
677
678 /**
679 * add_pmkid - Add PMKSA cache entry to the driver
680 * @priv: private driver interface data
681 * @bssid: BSSID for the PMKSA cache entry
682 * @pmkid: PMKID for the PMKSA cache entry
683 *
684 * Returns: 0 on success, -1 on failure
685 *
686 * This function is called when a new PMK is received, as a result of
687 * either normal authentication or RSN pre-authentication.
688 *
689 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
690 * associate(), add_pmkid() can be used to add new PMKSA cache entries
691 * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
692 * driver_ops function does not need to be implemented. Likewise, if
693 * the driver does not support WPA, this function is not needed.
694 */
695 int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
696
697 /**
698 * remove_pmkid - Remove PMKSA cache entry to the driver
699 * @priv: private driver interface data
700 * @bssid: BSSID for the PMKSA cache entry
701 * @pmkid: PMKID for the PMKSA cache entry
702 *
703 * Returns: 0 on success, -1 on failure
704 *
705 * This function is called when the supplicant drops a PMKSA cache
706 * entry for any reason.
707 *
708 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
709 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
710 * between the driver and wpa_supplicant. If the driver uses wpa_ie
711 * from wpa_supplicant, this driver_ops function does not need to be
712 * implemented. Likewise, if the driver does not support WPA, this
713 * function is not needed.
714 */
715 int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
716
717 /**
718 * flush_pmkid - Flush PMKSA cache
719 * @priv: private driver interface data
720 *
721 * Returns: 0 on success, -1 on failure
722 *
723 * This function is called when the supplicant drops all PMKSA cache
724 * entries for any reason.
725 *
726 * If the driver generates RSN IE, i.e., it does not use wpa_ie in
727 * associate(), remove_pmkid() can be used to synchronize PMKSA caches
728 * between the driver and wpa_supplicant. If the driver uses wpa_ie
729 * from wpa_supplicant, this driver_ops function does not need to be
730 * implemented. Likewise, if the driver does not support WPA, this
731 * function is not needed.
732 */
733 int (*flush_pmkid)(void *priv);
734
735 /**
736 * get_capa - Get driver capabilities
737 * @priv: private driver interface data
738 *
739 * Returns: 0 on success, -1 on failure
740 *
741 * Get driver/firmware/hardware capabilities.
742 */
743 int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
744
745 /**
746 * poll - Poll driver for association information
747 * @priv: private driver interface data
748 *
749 * This is an option callback that can be used when the driver does not
750 * provide event mechanism for association events. This is called when
751 * receiving WPA EAPOL-Key messages that require association
752 * information. The driver interface is supposed to generate associnfo
753 * event before returning from this callback function. In addition, the
754 * driver interface should generate an association event after having
755 * sent out associnfo.
756 */
757 void (*poll)(void *priv);
758
759 /**
760 * get_ifname - Get interface name
761 * @priv: private driver interface data
762 *
763 * Returns: Pointer to the interface name. This can differ from the
764 * interface name used in init() call. Init() is called first.
765 *
766 * This optional function can be used to allow the driver interface to
767 * replace the interface name with something else, e.g., based on an
768 * interface mapping from a more descriptive name.
769 */
770 const char * (*get_ifname)(void *priv);
771
772 /**
773 * get_mac_addr - Get own MAC address
774 * @priv: private driver interface data
775 *
776 * Returns: Pointer to own MAC address or %NULL on failure
777 *
778 * This optional function can be used to get the own MAC address of the
779 * device from the driver interface code. This is only needed if the
780 * l2_packet implementation for the OS does not provide easy access to
781 * a MAC address. */
782 const u8 * (*get_mac_addr)(void *priv);
783
784 /**
785 * send_eapol - Optional function for sending EAPOL packets
786 * @priv: private driver interface data
787 * @dest: Destination MAC address
788 * @proto: Ethertype
789 * @data: EAPOL packet starting with IEEE 802.1X header
790 * @data_len: Size of the EAPOL packet
791 *
792 * Returns: 0 on success, -1 on failure
793 *
794 * This optional function can be used to override l2_packet operations
795 * with driver specific functionality. If this function pointer is set,
796 * l2_packet module is not used at all and the driver interface code is
797 * responsible for receiving and sending all EAPOL packets. The
798 * received EAPOL packets are sent to core code with EVENT_EAPOL_RX
799 * event. The driver interface is required to implement get_mac_addr()
800 * handler if send_eapol() is used.
801 */
802 int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
803 const u8 *data, size_t data_len);
804
805 /**
806 * set_operstate - Sets device operating state to DORMANT or UP
807 * @priv: private driver interface data
808 * @state: 0 = dormant, 1 = up
809 * Returns: 0 on success, -1 on failure
810 *
811 * This is an optional function that can be used on operating systems
812 * that support a concept of controlling network device state from user
813 * space applications. This function, if set, gets called with
814 * state = 1 when authentication has been completed and with state = 0
815 * when connection is lost.
816 */
817 int (*set_operstate)(void *priv, int state);
818
819 /**
820 * mlme_setprotection - MLME-SETPROTECTION.request primitive
821 * @priv: Private driver interface data
822 * @addr: Address of the station for which to set protection (may be
823 * %NULL for group keys)
824 * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
825 * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
826 * Returns: 0 on success, -1 on failure
827 *
828 * This is an optional function that can be used to set the driver to
829 * require protection for Tx and/or Rx frames. This uses the layer
830 * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
831 * (MLME-SETPROTECTION.request). Many drivers do not use explicit
832 * set protection operation; instead, they set protection implicitly
833 * based on configured keys.
834 */
835 int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
836 int key_type);
837
838 /**
839 * get_hw_feature_data - Get hardware support data (channels and rates)
840 * @priv: Private driver interface data
841 * @num_modes: Variable for returning the number of returned modes
842 * flags: Variable for returning hardware feature flags
843 * Returns: Pointer to allocated hardware data on success or %NULL on
844 * failure. Caller is responsible for freeing this.
845 *
846 * This function is only needed for drivers that export MLME
847 * (management frame processing) to wpa_supplicant.
848 */
849 struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
850 u16 *num_modes,
851 u16 *flags);
852
853 /**
854 * set_channel - Set channel
855 * @priv: Private driver interface data
856 * @phymode: HOSTAPD_MODE_IEEE80211B, ..
857 * @chan: IEEE 802.11 channel number
858 * @freq: Frequency of the channel in MHz
859 * Returns: 0 on success, -1 on failure
860 *
861 * This function is only needed for drivers that export MLME
862 * (management frame processing) to wpa_supplicant.
863 */
864 int (*set_channel)(void *priv, enum hostapd_hw_mode phymode, int chan,
865 int freq);
866
867 /**
868 * set_ssid - Set SSID
869 * @priv: Private driver interface data
870 * @ssid: SSID
871 * @ssid_len: SSID length
872 * Returns: 0 on success, -1 on failure
873 *
874 * This function is only needed for drivers that export MLME
875 * (management frame processing) to wpa_supplicant.
876 */
877 int (*set_ssid)(void *priv, const u8 *ssid, size_t ssid_len);
878
879 /**
880 * set_bssid - Set BSSID
881 * @priv: Private driver interface data
882 * @bssid: BSSID
883 * Returns: 0 on success, -1 on failure
884 *
885 * This function is only needed for drivers that export MLME
886 * (management frame processing) to wpa_supplicant.
887 */
888 int (*set_bssid)(void *priv, const u8 *bssid);
889
890 /**
891 * send_mlme - Send management frame from MLME
892 * @priv: Private driver interface data
893 * @data: IEEE 802.11 management frame with IEEE 802.11 header
894 * @data_len: Size of the management frame
895 * Returns: 0 on success, -1 on failure
896 *
897 * This function is only needed for drivers that export MLME
898 * (management frame processing) to wpa_supplicant.
899 */
900 int (*send_mlme)(void *priv, const u8 *data, size_t data_len);
901
902 /**
903 * mlme_add_sta - Add a STA entry into the driver/netstack
904 * @priv: Private driver interface data
905 * @addr: MAC address of the STA (e.g., BSSID of the AP)
906 * @supp_rates: Supported rate set (from (Re)AssocResp); in IEEE 802.11
907 * format (one octet per rate, 1 = 0.5 Mbps)
908 * @supp_rates_len: Number of entries in supp_rates
909 * Returns: 0 on success, -1 on failure
910 *
911 * This function is only needed for drivers that export MLME
912 * (management frame processing) to wpa_supplicant. When the MLME code
913 * completes association with an AP, this function is called to
914 * configure the driver/netstack with a STA entry for data frame
915 * processing (TX rate control, encryption/decryption).
916 */
917 int (*mlme_add_sta)(void *priv, const u8 *addr, const u8 *supp_rates,
918 size_t supp_rates_len);
919
920 /**
921 * mlme_remove_sta - Remove a STA entry from the driver/netstack
922 * @priv: Private driver interface data
923 * @addr: MAC address of the STA (e.g., BSSID of the AP)
924 * Returns: 0 on success, -1 on failure
925 *
926 * This function is only needed for drivers that export MLME
927 * (management frame processing) to wpa_supplicant.
928 */
929 int (*mlme_remove_sta)(void *priv, const u8 *addr);
930
931 /**
932 * update_ft_ies - Update FT (IEEE 802.11r) IEs
933 * @priv: Private driver interface data
934 * @md: Mobility domain (2 octets) (also included inside ies)
935 * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
936 * @ies_len: Length of FT IEs in bytes
937 * Returns: 0 on success, -1 on failure
938 *
939 * The supplicant uses this callback to let the driver know that keying
940 * material for FT is available and that the driver can use the
941 * provided IEs in the next message in FT authentication sequence.
942 *
943 * This function is only needed for driver that support IEEE 802.11r
944 * (Fast BSS Transition).
945 */
946 int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
947 size_t ies_len);
948
949 /**
950 * send_ft_action - Send FT Action frame (IEEE 802.11r)
951 * @priv: Private driver interface data
952 * @action: Action field value
953 * @target_ap: Target AP address
954 * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
955 * @ies_len: Length of FT IEs in bytes
956 * Returns: 0 on success, -1 on failure
957 *
958 * The supplicant uses this callback to request the driver to transmit
959 * an FT Action frame (action category 6) for over-the-DS fast BSS
960 * transition.
961 */
962 int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
963 const u8 *ies, size_t ies_len);
964
965 /**
966 * get_scan_results2 - Fetch the latest scan results
967 * @priv: private driver interface data
968 *
969 * Returns: Allocated buffer of scan results (caller is responsible for
970 * freeing the data structure) on success, NULL on failure
971 */
972 struct wpa_scan_results * (*get_scan_results2)(void *priv);
973
974 /**
975 * set_country - Set country
976 * @priv: Private driver interface data
977 * @alpha2: country to which to switch to
978 * Returns: 0 on success, -1 on failure
979 *
980 * This function is for drivers which support some form
981 * of setting a regulatory domain.
982 */
983 int (*set_country)(void *priv, const char *alpha2);
984
985 /**
986 * global_init - Global driver initialization
987 * Returns: Pointer to private data (global), %NULL on failure
988 *
989 * This optional function is called to initialize the driver wrapper
990 * for global data, i.e., data that applies to all interfaces. If this
991 * function is implemented, global_deinit() will also need to be
992 * implemented to free the private data. The driver will also likely
993 * use init2() function instead of init() to get the pointer to global
994 * data available to per-interface initializer.
995 */
996 void * (*global_init)(void);
997
998 /**
999 * global_deinit - Global driver deinitialization
1000 * @priv: private driver global data from global_init()
1001 *
1002 * Terminate any global driver related functionality and free the
1003 * global data structure.
1004 */
1005 void (*global_deinit)(void *priv);
1006
1007 /**
1008 * init2 - Initialize driver interface (with global data)
1009 * @ctx: context to be used when calling wpa_supplicant functions,
1010 * e.g., wpa_supplicant_event()
1011 * @ifname: interface name, e.g., wlan0
1012 * @global_priv: private driver global data from global_init()
1013 * Returns: Pointer to private data, %NULL on failure
1014 *
1015 * This function can be used instead of init() if the driver wrapper
1016 * uses global data.
1017 */
1018 void * (*init2)(void *ctx, const char *ifname, void *global_priv);
1019
1020 /**
1021 * get_interfaces - Get information about available interfaces
1022 * @global_priv: private driver global data from global_init()
1023 * Returns: Allocated buffer of interface information (caller is
1024 * responsible for freeing the data structure) on success, NULL on
1025 * failure
1026 */
1027 struct wpa_interface_info * (*get_interfaces)(void *global_priv);
1028
1029 /**
1030 * scan2 - Request the driver to initiate scan
1031 * @priv: private driver interface data
1032 * @params: Scan parameters
1033 *
1034 * Returns: 0 on success, -1 on failure
1035 *
1036 * Once the scan results are ready, the driver should report scan
1037 * results event for wpa_supplicant which will eventually request the
1038 * results with wpa_driver_get_scan_results2().
1039 */
1040 int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
1041
1042 /**
1043 * authenticate - Request driver to authenticate
1044 * @priv: private driver interface data
1045 * @params: authentication parameters
1046 * Returns: 0 on success, -1 on failure
1047 *
1048 * This is an optional function that can be used with drivers that
1049 * support separate authentication and association steps, i.e., when
1050 * wpa_supplicant can act as the SME. If not implemented, associate()
1051 * function is expected to take care of IEEE 802.11 authentication,
1052 * too.
1053 */
1054 int (*authenticate)(void *priv,
1055 struct wpa_driver_auth_params *params);
1056
1057 /**
1058 * set_beacon - Set Beacon frame template
1059 * @iface: Interface name (main interface or virtual BSS)
1060 * @priv: Private driver interface data
1061 * @head: Beacon head from IEEE 802.11 header to IEs before TIM IE
1062 * @head_len: Length of the head buffer in octets
1063 * @tail: Beacon tail following TIM IE
1064 * @tail_len: Length of the tail buffer in octets
1065 * @dtim_period: DTIM period
1066 * @beacon_int: Beacon interval
1067 * Returns: 0 on success, -1 on failure
1068 *
1069 * This function is used to configure Beacon template for the driver in
1070 * AP mode. The driver is responsible for building the full Beacon
1071 * frame by concatenating the head part with TIM IE generated by the
1072 * driver/firmware and finishing with the tail part.
1073 */
1074 int (*set_beacon)(const char *ifname, void *priv,
1075 const u8 *head, size_t head_len,
1076 const u8 *tail, size_t tail_len, int dtim_period,
1077 int beacon_int);
1078
1079 /**
1080 * hapd_init - Initialize driver interface (hostapd only)
1081 * @hapd: Pointer to hostapd context
1082 * @params: Configuration for the driver wrapper
1083 * Returns: Pointer to private data, %NULL on failure
1084 *
1085 * This function is used instead of init() or init2() when the driver
1086 * wrapper is used withh hostapd.
1087 */
1088 void * (*hapd_init)(struct hostapd_data *hapd,
1089 struct wpa_init_params *params);
1090
1091 /**
1092 * hapd_deinit - Deinitialize driver interface (hostapd only)
1093 * @priv: Private driver interface data from hapd_init()
1094 */
1095 void (*hapd_deinit)(void *priv);
1096
1097 /**
1098 * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
1099 * @priv: Private driver interface data
1100 * @params: BSS parameters
1101 * Returns: 0 on success, -1 on failure
1102 *
1103 * This is an optional function to configure the kernel driver to
1104 * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
1105 * can be left undefined (set to %NULL) if IEEE 802.1X support is
1106 * always enabled and the driver uses set_beacon() to set WPA/RSN IE
1107 * for Beacon frames.
1108 */
1109 int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
1110
1111 /**
1112 * set_privacy - Enable/disable privacy (AP only)
1113 * @priv: Private driver interface data
1114 * @enabled: 1 = privacy enabled, 0 = disabled
1115 * Returns: 0 on success, -1 on failure
1116 *
1117 * This is an optional function to configure privacy field in the
1118 * kernel driver for Beacon frames. This can be left undefined (set to
1119 * %NULL) if the driver uses the Beacon template from set_beacon().
1120 */
1121 int (*set_privacy)(const char *ifname, void *priv, int enabled);
1122
1123 /**
1124 * get_seqnum - Fetch the current TSC/packet number (AP only)
1125 * @ifname: The interface name (main or virtual)
1126 * @priv: Private driver interface data
1127 * @addr: MAC address of the station or %NULL for group keys
1128 * @idx: Key index
1129 * @seq: Buffer for returning the latest used TSC/packet number
1130 * Returns: 0 on success, -1 on failure
1131 *
1132 * This function is used to fetch the last used TSC/packet number for
1133 * a TKIP, CCMP, or BIP/IGTK key. It is mainly used with group keys, so
1134 * there is no strict requirement on implementing support for unicast
1135 * keys (i.e., addr != %NULL).
1136 */
1137 int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
1138 int idx, u8 *seq);
1139
1140 /**
1141 * flush - Flush all association stations (AP only)
1142 * @priv: Private driver interface data
1143 * Returns: 0 on success, -1 on failure
1144 *
1145 * This function requests the driver to disassociate all associated
1146 * stations. This function does not need to be implemented if the
1147 * driver does not process association frames internally.
1148 */
1149 int (*flush)(void *priv);
1150
1151 /**
1152 * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
1153 * @ifname: The interface name (main or virtual BSS)
1154 * @priv: Private driver interface data
1155 * @elem: Information elements
1156 * @elem_len: Length of the elem buffer in octets
1157 * Returns: 0 on success, -1 on failure
1158 *
1159 * This is an optional function to add information elements in the
1160 * kernel driver for Beacon and Probe Response frames. This can be left
1161 * undefined (set to %NULL) if the driver uses the Beacon template from
1162 * set_beacon().
1163 */
1164 int (*set_generic_elem)(const char *ifname, void *priv, const u8 *elem,
1165 size_t elem_len);
1166
1167 /**
1168 * read_sta_data - Fetch station data (AP only)
1169 * @priv: Private driver interface data
1170 * @data: Buffer for returning station information
1171 * @addr: MAC address of the station
1172 * Returns: 0 on success, -1 on failure
1173 */
1174 int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
1175 const u8 *addr);
1176
1177 /**
1178 * hapd_send_eapol - Send an EAPOL packet (AP only)
1179 * @priv: private driver interface data
1180 * @addr: Destination MAC address
1181 * @data: EAPOL packet starting with IEEE 802.1X header
1182 * @data_len: Length of the EAPOL packet in octets
1183 * @encrypt: Whether the frame should be encrypted
1184 * @own_addr: Source MAC address
1185 *
1186 * Returns: 0 on success, -1 on failure
1187 */
1188 int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
1189 size_t data_len, int encrypt,
1190 const u8 *own_addr);
1191
1192 /**
1193 * sta_deauth - Deauthenticate a station (AP only)
1194 * @priv: Private driver interface data
1195 * @own_addr: Source address and BSSID for the Deauthentication frame
1196 * @addr: MAC address of the station to deauthenticate
1197 * @reason: Reason code for the Deauthentiation frame
1198 * Returns: 0 on success, -1 on failure
1199 *
1200 * This function requests a specific station to be deauthenticated and
1201 * a Deauthentication frame to be sent to it.
1202 */
1203 int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
1204 int reason);
1205
1206 /**
1207 * sta_disassoc - Disassociate a station (AP only)
1208 * @priv: Private driver interface data
1209 * @own_addr: Source address and BSSID for the Disassociation frame
1210 * @addr: MAC address of the station to disassociate
1211 * @reason: Reason code for the Disassociation frame
1212 * Returns: 0 on success, -1 on failure
1213 *
1214 * This function requests a specific station to be disassociated and
1215 * a Disassociation frame to be sent to it.
1216 */
1217 int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
1218 int reason);
1219
1220 /**
1221 * sta_remove - Remove a station entry (AP only)
1222 * @priv: Private driver interface data
1223 * @addr: MAC address of the station to be removed
1224 * Returns: 0 on success, -1 on failure
1225 */
1226 int (*sta_remove)(void *priv, const u8 *addr);
1227
1228 /**
1229 * hapd_get_ssid - Get the current SSID (AP only)
1230 * @ifname: Interface (master or virtual BSS)
1231 * @priv: Private driver interface data
1232 * @buf: Buffer for returning the SSID
1233 * @len: Maximum length of the buffer
1234 * Returns: Length of the SSID on success, -1 on failure
1235 *
1236 * This function need not be implemented if the driver uses Beacon
1237 * template from set_beacon() and does not reply to Probe Request
1238 * frames.
1239 */
1240 int (*hapd_get_ssid)(const char *ifname, void *priv, u8 *buf, int len);
1241
1242 /**
1243 * hapd_set_ssid - Set SSID (AP only)
1244 * @ifname: Interface (master or virtual BSS)
1245 * @priv: Private driver interface data
1246 * @buf: SSID
1247 * @len: Length of the SSID in octets
1248 * Returns: 0 on success, -1 on failure
1249 */
1250 int (*hapd_set_ssid)(const char *ifname, void *priv, const u8 *buf,
1251 int len);
1252 /**
1253 * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
1254 * @priv: Private driver interface data
1255 * @enabled: 1 = countermeasures enabled, 0 = disabled
1256 * Returns: 0 on success, -1 on failure
1257 *
1258 * This need not be implemented if the driver does not take care of
1259 * association processing.
1260 */
1261 int (*hapd_set_countermeasures)(void *priv, int enabled);
1262
1263 /**
1264 * sta_add - Add a station entry
1265 * @ifname: Interface (master or virtual)
1266 * @priv: Private driver interface data
1267 * @params: Station parameters
1268 * Returns: 0 on success, -1 on failure
1269 *
1270 * This function is used to add a station entry to the driver once the
1271 * station has completed association. This is only used if the driver
1272 * does not take care of association processing.
1273 */
1274 int (*sta_add)(const char *ifname, void *priv,
1275 struct hostapd_sta_add_params *params);
1276
1277 /**
1278 * get_inact_sec - Get station inactivity duration (AP only)
1279 * @priv: Private driver interface data
1280 * @addr: Station address
1281 * Returns: Number of seconds station has been inactive, -1 on failure
1282 */
1283 int (*get_inact_sec)(void *priv, const u8 *addr);
1284
1285 /**
1286 * sta_clear_stats - Clear station statistics (AP only)
1287 * @priv: Private driver interface data
1288 * @addr: Station address
1289 * Returns: 0 on success, -1 on failure
1290 */
1291 int (*sta_clear_stats)(void *priv, const u8 *addr);
1292
1293 /**
1294 * set_freq - Set channel/frequency (AP only)
1295 * @priv: Private driver interface data
1296 * @freq: Channel parameters
1297 * Returns: 0 on success, -1 on failure
1298 */
1299 int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
1300
1301 /**
1302 * set_rts - Set RTS threshold
1303 * @priv: Private driver interface data
1304 * @rts: RTS threshold in octets
1305 * Returns: 0 on success, -1 on failure
1306 */
1307 int (*set_rts)(void *priv, int rts);
1308
1309 /**
1310 * set_frag - Set fragmentation threshold
1311 * @priv: Private driver interface data
1312 * @frag: Fragmentation threshold in octets
1313 * Returns: 0 on success, -1 on failure
1314 */
1315 int (*set_frag)(void *priv, int frag);
1316
1317 /**
1318 * sta_set_flags - Set station flags (AP only)
1319 * @priv: Private driver interface data
1320 * @addr: Station address
1321 * @total_flags: Bitmap of all WPA_STA_* flags currently set
1322 * @flags_or: Bitmap of WPA_STA_* flags to add
1323 * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
1324 * Returns: 0 on success, -1 on failure
1325 */
1326 int (*sta_set_flags)(void *priv, const u8 *addr,
1327 int total_flags, int flags_or, int flags_and);
1328
1329 /**
1330 * set_rate_sets - Set supported and basic rate sets (AP only)
1331 * @priv: Private driver interface data
1332 * @supp_rates: -1 terminated array of supported rates in 100 kbps
1333 * @basic_rates: -1 terminated array of basic rates in 100 kbps
1334 * @mode: hardware mode (HOSTAPD_MODE_*)
1335 * Returns: 0 on success, -1 on failure
1336 */
1337 int (*set_rate_sets)(void *priv, int *supp_rates, int *basic_rates,
1338 int mode);
1339
1340 /**
1341 * set_cts_protect - Set CTS protection mode (AP only)
1342 * @priv: Private driver interface data
1343 * @value: Whether CTS protection is enabled
1344 * Returns: 0 on success, -1 on failure
1345 */
1346 int (*set_cts_protect)(void *priv, int value);
1347
1348 /**
1349 * set_preamble - Set preamble mode (AP only)
1350 * @priv: Private driver interface data
1351 * @value: Whether short preamble is enabled
1352 * Returns: 0 on success, -1 on failure
1353 */
1354 int (*set_preamble)(void *priv, int value);
1355
1356 /**
1357 * set_short_slot_time - Set short slot time (AP only)
1358 * @priv: Private driver interface data
1359 * @value: Whether short slot time is enabled
1360 * Returns: 0 on success, -1 on failure
1361 */
1362 int (*set_short_slot_time)(void *priv, int value);
1363
1364 /**
1365 * set_tx_queue_params - Set TX queue parameters
1366 * @priv: Private driver interface data
1367 * @queue: Queue number
1368 * @aifs: AIFS
1369 * @cw_min: cwMin
1370 * @cw_max: cwMax
1371 * @burst_time: Maximum length for bursting in 0.1 msec units
1372 */
1373 int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
1374 int cw_max, int burst_time);
1375
1376 /**
1377 * valid_bss_mask - Validate BSSID mask
1378 * @priv: Private driver interface data
1379 * @addr: Address
1380 * @mask: Mask
1381 * Returns: 0 if mask is valid, -1 if mask is not valid, 1 if mask can
1382 * be used, but the main interface address must be the first address in
1383 * the block if mask is applied
1384 */
1385 int (*valid_bss_mask)(void *priv, const u8 *addr, const u8 *mask);
1386
1387 /**
1388 * if_add - Add a virtual interface
1389 * @iface: Parent interface name
1390 * @priv: Private driver interface data
1391 * @type: Interface type
1392 * @ifname: Interface name for the new virtual interface
1393 * @addr: Local address to use for the interface or %NULL to use the
1394 * parent interface address
1395 * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
1396 * Returns: 0 on success, -1 on failure
1397 */
1398 int (*if_add)(const char *iface, void *priv,
1399 enum wpa_driver_if_type type, const char *ifname,
1400 const u8 *addr, void *bss_ctx);
1401
1402 /**
1403 * if_remove - Remove a virtual interface
1404 * @priv: Private driver interface data
1405 * @type: Interface type
1406 * @ifname: Interface name of the virtual interface to be removed
1407 * Returns: 0 on success, -1 on failure
1408 */
1409 int (*if_remove)(void *priv, enum wpa_driver_if_type type,
1410 const char *ifname);
1411
1412 /**
1413 * set_sta_vlan - Bind a station into a specific interface (AP only)
1414 * @priv: Private driver interface data
1415 * @ifname: Interface (main or virtual BSS or VLAN)
1416 * @addr: MAC address of the associated station
1417 * @vlan_id: VLAN ID
1418 * Returns: 0 on success, -1 on failure
1419 *
1420 * This function is used to bind a station to a specific virtual
1421 * interface. It is only used if when virtual interfaces are supported,
1422 * e.g., to assign stations to different VLAN interfaces based on
1423 * information from a RADIUS server. This allows separate broadcast
1424 * domains to be used with a single BSS.
1425 */
1426 int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
1427 int vlan_id);
1428
1429 /**
1430 * commit - Optional commit changes handler (AP only)
1431 * @priv: driver private data
1432 * Returns: 0 on success, -1 on failure
1433 *
1434 * This optional handler function can be registered if the driver
1435 * interface implementation needs to commit changes (e.g., by setting
1436 * network interface up) at the end of initial configuration. If set,
1437 * this handler will be called after initial setup has been completed.
1438 */
1439 int (*commit)(void *priv);
1440
1441 /**
1442 * send_ether - Send an ethernet packet (AP only)
1443 * @priv: private driver interface data
1444 * @dst: Destination MAC address
1445 * @src: Source MAC address
1446 * @proto: Ethertype
1447 * @data: EAPOL packet starting with IEEE 802.1X header
1448 * @data_len: Length of the EAPOL packet in octets
1449 * Returns: 0 on success, -1 on failure
1450 */
1451 int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
1452 const u8 *data, size_t data_len);
1453
1454 /**
1455 * set_radius_acl_auth - Notification of RADIUS ACL change
1456 * @priv: Private driver interface data
1457 * @mac: MAC address of the station
1458 * @accepted: Whether the station was accepted
1459 * @session_timeout: Session timeout for the station
1460 * Returns: 0 on success, -1 on failure
1461 */
1462 int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted,
1463 u32 session_timeout);
1464
1465 /**
1466 * set_radius_acl_expire - Notification of RADIUS ACL expiration
1467 * @priv: Private driver interface data
1468 * @mac: MAC address of the station
1469 * Returns: 0 on success, -1 on failure
1470 */
1471 int (*set_radius_acl_expire)(void *priv, const u8 *mac);
1472
1473 /**
1474 * set_ht_params - Set HT parameters (AP only)
1475 * @ifname: The interface name (main or virtual BSS)
1476 * @priv: Private driver interface data
1477 * @ht_capab: HT Capabilities IE
1478 * @ht_capab_len: Length of ht_capab in octets
1479 * @ht_oper: HT Operation IE
1480 * @ht_oper_len: Length of ht_oper in octets
1481 * Returns: 0 on success, -1 on failure
1482 */
1483 int (*set_ht_params)(const char *ifname, void *priv,
1484 const u8 *ht_capab, size_t ht_capab_len,
1485 const u8 *ht_oper, size_t ht_oper_len);
1486
1487 /**
1488 * set_ap_wps_ie - Add WPS IE into Beacon/Probe Response frames (AP)
1489 * @ifname: The interface name (main or virtual BSS)
1490 * @priv: Private driver interface data
1491 * @beacon: WPS IE for Beacon frames
1492 * @proberesp: WPS IE for Probe Response frames
1493 * Returns: 0 on success, -1 on failure
1494 *
1495 * This is an optional function to add WPS IE in the kernel driver for
1496 * Beacon and Probe Response frames. This can be left undefined (set
1497 * to %NULL) if the driver uses the Beacon template from set_beacon()
1498 * and does not process Probe Request frames.
1499 */
1500 int (*set_ap_wps_ie)(const char *ifname, void *priv,
1501 const struct wpabuf *beacon,
1502 const struct wpabuf *proberesp);
1503
1504 /**
1505 * set_supp_port - Set IEEE 802.1X Supplicant Port status
1506 * @priv: Private driver interface data
1507 * @authorized: Whether the port is authorized
1508 * Returns: 0 on success, -1 on failure
1509 */
1510 int (*set_supp_port)(void *priv, int authorized);
1511
1512 /**
1513 * set_wds_sta - Bind a station into a 4-address WDS (AP only)
1514 * @priv: Private driver interface data
1515 * @addr: MAC address of the associated station
1516 * @aid: Association ID
1517 * @val: 1 = bind to 4-address WDS; 0 = unbind
1518 * Returns: 0 on success, -1 on failure
1519 */
1520 int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val);
1521
1522 /**
1523 * send_action - Transmit an Action frame
1524 * @priv: Private driver interface data
1525 * @freq: Frequency (in MHz) of the channel
1526 * @dst: Destination MAC address
1527 * @src: Source MAC address
1528 * @data: Frame body
1529 * @data_len: data length in octets
1530 * Returns: 0 on success, -1 on failure
1531 *
1532 * This command can be used to request the driver to transmit an action
1533 * frame to the specified destination. If a remain-on-channel duration
1534 * is in progress, the frame is transmitted on that channel. Otherwise,
1535 * the frame is transmitted on the current operational channel if in
1536 * associated state in station mode or if operating as an AP. If none
1537 * of these conditions is in effect, send_action() cannot be used.
1538 */
1539 int (*send_action)(void *priv, unsigned int freq,
1540 const u8 *dst, const u8 *src,
1541 const u8 *data, size_t data_len);
1542
1543 /**
1544 * alloc_interface_addr - Allocate a virtual interface address
1545 * @priv: Private driver interface data
1546 * @addr: Buffer for returning the address
1547 * Returns: 0 on success, -1 on failure
1548 *
1549 * This command pre-allocates an interface address for a new virtual
1550 * interface. This can be used before creating a virtual interface if
1551 * the interface mode (e.g., AP vs. station) is not yet known, but the
1552 * address of the virtual interface is already needed. This helps with
1553 * drivers that cannot change interface mode without destroying and
1554 * re-creating the interface.
1555 *
1556 * The allocated address can be used in a bss_add() call to request a
1557 * specific bssid.
1558 */
1559 int (*alloc_interface_addr)(void *priv, u8 *addr);
1560
1561 /**
1562 * release_interface_addr - Release a virtual interface address
1563 * @priv: Private driver interface data
1564 * @addr: Address to be freed from alloc_interface_addr()
1565 *
1566 * This command is used to release a virtual interface address that was
1567 * allocated with alloc_interface_addr(), but has not yet been used
1568 * with bss_add() to actually create the interface. This allows the
1569 * driver to release the pending allocation for a new interface.
1570 */
1571 void (*release_interface_addr)(void *priv, const u8 *addr);
1572
1573 /**
1574 * remain_on_channel - Remain awake on a channel
1575 * @priv: Private driver interface data
1576 * @freq: Frequency (in MHz) of the channel
1577 * @duration: Duration in milliseconds
1578 * Returns: 0 on success, -1 on failure
1579 *
1580 * This command is used to request the driver to remain awake on the
1581 * specified channel for the specified duration and report received
1582 * Action frames with EVENT_RX_ACTION events. Optionally, received
1583 * Probe Request frames may also be requested to be reported by calling
1584 * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
1585 *
1586 * The driver may not be at the requested channel when this function
1587 * returns, i.e., the return code is only indicating whether the
1588 * request was accepted. The caller will need to wait until the
1589 * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
1590 * completed the channel change. This may take some time due to other
1591 * need for the radio and the caller should be prepared to timing out
1592 * its wait since there are no guarantees on when this request can be
1593 * executed.
1594 */
1595 int (*remain_on_channel)(void *priv, unsigned int freq,
1596 unsigned int duration);
1597
1598 /**
1599 * cancel_remain_on_channel - Cancel remain-on-channel operation
1600 * @priv: Private driver interface data
1601 *
1602 * This command can be used to cancel a remain-on-channel operation
1603 * before its originally requested duration has passed. This could be
1604 * used, e.g., when remain_on_channel() is used to request extra time
1605 * to receive a response to an Action frame and the response is
1606 * received when there is still unneeded time remaining on the
1607 * remain-on-channel operation.
1608 */
1609 int (*cancel_remain_on_channel)(void *priv);
1610
1611 /**
1612 * probe_req_report - Request Probe Request frames to be indicated
1613 * @priv: Private driver interface data
1614 * @report: Whether to report received Probe Request frames
1615 * Returns: 0 on success, -1 on failure (or if not supported)
1616 *
1617 * This command can be used to request the driver to indicate when
1618 * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
1619 * Since this operation may require extra resources, e.g., due to less
1620 * optimal hardware/firmware RX filtering, many drivers may disable
1621 * Probe Request reporting at least in station mode. This command is
1622 * used to notify the driver when the Probe Request frames need to be
1623 * reported, e.g., during remain-on-channel operations.
1624 */
1625 int (*probe_req_report)(void *priv, int report);
1626 };
1627
1628 /**
1629 * enum wpa_event_type - Event type for wpa_supplicant_event() calls
1630 */
1631 enum wpa_event_type {
1632 /**
1633 * EVENT_ASSOC - Association completed
1634 *
1635 * This event needs to be delivered when the driver completes IEEE
1636 * 802.11 association or reassociation successfully.
1637 * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
1638 * after this event has been generated. In addition, optional
1639 * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
1640 * more information about the association. If the driver interface gets
1641 * both of these events at the same time, it can also include the
1642 * assoc_info data in EVENT_ASSOC call.
1643 */
1644 EVENT_ASSOC,
1645
1646 /**
1647 * EVENT_DISASSOC - Association lost
1648 *
1649 * This event should be called when association is lost either due to
1650 * receiving deauthenticate or disassociate frame from the AP or when
1651 * sending either of these frames to the current AP. If the driver
1652 * supports separate deauthentication event, EVENT_DISASSOC should only
1653 * be used for disassociation and EVENT_DEAUTH for deauthentication.
1654 * In AP mode, union wpa_event_data::disassoc_info is required.
1655 */
1656 EVENT_DISASSOC,
1657
1658 /**
1659 * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
1660 *
1661 * This event must be delivered when a Michael MIC error is detected by
1662 * the local driver. Additional data for event processing is
1663 * provided with union wpa_event_data::michael_mic_failure. This
1664 * information is used to request new encyption key and to initiate
1665 * TKIP countermeasures if needed.
1666 */
1667 EVENT_MICHAEL_MIC_FAILURE,
1668
1669 /**
1670 * EVENT_SCAN_RESULTS - Scan results available
1671 *
1672 * This event must be called whenever scan results are available to be
1673 * fetched with struct wpa_driver_ops::get_scan_results(). This event
1674 * is expected to be used some time after struct wpa_driver_ops::scan()
1675 * is called. If the driver provides an unsolicited event when the scan
1676 * has been completed, this event can be used to trigger
1677 * EVENT_SCAN_RESULTS call. If such event is not available from the
1678 * driver, the driver wrapper code is expected to use a registered
1679 * timeout to generate EVENT_SCAN_RESULTS call after the time that the
1680 * scan is expected to be completed. Optional information about
1681 * completed scan can be provided with union wpa_event_data::scan_info.
1682 */
1683 EVENT_SCAN_RESULTS,
1684
1685 /**
1686 * EVENT_ASSOCINFO - Report optional extra information for association
1687 *
1688 * This event can be used to report extra association information for
1689 * EVENT_ASSOC processing. This extra information includes IEs from
1690 * association frames and Beacon/Probe Response frames in union
1691 * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
1692 * EVENT_ASSOC. Alternatively, the driver interface can include
1693 * assoc_info data in the EVENT_ASSOC call if it has all the
1694 * information available at the same point.
1695 */
1696 EVENT_ASSOCINFO,
1697
1698 /**
1699 * EVENT_INTERFACE_STATUS - Report interface status changes
1700 *
1701 * This optional event can be used to report changes in interface
1702 * status (interface added/removed) using union
1703 * wpa_event_data::interface_status. This can be used to trigger
1704 * wpa_supplicant to stop and re-start processing for the interface,
1705 * e.g., when a cardbus card is ejected/inserted.
1706 */
1707 EVENT_INTERFACE_STATUS,
1708
1709 /**
1710 * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
1711 *
1712 * This event can be used to inform wpa_supplicant about candidates for
1713 * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
1714 * for scan request (ap_scan=2 mode), this event is required for
1715 * pre-authentication. If wpa_supplicant is performing scan request
1716 * (ap_scan=1), this event is optional since scan results can be used
1717 * to add pre-authentication candidates. union
1718 * wpa_event_data::pmkid_candidate is used to report the BSSID of the
1719 * candidate and priority of the candidate, e.g., based on the signal
1720 * strength, in order to try to pre-authenticate first with candidates
1721 * that are most likely targets for re-association.
1722 *
1723 * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
1724 * on the candidate list. In addition, it can be called for the current
1725 * AP and APs that have existing PMKSA cache entries. wpa_supplicant
1726 * will automatically skip pre-authentication in cases where a valid
1727 * PMKSA exists. When more than one candidate exists, this event should
1728 * be generated once for each candidate.
1729 *
1730 * Driver will be notified about successful pre-authentication with
1731 * struct wpa_driver_ops::add_pmkid() calls.
1732 */
1733 EVENT_PMKID_CANDIDATE,
1734
1735 /**
1736 * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
1737 *
1738 * This event can be used to inform wpa_supplicant about desire to set
1739 * up secure direct link connection between two stations as defined in
1740 * IEEE 802.11e with a new PeerKey mechanism that replaced the original
1741 * STAKey negotiation. The caller will need to set peer address for the
1742 * event.
1743 */
1744 EVENT_STKSTART,
1745
1746 /**
1747 * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
1748 *
1749 * The driver is expected to report the received FT IEs from
1750 * FT authentication sequence from the AP. The FT IEs are included in
1751 * the extra information in union wpa_event_data::ft_ies.
1752 */
1753 EVENT_FT_RESPONSE,
1754
1755 /**
1756 * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
1757 *
1758 * The driver can use this event to inform wpa_supplicant about a STA
1759 * in an IBSS with which protected frames could be exchanged. This
1760 * event starts RSN authentication with the other STA to authenticate
1761 * the STA and set up encryption keys with it.
1762 */
1763 EVENT_IBSS_RSN_START,
1764
1765 /**
1766 * EVENT_AUTH - Authentication result
1767 *
1768 * This event should be called when authentication attempt has been
1769 * completed. This is only used if the driver supports separate
1770 * authentication step (struct wpa_driver_ops::authenticate).
1771 * Information about authentication result is included in
1772 * union wpa_event_data::auth.
1773 */
1774 EVENT_AUTH,
1775
1776 /**
1777 * EVENT_DEAUTH - Authentication lost
1778 *
1779 * This event should be called when authentication is lost either due
1780 * to receiving deauthenticate frame from the AP or when sending that
1781 * frame to the current AP.
1782 * In AP mode, union wpa_event_data::deauth_info is required.
1783 */
1784 EVENT_DEAUTH,
1785
1786 /**
1787 * EVENT_ASSOC_REJECT - Association rejected
1788 *
1789 * This event should be called when (re)association attempt has been
1790 * rejected by the AP. Information about authentication result is
1791 * included in union wpa_event_data::assoc_reject.
1792 */
1793 EVENT_ASSOC_REJECT,
1794
1795 /**
1796 * EVENT_AUTH_TIMED_OUT - Authentication timed out
1797 */
1798 EVENT_AUTH_TIMED_OUT,
1799
1800 /**
1801 * EVENT_ASSOC_TIMED_OUT - Association timed out
1802 */
1803 EVENT_ASSOC_TIMED_OUT,
1804
1805 /**
1806 * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
1807 */
1808 EVENT_FT_RRB_RX,
1809
1810 /**
1811 * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
1812 */
1813 EVENT_WPS_BUTTON_PUSHED,
1814
1815 /**
1816 * EVENT_TX_STATUS - Report TX status
1817 */
1818 EVENT_TX_STATUS,
1819
1820 /**
1821 * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
1822 */
1823 EVENT_RX_FROM_UNKNOWN,
1824
1825 /**
1826 * EVENT_RX_MGMT - Report RX of a management frame
1827 */
1828 EVENT_RX_MGMT,
1829
1830 /**
1831 * EVENT_RX_ACTION - Action frame received
1832 *
1833 * This event is used to indicate when an Action frame has been
1834 * received. Information about the received frame is included in
1835 * union wpa_event_data::rx_action.
1836 */
1837 EVENT_RX_ACTION,
1838
1839 /**
1840 * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
1841 *
1842 * This event is used to indicate when the driver has started the
1843 * requested remain-on-channel duration. Information about the
1844 * operation is included in union wpa_event_data::remain_on_channel.
1845 */
1846 EVENT_REMAIN_ON_CHANNEL,
1847
1848 /**
1849 * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
1850 *
1851 * This event is used to indicate when the driver has completed
1852 * remain-on-channel duration, i.e., may noot be available on the
1853 * requested channel anymore. Information about the
1854 * operation is included in union wpa_event_data::remain_on_channel.
1855 */
1856 EVENT_CANCEL_REMAIN_ON_CHANNEL,
1857
1858 /**
1859 * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
1860 *
1861 * This event is used only by driver_test.c and userspace MLME.
1862 */
1863 EVENT_MLME_RX,
1864
1865 /**
1866 * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
1867 *
1868 * This event is used to indicate when a Probe Request frame has been
1869 * received. Information about the received frame is included in
1870 * union wpa_event_data::rx_probe_req. The driver is required to report
1871 * these events only after successfully completed probe_req_report()
1872 * commands to request the events (i.e., report parameter is non-zero)
1873 * in station mode. In AP mode, Probe Request frames should always be
1874 * reported.
1875 */
1876 EVENT_RX_PROBE_REQ,
1877
1878 /**
1879 * EVENT_NEW_STA - New wired device noticed
1880 *
1881 * This event is used to indicate that a new device has been detected
1882 * in a network that does not use association-like functionality (i.e.,
1883 * mainly wired Ethernet). This can be used to start EAPOL
1884 * authenticator when receiving a frame from a device. The address of
1885 * the device is included in union wpa_event_data::new_sta.
1886 */
1887 EVENT_NEW_STA,
1888
1889 /**
1890 * EVENT_EAPOL_RX - Report received EAPOL frame
1891 *
1892 * When in AP mode with hostapd, this event is required to be used to
1893 * deliver the receive EAPOL frames from the driver. With
1894 * %wpa_supplicant, this event is used only if the send_eapol() handler
1895 * is used to override the use of l2_packet for EAPOL frame TX.
1896 */
1897 EVENT_EAPOL_RX
1898 };
1899
1900
1901 /**
1902 * union wpa_event_data - Additional data for wpa_supplicant_event() calls
1903 */
1904 union wpa_event_data {
1905 /**
1906 * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
1907 *
1908 * This structure is optional for EVENT_ASSOC calls and required for
1909 * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
1910 * driver interface does not need to generate separate EVENT_ASSOCINFO
1911 * calls.
1912 */
1913 struct assoc_info {
1914 /**
1915 * req_ies - (Re)Association Request IEs
1916 *
1917 * If the driver generates WPA/RSN IE, this event data must be
1918 * returned for WPA handshake to have needed information. If
1919 * wpa_supplicant-generated WPA/RSN IE is used, this
1920 * information event is optional.
1921 *
1922 * This should start with the first IE (fixed fields before IEs
1923 * are not included).
1924 */
1925 const u8 *req_ies;
1926
1927 /**
1928 * req_ies_len - Length of req_ies in bytes
1929 */
1930 size_t req_ies_len;
1931
1932 /**
1933 * resp_ies - (Re)Association Response IEs
1934 *
1935 * Optional association data from the driver. This data is not
1936 * required WPA, but may be useful for some protocols and as
1937 * such, should be reported if this is available to the driver
1938 * interface.
1939 *
1940 * This should start with the first IE (fixed fields before IEs
1941 * are not included).
1942 */
1943 const u8 *resp_ies;
1944
1945 /**
1946 * resp_ies_len - Length of resp_ies in bytes
1947 */
1948 size_t resp_ies_len;
1949
1950 /**
1951 * beacon_ies - Beacon or Probe Response IEs
1952 *
1953 * Optional Beacon/ProbeResp data: IEs included in Beacon or
1954 * Probe Response frames from the current AP (i.e., the one
1955 * that the client just associated with). This information is
1956 * used to update WPA/RSN IE for the AP. If this field is not
1957 * set, the results from previous scan will be used. If no
1958 * data for the new AP is found, scan results will be requested
1959 * again (without scan request). At this point, the driver is
1960 * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
1961 * used).
1962 *
1963 * This should start with the first IE (fixed fields before IEs
1964 * are not included).
1965 */
1966 const u8 *beacon_ies;
1967
1968 /**
1969 * beacon_ies_len - Length of beacon_ies */
1970 size_t beacon_ies_len;
1971
1972 /**
1973 * freq - Frequency of the operational channel in MHz
1974 */
1975 unsigned int freq;
1976
1977 /**
1978 * addr - Station address (for AP mode)
1979 */
1980 const u8 *addr;
1981 } assoc_info;
1982
1983 /**
1984 * struct disassoc_info - Data for EVENT_DISASSOC events
1985 */
1986 struct disassoc_info {
1987 /**
1988 * addr - Station address (for AP mode)
1989 */
1990 const u8 *addr;
1991 } disassoc_info;
1992
1993 /**
1994 * struct deauth_info - Data for EVENT_DEAUTH events
1995 */
1996 struct deauth_info {
1997 /**
1998 * addr - Station address (for AP mode)
1999 */
2000 const u8 *addr;
2001 } deauth_info;
2002
2003 /**
2004 * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
2005 */
2006 struct michael_mic_failure {
2007 int unicast;
2008 const u8 *src;
2009 } michael_mic_failure;
2010
2011 /**
2012 * struct interface_status - Data for EVENT_INTERFACE_STATUS
2013 */
2014 struct interface_status {
2015 char ifname[100];
2016 enum {
2017 EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
2018 } ievent;
2019 } interface_status;
2020
2021 /**
2022 * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
2023 */
2024 struct pmkid_candidate {
2025 /** BSSID of the PMKID candidate */
2026 u8 bssid[ETH_ALEN];
2027 /** Smaller the index, higher the priority */
2028 int index;
2029 /** Whether RSN IE includes pre-authenticate flag */
2030 int preauth;
2031 } pmkid_candidate;
2032
2033 /**
2034 * struct stkstart - Data for EVENT_STKSTART
2035 */
2036 struct stkstart {
2037 u8 peer[ETH_ALEN];
2038 } stkstart;
2039
2040 /**
2041 * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
2042 *
2043 * During FT (IEEE 802.11r) authentication sequence, the driver is
2044 * expected to use this event to report received FT IEs (MDIE, FTIE,
2045 * RSN IE, TIE, possible resource request) to the supplicant. The FT
2046 * IEs for the next message will be delivered through the
2047 * struct wpa_driver_ops::update_ft_ies() callback.
2048 */
2049 struct ft_ies {
2050 const u8 *ies;
2051 size_t ies_len;
2052 int ft_action;
2053 u8 target_ap[ETH_ALEN];
2054 /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
2055 const u8 *ric_ies;
2056 /** Length of ric_ies buffer in octets */
2057 size_t ric_ies_len;
2058 } ft_ies;
2059
2060 /**
2061 * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
2062 */
2063 struct ibss_rsn_start {
2064 u8 peer[ETH_ALEN];
2065 } ibss_rsn_start;
2066
2067 /**
2068 * struct auth_info - Data for EVENT_AUTH events
2069 */
2070 struct auth_info {
2071 u8 peer[ETH_ALEN];
2072 u16 auth_type;
2073 u16 status_code;
2074 const u8 *ies;
2075 size_t ies_len;
2076 } auth;
2077
2078 /**
2079 * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
2080 */
2081 struct assoc_reject {
2082 /**
2083 * resp_ies - (Re)Association Response IEs
2084 *
2085 * Optional association data from the driver. This data is not
2086 * required WPA, but may be useful for some protocols and as
2087 * such, should be reported if this is available to the driver
2088 * interface.
2089 *
2090 * This should start with the first IE (fixed fields before IEs
2091 * are not included).
2092 */
2093 u8 *resp_ies;
2094
2095 /**
2096 * resp_ies_len - Length of resp_ies in bytes
2097 */
2098 size_t resp_ies_len;
2099
2100 /**
2101 * status_code - Status Code from (Re)association Response
2102 */
2103 u16 status_code;
2104 } assoc_reject;
2105
2106 struct timeout_event {
2107 u8 addr[ETH_ALEN];
2108 } timeout_event;
2109
2110 /**
2111 * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
2112 */
2113 struct ft_rrb_rx {
2114 const u8 *src;
2115 const u8 *data;
2116 size_t data_len;
2117 } ft_rrb_rx;
2118
2119 /**
2120 * struct tx_status - Data for EVENT_TX_STATUS events
2121 */
2122 struct tx_status {
2123 u16 type;
2124 u16 stype;
2125 const u8 *dst;
2126 const u8 *data;
2127 size_t data_len;
2128 int ack;
2129 } tx_status;
2130
2131 /**
2132 * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
2133 */
2134 struct rx_from_unknown {
2135 const u8 *frame;
2136 size_t len;
2137 } rx_from_unknown;
2138
2139 /**
2140 * struct rx_mgmt - Data for EVENT_RX_MGMT events
2141 */
2142 struct rx_mgmt {
2143 const u8 *frame;
2144 size_t frame_len;
2145 u32 datarate;
2146 u32 ssi_signal;
2147 } rx_mgmt;
2148
2149 /**
2150 * struct rx_action - Data for EVENT_RX_ACTION events
2151 */
2152 struct rx_action {
2153 /**
2154 * sa - Source address of the received Action frame
2155 */
2156 const u8 *sa;
2157
2158 /**
2159 * category - Action frame category
2160 */
2161 u8 category;
2162
2163 /**
2164 * data - Action frame body after category field
2165 */
2166 const u8 *data;
2167
2168 /**
2169 * len - Length of data in octets
2170 */
2171 size_t len;
2172
2173 /**
2174 * freq - Frequency (in MHz) on which the frame was received
2175 */
2176 int freq;
2177 } rx_action;
2178
2179 /**
2180 * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
2181 *
2182 * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
2183 */
2184 struct remain_on_channel {
2185 /**
2186 * freq - Channel frequency in MHz
2187 */
2188 unsigned int freq;
2189
2190 /**
2191 * duration - Duration to remain on the channel in milliseconds
2192 */
2193 unsigned int duration;
2194 } remain_on_channel;
2195
2196 /**
2197 * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
2198 * @aborted: Whether the scan was aborted
2199 * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
2200 * @num_freqs: Number of entries in freqs array
2201 * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
2202 * SSID)
2203 * @num_ssids: Number of entries in ssids array
2204 */
2205 struct scan_info {
2206 int aborted;
2207 const int *freqs;
2208 size_t num_freqs;
2209 struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
2210 size_t num_ssids;
2211 } scan_info;
2212
2213 /**
2214 * struct mlme_rx - Data for EVENT_MLME_RX events
2215 */
2216 struct mlme_rx {
2217 const u8 *buf;
2218 size_t len;
2219 int freq;
2220 int channel;
2221 int ssi;
2222 } mlme_rx;
2223
2224 /**
2225 * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
2226 */
2227 struct rx_probe_req {
2228 /**
2229 * sa - Source address of the received Probe Request frame
2230 */
2231 const u8 *sa;
2232
2233 /**
2234 * ie - IEs from the Probe Request body
2235 */
2236 const u8 *ie;
2237
2238 /**
2239 * ie_len - Length of ie buffer in octets
2240 */
2241 size_t ie_len;
2242 } rx_probe_req;
2243
2244 /**
2245 * struct new_sta - Data for EVENT_NEW_STA events
2246 */
2247 struct new_sta {
2248 const u8 *addr;
2249 } new_sta;
2250
2251 /**
2252 * struct eapol_rx - Data for EVENT_EAPOL_RX events
2253 */
2254 struct eapol_rx {
2255 const u8 *src;
2256 const u8 *data;
2257 size_t data_len;
2258 } eapol_rx;
2259 };
2260
2261 /**
2262 * wpa_supplicant_event - Report a driver event for wpa_supplicant
2263 * @ctx: Context pointer (wpa_s); this is the ctx variable registered
2264 * with struct wpa_driver_ops::init()
2265 * @event: event type (defined above)
2266 * @data: possible extra data for the event
2267 *
2268 * Driver wrapper code should call this function whenever an event is received
2269 * from the driver.
2270 */
2271 void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
2272 union wpa_event_data *data);
2273
2274 const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie);
2275 const u8 * wpa_scan_get_vendor_ie(const struct wpa_scan_res *res,
2276 u32 vendor_type);
2277 struct wpabuf * wpa_scan_get_vendor_ie_multi(const struct wpa_scan_res *res,
2278 u32 vendor_type);
2279 int wpa_scan_get_max_rate(const struct wpa_scan_res *res);
2280 void wpa_scan_results_free(struct wpa_scan_results *res);
2281 void wpa_scan_sort_results(struct wpa_scan_results *res);
2282
2283
2284 /*
2285 * The following inline functions are provided for convenience to simplify
2286 * event indication for some of the common events.
2287 */
2288
2289 static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie,
2290 size_t ielen)
2291 {
2292 union wpa_event_data event;
2293 os_memset(&event, 0, sizeof(event));
2294 event.assoc_info.req_ies = ie;
2295 event.assoc_info.req_ies_len = ielen;
2296 event.assoc_info.addr = addr;
2297 wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
2298 }
2299
2300 static inline void drv_event_disassoc(void *ctx, const u8 *addr)
2301 {
2302 union wpa_event_data event;
2303 os_memset(&event, 0, sizeof(event));
2304 event.disassoc_info.addr = addr;
2305 wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
2306 }
2307
2308 #endif /* DRIVER_H */