wpa_supplicant_i.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /*
  2. * wpa_supplicant - Internal definitions
  3. * Copyright (c) 2003-2012, 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_init_wpa_s;
  199. struct wpa_supplicant *p2p_group_formation;
  200. u8 p2p_dev_addr[ETH_ALEN];
  201. struct dl_list p2p_srv_bonjour; /* struct p2p_srv_bonjour */
  202. struct dl_list p2p_srv_upnp; /* struct p2p_srv_upnp */
  203. int p2p_disabled;
  204. int cross_connection;
  205. struct wpa_freq_range *p2p_disallow_freq;
  206. unsigned int num_p2p_disallow_freq;
  207. enum wpa_conc_pref {
  208. WPA_CONC_PREF_NOT_SET,
  209. WPA_CONC_PREF_STA,
  210. WPA_CONC_PREF_P2P
  211. } conc_pref;
  212. };
  213. enum offchannel_send_action_result {
  214. OFFCHANNEL_SEND_ACTION_SUCCESS /* Frame was send and acknowledged */,
  215. OFFCHANNEL_SEND_ACTION_NO_ACK /* Frame was sent, but not acknowledged
  216. */,
  217. OFFCHANNEL_SEND_ACTION_FAILED /* Frame was not sent due to a failure */
  218. };
  219. struct wps_ap_info {
  220. u8 bssid[ETH_ALEN];
  221. enum wps_ap_info_type {
  222. WPS_AP_NOT_SEL_REG,
  223. WPS_AP_SEL_REG,
  224. WPS_AP_SEL_REG_OUR
  225. } type;
  226. unsigned int tries;
  227. struct os_time last_attempt;
  228. };
  229. /**
  230. * struct wpa_supplicant - Internal data for wpa_supplicant interface
  231. *
  232. * This structure contains the internal data for core wpa_supplicant code. This
  233. * should be only used directly from the core code. However, a pointer to this
  234. * data is used from other files as an arbitrary context pointer in calls to
  235. * core functions.
  236. */
  237. struct wpa_supplicant {
  238. struct wpa_global *global;
  239. struct wpa_supplicant *parent;
  240. struct wpa_supplicant *next;
  241. struct l2_packet_data *l2;
  242. struct l2_packet_data *l2_br;
  243. unsigned char own_addr[ETH_ALEN];
  244. char ifname[100];
  245. #ifdef CONFIG_CTRL_IFACE_DBUS
  246. char *dbus_path;
  247. #endif /* CONFIG_CTRL_IFACE_DBUS */
  248. #ifdef CONFIG_CTRL_IFACE_DBUS_NEW
  249. char *dbus_new_path;
  250. char *dbus_groupobj_path;
  251. #ifdef CONFIG_AP
  252. char *preq_notify_peer;
  253. #endif /* CONFIG_AP */
  254. #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */
  255. char bridge_ifname[16];
  256. char *confname;
  257. struct wpa_config *conf;
  258. int countermeasures;
  259. os_time_t last_michael_mic_error;
  260. u8 bssid[ETH_ALEN];
  261. u8 pending_bssid[ETH_ALEN]; /* If wpa_state == WPA_ASSOCIATING, this
  262. * field contains the target BSSID. */
  263. int reassociate; /* reassociation requested */
  264. int disconnected; /* all connections disabled; i.e., do no reassociate
  265. * before this has been cleared */
  266. struct wpa_ssid *current_ssid;
  267. struct wpa_bss *current_bss;
  268. int ap_ies_from_associnfo;
  269. unsigned int assoc_freq;
  270. /* Selected configuration (based on Beacon/ProbeResp WPA IE) */
  271. int pairwise_cipher;
  272. int group_cipher;
  273. int key_mgmt;
  274. int wpa_proto;
  275. int mgmt_group_cipher;
  276. void *drv_priv; /* private data used by driver_ops */
  277. void *global_drv_priv;
  278. u8 *bssid_filter;
  279. size_t bssid_filter_count;
  280. /* previous scan was wildcard when interleaving between
  281. * wildcard scans and specific SSID scan when max_ssids=1 */
  282. int prev_scan_wildcard;
  283. struct wpa_ssid *prev_scan_ssid; /* previously scanned SSID;
  284. * NULL = not yet initialized (start
  285. * with wildcard SSID)
  286. * WILDCARD_SSID_SCAN = wildcard
  287. * SSID was used in the previous scan
  288. */
  289. #define WILDCARD_SSID_SCAN ((struct wpa_ssid *) 1)
  290. struct wpa_ssid *prev_sched_ssid; /* last SSID used in sched scan */
  291. int sched_scan_timeout;
  292. int sched_scan_interval;
  293. int first_sched_scan;
  294. int sched_scan_timed_out;
  295. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  296. struct wpa_scan_results *scan_res);
  297. struct dl_list bss; /* struct wpa_bss::list */
  298. struct dl_list bss_id; /* struct wpa_bss::list_id */
  299. size_t num_bss;
  300. unsigned int bss_update_idx;
  301. unsigned int bss_next_id;
  302. struct wpa_driver_ops *driver;
  303. int interface_removed; /* whether the network interface has been
  304. * removed */
  305. struct wpa_sm *wpa;
  306. struct eapol_sm *eapol;
  307. struct ctrl_iface_priv *ctrl_iface;
  308. enum wpa_states wpa_state;
  309. int scanning;
  310. int sched_scanning;
  311. int new_connection;
  312. int reassociated_connection;
  313. int eapol_received; /* number of EAPOL packets received after the
  314. * previous association event */
  315. struct scard_data *scard;
  316. #ifdef PCSC_FUNCS
  317. char imsi[20];
  318. int mnc_len;
  319. #endif /* PCSC_FUNCS */
  320. unsigned char last_eapol_src[ETH_ALEN];
  321. int keys_cleared;
  322. struct wpa_blacklist *blacklist;
  323. int scan_req; /* manual scan request; this forces a scan even if there
  324. * are no enabled networks in the configuration */
  325. int scan_runs; /* number of scan runs since WPS was started */
  326. int *next_scan_freqs;
  327. int scan_interval; /* time in sec between scans to find suitable AP */
  328. int normal_scans; /* normal scans run before sched_scan */
  329. unsigned int drv_flags;
  330. unsigned int drv_enc;
  331. /*
  332. * A bitmap of supported protocols for probe response offload. See
  333. * struct wpa_driver_capa in driver.h
  334. */
  335. unsigned int probe_resp_offloads;
  336. int max_scan_ssids;
  337. int max_sched_scan_ssids;
  338. int sched_scan_supported;
  339. unsigned int max_match_sets;
  340. unsigned int max_remain_on_chan;
  341. unsigned int max_stations;
  342. int pending_mic_error_report;
  343. int pending_mic_error_pairwise;
  344. int mic_errors_seen; /* Michael MIC errors with the current PTK */
  345. struct wps_context *wps;
  346. int wps_success; /* WPS success event received */
  347. struct wps_er *wps_er;
  348. int blacklist_cleared;
  349. struct wpabuf *pending_eapol_rx;
  350. struct os_time pending_eapol_rx_time;
  351. u8 pending_eapol_rx_src[ETH_ALEN];
  352. struct ibss_rsn *ibss_rsn;
  353. int set_sta_uapsd;
  354. int sta_uapsd;
  355. int set_ap_uapsd;
  356. int ap_uapsd;
  357. #ifdef CONFIG_SME
  358. struct {
  359. u8 ssid[32];
  360. size_t ssid_len;
  361. int freq;
  362. u8 assoc_req_ie[200];
  363. size_t assoc_req_ie_len;
  364. int mfp;
  365. int ft_used;
  366. u8 mobility_domain[2];
  367. u8 *ft_ies;
  368. size_t ft_ies_len;
  369. u8 prev_bssid[ETH_ALEN];
  370. int prev_bssid_set;
  371. int auth_alg;
  372. int proto;
  373. int sa_query_count; /* number of pending SA Query requests;
  374. * 0 = no SA Query in progress */
  375. int sa_query_timed_out;
  376. u8 *sa_query_trans_id; /* buffer of WLAN_SA_QUERY_TR_ID_LEN *
  377. * sa_query_count octets of pending
  378. * SA Query transaction identifiers */
  379. struct os_time sa_query_start;
  380. u8 sched_obss_scan;
  381. u16 obss_scan_int;
  382. u16 bss_max_idle_period;
  383. } sme;
  384. #endif /* CONFIG_SME */
  385. #ifdef CONFIG_AP
  386. struct hostapd_iface *ap_iface;
  387. void (*ap_configured_cb)(void *ctx, void *data);
  388. void *ap_configured_cb_ctx;
  389. void *ap_configured_cb_data;
  390. #endif /* CONFIG_AP */
  391. unsigned int off_channel_freq;
  392. struct wpabuf *pending_action_tx;
  393. u8 pending_action_src[ETH_ALEN];
  394. u8 pending_action_dst[ETH_ALEN];
  395. u8 pending_action_bssid[ETH_ALEN];
  396. unsigned int pending_action_freq;
  397. int pending_action_no_cck;
  398. int pending_action_without_roc;
  399. void (*pending_action_tx_status_cb)(struct wpa_supplicant *wpa_s,
  400. unsigned int freq, const u8 *dst,
  401. const u8 *src, const u8 *bssid,
  402. const u8 *data, size_t data_len,
  403. enum offchannel_send_action_result
  404. result);
  405. unsigned int roc_waiting_drv_freq;
  406. int action_tx_wait_time;
  407. #ifdef CONFIG_P2P
  408. struct p2p_go_neg_results *go_params;
  409. int create_p2p_iface;
  410. u8 pending_interface_addr[ETH_ALEN];
  411. char pending_interface_name[100];
  412. int pending_interface_type;
  413. int p2p_group_idx;
  414. unsigned int pending_listen_freq;
  415. unsigned int pending_listen_duration;
  416. enum {
  417. NOT_P2P_GROUP_INTERFACE,
  418. P2P_GROUP_INTERFACE_PENDING,
  419. P2P_GROUP_INTERFACE_GO,
  420. P2P_GROUP_INTERFACE_CLIENT
  421. } p2p_group_interface;
  422. struct p2p_group *p2p_group;
  423. int p2p_long_listen; /* remaining time in long Listen state in ms */
  424. char p2p_pin[10];
  425. int p2p_wps_method;
  426. u8 p2p_auth_invite[ETH_ALEN];
  427. int p2p_sd_over_ctrl_iface;
  428. int p2p_in_provisioning;
  429. int pending_invite_ssid_id;
  430. int show_group_started;
  431. u8 go_dev_addr[ETH_ALEN];
  432. int pending_pd_before_join;
  433. u8 pending_join_iface_addr[ETH_ALEN];
  434. u8 pending_join_dev_addr[ETH_ALEN];
  435. int pending_join_wps_method;
  436. int p2p_join_scan_count;
  437. int auto_pd_scan_retry;
  438. int force_long_sd;
  439. u16 pending_pd_config_methods;
  440. enum {
  441. NORMAL_PD, AUTO_PD_GO_NEG, AUTO_PD_JOIN
  442. } pending_pd_use;
  443. /*
  444. * Whether cross connection is disallowed by the AP to which this
  445. * interface is associated (only valid if there is an association).
  446. */
  447. int cross_connect_disallowed;
  448. /*
  449. * Whether this P2P group is configured to use cross connection (only
  450. * valid if this is P2P GO interface). The actual cross connect packet
  451. * forwarding may not be configured depending on the uplink status.
  452. */
  453. int cross_connect_enabled;
  454. /* Whether cross connection forwarding is in use at the moment. */
  455. int cross_connect_in_use;
  456. /*
  457. * Uplink interface name for cross connection
  458. */
  459. char cross_connect_uplink[100];
  460. unsigned int p2p_cb_on_scan_complete:1;
  461. unsigned int sta_scan_pending:1;
  462. unsigned int p2p_auto_join:1;
  463. unsigned int p2p_auto_pd:1;
  464. unsigned int p2p_persistent_group:1;
  465. unsigned int p2p_fallback_to_go_neg:1;
  466. unsigned int p2p_pd_before_go_neg:1;
  467. unsigned int p2p_go_ht40:1;
  468. int p2p_persistent_id;
  469. int p2p_go_intent;
  470. int p2p_connect_freq;
  471. struct os_time p2p_auto_started;
  472. #endif /* CONFIG_P2P */
  473. struct wpa_ssid *bgscan_ssid;
  474. const struct bgscan_ops *bgscan;
  475. void *bgscan_priv;
  476. const struct autoscan_ops *autoscan;
  477. struct wpa_driver_scan_params *autoscan_params;
  478. void *autoscan_priv;
  479. struct wpa_ssid *connect_without_scan;
  480. struct wps_ap_info *wps_ap;
  481. size_t num_wps_ap;
  482. int wps_ap_iter;
  483. int after_wps;
  484. int known_wps_freq;
  485. unsigned int wps_freq;
  486. int wps_fragment_size;
  487. int auto_reconnect_disabled;
  488. /* Channel preferences for AP/P2P GO use */
  489. int best_24_freq;
  490. int best_5_freq;
  491. int best_overall_freq;
  492. struct gas_query *gas;
  493. #ifdef CONFIG_INTERWORKING
  494. unsigned int fetch_anqp_in_progress:1;
  495. unsigned int network_select:1;
  496. unsigned int auto_select:1;
  497. unsigned int auto_network_select:1;
  498. #endif /* CONFIG_INTERWORKING */
  499. unsigned int drv_capa_known;
  500. struct {
  501. struct hostapd_hw_modes *modes;
  502. u16 num_modes;
  503. u16 flags;
  504. } hw;
  505. int pno;
  506. /* WLAN_REASON_* reason codes. Negative if locally generated. */
  507. int disconnect_reason;
  508. struct ext_password_data *ext_pw;
  509. struct wpabuf *last_gas_resp;
  510. u8 last_gas_addr[ETH_ALEN];
  511. u8 last_gas_dialog_token;
  512. };
  513. /* wpa_supplicant.c */
  514. void wpa_supplicant_apply_ht_overrides(
  515. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  516. struct wpa_driver_associate_params *params);
  517. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  518. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s);
  519. const char * wpa_supplicant_state_txt(enum wpa_states state);
  520. int wpa_supplicant_update_mac_addr(struct wpa_supplicant *wpa_s);
  521. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s);
  522. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  523. struct wpa_bss *bss, struct wpa_ssid *ssid,
  524. u8 *wpa_ie, size_t *wpa_ie_len);
  525. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  526. struct wpa_bss *bss,
  527. struct wpa_ssid *ssid);
  528. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  529. struct wpa_ssid *ssid);
  530. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s);
  531. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr);
  532. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  533. int sec, int usec);
  534. void wpa_supplicant_reinit_autoscan(struct wpa_supplicant *wpa_s);
  535. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  536. enum wpa_states state);
  537. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s);
  538. const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s);
  539. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s);
  540. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  541. int reason_code);
  542. void wpa_supplicant_disassociate(struct wpa_supplicant *wpa_s,
  543. int reason_code);
  544. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  545. struct wpa_ssid *ssid);
  546. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  547. struct wpa_ssid *ssid);
  548. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  549. struct wpa_ssid *ssid);
  550. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s,
  551. int ap_scan);
  552. int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
  553. unsigned int expire_age);
  554. int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
  555. unsigned int expire_count);
  556. int wpa_supplicant_set_scan_interval(struct wpa_supplicant *wpa_s,
  557. int scan_interval);
  558. int wpa_supplicant_set_debug_params(struct wpa_global *global,
  559. int debug_level, int debug_timestamp,
  560. int debug_show_keys);
  561. void free_hw_features(struct wpa_supplicant *wpa_s);
  562. void wpa_show_license(void);
  563. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  564. struct wpa_interface *iface);
  565. int wpa_supplicant_remove_iface(struct wpa_global *global,
  566. struct wpa_supplicant *wpa_s,
  567. int terminate);
  568. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  569. const char *ifname);
  570. struct wpa_global * wpa_supplicant_init(struct wpa_params *params);
  571. int wpa_supplicant_run(struct wpa_global *global);
  572. void wpa_supplicant_deinit(struct wpa_global *global);
  573. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  574. struct wpa_ssid *ssid);
  575. void wpa_supplicant_terminate_proc(struct wpa_global *global);
  576. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  577. const u8 *buf, size_t len);
  578. enum wpa_key_mgmt key_mgmt2driver(int key_mgmt);
  579. enum wpa_cipher cipher_suite2driver(int cipher);
  580. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s);
  581. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s);
  582. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid);
  583. int wpas_driver_bss_selection(struct wpa_supplicant *wpa_s);
  584. int wpas_is_p2p_prioritized(struct wpa_supplicant *wpa_s);
  585. void wpas_auth_failed(struct wpa_supplicant *wpa_s);
  586. void wpas_clear_temp_disabled(struct wpa_supplicant *wpa_s,
  587. struct wpa_ssid *ssid, int clear_failures);
  588. void wpa_supplicant_proc_40mhz_intolerant(struct wpa_supplicant *wpa_s);
  589. /**
  590. * wpa_supplicant_ctrl_iface_ctrl_rsp_handle - Handle a control response
  591. * @wpa_s: Pointer to wpa_supplicant data
  592. * @ssid: Pointer to the network block the reply is for
  593. * @field: field the response is a reply for
  594. * @value: value (ie, password, etc) for @field
  595. * Returns: 0 on success, non-zero on error
  596. *
  597. * Helper function to handle replies to control interface requests.
  598. */
  599. int wpa_supplicant_ctrl_iface_ctrl_rsp_handle(struct wpa_supplicant *wpa_s,
  600. struct wpa_ssid *ssid,
  601. const char *field,
  602. const char *value);
  603. /* events.c */
  604. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s);
  605. int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  606. struct wpa_bss *selected,
  607. struct wpa_ssid *ssid);
  608. void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx);
  609. void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx);
  610. void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s);
  611. /* eap_register.c */
  612. int eap_register_methods(void);
  613. /**
  614. * Utility method to tell if a given network is a persistent group
  615. * @ssid: Network object
  616. * Returns: 1 if network is a persistent group, 0 otherwise
  617. */
  618. static inline int network_is_persistent_group(struct wpa_ssid *ssid)
  619. {
  620. return ((ssid->disabled == 2) || ssid->p2p_persistent_group);
  621. }
  622. int wpas_network_disabled(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  623. int wpas_init_ext_pw(struct wpa_supplicant *wpa_s);
  624. #endif /* WPA_SUPPLICANT_I_H */