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