wpa_supplicant_i.h 29 KB

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