wpa_supplicant_i.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898
  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 "common/sae.h"
  13. #include "config_ssid.h"
  14. extern const char *wpa_supplicant_version;
  15. extern const char *wpa_supplicant_license;
  16. #ifndef CONFIG_NO_STDOUT_DEBUG
  17. extern const char *wpa_supplicant_full_license1;
  18. extern const char *wpa_supplicant_full_license2;
  19. extern const char *wpa_supplicant_full_license3;
  20. extern const char *wpa_supplicant_full_license4;
  21. extern const char *wpa_supplicant_full_license5;
  22. #endif /* CONFIG_NO_STDOUT_DEBUG */
  23. struct wpa_sm;
  24. struct wpa_supplicant;
  25. struct ibss_rsn;
  26. struct scan_info;
  27. struct wpa_bss;
  28. struct wpa_scan_results;
  29. struct hostapd_hw_modes;
  30. struct wpa_driver_associate_params;
  31. /*
  32. * Forward declarations of private structures used within the ctrl_iface
  33. * backends. Other parts of wpa_supplicant do not have access to data stored in
  34. * these structures.
  35. */
  36. struct ctrl_iface_priv;
  37. struct ctrl_iface_global_priv;
  38. struct wpas_dbus_priv;
  39. /**
  40. * struct wpa_interface - Parameters for wpa_supplicant_add_iface()
  41. */
  42. struct wpa_interface {
  43. /**
  44. * confname - Configuration name (file or profile) name
  45. *
  46. * This can also be %NULL when a configuration file is not used. In
  47. * that case, ctrl_interface must be set to allow the interface to be
  48. * configured.
  49. */
  50. const char *confname;
  51. /**
  52. * confanother - Additional configuration name (file or profile) name
  53. *
  54. * This can also be %NULL when the additional configuration file is not
  55. * used.
  56. */
  57. const char *confanother;
  58. /**
  59. * ctrl_interface - Control interface parameter
  60. *
  61. * If a configuration file is not used, this variable can be used to
  62. * set the ctrl_interface parameter that would have otherwise been read
  63. * from the configuration file. If both confname and ctrl_interface are
  64. * set, ctrl_interface is used to override the value from configuration
  65. * file.
  66. */
  67. const char *ctrl_interface;
  68. /**
  69. * driver - Driver interface name, or %NULL to use the default driver
  70. */
  71. const char *driver;
  72. /**
  73. * driver_param - Driver interface parameters
  74. *
  75. * If a configuration file is not used, this variable can be used to
  76. * set the driver_param parameters that would have otherwise been read
  77. * from the configuration file. If both confname and driver_param are
  78. * set, driver_param is used to override the value from configuration
  79. * file.
  80. */
  81. const char *driver_param;
  82. /**
  83. * ifname - Interface name
  84. */
  85. const char *ifname;
  86. /**
  87. * bridge_ifname - Optional bridge interface name
  88. *
  89. * If the driver interface (ifname) is included in a Linux bridge
  90. * device, the bridge interface may need to be used for receiving EAPOL
  91. * frames. This can be enabled by setting this variable to enable
  92. * receiving of EAPOL frames from an additional interface.
  93. */
  94. const char *bridge_ifname;
  95. /**
  96. * p2p_mgmt - Interface used for P2P management (P2P Device operations)
  97. *
  98. * Indicates whether wpas_p2p_init() must be called for this interface.
  99. * This is used only when the driver supports a dedicated P2P Device
  100. * interface that is not a network interface.
  101. */
  102. int p2p_mgmt;
  103. };
  104. /**
  105. * struct wpa_params - Parameters for wpa_supplicant_init()
  106. */
  107. struct wpa_params {
  108. /**
  109. * daemonize - Run %wpa_supplicant in the background
  110. */
  111. int daemonize;
  112. /**
  113. * wait_for_monitor - Wait for a monitor program before starting
  114. */
  115. int wait_for_monitor;
  116. /**
  117. * pid_file - Path to a PID (process ID) file
  118. *
  119. * If this and daemonize are set, process ID of the background process
  120. * will be written to the specified file.
  121. */
  122. char *pid_file;
  123. /**
  124. * wpa_debug_level - Debugging verbosity level (e.g., MSG_INFO)
  125. */
  126. int wpa_debug_level;
  127. /**
  128. * wpa_debug_show_keys - Whether keying material is included in debug
  129. *
  130. * This parameter can be used to allow keying material to be included
  131. * in debug messages. This is a security risk and this option should
  132. * not be enabled in normal configuration. If needed during
  133. * development or while troubleshooting, this option can provide more
  134. * details for figuring out what is happening.
  135. */
  136. int wpa_debug_show_keys;
  137. /**
  138. * wpa_debug_timestamp - Whether to include timestamp in debug messages
  139. */
  140. int wpa_debug_timestamp;
  141. /**
  142. * ctrl_interface - Global ctrl_iface path/parameter
  143. */
  144. char *ctrl_interface;
  145. /**
  146. * ctrl_interface_group - Global ctrl_iface group
  147. */
  148. char *ctrl_interface_group;
  149. /**
  150. * dbus_ctrl_interface - Enable the DBus control interface
  151. */
  152. int dbus_ctrl_interface;
  153. /**
  154. * wpa_debug_file_path - Path of debug file or %NULL to use stdout
  155. */
  156. const char *wpa_debug_file_path;
  157. /**
  158. * wpa_debug_syslog - Enable log output through syslog
  159. */
  160. int wpa_debug_syslog;
  161. /**
  162. * wpa_debug_tracing - Enable log output through Linux tracing
  163. */
  164. int wpa_debug_tracing;
  165. /**
  166. * override_driver - Optional driver parameter override
  167. *
  168. * This parameter can be used to override the driver parameter in
  169. * dynamic interface addition to force a specific driver wrapper to be
  170. * used instead.
  171. */
  172. char *override_driver;
  173. /**
  174. * override_ctrl_interface - Optional ctrl_interface override
  175. *
  176. * This parameter can be used to override the ctrl_interface parameter
  177. * in dynamic interface addition to force a control interface to be
  178. * created.
  179. */
  180. char *override_ctrl_interface;
  181. /**
  182. * entropy_file - Optional entropy file
  183. *
  184. * This parameter can be used to configure wpa_supplicant to maintain
  185. * its internal entropy store over restarts.
  186. */
  187. char *entropy_file;
  188. };
  189. struct p2p_srv_bonjour {
  190. struct dl_list list;
  191. struct wpabuf *query;
  192. struct wpabuf *resp;
  193. };
  194. struct p2p_srv_upnp {
  195. struct dl_list list;
  196. u8 version;
  197. char *service;
  198. };
  199. /**
  200. * struct wpa_global - Internal, global data for all %wpa_supplicant interfaces
  201. *
  202. * This structure is initialized by calling wpa_supplicant_init() when starting
  203. * %wpa_supplicant.
  204. */
  205. struct wpa_global {
  206. struct wpa_supplicant *ifaces;
  207. struct wpa_params params;
  208. struct ctrl_iface_global_priv *ctrl_iface;
  209. struct wpas_dbus_priv *dbus;
  210. void **drv_priv;
  211. size_t drv_count;
  212. struct os_time suspend_time;
  213. struct p2p_data *p2p;
  214. struct wpa_supplicant *p2p_init_wpa_s;
  215. struct wpa_supplicant *p2p_group_formation;
  216. struct wpa_supplicant *p2p_invite_group;
  217. u8 p2p_dev_addr[ETH_ALEN];
  218. struct os_reltime p2p_go_wait_client;
  219. struct dl_list p2p_srv_bonjour; /* struct p2p_srv_bonjour */
  220. struct dl_list p2p_srv_upnp; /* struct p2p_srv_upnp */
  221. int p2p_disabled;
  222. int cross_connection;
  223. struct wpa_freq_range_list p2p_disallow_freq;
  224. enum wpa_conc_pref {
  225. WPA_CONC_PREF_NOT_SET,
  226. WPA_CONC_PREF_STA,
  227. WPA_CONC_PREF_P2P
  228. } conc_pref;
  229. unsigned int p2p_cb_on_scan_complete:1;
  230. unsigned int p2p_per_sta_psk:1;
  231. #ifdef CONFIG_WIFI_DISPLAY
  232. int wifi_display;
  233. #define MAX_WFD_SUBELEMS 10
  234. struct wpabuf *wfd_subelem[MAX_WFD_SUBELEMS];
  235. #endif /* CONFIG_WIFI_DISPLAY */
  236. struct psk_list_entry *add_psk; /* From group formation */
  237. };
  238. /**
  239. * struct wpa_radio - Internal data for per-radio information
  240. *
  241. * This structure is used to share data about configured interfaces
  242. * (struct wpa_supplicant) that share the same physical radio, e.g., to allow
  243. * better coordination of offchannel operations.
  244. */
  245. struct wpa_radio {
  246. char name[16]; /* from driver_ops get_radio_name() or empty if not
  247. * available */
  248. struct dl_list ifaces; /* struct wpa_supplicant::radio_list entries */
  249. };
  250. /**
  251. * offchannel_send_action_result - Result of offchannel send Action frame
  252. */
  253. enum offchannel_send_action_result {
  254. OFFCHANNEL_SEND_ACTION_SUCCESS /**< Frame was send and acknowledged */,
  255. OFFCHANNEL_SEND_ACTION_NO_ACK /**< Frame was sent, but not acknowledged
  256. */,
  257. OFFCHANNEL_SEND_ACTION_FAILED /**< Frame was not sent due to a failure
  258. */
  259. };
  260. struct wps_ap_info {
  261. u8 bssid[ETH_ALEN];
  262. enum wps_ap_info_type {
  263. WPS_AP_NOT_SEL_REG,
  264. WPS_AP_SEL_REG,
  265. WPS_AP_SEL_REG_OUR
  266. } type;
  267. unsigned int tries;
  268. struct os_reltime last_attempt;
  269. };
  270. struct wpa_ssid_value {
  271. u8 ssid[32];
  272. size_t ssid_len;
  273. };
  274. /**
  275. * struct wpa_supplicant - Internal data for wpa_supplicant interface
  276. *
  277. * This structure contains the internal data for core wpa_supplicant code. This
  278. * should be only used directly from the core code. However, a pointer to this
  279. * data is used from other files as an arbitrary context pointer in calls to
  280. * core functions.
  281. */
  282. struct wpa_supplicant {
  283. struct wpa_global *global;
  284. struct wpa_radio *radio; /* shared radio context */
  285. struct dl_list radio_list; /* list head: struct wpa_radio::ifaces */
  286. struct wpa_supplicant *parent;
  287. struct wpa_supplicant *next;
  288. struct l2_packet_data *l2;
  289. struct l2_packet_data *l2_br;
  290. unsigned char own_addr[ETH_ALEN];
  291. char ifname[100];
  292. #ifdef CONFIG_CTRL_IFACE_DBUS
  293. char *dbus_path;
  294. #endif /* CONFIG_CTRL_IFACE_DBUS */
  295. #ifdef CONFIG_CTRL_IFACE_DBUS_NEW
  296. char *dbus_new_path;
  297. char *dbus_groupobj_path;
  298. #ifdef CONFIG_AP
  299. char *preq_notify_peer;
  300. #endif /* CONFIG_AP */
  301. #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */
  302. char bridge_ifname[16];
  303. char *confname;
  304. char *confanother;
  305. struct wpa_config *conf;
  306. int countermeasures;
  307. struct os_reltime last_michael_mic_error;
  308. u8 bssid[ETH_ALEN];
  309. u8 pending_bssid[ETH_ALEN]; /* If wpa_state == WPA_ASSOCIATING, this
  310. * field contains the target BSSID. */
  311. int reassociate; /* reassociation requested */
  312. int disconnected; /* all connections disabled; i.e., do no reassociate
  313. * before this has been cleared */
  314. struct wpa_ssid *current_ssid;
  315. struct wpa_bss *current_bss;
  316. int ap_ies_from_associnfo;
  317. unsigned int assoc_freq;
  318. /* Selected configuration (based on Beacon/ProbeResp WPA IE) */
  319. int pairwise_cipher;
  320. int group_cipher;
  321. int key_mgmt;
  322. int wpa_proto;
  323. int mgmt_group_cipher;
  324. void *drv_priv; /* private data used by driver_ops */
  325. void *global_drv_priv;
  326. u8 *bssid_filter;
  327. size_t bssid_filter_count;
  328. u8 *disallow_aps_bssid;
  329. size_t disallow_aps_bssid_count;
  330. struct wpa_ssid_value *disallow_aps_ssid;
  331. size_t disallow_aps_ssid_count;
  332. enum { WPA_SETBAND_AUTO, WPA_SETBAND_5G, WPA_SETBAND_2G } setband;
  333. /* previous scan was wildcard when interleaving between
  334. * wildcard scans and specific SSID scan when max_ssids=1 */
  335. int prev_scan_wildcard;
  336. struct wpa_ssid *prev_scan_ssid; /* previously scanned SSID;
  337. * NULL = not yet initialized (start
  338. * with wildcard SSID)
  339. * WILDCARD_SSID_SCAN = wildcard
  340. * SSID was used in the previous scan
  341. */
  342. #define WILDCARD_SSID_SCAN ((struct wpa_ssid *) 1)
  343. struct wpa_ssid *prev_sched_ssid; /* last SSID used in sched scan */
  344. int sched_scan_timeout;
  345. int sched_scan_interval;
  346. int first_sched_scan;
  347. int sched_scan_timed_out;
  348. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  349. struct wpa_scan_results *scan_res);
  350. struct dl_list bss; /* struct wpa_bss::list */
  351. struct dl_list bss_id; /* struct wpa_bss::list_id */
  352. size_t num_bss;
  353. unsigned int bss_update_idx;
  354. unsigned int bss_next_id;
  355. /*
  356. * Pointers to BSS entries in the order they were in the last scan
  357. * results.
  358. */
  359. struct wpa_bss **last_scan_res;
  360. unsigned int last_scan_res_used;
  361. unsigned int last_scan_res_size;
  362. struct os_reltime last_scan;
  363. struct wpa_driver_ops *driver;
  364. int interface_removed; /* whether the network interface has been
  365. * removed */
  366. struct wpa_sm *wpa;
  367. struct eapol_sm *eapol;
  368. struct ctrl_iface_priv *ctrl_iface;
  369. enum wpa_states wpa_state;
  370. int scanning;
  371. int sched_scanning;
  372. int new_connection;
  373. int eapol_received; /* number of EAPOL packets received after the
  374. * previous association event */
  375. struct scard_data *scard;
  376. char imsi[20];
  377. int mnc_len;
  378. unsigned char last_eapol_src[ETH_ALEN];
  379. unsigned int keys_cleared; /* bitfield of key indexes that the driver is
  380. * known not to be configured with a key */
  381. struct wpa_blacklist *blacklist;
  382. /**
  383. * extra_blacklist_count - Sum of blacklist counts after last connection
  384. *
  385. * This variable is used to maintain a count of temporary blacklisting
  386. * failures (maximum number for any BSS) over blacklist clear
  387. * operations. This is needed for figuring out whether there has been
  388. * failures prior to the last blacklist clear operation which happens
  389. * whenever no other not-blacklisted BSS candidates are available. This
  390. * gets cleared whenever a connection has been established successfully.
  391. */
  392. int extra_blacklist_count;
  393. /**
  394. * scan_req - Type of the scan request
  395. */
  396. enum scan_req_type {
  397. /**
  398. * NORMAL_SCAN_REQ - Normal scan request
  399. *
  400. * This is used for scans initiated by wpa_supplicant to find an
  401. * AP for a connection.
  402. */
  403. NORMAL_SCAN_REQ,
  404. /**
  405. * INITIAL_SCAN_REQ - Initial scan request
  406. *
  407. * This is used for the first scan on an interface to force at
  408. * least one scan to be run even if the configuration does not
  409. * include any enabled networks.
  410. */
  411. INITIAL_SCAN_REQ,
  412. /**
  413. * MANUAL_SCAN_REQ - Manual scan request
  414. *
  415. * This is used for scans where the user request a scan or
  416. * a specific wpa_supplicant operation (e.g., WPS) requires scan
  417. * to be run.
  418. */
  419. MANUAL_SCAN_REQ
  420. } scan_req, last_scan_req;
  421. struct os_reltime scan_trigger_time, scan_start_time;
  422. int scan_runs; /* number of scan runs since WPS was started */
  423. int *next_scan_freqs;
  424. int *manual_scan_freqs;
  425. unsigned int manual_scan_passive:1;
  426. unsigned int manual_scan_use_id:1;
  427. unsigned int manual_scan_only_new:1;
  428. unsigned int own_scan_requested:1;
  429. unsigned int own_scan_running:1;
  430. unsigned int external_scan_running:1;
  431. unsigned int clear_driver_scan_cache:1;
  432. unsigned int manual_scan_id;
  433. int scan_interval; /* time in sec between scans to find suitable AP */
  434. int normal_scans; /* normal scans run before sched_scan */
  435. int scan_for_connection; /* whether the scan request was triggered for
  436. * finding a connection */
  437. unsigned int drv_flags;
  438. unsigned int drv_enc;
  439. /*
  440. * A bitmap of supported protocols for probe response offload. See
  441. * struct wpa_driver_capa in driver.h
  442. */
  443. unsigned int probe_resp_offloads;
  444. /* extended capabilities supported by the driver */
  445. const u8 *extended_capa, *extended_capa_mask;
  446. unsigned int extended_capa_len;
  447. int max_scan_ssids;
  448. int max_sched_scan_ssids;
  449. int sched_scan_supported;
  450. unsigned int max_match_sets;
  451. unsigned int max_remain_on_chan;
  452. unsigned int max_stations;
  453. int pending_mic_error_report;
  454. int pending_mic_error_pairwise;
  455. int mic_errors_seen; /* Michael MIC errors with the current PTK */
  456. struct wps_context *wps;
  457. int wps_success; /* WPS success event received */
  458. struct wps_er *wps_er;
  459. int blacklist_cleared;
  460. struct wpabuf *pending_eapol_rx;
  461. struct os_reltime pending_eapol_rx_time;
  462. u8 pending_eapol_rx_src[ETH_ALEN];
  463. unsigned int last_eapol_matches_bssid:1;
  464. struct ibss_rsn *ibss_rsn;
  465. int set_sta_uapsd;
  466. int sta_uapsd;
  467. int set_ap_uapsd;
  468. int ap_uapsd;
  469. #ifdef CONFIG_SME
  470. struct {
  471. u8 ssid[32];
  472. size_t ssid_len;
  473. int freq;
  474. u8 assoc_req_ie[200];
  475. size_t assoc_req_ie_len;
  476. int mfp;
  477. int ft_used;
  478. u8 mobility_domain[2];
  479. u8 *ft_ies;
  480. size_t ft_ies_len;
  481. u8 prev_bssid[ETH_ALEN];
  482. int prev_bssid_set;
  483. int auth_alg;
  484. int proto;
  485. int sa_query_count; /* number of pending SA Query requests;
  486. * 0 = no SA Query in progress */
  487. int sa_query_timed_out;
  488. u8 *sa_query_trans_id; /* buffer of WLAN_SA_QUERY_TR_ID_LEN *
  489. * sa_query_count octets of pending
  490. * SA Query transaction identifiers */
  491. struct os_reltime sa_query_start;
  492. u8 sched_obss_scan;
  493. u16 obss_scan_int;
  494. u16 bss_max_idle_period;
  495. #ifdef CONFIG_SAE
  496. struct sae_data sae;
  497. struct wpabuf *sae_token;
  498. int sae_group_index;
  499. #endif /* CONFIG_SAE */
  500. } sme;
  501. #endif /* CONFIG_SME */
  502. #ifdef CONFIG_AP
  503. struct hostapd_iface *ap_iface;
  504. void (*ap_configured_cb)(void *ctx, void *data);
  505. void *ap_configured_cb_ctx;
  506. void *ap_configured_cb_data;
  507. #endif /* CONFIG_AP */
  508. unsigned int off_channel_freq;
  509. struct wpabuf *pending_action_tx;
  510. u8 pending_action_src[ETH_ALEN];
  511. u8 pending_action_dst[ETH_ALEN];
  512. u8 pending_action_bssid[ETH_ALEN];
  513. unsigned int pending_action_freq;
  514. int pending_action_no_cck;
  515. int pending_action_without_roc;
  516. void (*pending_action_tx_status_cb)(struct wpa_supplicant *wpa_s,
  517. unsigned int freq, const u8 *dst,
  518. const u8 *src, const u8 *bssid,
  519. const u8 *data, size_t data_len,
  520. enum offchannel_send_action_result
  521. result);
  522. unsigned int roc_waiting_drv_freq;
  523. int action_tx_wait_time;
  524. int p2p_mgmt;
  525. #ifdef CONFIG_P2P
  526. struct p2p_go_neg_results *go_params;
  527. int create_p2p_iface;
  528. u8 pending_interface_addr[ETH_ALEN];
  529. char pending_interface_name[100];
  530. int pending_interface_type;
  531. int p2p_group_idx;
  532. unsigned int pending_listen_freq;
  533. unsigned int pending_listen_duration;
  534. enum {
  535. NOT_P2P_GROUP_INTERFACE,
  536. P2P_GROUP_INTERFACE_PENDING,
  537. P2P_GROUP_INTERFACE_GO,
  538. P2P_GROUP_INTERFACE_CLIENT
  539. } p2p_group_interface;
  540. struct p2p_group *p2p_group;
  541. int p2p_long_listen; /* remaining time in long Listen state in ms */
  542. char p2p_pin[10];
  543. int p2p_wps_method;
  544. u8 p2p_auth_invite[ETH_ALEN];
  545. int p2p_sd_over_ctrl_iface;
  546. int p2p_in_provisioning;
  547. int pending_invite_ssid_id;
  548. int show_group_started;
  549. u8 go_dev_addr[ETH_ALEN];
  550. int pending_pd_before_join;
  551. u8 pending_join_iface_addr[ETH_ALEN];
  552. u8 pending_join_dev_addr[ETH_ALEN];
  553. int pending_join_wps_method;
  554. int p2p_join_scan_count;
  555. int auto_pd_scan_retry;
  556. int force_long_sd;
  557. u16 pending_pd_config_methods;
  558. enum {
  559. NORMAL_PD, AUTO_PD_GO_NEG, AUTO_PD_JOIN
  560. } pending_pd_use;
  561. /*
  562. * Whether cross connection is disallowed by the AP to which this
  563. * interface is associated (only valid if there is an association).
  564. */
  565. int cross_connect_disallowed;
  566. /*
  567. * Whether this P2P group is configured to use cross connection (only
  568. * valid if this is P2P GO interface). The actual cross connect packet
  569. * forwarding may not be configured depending on the uplink status.
  570. */
  571. int cross_connect_enabled;
  572. /* Whether cross connection forwarding is in use at the moment. */
  573. int cross_connect_in_use;
  574. /*
  575. * Uplink interface name for cross connection
  576. */
  577. char cross_connect_uplink[100];
  578. unsigned int sta_scan_pending:1;
  579. unsigned int p2p_auto_join:1;
  580. unsigned int p2p_auto_pd:1;
  581. unsigned int p2p_persistent_group:1;
  582. unsigned int p2p_fallback_to_go_neg:1;
  583. unsigned int p2p_pd_before_go_neg:1;
  584. unsigned int p2p_go_ht40:1;
  585. unsigned int p2p_go_vht:1;
  586. unsigned int user_initiated_pd:1;
  587. unsigned int p2p_go_group_formation_completed:1;
  588. unsigned int waiting_presence_resp;
  589. int p2p_first_connection_timeout;
  590. int p2p_persistent_go_freq;
  591. int p2p_persistent_id;
  592. int p2p_go_intent;
  593. int p2p_connect_freq;
  594. struct os_reltime p2p_auto_started;
  595. struct wpa_ssid *p2p_last_4way_hs_fail;
  596. #endif /* CONFIG_P2P */
  597. struct wpa_ssid *bgscan_ssid;
  598. const struct bgscan_ops *bgscan;
  599. void *bgscan_priv;
  600. const struct autoscan_ops *autoscan;
  601. struct wpa_driver_scan_params *autoscan_params;
  602. void *autoscan_priv;
  603. struct wpa_ssid *connect_without_scan;
  604. struct wps_ap_info *wps_ap;
  605. size_t num_wps_ap;
  606. int wps_ap_iter;
  607. int after_wps;
  608. int known_wps_freq;
  609. unsigned int wps_freq;
  610. u16 wps_ap_channel;
  611. int wps_fragment_size;
  612. int auto_reconnect_disabled;
  613. /* Channel preferences for AP/P2P GO use */
  614. int best_24_freq;
  615. int best_5_freq;
  616. int best_overall_freq;
  617. struct gas_query *gas;
  618. #ifdef CONFIG_INTERWORKING
  619. unsigned int fetch_anqp_in_progress:1;
  620. unsigned int network_select:1;
  621. unsigned int auto_select:1;
  622. unsigned int auto_network_select:1;
  623. unsigned int fetch_all_anqp:1;
  624. struct wpa_bss *interworking_gas_bss;
  625. #endif /* CONFIG_INTERWORKING */
  626. unsigned int drv_capa_known;
  627. struct {
  628. struct hostapd_hw_modes *modes;
  629. u16 num_modes;
  630. u16 flags;
  631. } hw;
  632. int pno;
  633. /* WLAN_REASON_* reason codes. Negative if locally generated. */
  634. int disconnect_reason;
  635. struct ext_password_data *ext_pw;
  636. struct wpabuf *last_gas_resp;
  637. u8 last_gas_addr[ETH_ALEN];
  638. u8 last_gas_dialog_token;
  639. unsigned int no_keep_alive:1;
  640. #ifdef CONFIG_WNM
  641. u8 wnm_dialog_token;
  642. u8 wnm_reply;
  643. u8 wnm_num_neighbor_report;
  644. u8 wnm_mode;
  645. u16 wnm_dissoc_timer;
  646. u8 wnm_validity_interval;
  647. u8 wnm_bss_termination_duration[12];
  648. struct neighbor_report *wnm_neighbor_report_elements;
  649. #endif /* CONFIG_WNM */
  650. #ifdef CONFIG_TESTING_GET_GTK
  651. u8 last_gtk[32];
  652. size_t last_gtk_len;
  653. #endif /* CONFIG_TESTING_GET_GTK */
  654. unsigned int num_multichan_concurrent;
  655. };
  656. /* wpa_supplicant.c */
  657. void wpa_supplicant_apply_ht_overrides(
  658. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  659. struct wpa_driver_associate_params *params);
  660. void wpa_supplicant_apply_vht_overrides(
  661. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  662. struct wpa_driver_associate_params *params);
  663. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  664. int wpa_supplicant_set_wpa_none_key(struct wpa_supplicant *wpa_s,
  665. struct wpa_ssid *ssid);
  666. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s);
  667. const char * wpa_supplicant_state_txt(enum wpa_states state);
  668. int wpa_supplicant_update_mac_addr(struct wpa_supplicant *wpa_s);
  669. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s);
  670. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  671. struct wpa_bss *bss, struct wpa_ssid *ssid,
  672. u8 *wpa_ie, size_t *wpa_ie_len);
  673. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  674. struct wpa_bss *bss,
  675. struct wpa_ssid *ssid);
  676. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  677. struct wpa_ssid *ssid);
  678. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s);
  679. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr);
  680. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  681. int sec, int usec);
  682. void wpa_supplicant_reinit_autoscan(struct wpa_supplicant *wpa_s);
  683. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  684. enum wpa_states state);
  685. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s);
  686. const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s);
  687. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s);
  688. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  689. int reason_code);
  690. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  691. struct wpa_ssid *ssid);
  692. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  693. struct wpa_ssid *ssid);
  694. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  695. struct wpa_ssid *ssid);
  696. int wpas_set_pkcs11_engine_and_module_path(struct wpa_supplicant *wpa_s,
  697. const char *pkcs11_engine_path,
  698. const char *pkcs11_module_path);
  699. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s,
  700. int ap_scan);
  701. int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
  702. unsigned int expire_age);
  703. int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
  704. unsigned int expire_count);
  705. int wpa_supplicant_set_scan_interval(struct wpa_supplicant *wpa_s,
  706. int scan_interval);
  707. int wpa_supplicant_set_debug_params(struct wpa_global *global,
  708. int debug_level, int debug_timestamp,
  709. int debug_show_keys);
  710. void free_hw_features(struct wpa_supplicant *wpa_s);
  711. void wpa_show_license(void);
  712. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  713. struct wpa_interface *iface);
  714. int wpa_supplicant_remove_iface(struct wpa_global *global,
  715. struct wpa_supplicant *wpa_s,
  716. int terminate);
  717. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  718. const char *ifname);
  719. struct wpa_global * wpa_supplicant_init(struct wpa_params *params);
  720. int wpa_supplicant_run(struct wpa_global *global);
  721. void wpa_supplicant_deinit(struct wpa_global *global);
  722. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  723. struct wpa_ssid *ssid);
  724. void wpa_supplicant_terminate_proc(struct wpa_global *global);
  725. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  726. const u8 *buf, size_t len);
  727. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s);
  728. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s);
  729. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid);
  730. int wpas_driver_bss_selection(struct wpa_supplicant *wpa_s);
  731. int wpas_is_p2p_prioritized(struct wpa_supplicant *wpa_s);
  732. void wpas_auth_failed(struct wpa_supplicant *wpa_s);
  733. void wpas_clear_temp_disabled(struct wpa_supplicant *wpa_s,
  734. struct wpa_ssid *ssid, int clear_failures);
  735. int disallowed_bssid(struct wpa_supplicant *wpa_s, const u8 *bssid);
  736. int disallowed_ssid(struct wpa_supplicant *wpa_s, const u8 *ssid,
  737. size_t ssid_len);
  738. void wpas_request_connection(struct wpa_supplicant *wpa_s);
  739. int wpas_build_ext_capab(struct wpa_supplicant *wpa_s, u8 *buf);
  740. int wpas_wpa_is_in_progress(struct wpa_supplicant *wpa_s, int include_current);
  741. /**
  742. * wpa_supplicant_ctrl_iface_ctrl_rsp_handle - Handle a control response
  743. * @wpa_s: Pointer to wpa_supplicant data
  744. * @ssid: Pointer to the network block the reply is for
  745. * @field: field the response is a reply for
  746. * @value: value (ie, password, etc) for @field
  747. * Returns: 0 on success, non-zero on error
  748. *
  749. * Helper function to handle replies to control interface requests.
  750. */
  751. int wpa_supplicant_ctrl_iface_ctrl_rsp_handle(struct wpa_supplicant *wpa_s,
  752. struct wpa_ssid *ssid,
  753. const char *field,
  754. const char *value);
  755. /* events.c */
  756. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s);
  757. int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  758. struct wpa_bss *selected,
  759. struct wpa_ssid *ssid);
  760. void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx);
  761. void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx);
  762. void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s);
  763. int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s);
  764. struct wpa_bss * wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
  765. struct wpa_ssid **selected_ssid);
  766. /* eap_register.c */
  767. int eap_register_methods(void);
  768. /**
  769. * Utility method to tell if a given network is a persistent group
  770. * @ssid: Network object
  771. * Returns: 1 if network is a persistent group, 0 otherwise
  772. */
  773. static inline int network_is_persistent_group(struct wpa_ssid *ssid)
  774. {
  775. return ((ssid->disabled == 2) || ssid->p2p_persistent_group);
  776. }
  777. int wpas_network_disabled(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  778. int wpas_init_ext_pw(struct wpa_supplicant *wpa_s);
  779. void dump_freq_array(struct wpa_supplicant *wpa_s, const char *title,
  780. int *freq_array, unsigned int len);
  781. int get_shared_radio_freqs(struct wpa_supplicant *wpa_s,
  782. int *freq_array, unsigned int len);
  783. #endif /* WPA_SUPPLICANT_I_H */