Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / wpa / wpa_supplicant / wpa_supplicant_i.h
bloba2e3dd51d7826b22e4de75f4e2732968f1716556
1 /*
2 * wpa_supplicant - Internal definitions
3 * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
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.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #ifndef WPA_SUPPLICANT_I_H
16 #define WPA_SUPPLICANT_I_H
18 #include "drivers/driver.h"
20 struct wpa_scan_result;
21 struct wpa_sm;
22 struct wpa_supplicant;
25 * Forward declarations of private structures used within the ctrl_iface
26 * backends. Other parts of wpa_supplicant do not have access to data stored in
27 * these structures.
29 struct ctrl_iface_priv;
30 struct ctrl_iface_global_priv;
31 struct ctrl_iface_dbus_priv;
33 /**
34 * struct wpa_interface - Parameters for wpa_supplicant_add_iface()
36 struct wpa_interface {
37 /**
38 * confname - Configuration name (file or profile) name
40 * This can also be %NULL when a configuration file is not used. In
41 * that case, ctrl_interface must be set to allow the interface to be
42 * configured.
44 const char *confname;
46 /**
47 * ctrl_interface - Control interface parameter
49 * If a configuration file is not used, this variable can be used to
50 * set the ctrl_interface parameter that would have otherwise been read
51 * from the configuration file. If both confname and ctrl_interface are
52 * set, ctrl_interface is used to override the value from configuration
53 * file.
55 const char *ctrl_interface;
57 /**
58 * driver - Driver interface name, or %NULL to use the default driver
60 const char *driver;
62 /**
63 * driver_param - Driver interface parameters
65 * If a configuration file is not used, this variable can be used to
66 * set the driver_param parameters that would have otherwise been read
67 * from the configuration file. If both confname and driver_param are
68 * set, driver_param is used to override the value from configuration
69 * file.
71 const char *driver_param;
73 /**
74 * ifname - Interface name
76 const char *ifname;
78 /**
79 * bridge_ifname - Optional bridge interface name
81 * If the driver interface (ifname) is included in a Linux bridge
82 * device, the bridge interface may need to be used for receiving EAPOL
83 * frames. This can be enabled by setting this variable to enable
84 * receiving of EAPOL frames from an additional interface.
86 const char *bridge_ifname;
89 /**
90 * struct wpa_params - Parameters for wpa_supplicant_init()
92 struct wpa_params {
93 /**
94 * daemonize - Run %wpa_supplicant in the background
96 int daemonize;
98 /**
99 * wait_for_monitor - Wait for a monitor program before starting
101 int wait_for_monitor;
104 * pid_file - Path to a PID (process ID) file
106 * If this and daemonize are set, process ID of the background process
107 * will be written to the specified file.
109 char *pid_file;
112 * wpa_debug_level - Debugging verbosity level (e.g., MSG_INFO)
114 int wpa_debug_level;
117 * wpa_debug_show_keys - Whether keying material is included in debug
119 * This parameter can be used to allow keying material to be included
120 * in debug messages. This is a security risk and this option should
121 * not be enabled in normal configuration. If needed during
122 * development or while troubleshooting, this option can provide more
123 * details for figuring out what is happening.
125 int wpa_debug_show_keys;
128 * wpa_debug_timestamp - Whether to include timestamp in debug messages
130 int wpa_debug_timestamp;
133 * ctrl_interface - Global ctrl_iface path/parameter
135 char *ctrl_interface;
138 * dbus_ctrl_interface - Enable the DBus control interface
140 int dbus_ctrl_interface;
143 * wpa_debug_file_path - Path of debug file or %NULL to use stdout
145 const char *wpa_debug_file_path;
149 * struct wpa_global - Internal, global data for all %wpa_supplicant interfaces
151 * This structure is initialized by calling wpa_supplicant_init() when starting
152 * %wpa_supplicant.
154 struct wpa_global {
155 struct wpa_supplicant *ifaces;
156 struct wpa_params params;
157 struct ctrl_iface_global_priv *ctrl_iface;
158 struct ctrl_iface_dbus_priv *dbus_ctrl_iface;
162 struct wpa_client_mlme {
163 #ifdef CONFIG_CLIENT_MLME
164 enum {
165 IEEE80211_DISABLED, IEEE80211_AUTHENTICATE,
166 IEEE80211_ASSOCIATE, IEEE80211_ASSOCIATED,
167 IEEE80211_IBSS_SEARCH, IEEE80211_IBSS_JOINED
168 } state;
169 u8 prev_bssid[ETH_ALEN];
170 u8 ssid[32];
171 size_t ssid_len;
172 u16 aid;
173 u16 ap_capab, capab;
174 u8 *extra_ie; /* to be added to the end of AssocReq */
175 size_t extra_ie_len;
176 u8 *extra_probe_ie; /* to be added to the end of ProbeReq */
177 size_t extra_probe_ie_len;
178 wpa_key_mgmt key_mgmt;
180 /* The last AssocReq/Resp IEs */
181 u8 *assocreq_ies, *assocresp_ies;
182 size_t assocreq_ies_len, assocresp_ies_len;
184 int auth_tries, assoc_tries;
186 unsigned int ssid_set:1;
187 unsigned int bssid_set:1;
188 unsigned int prev_bssid_set:1;
189 unsigned int authenticated:1;
190 unsigned int associated:1;
191 unsigned int probereq_poll:1;
192 unsigned int use_protection:1;
193 unsigned int create_ibss:1;
194 unsigned int mixed_cell:1;
195 unsigned int wmm_enabled:1;
197 struct os_time last_probe;
199 #define IEEE80211_AUTH_ALG_OPEN BIT(0)
200 #define IEEE80211_AUTH_ALG_SHARED_KEY BIT(1)
201 #define IEEE80211_AUTH_ALG_LEAP BIT(2)
202 unsigned int auth_algs; /* bitfield of allowed auth algs */
203 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */
204 int auth_transaction;
206 struct os_time ibss_join_req;
207 u8 *probe_resp; /* ProbeResp template for IBSS */
208 size_t probe_resp_len;
209 u32 supp_rates_bits;
211 int wmm_last_param_set;
213 int sta_scanning;
214 int scan_hw_mode_idx;
215 int scan_channel_idx;
216 enum { SCAN_SET_CHANNEL, SCAN_SEND_PROBE } scan_state;
217 struct os_time last_scan_completed;
218 int scan_oper_channel;
219 int scan_oper_freq;
220 int scan_oper_phymode;
221 u8 scan_ssid[32];
222 size_t scan_ssid_len;
223 int scan_skip_11b;
225 struct ieee80211_sta_bss *sta_bss_list;
226 #define STA_HASH_SIZE 256
227 #define STA_HASH(sta) (sta[5])
228 struct ieee80211_sta_bss *sta_bss_hash[STA_HASH_SIZE];
230 int cts_protect_erp_frames;
232 int phymode; /* current mode; WPA_MODE_IEEE80211A, .. */
233 struct wpa_hw_modes *modes;
234 size_t num_modes;
235 unsigned int hw_modes; /* bitfield of allowed hardware modes;
236 * (1 << MODE_*) */
237 int num_curr_rates;
238 struct wpa_rate_data *curr_rates;
239 int freq; /* The current frequency in MHz */
240 int channel; /* The current IEEE 802.11 channel number */
242 #ifdef CONFIG_IEEE80211R
243 u8 current_md[6];
244 u8 *ft_ies;
245 size_t ft_ies_len;
246 #endif /* CONFIG_IEEE80211R */
248 #else /* CONFIG_CLIENT_MLME */
249 int dummy; /* to keep MSVC happy */
250 #endif /* CONFIG_CLIENT_MLME */
254 * struct wpa_supplicant - Internal data for wpa_supplicant interface
256 * This structure contains the internal data for core wpa_supplicant code. This
257 * should be only used directly from the core code. However, a pointer to this
258 * data is used from other files as an arbitrary context pointer in calls to
259 * core functions.
261 struct wpa_supplicant {
262 struct wpa_global *global;
263 struct wpa_supplicant *next;
264 struct l2_packet_data *l2;
265 struct l2_packet_data *l2_br;
266 unsigned char own_addr[ETH_ALEN];
267 char ifname[100];
268 #ifdef CONFIG_CTRL_IFACE_DBUS
269 char *dbus_path;
270 #endif /* CONFIG_CTRL_IFACE_DBUS */
271 char bridge_ifname[16];
273 char *confname;
274 struct wpa_config *conf;
275 int countermeasures;
276 os_time_t last_michael_mic_error;
277 u8 bssid[ETH_ALEN];
278 u8 pending_bssid[ETH_ALEN]; /* If wpa_state == WPA_ASSOCIATING, this
279 * field contains the targer BSSID. */
280 int reassociate; /* reassociation requested */
281 int disconnected; /* all connections disabled; i.e., do no reassociate
282 * before this has been cleared */
283 struct wpa_ssid *current_ssid;
284 int ap_ies_from_associnfo;
286 /* Selected configuration (based on Beacon/ProbeResp WPA IE) */
287 int pairwise_cipher;
288 int group_cipher;
289 int key_mgmt;
290 int mgmt_group_cipher;
292 void *drv_priv; /* private data used by driver_ops */
294 struct wpa_ssid *prev_scan_ssid; /* previously scanned SSID;
295 * NULL = not yet initialized (start
296 * with broadcast SSID)
297 * BROADCAST_SSID_SCAN = broadcast
298 * SSID was used in the previous scan
300 #define BROADCAST_SSID_SCAN ((struct wpa_ssid *) 1)
302 struct wpa_scan_results *scan_res;
304 struct wpa_driver_ops *driver;
305 int interface_removed; /* whether the network interface has been
306 * removed */
307 struct wpa_sm *wpa;
308 struct eapol_sm *eapol;
310 struct ctrl_iface_priv *ctrl_iface;
312 wpa_states wpa_state;
313 int new_connection;
314 int reassociated_connection;
316 int eapol_received; /* number of EAPOL packets received after the
317 * previous association event */
319 struct scard_data *scard;
321 unsigned char last_eapol_src[ETH_ALEN];
323 int keys_cleared;
325 struct wpa_blacklist *blacklist;
327 int scan_req; /* manual scan request; this forces a scan even if there
328 * are no enabled networks in the configuration */
329 int scan_res_tried; /* whether ap_scan=1 mode has tried to fetch scan
330 * results without a new scan request; this is used
331 * to speed up the first association if the driver
332 * has already available scan results. */
334 struct wpa_client_mlme mlme;
335 int use_client_mlme;
336 int driver_4way_handshake;
340 /* wpa_supplicant.c */
341 int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s);
343 const char * wpa_supplicant_state_txt(int state);
344 int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s);
345 int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
346 struct wpa_scan_res *bss,
347 struct wpa_ssid *ssid,
348 u8 *wpa_ie, size_t *wpa_ie_len);
349 void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
350 struct wpa_scan_res *bss,
351 struct wpa_ssid *ssid);
352 void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
353 struct wpa_ssid *ssid);
354 void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s);
355 int wpa_supplicant_get_scan_results(struct wpa_supplicant *wpa_s);
356 void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr);
357 void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
358 int sec, int usec);
359 void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s, wpa_states state);
360 struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s);
361 void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s);
362 void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
363 int reason_code);
364 void wpa_supplicant_disassociate(struct wpa_supplicant *wpa_s,
365 int reason_code);
367 void wpa_show_license(void);
369 struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
370 struct wpa_interface *iface);
371 int wpa_supplicant_remove_iface(struct wpa_global *global,
372 struct wpa_supplicant *wpa_s);
373 struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
374 const char *ifname);
375 struct wpa_global * wpa_supplicant_init(struct wpa_params *params);
376 int wpa_supplicant_run(struct wpa_global *global);
377 void wpa_supplicant_deinit(struct wpa_global *global);
379 int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
380 struct wpa_ssid *ssid);
382 /* scan.c */
383 void wpa_supplicant_req_scan(struct wpa_supplicant *wpa_s, int sec, int usec);
384 void wpa_supplicant_cancel_scan(struct wpa_supplicant *wpa_s);
386 /* events.c */
387 void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s);
389 /* driver_ops */
390 static inline void * wpa_drv_init(struct wpa_supplicant *wpa_s,
391 const char *ifname)
393 if (wpa_s->driver->init) {
394 return wpa_s->driver->init(wpa_s, ifname);
396 return NULL;
399 static inline void wpa_drv_deinit(struct wpa_supplicant *wpa_s)
401 if (wpa_s->driver->deinit)
402 wpa_s->driver->deinit(wpa_s->drv_priv);
405 static inline int wpa_drv_set_param(struct wpa_supplicant *wpa_s,
406 const char *param)
408 if (wpa_s->driver->set_param)
409 return wpa_s->driver->set_param(wpa_s->drv_priv, param);
410 return 0;
413 static inline int wpa_drv_set_drop_unencrypted(struct wpa_supplicant *wpa_s,
414 int enabled)
416 if (wpa_s->driver->set_drop_unencrypted) {
417 return wpa_s->driver->set_drop_unencrypted(wpa_s->drv_priv,
418 enabled);
420 return -1;
423 static inline int wpa_drv_set_countermeasures(struct wpa_supplicant *wpa_s,
424 int enabled)
426 if (wpa_s->driver->set_countermeasures) {
427 return wpa_s->driver->set_countermeasures(wpa_s->drv_priv,
428 enabled);
430 return -1;
433 static inline int wpa_drv_set_auth_alg(struct wpa_supplicant *wpa_s,
434 int auth_alg)
436 if (wpa_s->driver->set_auth_alg) {
437 return wpa_s->driver->set_auth_alg(wpa_s->drv_priv,
438 auth_alg);
440 return -1;
443 static inline int wpa_drv_set_wpa(struct wpa_supplicant *wpa_s, int enabled)
445 if (wpa_s->driver->set_wpa) {
446 return wpa_s->driver->set_wpa(wpa_s->drv_priv, enabled);
448 return 0;
451 static inline int wpa_drv_associate(struct wpa_supplicant *wpa_s,
452 struct wpa_driver_associate_params *params)
454 if (wpa_s->driver->associate) {
455 return wpa_s->driver->associate(wpa_s->drv_priv, params);
457 return -1;
460 static inline int wpa_drv_scan(struct wpa_supplicant *wpa_s, const u8 *ssid,
461 size_t ssid_len)
463 if (wpa_s->driver->scan) {
464 return wpa_s->driver->scan(wpa_s->drv_priv, ssid, ssid_len);
466 return -1;
469 static inline int wpa_drv_get_scan_results(struct wpa_supplicant *wpa_s,
470 struct wpa_scan_result *results,
471 size_t max_size)
473 if (wpa_s->driver->get_scan_results) {
474 return wpa_s->driver->get_scan_results(wpa_s->drv_priv,
475 results, max_size);
477 return -1;
480 static inline struct wpa_scan_results * wpa_drv_get_scan_results2(
481 struct wpa_supplicant *wpa_s)
483 if (wpa_s->driver->get_scan_results2)
484 return wpa_s->driver->get_scan_results2(wpa_s->drv_priv);
485 return NULL;
488 static inline int wpa_drv_get_bssid(struct wpa_supplicant *wpa_s, u8 *bssid)
490 if (wpa_s->driver->get_bssid) {
491 return wpa_s->driver->get_bssid(wpa_s->drv_priv, bssid);
493 return -1;
496 static inline int wpa_drv_get_ssid(struct wpa_supplicant *wpa_s, u8 *ssid)
498 if (wpa_s->driver->get_ssid) {
499 return wpa_s->driver->get_ssid(wpa_s->drv_priv, ssid);
501 return -1;
504 static inline int wpa_drv_set_key(struct wpa_supplicant *wpa_s, wpa_alg alg,
505 const u8 *addr, int key_idx, int set_tx,
506 const u8 *seq, size_t seq_len,
507 const u8 *key, size_t key_len)
509 if (wpa_s->driver->set_key) {
510 wpa_s->keys_cleared = 0;
511 return wpa_s->driver->set_key(wpa_s->drv_priv, alg, addr,
512 key_idx, set_tx, seq, seq_len,
513 key, key_len);
515 return -1;
518 static inline int wpa_drv_deauthenticate(struct wpa_supplicant *wpa_s,
519 const u8 *addr, int reason_code)
521 if (wpa_s->driver->deauthenticate) {
522 return wpa_s->driver->deauthenticate(wpa_s->drv_priv, addr,
523 reason_code);
525 return -1;
528 static inline int wpa_drv_disassociate(struct wpa_supplicant *wpa_s,
529 const u8 *addr, int reason_code)
531 if (wpa_s->driver->disassociate) {
532 return wpa_s->driver->disassociate(wpa_s->drv_priv, addr,
533 reason_code);
535 return -1;
538 static inline int wpa_drv_add_pmkid(struct wpa_supplicant *wpa_s,
539 const u8 *bssid, const u8 *pmkid)
541 if (wpa_s->driver->add_pmkid) {
542 return wpa_s->driver->add_pmkid(wpa_s->drv_priv, bssid, pmkid);
544 return -1;
547 static inline int wpa_drv_remove_pmkid(struct wpa_supplicant *wpa_s,
548 const u8 *bssid, const u8 *pmkid)
550 if (wpa_s->driver->remove_pmkid) {
551 return wpa_s->driver->remove_pmkid(wpa_s->drv_priv, bssid,
552 pmkid);
554 return -1;
557 static inline int wpa_drv_flush_pmkid(struct wpa_supplicant *wpa_s)
559 if (wpa_s->driver->flush_pmkid) {
560 return wpa_s->driver->flush_pmkid(wpa_s->drv_priv);
562 return -1;
565 static inline int wpa_drv_get_capa(struct wpa_supplicant *wpa_s,
566 struct wpa_driver_capa *capa)
568 if (wpa_s->driver->get_capa) {
569 return wpa_s->driver->get_capa(wpa_s->drv_priv, capa);
571 return -1;
574 static inline void wpa_drv_poll(struct wpa_supplicant *wpa_s)
576 if (wpa_s->driver->poll) {
577 wpa_s->driver->poll(wpa_s->drv_priv);
581 static inline const char * wpa_drv_get_ifname(struct wpa_supplicant *wpa_s)
583 if (wpa_s->driver->get_ifname) {
584 return wpa_s->driver->get_ifname(wpa_s->drv_priv);
586 return NULL;
589 static inline const u8 * wpa_drv_get_mac_addr(struct wpa_supplicant *wpa_s)
591 if (wpa_s->driver->get_mac_addr) {
592 return wpa_s->driver->get_mac_addr(wpa_s->drv_priv);
594 return NULL;
597 static inline int wpa_drv_send_eapol(struct wpa_supplicant *wpa_s,
598 const u8 *dst, u16 proto,
599 const u8 *data, size_t data_len)
601 if (wpa_s->driver->send_eapol)
602 return wpa_s->driver->send_eapol(wpa_s->drv_priv, dst, proto,
603 data, data_len);
604 return -1;
607 static inline int wpa_drv_set_operstate(struct wpa_supplicant *wpa_s,
608 int state)
610 if (wpa_s->driver->set_operstate)
611 return wpa_s->driver->set_operstate(wpa_s->drv_priv, state);
612 return 0;
615 static inline int wpa_drv_mlme_setprotection(struct wpa_supplicant *wpa_s,
616 const u8 *addr, int protect_type,
617 int key_type)
619 if (wpa_s->driver->mlme_setprotection)
620 return wpa_s->driver->mlme_setprotection(wpa_s->drv_priv, addr,
621 protect_type,
622 key_type);
623 return 0;
626 static inline struct wpa_hw_modes *
627 wpa_drv_get_hw_feature_data(struct wpa_supplicant *wpa_s, u16 *num_modes,
628 u16 *flags)
630 if (wpa_s->driver->get_hw_feature_data)
631 return wpa_s->driver->get_hw_feature_data(wpa_s->drv_priv,
632 num_modes, flags);
633 return NULL;
636 static inline int wpa_drv_set_channel(struct wpa_supplicant *wpa_s,
637 wpa_hw_mode phymode, int chan,
638 int freq)
640 if (wpa_s->driver->set_channel)
641 return wpa_s->driver->set_channel(wpa_s->drv_priv, phymode,
642 chan, freq);
643 return -1;
646 static inline int wpa_drv_set_ssid(struct wpa_supplicant *wpa_s,
647 const u8 *ssid, size_t ssid_len)
649 if (wpa_s->driver->set_ssid) {
650 return wpa_s->driver->set_ssid(wpa_s->drv_priv, ssid,
651 ssid_len);
653 return -1;
656 static inline int wpa_drv_set_bssid(struct wpa_supplicant *wpa_s,
657 const u8 *bssid)
659 if (wpa_s->driver->set_bssid) {
660 return wpa_s->driver->set_bssid(wpa_s->drv_priv, bssid);
662 return -1;
665 static inline int wpa_drv_send_mlme(struct wpa_supplicant *wpa_s,
666 const u8 *data, size_t data_len)
668 if (wpa_s->driver->send_mlme)
669 return wpa_s->driver->send_mlme(wpa_s->drv_priv,
670 data, data_len);
671 return -1;
674 static inline int wpa_drv_mlme_add_sta(struct wpa_supplicant *wpa_s,
675 const u8 *addr, const u8 *supp_rates,
676 size_t supp_rates_len)
678 if (wpa_s->driver->mlme_add_sta)
679 return wpa_s->driver->mlme_add_sta(wpa_s->drv_priv, addr,
680 supp_rates, supp_rates_len);
681 return -1;
684 static inline int wpa_drv_mlme_remove_sta(struct wpa_supplicant *wpa_s,
685 const u8 *addr)
687 if (wpa_s->driver->mlme_remove_sta)
688 return wpa_s->driver->mlme_remove_sta(wpa_s->drv_priv, addr);
689 return -1;
692 static inline int wpa_drv_update_ft_ies(struct wpa_supplicant *wpa_s,
693 const u8 *md,
694 const u8 *ies, size_t ies_len)
696 if (wpa_s->driver->update_ft_ies)
697 return wpa_s->driver->update_ft_ies(wpa_s->drv_priv, md,
698 ies, ies_len);
699 return -1;
702 static inline int wpa_drv_send_ft_action(struct wpa_supplicant *wpa_s,
703 u8 action, const u8 *target_ap,
704 const u8 *ies, size_t ies_len)
706 if (wpa_s->driver->send_ft_action)
707 return wpa_s->driver->send_ft_action(wpa_s->drv_priv, action,
708 target_ap, ies, ies_len);
709 return -1;
712 static inline int wpa_drv_set_probe_req_ie(struct wpa_supplicant *wpa_s,
713 const u8 *ies, size_t ies_len)
715 if (wpa_s->driver->set_probe_req_ie)
716 return wpa_s->driver->set_probe_req_ie(wpa_s->drv_priv, ies,
717 ies_len);
718 return -1;
721 #endif /* WPA_SUPPLICANT_I_H */