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