wpa_supplicant_i.h 31 KB

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