wpa_supplicant_i.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. /*
  2. * wpa_supplicant - Internal definitions
  3. * Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef WPA_SUPPLICANT_I_H
  15. #define WPA_SUPPLICANT_I_H
  16. #include "utils/list.h"
  17. #include "common/defs.h"
  18. extern const char *wpa_supplicant_version;
  19. extern const char *wpa_supplicant_license;
  20. #ifndef CONFIG_NO_STDOUT_DEBUG
  21. extern const char *wpa_supplicant_full_license1;
  22. extern const char *wpa_supplicant_full_license2;
  23. extern const char *wpa_supplicant_full_license3;
  24. extern const char *wpa_supplicant_full_license4;
  25. extern const char *wpa_supplicant_full_license5;
  26. #endif /* CONFIG_NO_STDOUT_DEBUG */
  27. struct wpa_sm;
  28. struct wpa_supplicant;
  29. struct ibss_rsn;
  30. struct scan_info;
  31. struct wpa_bss;
  32. struct wpa_scan_results;
  33. struct hostapd_hw_modes;
  34. /*
  35. * Forward declarations of private structures used within the ctrl_iface
  36. * backends. Other parts of wpa_supplicant do not have access to data stored in
  37. * these structures.
  38. */
  39. struct ctrl_iface_priv;
  40. struct ctrl_iface_global_priv;
  41. struct wpas_dbus_priv;
  42. /**
  43. * struct wpa_interface - Parameters for wpa_supplicant_add_iface()
  44. */
  45. struct wpa_interface {
  46. /**
  47. * confname - Configuration name (file or profile) name
  48. *
  49. * This can also be %NULL when a configuration file is not used. In
  50. * that case, ctrl_interface must be set to allow the interface to be
  51. * configured.
  52. */
  53. const char *confname;
  54. /**
  55. * ctrl_interface - Control interface parameter
  56. *
  57. * If a configuration file is not used, this variable can be used to
  58. * set the ctrl_interface parameter that would have otherwise been read
  59. * from the configuration file. If both confname and ctrl_interface are
  60. * set, ctrl_interface is used to override the value from configuration
  61. * file.
  62. */
  63. const char *ctrl_interface;
  64. /**
  65. * driver - Driver interface name, or %NULL to use the default driver
  66. */
  67. const char *driver;
  68. /**
  69. * driver_param - Driver interface parameters
  70. *
  71. * If a configuration file is not used, this variable can be used to
  72. * set the driver_param parameters that would have otherwise been read
  73. * from the configuration file. If both confname and driver_param are
  74. * set, driver_param is used to override the value from configuration
  75. * file.
  76. */
  77. const char *driver_param;
  78. /**
  79. * ifname - Interface name
  80. */
  81. const char *ifname;
  82. /**
  83. * bridge_ifname - Optional bridge interface name
  84. *
  85. * If the driver interface (ifname) is included in a Linux bridge
  86. * device, the bridge interface may need to be used for receiving EAPOL
  87. * frames. This can be enabled by setting this variable to enable
  88. * receiving of EAPOL frames from an additional interface.
  89. */
  90. const char *bridge_ifname;
  91. };
  92. /**
  93. * struct wpa_params - Parameters for wpa_supplicant_init()
  94. */
  95. struct wpa_params {
  96. /**
  97. * daemonize - Run %wpa_supplicant in the background
  98. */
  99. int daemonize;
  100. /**
  101. * wait_for_monitor - Wait for a monitor program before starting
  102. */
  103. int wait_for_monitor;
  104. /**
  105. * pid_file - Path to a PID (process ID) file
  106. *
  107. * If this and daemonize are set, process ID of the background process
  108. * will be written to the specified file.
  109. */
  110. char *pid_file;
  111. /**
  112. * wpa_debug_level - Debugging verbosity level (e.g., MSG_INFO)
  113. */
  114. int wpa_debug_level;
  115. /**
  116. * wpa_debug_show_keys - Whether keying material is included in debug
  117. *
  118. * This parameter can be used to allow keying material to be included
  119. * in debug messages. This is a security risk and this option should
  120. * not be enabled in normal configuration. If needed during
  121. * development or while troubleshooting, this option can provide more
  122. * details for figuring out what is happening.
  123. */
  124. int wpa_debug_show_keys;
  125. /**
  126. * wpa_debug_timestamp - Whether to include timestamp in debug messages
  127. */
  128. int wpa_debug_timestamp;
  129. /**
  130. * ctrl_interface - Global ctrl_iface path/parameter
  131. */
  132. char *ctrl_interface;
  133. /**
  134. * dbus_ctrl_interface - Enable the DBus control interface
  135. */
  136. int dbus_ctrl_interface;
  137. /**
  138. * wpa_debug_file_path - Path of debug file or %NULL to use stdout
  139. */
  140. const char *wpa_debug_file_path;
  141. /**
  142. * wpa_debug_syslog - Enable log output through syslog
  143. */
  144. int wpa_debug_syslog;
  145. /**
  146. * override_driver - Optional driver parameter override
  147. *
  148. * This parameter can be used to override the driver parameter in
  149. * dynamic interface addition to force a specific driver wrapper to be
  150. * used instead.
  151. */
  152. char *override_driver;
  153. /**
  154. * override_ctrl_interface - Optional ctrl_interface override
  155. *
  156. * This parameter can be used to override the ctrl_interface parameter
  157. * in dynamic interface addition to force a control interface to be
  158. * created.
  159. */
  160. char *override_ctrl_interface;
  161. /**
  162. * entropy_file - Optional entropy file
  163. *
  164. * This parameter can be used to configure wpa_supplicant to maintain
  165. * its internal entropy store over restarts.
  166. */
  167. char *entropy_file;
  168. };
  169. struct p2p_srv_bonjour {
  170. struct dl_list list;
  171. struct wpabuf *query;
  172. struct wpabuf *resp;
  173. };
  174. struct p2p_srv_upnp {
  175. struct dl_list list;
  176. u8 version;
  177. char *service;
  178. };
  179. /**
  180. * struct wpa_global - Internal, global data for all %wpa_supplicant interfaces
  181. *
  182. * This structure is initialized by calling wpa_supplicant_init() when starting
  183. * %wpa_supplicant.
  184. */
  185. struct wpa_global {
  186. struct wpa_supplicant *ifaces;
  187. struct wpa_params params;
  188. struct ctrl_iface_global_priv *ctrl_iface;
  189. struct wpas_dbus_priv *dbus;
  190. void **drv_priv;
  191. size_t drv_count;
  192. struct os_time suspend_time;
  193. struct p2p_data *p2p;
  194. struct wpa_supplicant *p2p_group_formation;
  195. u8 p2p_dev_addr[ETH_ALEN];
  196. struct dl_list p2p_srv_bonjour; /* struct p2p_srv_bonjour */
  197. struct dl_list p2p_srv_upnp; /* struct p2p_srv_upnp */
  198. int p2p_disabled;
  199. int cross_connection;
  200. };
  201. struct wpa_client_mlme {
  202. #ifdef CONFIG_CLIENT_MLME
  203. enum {
  204. IEEE80211_DISABLED, IEEE80211_AUTHENTICATE,
  205. IEEE80211_ASSOCIATE, IEEE80211_ASSOCIATED,
  206. IEEE80211_IBSS_SEARCH, IEEE80211_IBSS_JOINED
  207. } state;
  208. u8 prev_bssid[ETH_ALEN];
  209. u8 ssid[32];
  210. size_t ssid_len;
  211. u16 aid;
  212. u16 ap_capab, capab;
  213. u8 *extra_ie; /* to be added to the end of AssocReq */
  214. size_t extra_ie_len;
  215. u8 *extra_probe_ie; /* to be added to the end of ProbeReq */
  216. size_t extra_probe_ie_len;
  217. enum wpa_key_mgmt key_mgmt;
  218. /* The last AssocReq/Resp IEs */
  219. u8 *assocreq_ies, *assocresp_ies;
  220. size_t assocreq_ies_len, assocresp_ies_len;
  221. int auth_tries, assoc_tries;
  222. unsigned int ssid_set:1;
  223. unsigned int bssid_set:1;
  224. unsigned int prev_bssid_set:1;
  225. unsigned int authenticated:1;
  226. unsigned int associated:1;
  227. unsigned int probereq_poll:1;
  228. unsigned int use_protection:1;
  229. unsigned int create_ibss:1;
  230. unsigned int mixed_cell:1;
  231. unsigned int wmm_enabled:1;
  232. struct os_time last_probe;
  233. unsigned int auth_algs; /* bitfield of allowed auth algs
  234. * (WPA_AUTH_ALG_*) */
  235. int auth_alg; /* currently used IEEE 802.11 authentication algorithm */
  236. int auth_transaction;
  237. struct os_time ibss_join_req;
  238. u8 *probe_resp; /* ProbeResp template for IBSS */
  239. size_t probe_resp_len;
  240. u32 supp_rates_bits;
  241. int wmm_last_param_set;
  242. int sta_scanning;
  243. int scan_hw_mode_idx;
  244. int scan_channel_idx;
  245. enum { SCAN_SET_CHANNEL, SCAN_SEND_PROBE } scan_state;
  246. struct os_time last_scan_completed;
  247. int scan_oper_channel;
  248. int scan_oper_freq;
  249. int scan_oper_phymode;
  250. u8 scan_ssid[32];
  251. size_t scan_ssid_len;
  252. int scan_skip_11b;
  253. int *scan_freqs;
  254. struct ieee80211_sta_bss *sta_bss_list;
  255. #define STA_HASH_SIZE 256
  256. #define STA_HASH(sta) (sta[5])
  257. struct ieee80211_sta_bss *sta_bss_hash[STA_HASH_SIZE];
  258. int cts_protect_erp_frames;
  259. enum hostapd_hw_mode phymode; /* current mode */
  260. struct hostapd_hw_modes *modes;
  261. size_t num_modes;
  262. unsigned int hw_modes; /* bitfield of allowed hardware modes;
  263. * (1 << HOSTAPD_MODE_*) */
  264. int num_curr_rates;
  265. int *curr_rates;
  266. int freq; /* The current frequency in MHz */
  267. int channel; /* The current IEEE 802.11 channel number */
  268. #ifdef CONFIG_IEEE80211R
  269. u8 current_md[6];
  270. u8 *ft_ies;
  271. size_t ft_ies_len;
  272. #endif /* CONFIG_IEEE80211R */
  273. void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
  274. int freq);
  275. void *public_action_cb_ctx;
  276. #else /* CONFIG_CLIENT_MLME */
  277. int dummy; /* to keep MSVC happy */
  278. #endif /* CONFIG_CLIENT_MLME */
  279. };
  280. /**
  281. * struct wpa_supplicant - Internal data for wpa_supplicant interface
  282. *
  283. * This structure contains the internal data for core wpa_supplicant code. This
  284. * should be only used directly from the core code. However, a pointer to this
  285. * data is used from other files as an arbitrary context pointer in calls to
  286. * core functions.
  287. */
  288. struct wpa_supplicant {
  289. struct wpa_global *global;
  290. struct wpa_supplicant *parent;
  291. struct wpa_supplicant *next;
  292. struct l2_packet_data *l2;
  293. struct l2_packet_data *l2_br;
  294. unsigned char own_addr[ETH_ALEN];
  295. char ifname[100];
  296. #ifdef CONFIG_CTRL_IFACE_DBUS
  297. char *dbus_path;
  298. #endif /* CONFIG_CTRL_IFACE_DBUS */
  299. #ifdef CONFIG_CTRL_IFACE_DBUS_NEW
  300. char *dbus_new_path;
  301. #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */
  302. char bridge_ifname[16];
  303. char *confname;
  304. struct wpa_config *conf;
  305. int countermeasures;
  306. os_time_t last_michael_mic_error;
  307. u8 bssid[ETH_ALEN];
  308. u8 pending_bssid[ETH_ALEN]; /* If wpa_state == WPA_ASSOCIATING, this
  309. * field contains the targer BSSID. */
  310. int reassociate; /* reassociation requested */
  311. int disconnected; /* all connections disabled; i.e., do no reassociate
  312. * before this has been cleared */
  313. struct wpa_ssid *current_ssid;
  314. struct wpa_bss *current_bss;
  315. int ap_ies_from_associnfo;
  316. unsigned int assoc_freq;
  317. /* Selected configuration (based on Beacon/ProbeResp WPA IE) */
  318. int pairwise_cipher;
  319. int group_cipher;
  320. int key_mgmt;
  321. int mgmt_group_cipher;
  322. void *drv_priv; /* private data used by driver_ops */
  323. void *global_drv_priv;
  324. struct wpa_ssid *prev_scan_ssid; /* previously scanned SSID;
  325. * NULL = not yet initialized (start
  326. * with wildcard SSID)
  327. * WILDCARD_SSID_SCAN = wildcard
  328. * SSID was used in the previous scan
  329. */
  330. #define WILDCARD_SSID_SCAN ((struct wpa_ssid *) 1)
  331. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  332. struct wpa_scan_results *scan_res);
  333. struct dl_list bss; /* struct wpa_bss::list */
  334. struct dl_list bss_id; /* struct wpa_bss::list_id */
  335. size_t num_bss;
  336. unsigned int bss_update_idx;
  337. unsigned int bss_next_id;
  338. struct wpa_driver_ops *driver;
  339. int interface_removed; /* whether the network interface has been
  340. * removed */
  341. struct wpa_sm *wpa;
  342. struct eapol_sm *eapol;
  343. struct ctrl_iface_priv *ctrl_iface;
  344. enum wpa_states wpa_state;
  345. int scanning;
  346. int new_connection;
  347. int reassociated_connection;
  348. int eapol_received; /* number of EAPOL packets received after the
  349. * previous association event */
  350. struct scard_data *scard;
  351. unsigned char last_eapol_src[ETH_ALEN];
  352. int keys_cleared;
  353. struct wpa_blacklist *blacklist;
  354. int scan_req; /* manual scan request; this forces a scan even if there
  355. * are no enabled networks in the configuration */
  356. int scan_runs; /* number of scan runs since WPS was started */
  357. int *next_scan_freqs;
  358. int scan_interval; /* time in sec between scans to find suitable AP */
  359. struct wpa_client_mlme mlme;
  360. unsigned int drv_flags;
  361. int max_scan_ssids;
  362. unsigned int max_remain_on_chan;
  363. unsigned int max_stations;
  364. int pending_mic_error_report;
  365. int pending_mic_error_pairwise;
  366. int mic_errors_seen; /* Michael MIC errors with the current PTK */
  367. struct wps_context *wps;
  368. int wps_success; /* WPS success event received */
  369. struct wps_er *wps_er;
  370. int blacklist_cleared;
  371. struct wpabuf *pending_eapol_rx;
  372. struct os_time pending_eapol_rx_time;
  373. u8 pending_eapol_rx_src[ETH_ALEN];
  374. struct ibss_rsn *ibss_rsn;
  375. int set_sta_uapsd;
  376. int sta_uapsd;
  377. int set_ap_uapsd;
  378. int ap_uapsd;
  379. #ifdef CONFIG_SME
  380. struct {
  381. u8 ssid[32];
  382. size_t ssid_len;
  383. int freq;
  384. u8 assoc_req_ie[200];
  385. size_t assoc_req_ie_len;
  386. int mfp;
  387. int ft_used;
  388. u8 mobility_domain[2];
  389. u8 *ft_ies;
  390. size_t ft_ies_len;
  391. u8 prev_bssid[ETH_ALEN];
  392. int prev_bssid_set;
  393. int auth_alg;
  394. int sa_query_count; /* number of pending SA Query requests;
  395. * 0 = no SA Query in progress */
  396. int sa_query_timed_out;
  397. u8 *sa_query_trans_id; /* buffer of WLAN_SA_QUERY_TR_ID_LEN *
  398. * sa_query_count octets of pending
  399. * SA Query transaction identifiers */
  400. struct os_time sa_query_start;
  401. } sme;
  402. #endif /* CONFIG_SME */
  403. #ifdef CONFIG_AP
  404. struct hostapd_iface *ap_iface;
  405. void (*ap_configured_cb)(void *ctx, void *data);
  406. void *ap_configured_cb_ctx;
  407. void *ap_configured_cb_data;
  408. #endif /* CONFIG_AP */
  409. #ifdef CONFIG_P2P
  410. struct p2p_go_neg_results *go_params;
  411. int create_p2p_iface;
  412. u8 pending_interface_addr[ETH_ALEN];
  413. char pending_interface_name[100];
  414. int pending_interface_type;
  415. int p2p_group_idx;
  416. unsigned int off_channel_freq;
  417. struct wpabuf *pending_action_tx;
  418. u8 pending_action_src[ETH_ALEN];
  419. u8 pending_action_dst[ETH_ALEN];
  420. u8 pending_action_bssid[ETH_ALEN];
  421. unsigned int pending_action_freq;
  422. int pending_action_without_roc;
  423. unsigned int pending_listen_freq;
  424. unsigned int pending_listen_duration;
  425. enum {
  426. NOT_P2P_GROUP_INTERFACE,
  427. P2P_GROUP_INTERFACE_PENDING,
  428. P2P_GROUP_INTERFACE_GO,
  429. P2P_GROUP_INTERFACE_CLIENT
  430. } p2p_group_interface;
  431. struct p2p_group *p2p_group;
  432. int p2p_long_listen; /* remaining time in long Listen state in ms */
  433. char p2p_pin[10];
  434. int p2p_wps_method;
  435. u8 p2p_auth_invite[ETH_ALEN];
  436. int p2p_sd_over_ctrl_iface;
  437. int p2p_in_provisioning;
  438. int pending_invite_ssid_id;
  439. int show_group_started;
  440. u8 go_dev_addr[ETH_ALEN];
  441. int pending_pd_before_join;
  442. u8 pending_join_iface_addr[ETH_ALEN];
  443. u8 pending_join_dev_addr[ETH_ALEN];
  444. int pending_join_wps_method;
  445. int p2p_join_scan_count;
  446. unsigned int roc_waiting_drv_freq;
  447. int action_tx_wait_time;
  448. int force_long_sd;
  449. /*
  450. * Whether cross connection is disallowed by the AP to which this
  451. * interface is associated (only valid if there is an association).
  452. */
  453. int cross_connect_disallowed;
  454. /*
  455. * Whether this P2P group is configured to use cross connection (only
  456. * valid if this is P2P GO interface). The actual cross connect packet
  457. * forwarding may not be configured depending on the uplink status.
  458. */
  459. int cross_connect_enabled;
  460. /* Whether cross connection forwarding is in use at the moment. */
  461. int cross_connect_in_use;
  462. /*
  463. * Uplink interface name for cross connection
  464. */
  465. char cross_connect_uplink[100];
  466. enum {
  467. P2P_GROUP_REMOVAL_UNKNOWN,
  468. P2P_GROUP_REMOVAL_REQUESTED,
  469. P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
  470. P2P_GROUP_REMOVAL_UNAVAILABLE
  471. } removal_reason;
  472. #endif /* CONFIG_P2P */
  473. struct wpa_ssid *bgscan_ssid;
  474. const struct bgscan_ops *bgscan;
  475. void *bgscan_priv;
  476. int connect_without_scan;
  477. int after_wps;
  478. unsigned int wps_freq;
  479. int wps_fragment_size;
  480. int auto_reconnect_disabled;
  481. /* Channel preferences for AP/P2P GO use */
  482. int best_24_freq;
  483. int best_5_freq;
  484. int best_overall_freq;
  485. };
  486. /* wpa_supplicant.c */
  487. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  488. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s);
  489. const char * wpa_supplicant_state_txt(enum wpa_states state);
  490. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s);
  491. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  492. struct wpa_bss *bss, struct wpa_ssid *ssid,
  493. u8 *wpa_ie, size_t *wpa_ie_len);
  494. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  495. struct wpa_bss *bss,
  496. struct wpa_ssid *ssid);
  497. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  498. struct wpa_ssid *ssid);
  499. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s);
  500. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr);
  501. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  502. int sec, int usec);
  503. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  504. enum wpa_states state);
  505. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s);
  506. const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s);
  507. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s);
  508. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  509. int reason_code);
  510. void wpa_supplicant_disassociate(struct wpa_supplicant *wpa_s,
  511. int reason_code);
  512. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  513. struct wpa_ssid *ssid);
  514. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  515. struct wpa_ssid *ssid);
  516. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  517. struct wpa_ssid *ssid);
  518. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s,
  519. int ap_scan);
  520. int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
  521. unsigned int expire_age);
  522. int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
  523. unsigned int expire_count);
  524. int wpa_supplicant_set_debug_params(struct wpa_global *global,
  525. int debug_level, int debug_timestamp,
  526. int debug_show_keys);
  527. void wpa_show_license(void);
  528. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  529. struct wpa_interface *iface);
  530. int wpa_supplicant_remove_iface(struct wpa_global *global,
  531. struct wpa_supplicant *wpa_s);
  532. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  533. const char *ifname);
  534. struct wpa_global * wpa_supplicant_init(struct wpa_params *params);
  535. int wpa_supplicant_run(struct wpa_global *global);
  536. void wpa_supplicant_deinit(struct wpa_global *global);
  537. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  538. struct wpa_ssid *ssid);
  539. void wpa_supplicant_terminate_proc(struct wpa_global *global);
  540. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  541. const u8 *buf, size_t len);
  542. enum wpa_key_mgmt key_mgmt2driver(int key_mgmt);
  543. enum wpa_cipher cipher_suite2driver(int cipher);
  544. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s);
  545. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s);
  546. void ieee80211_sta_free_hw_features(struct hostapd_hw_modes *hw_features,
  547. size_t num_hw_features);
  548. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid);
  549. /* events.c */
  550. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s);
  551. void wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  552. struct wpa_bss *selected,
  553. struct wpa_ssid *ssid);
  554. /* eap_register.c */
  555. int eap_register_methods(void);
  556. #endif /* WPA_SUPPLICANT_I_H */