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