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 software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef WPA_SUPPLICANT_I_H
  9. #define WPA_SUPPLICANT_I_H
  10. #include "utils/list.h"
  11. #include "common/defs.h"
  12. #include "config_ssid.h"
  13. extern const char *wpa_supplicant_version;
  14. extern const char *wpa_supplicant_license;
  15. #ifndef CONFIG_NO_STDOUT_DEBUG
  16. extern const char *wpa_supplicant_full_license1;
  17. extern const char *wpa_supplicant_full_license2;
  18. extern const char *wpa_supplicant_full_license3;
  19. extern const char *wpa_supplicant_full_license4;
  20. extern const char *wpa_supplicant_full_license5;
  21. #endif /* CONFIG_NO_STDOUT_DEBUG */
  22. struct wpa_sm;
  23. struct wpa_supplicant;
  24. struct ibss_rsn;
  25. struct scan_info;
  26. struct wpa_bss;
  27. struct wpa_scan_results;
  28. struct hostapd_hw_modes;
  29. struct wpa_driver_associate_params;
  30. /*
  31. * Forward declarations of private structures used within the ctrl_iface
  32. * backends. Other parts of wpa_supplicant do not have access to data stored in
  33. * these structures.
  34. */
  35. struct ctrl_iface_priv;
  36. struct ctrl_iface_global_priv;
  37. struct wpas_dbus_priv;
  38. /**
  39. * struct wpa_interface - Parameters for wpa_supplicant_add_iface()
  40. */
  41. struct wpa_interface {
  42. /**
  43. * confname - Configuration name (file or profile) name
  44. *
  45. * This can also be %NULL when a configuration file is not used. In
  46. * that case, ctrl_interface must be set to allow the interface to be
  47. * configured.
  48. */
  49. const char *confname;
  50. /**
  51. * ctrl_interface - Control interface parameter
  52. *
  53. * If a configuration file is not used, this variable can be used to
  54. * set the ctrl_interface parameter that would have otherwise been read
  55. * from the configuration file. If both confname and ctrl_interface are
  56. * set, ctrl_interface is used to override the value from configuration
  57. * file.
  58. */
  59. const char *ctrl_interface;
  60. /**
  61. * driver - Driver interface name, or %NULL to use the default driver
  62. */
  63. const char *driver;
  64. /**
  65. * driver_param - Driver interface parameters
  66. *
  67. * If a configuration file is not used, this variable can be used to
  68. * set the driver_param parameters that would have otherwise been read
  69. * from the configuration file. If both confname and driver_param are
  70. * set, driver_param is used to override the value from configuration
  71. * file.
  72. */
  73. const char *driver_param;
  74. /**
  75. * ifname - Interface name
  76. */
  77. const char *ifname;
  78. /**
  79. * bridge_ifname - Optional bridge interface name
  80. *
  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.
  85. */
  86. const char *bridge_ifname;
  87. };
  88. /**
  89. * struct wpa_params - Parameters for wpa_supplicant_init()
  90. */
  91. struct wpa_params {
  92. /**
  93. * daemonize - Run %wpa_supplicant in the background
  94. */
  95. int daemonize;
  96. /**
  97. * wait_for_monitor - Wait for a monitor program before starting
  98. */
  99. int wait_for_monitor;
  100. /**
  101. * pid_file - Path to a PID (process ID) file
  102. *
  103. * If this and daemonize are set, process ID of the background process
  104. * will be written to the specified file.
  105. */
  106. char *pid_file;
  107. /**
  108. * wpa_debug_level - Debugging verbosity level (e.g., MSG_INFO)
  109. */
  110. int wpa_debug_level;
  111. /**
  112. * wpa_debug_show_keys - Whether keying material is included in debug
  113. *
  114. * This parameter can be used to allow keying material to be included
  115. * in debug messages. This is a security risk and this option should
  116. * not be enabled in normal configuration. If needed during
  117. * development or while troubleshooting, this option can provide more
  118. * details for figuring out what is happening.
  119. */
  120. int wpa_debug_show_keys;
  121. /**
  122. * wpa_debug_timestamp - Whether to include timestamp in debug messages
  123. */
  124. int wpa_debug_timestamp;
  125. /**
  126. * ctrl_interface - Global ctrl_iface path/parameter
  127. */
  128. char *ctrl_interface;
  129. /**
  130. * dbus_ctrl_interface - Enable the DBus control interface
  131. */
  132. int dbus_ctrl_interface;
  133. /**
  134. * wpa_debug_file_path - Path of debug file or %NULL to use stdout
  135. */
  136. const char *wpa_debug_file_path;
  137. /**
  138. * wpa_debug_syslog - Enable log output through syslog
  139. */
  140. int wpa_debug_syslog;
  141. /**
  142. * wpa_debug_tracing - Enable log output through Linux tracing
  143. */
  144. int wpa_debug_tracing;
  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. struct wpa_freq_range {
  180. unsigned int min;
  181. unsigned int max;
  182. };
  183. /**
  184. * struct wpa_global - Internal, global data for all %wpa_supplicant interfaces
  185. *
  186. * This structure is initialized by calling wpa_supplicant_init() when starting
  187. * %wpa_supplicant.
  188. */
  189. struct wpa_global {
  190. struct wpa_supplicant *ifaces;
  191. struct wpa_params params;
  192. struct ctrl_iface_global_priv *ctrl_iface;
  193. struct wpas_dbus_priv *dbus;
  194. void **drv_priv;
  195. size_t drv_count;
  196. struct os_time suspend_time;
  197. struct p2p_data *p2p;
  198. struct wpa_supplicant *p2p_group_formation;
  199. u8 p2p_dev_addr[ETH_ALEN];
  200. struct dl_list p2p_srv_bonjour; /* struct p2p_srv_bonjour */
  201. struct dl_list p2p_srv_upnp; /* struct p2p_srv_upnp */
  202. int p2p_disabled;
  203. int cross_connection;
  204. struct wpa_freq_range *p2p_disallow_freq;
  205. unsigned int num_p2p_disallow_freq;
  206. };
  207. enum offchannel_send_action_result {
  208. OFFCHANNEL_SEND_ACTION_SUCCESS /* Frame was send and acknowledged */,
  209. OFFCHANNEL_SEND_ACTION_NO_ACK /* Frame was sent, but not acknowledged
  210. */,
  211. OFFCHANNEL_SEND_ACTION_FAILED /* Frame was not sent due to a failure */
  212. };
  213. /**
  214. * struct wpa_supplicant - Internal data for wpa_supplicant interface
  215. *
  216. * This structure contains the internal data for core wpa_supplicant code. This
  217. * should be only used directly from the core code. However, a pointer to this
  218. * data is used from other files as an arbitrary context pointer in calls to
  219. * core functions.
  220. */
  221. struct wpa_supplicant {
  222. struct wpa_global *global;
  223. struct wpa_supplicant *parent;
  224. struct wpa_supplicant *next;
  225. struct l2_packet_data *l2;
  226. struct l2_packet_data *l2_br;
  227. unsigned char own_addr[ETH_ALEN];
  228. char ifname[100];
  229. #ifdef CONFIG_CTRL_IFACE_DBUS
  230. char *dbus_path;
  231. #endif /* CONFIG_CTRL_IFACE_DBUS */
  232. #ifdef CONFIG_CTRL_IFACE_DBUS_NEW
  233. char *dbus_new_path;
  234. char *dbus_groupobj_path;
  235. #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */
  236. char bridge_ifname[16];
  237. char *confname;
  238. struct wpa_config *conf;
  239. int countermeasures;
  240. os_time_t last_michael_mic_error;
  241. u8 bssid[ETH_ALEN];
  242. u8 pending_bssid[ETH_ALEN]; /* If wpa_state == WPA_ASSOCIATING, this
  243. * field contains the target BSSID. */
  244. int reassociate; /* reassociation requested */
  245. int disconnected; /* all connections disabled; i.e., do no reassociate
  246. * before this has been cleared */
  247. struct wpa_ssid *current_ssid;
  248. struct wpa_bss *current_bss;
  249. int ap_ies_from_associnfo;
  250. unsigned int assoc_freq;
  251. /* Selected configuration (based on Beacon/ProbeResp WPA IE) */
  252. int pairwise_cipher;
  253. int group_cipher;
  254. int key_mgmt;
  255. int wpa_proto;
  256. int mgmt_group_cipher;
  257. void *drv_priv; /* private data used by driver_ops */
  258. void *global_drv_priv;
  259. u8 *bssid_filter;
  260. size_t bssid_filter_count;
  261. /* previous scan was wildcard when interleaving between
  262. * wildcard scans and specific SSID scan when max_ssids=1 */
  263. int prev_scan_wildcard;
  264. struct wpa_ssid *prev_scan_ssid; /* previously scanned SSID;
  265. * NULL = not yet initialized (start
  266. * with wildcard SSID)
  267. * WILDCARD_SSID_SCAN = wildcard
  268. * SSID was used in the previous scan
  269. */
  270. #define WILDCARD_SSID_SCAN ((struct wpa_ssid *) 1)
  271. struct wpa_ssid *prev_sched_ssid; /* last SSID used in sched scan */
  272. int sched_scan_timeout;
  273. int sched_scan_interval;
  274. int first_sched_scan;
  275. int sched_scan_timed_out;
  276. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  277. struct wpa_scan_results *scan_res);
  278. struct dl_list bss; /* struct wpa_bss::list */
  279. struct dl_list bss_id; /* struct wpa_bss::list_id */
  280. size_t num_bss;
  281. unsigned int bss_update_idx;
  282. unsigned int bss_next_id;
  283. struct wpa_driver_ops *driver;
  284. int interface_removed; /* whether the network interface has been
  285. * removed */
  286. struct wpa_sm *wpa;
  287. struct eapol_sm *eapol;
  288. struct ctrl_iface_priv *ctrl_iface;
  289. enum wpa_states wpa_state;
  290. int scanning;
  291. int sched_scanning;
  292. int new_connection;
  293. int reassociated_connection;
  294. int eapol_received; /* number of EAPOL packets received after the
  295. * previous association event */
  296. struct scard_data *scard;
  297. #ifdef PCSC_FUNCS
  298. char imsi[20];
  299. int mnc_len;
  300. #endif /* PCSC_FUNCS */
  301. unsigned char last_eapol_src[ETH_ALEN];
  302. int keys_cleared;
  303. struct wpa_blacklist *blacklist;
  304. int scan_req; /* manual scan request; this forces a scan even if there
  305. * are no enabled networks in the configuration */
  306. int scan_runs; /* number of scan runs since WPS was started */
  307. int *next_scan_freqs;
  308. int scan_interval; /* time in sec between scans to find suitable AP */
  309. int normal_scans; /* normal scans run before sched_scan */
  310. unsigned int drv_flags;
  311. /*
  312. * A bitmap of supported protocols for probe response offload. See
  313. * struct wpa_driver_capa in driver.h
  314. */
  315. unsigned int probe_resp_offloads;
  316. int max_scan_ssids;
  317. int max_sched_scan_ssids;
  318. int sched_scan_supported;
  319. unsigned int max_match_sets;
  320. unsigned int max_remain_on_chan;
  321. unsigned int max_stations;
  322. int pending_mic_error_report;
  323. int pending_mic_error_pairwise;
  324. int mic_errors_seen; /* Michael MIC errors with the current PTK */
  325. struct wps_context *wps;
  326. int wps_success; /* WPS success event received */
  327. struct wps_er *wps_er;
  328. int blacklist_cleared;
  329. struct wpabuf *pending_eapol_rx;
  330. struct os_time pending_eapol_rx_time;
  331. u8 pending_eapol_rx_src[ETH_ALEN];
  332. struct ibss_rsn *ibss_rsn;
  333. int set_sta_uapsd;
  334. int sta_uapsd;
  335. int set_ap_uapsd;
  336. int ap_uapsd;
  337. #ifdef CONFIG_SME
  338. struct {
  339. u8 ssid[32];
  340. size_t ssid_len;
  341. int freq;
  342. u8 assoc_req_ie[200];
  343. size_t assoc_req_ie_len;
  344. int mfp;
  345. int ft_used;
  346. u8 mobility_domain[2];
  347. u8 *ft_ies;
  348. size_t ft_ies_len;
  349. u8 prev_bssid[ETH_ALEN];
  350. int prev_bssid_set;
  351. int auth_alg;
  352. int proto;
  353. int sa_query_count; /* number of pending SA Query requests;
  354. * 0 = no SA Query in progress */
  355. int sa_query_timed_out;
  356. u8 *sa_query_trans_id; /* buffer of WLAN_SA_QUERY_TR_ID_LEN *
  357. * sa_query_count octets of pending
  358. * SA Query transaction identifiers */
  359. struct os_time sa_query_start;
  360. } sme;
  361. #endif /* CONFIG_SME */
  362. #ifdef CONFIG_AP
  363. struct hostapd_iface *ap_iface;
  364. void (*ap_configured_cb)(void *ctx, void *data);
  365. void *ap_configured_cb_ctx;
  366. void *ap_configured_cb_data;
  367. #endif /* CONFIG_AP */
  368. unsigned int off_channel_freq;
  369. struct wpabuf *pending_action_tx;
  370. u8 pending_action_src[ETH_ALEN];
  371. u8 pending_action_dst[ETH_ALEN];
  372. u8 pending_action_bssid[ETH_ALEN];
  373. unsigned int pending_action_freq;
  374. int pending_action_no_cck;
  375. int pending_action_without_roc;
  376. void (*pending_action_tx_status_cb)(struct wpa_supplicant *wpa_s,
  377. unsigned int freq, const u8 *dst,
  378. const u8 *src, const u8 *bssid,
  379. const u8 *data, size_t data_len,
  380. enum offchannel_send_action_result
  381. result);
  382. unsigned int roc_waiting_drv_freq;
  383. int action_tx_wait_time;
  384. #ifdef CONFIG_P2P
  385. struct p2p_go_neg_results *go_params;
  386. int create_p2p_iface;
  387. u8 pending_interface_addr[ETH_ALEN];
  388. char pending_interface_name[100];
  389. int pending_interface_type;
  390. int p2p_group_idx;
  391. unsigned int pending_listen_freq;
  392. unsigned int pending_listen_duration;
  393. enum {
  394. NOT_P2P_GROUP_INTERFACE,
  395. P2P_GROUP_INTERFACE_PENDING,
  396. P2P_GROUP_INTERFACE_GO,
  397. P2P_GROUP_INTERFACE_CLIENT
  398. } p2p_group_interface;
  399. struct p2p_group *p2p_group;
  400. int p2p_long_listen; /* remaining time in long Listen state in ms */
  401. char p2p_pin[10];
  402. int p2p_wps_method;
  403. u8 p2p_auth_invite[ETH_ALEN];
  404. int p2p_sd_over_ctrl_iface;
  405. int p2p_in_provisioning;
  406. int pending_invite_ssid_id;
  407. int show_group_started;
  408. u8 go_dev_addr[ETH_ALEN];
  409. int pending_pd_before_join;
  410. u8 pending_join_iface_addr[ETH_ALEN];
  411. u8 pending_join_dev_addr[ETH_ALEN];
  412. int pending_join_wps_method;
  413. int p2p_join_scan_count;
  414. int force_long_sd;
  415. /*
  416. * Whether cross connection is disallowed by the AP to which this
  417. * interface is associated (only valid if there is an association).
  418. */
  419. int cross_connect_disallowed;
  420. /*
  421. * Whether this P2P group is configured to use cross connection (only
  422. * valid if this is P2P GO interface). The actual cross connect packet
  423. * forwarding may not be configured depending on the uplink status.
  424. */
  425. int cross_connect_enabled;
  426. /* Whether cross connection forwarding is in use at the moment. */
  427. int cross_connect_in_use;
  428. /*
  429. * Uplink interface name for cross connection
  430. */
  431. char cross_connect_uplink[100];
  432. enum {
  433. P2P_GROUP_REMOVAL_UNKNOWN,
  434. P2P_GROUP_REMOVAL_REQUESTED,
  435. P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
  436. P2P_GROUP_REMOVAL_UNAVAILABLE
  437. } removal_reason;
  438. unsigned int p2p_cb_on_scan_complete:1;
  439. #endif /* CONFIG_P2P */
  440. struct wpa_ssid *bgscan_ssid;
  441. const struct bgscan_ops *bgscan;
  442. void *bgscan_priv;
  443. struct wpa_ssid *connect_without_scan;
  444. int after_wps;
  445. int known_wps_freq;
  446. unsigned int wps_freq;
  447. int wps_fragment_size;
  448. int auto_reconnect_disabled;
  449. /* Channel preferences for AP/P2P GO use */
  450. int best_24_freq;
  451. int best_5_freq;
  452. int best_overall_freq;
  453. struct gas_query *gas;
  454. #ifdef CONFIG_INTERWORKING
  455. unsigned int fetch_anqp_in_progress:1;
  456. unsigned int network_select:1;
  457. unsigned int auto_select:1;
  458. #endif /* CONFIG_INTERWORKING */
  459. unsigned int drv_capa_known;
  460. struct {
  461. struct hostapd_hw_modes *modes;
  462. u16 num_modes;
  463. u16 flags;
  464. } hw;
  465. int pno;
  466. };
  467. /* wpa_supplicant.c */
  468. void wpa_supplicant_apply_ht_overrides(
  469. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  470. struct wpa_driver_associate_params *params);
  471. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  472. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s);
  473. const char * wpa_supplicant_state_txt(enum wpa_states state);
  474. int wpa_supplicant_update_mac_addr(struct wpa_supplicant *wpa_s);
  475. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s);
  476. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  477. struct wpa_bss *bss, struct wpa_ssid *ssid,
  478. u8 *wpa_ie, size_t *wpa_ie_len);
  479. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  480. struct wpa_bss *bss,
  481. struct wpa_ssid *ssid);
  482. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  483. struct wpa_ssid *ssid);
  484. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s);
  485. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr);
  486. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  487. int sec, int usec);
  488. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  489. enum wpa_states state);
  490. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s);
  491. const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s);
  492. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s);
  493. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  494. int reason_code);
  495. void wpa_supplicant_disassociate(struct wpa_supplicant *wpa_s,
  496. int reason_code);
  497. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  498. struct wpa_ssid *ssid);
  499. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  500. struct wpa_ssid *ssid);
  501. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  502. struct wpa_ssid *ssid);
  503. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s,
  504. int ap_scan);
  505. int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
  506. unsigned int expire_age);
  507. int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
  508. unsigned int expire_count);
  509. int wpa_supplicant_set_scan_interval(struct wpa_supplicant *wpa_s,
  510. int scan_interval);
  511. int wpa_supplicant_set_debug_params(struct wpa_global *global,
  512. int debug_level, int debug_timestamp,
  513. int debug_show_keys);
  514. void free_hw_features(struct wpa_supplicant *wpa_s);
  515. void wpa_show_license(void);
  516. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  517. struct wpa_interface *iface);
  518. int wpa_supplicant_remove_iface(struct wpa_global *global,
  519. struct wpa_supplicant *wpa_s,
  520. int terminate);
  521. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  522. const char *ifname);
  523. struct wpa_global * wpa_supplicant_init(struct wpa_params *params);
  524. int wpa_supplicant_run(struct wpa_global *global);
  525. void wpa_supplicant_deinit(struct wpa_global *global);
  526. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  527. struct wpa_ssid *ssid);
  528. void wpa_supplicant_terminate_proc(struct wpa_global *global);
  529. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  530. const u8 *buf, size_t len);
  531. enum wpa_key_mgmt key_mgmt2driver(int key_mgmt);
  532. enum wpa_cipher cipher_suite2driver(int cipher);
  533. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s);
  534. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s);
  535. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid);
  536. int wpas_driver_bss_selection(struct wpa_supplicant *wpa_s);
  537. /* events.c */
  538. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s);
  539. int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  540. struct wpa_bss *selected,
  541. struct wpa_ssid *ssid);
  542. void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx);
  543. void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx);
  544. /* eap_register.c */
  545. int eap_register_methods(void);
  546. /**
  547. * Utility method to tell if a given network is a persistent group
  548. * @ssid: Network object
  549. * Returns: 1 if network is a persistent group, 0 otherwise
  550. */
  551. static inline int network_is_persistent_group(struct wpa_ssid *ssid)
  552. {
  553. return ((ssid->disabled == 2) || ssid->p2p_persistent_group);
  554. }
  555. #endif /* WPA_SUPPLICANT_I_H */