wpa_supplicant_i.h 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116
  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. #define RRM_NEIGHBOR_REPORT_TIMEOUT 1 /* 1 second for AP to send a report */
  335. /*
  336. * struct rrm_data - Data used for managing RRM features
  337. */
  338. struct rrm_data {
  339. /* rrm_used - indication regarding the current connection */
  340. unsigned int rrm_used:1;
  341. /*
  342. * notify_neighbor_rep - Callback for notifying report requester
  343. */
  344. void (*notify_neighbor_rep)(void *ctx, struct wpabuf *neighbor_rep);
  345. /*
  346. * neighbor_rep_cb_ctx - Callback context
  347. * Received in the callback registration, and sent to the callback
  348. * function as a parameter.
  349. */
  350. void *neighbor_rep_cb_ctx;
  351. /* next_neighbor_rep_token - Next request's dialog token */
  352. u8 next_neighbor_rep_token;
  353. };
  354. /**
  355. * struct wpa_supplicant - Internal data for wpa_supplicant interface
  356. *
  357. * This structure contains the internal data for core wpa_supplicant code. This
  358. * should be only used directly from the core code. However, a pointer to this
  359. * data is used from other files as an arbitrary context pointer in calls to
  360. * core functions.
  361. */
  362. struct wpa_supplicant {
  363. struct wpa_global *global;
  364. struct wpa_radio *radio; /* shared radio context */
  365. struct dl_list radio_list; /* list head: struct wpa_radio::ifaces */
  366. struct wpa_supplicant *parent;
  367. struct wpa_supplicant *next;
  368. struct l2_packet_data *l2;
  369. struct l2_packet_data *l2_br;
  370. unsigned char own_addr[ETH_ALEN];
  371. unsigned char perm_addr[ETH_ALEN];
  372. char ifname[100];
  373. #ifdef CONFIG_CTRL_IFACE_DBUS
  374. char *dbus_path;
  375. #endif /* CONFIG_CTRL_IFACE_DBUS */
  376. #ifdef CONFIG_CTRL_IFACE_DBUS_NEW
  377. char *dbus_new_path;
  378. char *dbus_groupobj_path;
  379. #ifdef CONFIG_AP
  380. char *preq_notify_peer;
  381. #endif /* CONFIG_AP */
  382. #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */
  383. char bridge_ifname[16];
  384. char *confname;
  385. char *confanother;
  386. struct wpa_config *conf;
  387. int countermeasures;
  388. struct os_reltime last_michael_mic_error;
  389. u8 bssid[ETH_ALEN];
  390. u8 pending_bssid[ETH_ALEN]; /* If wpa_state == WPA_ASSOCIATING, this
  391. * field contains the target BSSID. */
  392. int reassociate; /* reassociation requested */
  393. int reassoc_same_bss; /* reassociating to the same bss */
  394. int disconnected; /* all connections disabled; i.e., do no reassociate
  395. * before this has been cleared */
  396. struct wpa_ssid *current_ssid;
  397. struct wpa_ssid *last_ssid;
  398. struct wpa_bss *current_bss;
  399. int ap_ies_from_associnfo;
  400. unsigned int assoc_freq;
  401. /* Selected configuration (based on Beacon/ProbeResp WPA IE) */
  402. int pairwise_cipher;
  403. int group_cipher;
  404. int key_mgmt;
  405. int wpa_proto;
  406. int mgmt_group_cipher;
  407. void *drv_priv; /* private data used by driver_ops */
  408. void *global_drv_priv;
  409. u8 *bssid_filter;
  410. size_t bssid_filter_count;
  411. u8 *disallow_aps_bssid;
  412. size_t disallow_aps_bssid_count;
  413. struct wpa_ssid_value *disallow_aps_ssid;
  414. size_t disallow_aps_ssid_count;
  415. enum { WPA_SETBAND_AUTO, WPA_SETBAND_5G, WPA_SETBAND_2G } setband;
  416. /* Preferred network for the next connection attempt */
  417. struct wpa_ssid *next_ssid;
  418. /* previous scan was wildcard when interleaving between
  419. * wildcard scans and specific SSID scan when max_ssids=1 */
  420. int prev_scan_wildcard;
  421. struct wpa_ssid *prev_scan_ssid; /* previously scanned SSID;
  422. * NULL = not yet initialized (start
  423. * with wildcard SSID)
  424. * WILDCARD_SSID_SCAN = wildcard
  425. * SSID was used in the previous scan
  426. */
  427. #define WILDCARD_SSID_SCAN ((struct wpa_ssid *) 1)
  428. struct wpa_ssid *prev_sched_ssid; /* last SSID used in sched scan */
  429. int sched_scan_timeout;
  430. int sched_scan_interval;
  431. int first_sched_scan;
  432. int sched_scan_timed_out;
  433. void (*scan_res_handler)(struct wpa_supplicant *wpa_s,
  434. struct wpa_scan_results *scan_res);
  435. struct dl_list bss; /* struct wpa_bss::list */
  436. struct dl_list bss_id; /* struct wpa_bss::list_id */
  437. size_t num_bss;
  438. unsigned int bss_update_idx;
  439. unsigned int bss_next_id;
  440. /*
  441. * Pointers to BSS entries in the order they were in the last scan
  442. * results.
  443. */
  444. struct wpa_bss **last_scan_res;
  445. unsigned int last_scan_res_used;
  446. unsigned int last_scan_res_size;
  447. struct os_reltime last_scan;
  448. struct wpa_driver_ops *driver;
  449. int interface_removed; /* whether the network interface has been
  450. * removed */
  451. struct wpa_sm *wpa;
  452. struct eapol_sm *eapol;
  453. struct ctrl_iface_priv *ctrl_iface;
  454. enum wpa_states wpa_state;
  455. struct wpa_radio_work *scan_work;
  456. int scanning;
  457. int sched_scanning;
  458. int new_connection;
  459. int eapol_received; /* number of EAPOL packets received after the
  460. * previous association event */
  461. struct scard_data *scard;
  462. char imsi[20];
  463. int mnc_len;
  464. unsigned char last_eapol_src[ETH_ALEN];
  465. unsigned int keys_cleared; /* bitfield of key indexes that the driver is
  466. * known not to be configured with a key */
  467. struct wpa_blacklist *blacklist;
  468. /**
  469. * extra_blacklist_count - Sum of blacklist counts after last connection
  470. *
  471. * This variable is used to maintain a count of temporary blacklisting
  472. * failures (maximum number for any BSS) over blacklist clear
  473. * operations. This is needed for figuring out whether there has been
  474. * failures prior to the last blacklist clear operation which happens
  475. * whenever no other not-blacklisted BSS candidates are available. This
  476. * gets cleared whenever a connection has been established successfully.
  477. */
  478. int extra_blacklist_count;
  479. /**
  480. * scan_req - Type of the scan request
  481. */
  482. enum scan_req_type {
  483. /**
  484. * NORMAL_SCAN_REQ - Normal scan request
  485. *
  486. * This is used for scans initiated by wpa_supplicant to find an
  487. * AP for a connection.
  488. */
  489. NORMAL_SCAN_REQ,
  490. /**
  491. * INITIAL_SCAN_REQ - Initial scan request
  492. *
  493. * This is used for the first scan on an interface to force at
  494. * least one scan to be run even if the configuration does not
  495. * include any enabled networks.
  496. */
  497. INITIAL_SCAN_REQ,
  498. /**
  499. * MANUAL_SCAN_REQ - Manual scan request
  500. *
  501. * This is used for scans where the user request a scan or
  502. * a specific wpa_supplicant operation (e.g., WPS) requires scan
  503. * to be run.
  504. */
  505. MANUAL_SCAN_REQ
  506. } scan_req, last_scan_req;
  507. struct os_reltime scan_trigger_time, scan_start_time;
  508. int scan_runs; /* number of scan runs since WPS was started */
  509. int *next_scan_freqs;
  510. int *manual_scan_freqs;
  511. int *manual_sched_scan_freqs;
  512. unsigned int manual_scan_passive:1;
  513. unsigned int manual_scan_use_id:1;
  514. unsigned int manual_scan_only_new:1;
  515. unsigned int own_scan_requested:1;
  516. unsigned int own_scan_running:1;
  517. unsigned int external_scan_running:1;
  518. unsigned int clear_driver_scan_cache:1;
  519. unsigned int manual_scan_id;
  520. int scan_interval; /* time in sec between scans to find suitable AP */
  521. int normal_scans; /* normal scans run before sched_scan */
  522. int scan_for_connection; /* whether the scan request was triggered for
  523. * finding a connection */
  524. #define MAX_SCAN_ID 16
  525. int scan_id[MAX_SCAN_ID];
  526. unsigned int scan_id_count;
  527. u64 drv_flags;
  528. unsigned int drv_enc;
  529. unsigned int drv_smps_modes;
  530. unsigned int drv_rrm_flags;
  531. /*
  532. * A bitmap of supported protocols for probe response offload. See
  533. * struct wpa_driver_capa in driver.h
  534. */
  535. unsigned int probe_resp_offloads;
  536. /* extended capabilities supported by the driver */
  537. const u8 *extended_capa, *extended_capa_mask;
  538. unsigned int extended_capa_len;
  539. int max_scan_ssids;
  540. int max_sched_scan_ssids;
  541. int sched_scan_supported;
  542. unsigned int max_match_sets;
  543. unsigned int max_remain_on_chan;
  544. unsigned int max_stations;
  545. int pending_mic_error_report;
  546. int pending_mic_error_pairwise;
  547. int mic_errors_seen; /* Michael MIC errors with the current PTK */
  548. struct wps_context *wps;
  549. int wps_success; /* WPS success event received */
  550. struct wps_er *wps_er;
  551. unsigned int wps_run;
  552. int blacklist_cleared;
  553. struct wpabuf *pending_eapol_rx;
  554. struct os_reltime pending_eapol_rx_time;
  555. u8 pending_eapol_rx_src[ETH_ALEN];
  556. unsigned int last_eapol_matches_bssid:1;
  557. unsigned int eap_expected_failure:1;
  558. unsigned int reattach:1; /* reassociation to the same BSS requested */
  559. unsigned int mac_addr_changed:1;
  560. struct os_reltime last_mac_addr_change;
  561. int last_mac_addr_style;
  562. struct ibss_rsn *ibss_rsn;
  563. int set_sta_uapsd;
  564. int sta_uapsd;
  565. int set_ap_uapsd;
  566. int ap_uapsd;
  567. #ifdef CONFIG_SME
  568. struct {
  569. u8 ssid[32];
  570. size_t ssid_len;
  571. int freq;
  572. u8 assoc_req_ie[200];
  573. size_t assoc_req_ie_len;
  574. int mfp;
  575. int ft_used;
  576. u8 mobility_domain[2];
  577. u8 *ft_ies;
  578. size_t ft_ies_len;
  579. u8 prev_bssid[ETH_ALEN];
  580. int prev_bssid_set;
  581. int auth_alg;
  582. int proto;
  583. int sa_query_count; /* number of pending SA Query requests;
  584. * 0 = no SA Query in progress */
  585. int sa_query_timed_out;
  586. u8 *sa_query_trans_id; /* buffer of WLAN_SA_QUERY_TR_ID_LEN *
  587. * sa_query_count octets of pending
  588. * SA Query transaction identifiers */
  589. struct os_reltime sa_query_start;
  590. struct os_reltime last_unprot_disconnect;
  591. enum { HT_SEC_CHAN_UNKNOWN,
  592. HT_SEC_CHAN_ABOVE,
  593. HT_SEC_CHAN_BELOW } ht_sec_chan;
  594. u8 sched_obss_scan;
  595. u16 obss_scan_int;
  596. u16 bss_max_idle_period;
  597. #ifdef CONFIG_SAE
  598. struct sae_data sae;
  599. struct wpabuf *sae_token;
  600. int sae_group_index;
  601. unsigned int sae_pmksa_caching:1;
  602. #endif /* CONFIG_SAE */
  603. } sme;
  604. #endif /* CONFIG_SME */
  605. #ifdef CONFIG_AP
  606. struct hostapd_iface *ap_iface;
  607. void (*ap_configured_cb)(void *ctx, void *data);
  608. void *ap_configured_cb_ctx;
  609. void *ap_configured_cb_data;
  610. #endif /* CONFIG_AP */
  611. struct hostapd_iface *ifmsh;
  612. #ifdef CONFIG_MESH
  613. struct mesh_rsn *mesh_rsn;
  614. int mesh_if_idx;
  615. unsigned int mesh_if_created:1;
  616. #endif /* CONFIG_MESH */
  617. unsigned int off_channel_freq;
  618. struct wpabuf *pending_action_tx;
  619. u8 pending_action_src[ETH_ALEN];
  620. u8 pending_action_dst[ETH_ALEN];
  621. u8 pending_action_bssid[ETH_ALEN];
  622. unsigned int pending_action_freq;
  623. int pending_action_no_cck;
  624. int pending_action_without_roc;
  625. unsigned int pending_action_tx_done:1;
  626. void (*pending_action_tx_status_cb)(struct wpa_supplicant *wpa_s,
  627. unsigned int freq, const u8 *dst,
  628. const u8 *src, const u8 *bssid,
  629. const u8 *data, size_t data_len,
  630. enum offchannel_send_action_result
  631. result);
  632. unsigned int roc_waiting_drv_freq;
  633. int action_tx_wait_time;
  634. int p2p_mgmt;
  635. #ifdef CONFIG_P2P
  636. struct wpa_supplicant *p2p_dev;
  637. struct p2p_go_neg_results *go_params;
  638. int create_p2p_iface;
  639. u8 pending_interface_addr[ETH_ALEN];
  640. char pending_interface_name[100];
  641. int pending_interface_type;
  642. int p2p_group_idx;
  643. unsigned int pending_listen_freq;
  644. unsigned int pending_listen_duration;
  645. enum {
  646. NOT_P2P_GROUP_INTERFACE,
  647. P2P_GROUP_INTERFACE_PENDING,
  648. P2P_GROUP_INTERFACE_GO,
  649. P2P_GROUP_INTERFACE_CLIENT
  650. } p2p_group_interface;
  651. struct p2p_group *p2p_group;
  652. int p2p_long_listen; /* remaining time in long Listen state in ms */
  653. char p2p_pin[10];
  654. int p2p_wps_method;
  655. u8 p2p_auth_invite[ETH_ALEN];
  656. int p2p_sd_over_ctrl_iface;
  657. int p2p_in_provisioning;
  658. int p2p_in_invitation;
  659. int p2p_invite_go_freq;
  660. int pending_invite_ssid_id;
  661. int show_group_started;
  662. u8 go_dev_addr[ETH_ALEN];
  663. int pending_pd_before_join;
  664. u8 pending_join_iface_addr[ETH_ALEN];
  665. u8 pending_join_dev_addr[ETH_ALEN];
  666. int pending_join_wps_method;
  667. u8 p2p_join_ssid[32];
  668. size_t p2p_join_ssid_len;
  669. int p2p_join_scan_count;
  670. int auto_pd_scan_retry;
  671. int force_long_sd;
  672. u16 pending_pd_config_methods;
  673. enum {
  674. NORMAL_PD, AUTO_PD_GO_NEG, AUTO_PD_JOIN
  675. } pending_pd_use;
  676. /*
  677. * Whether cross connection is disallowed by the AP to which this
  678. * interface is associated (only valid if there is an association).
  679. */
  680. int cross_connect_disallowed;
  681. /*
  682. * Whether this P2P group is configured to use cross connection (only
  683. * valid if this is P2P GO interface). The actual cross connect packet
  684. * forwarding may not be configured depending on the uplink status.
  685. */
  686. int cross_connect_enabled;
  687. /* Whether cross connection forwarding is in use at the moment. */
  688. int cross_connect_in_use;
  689. /*
  690. * Uplink interface name for cross connection
  691. */
  692. char cross_connect_uplink[100];
  693. unsigned int p2p_auto_join:1;
  694. unsigned int p2p_auto_pd:1;
  695. unsigned int p2p_persistent_group:1;
  696. unsigned int p2p_fallback_to_go_neg:1;
  697. unsigned int p2p_pd_before_go_neg:1;
  698. unsigned int p2p_go_ht40:1;
  699. unsigned int p2p_go_vht:1;
  700. unsigned int user_initiated_pd:1;
  701. unsigned int p2p_go_group_formation_completed:1;
  702. unsigned int group_formation_reported:1;
  703. unsigned int waiting_presence_resp;
  704. int p2p_first_connection_timeout;
  705. unsigned int p2p_nfc_tag_enabled:1;
  706. unsigned int p2p_peer_oob_pk_hash_known:1;
  707. unsigned int p2p_disable_ip_addr_req:1;
  708. int p2p_persistent_go_freq;
  709. int p2p_persistent_id;
  710. int p2p_go_intent;
  711. int p2p_connect_freq;
  712. struct os_reltime p2p_auto_started;
  713. struct wpa_ssid *p2p_last_4way_hs_fail;
  714. struct wpa_radio_work *p2p_scan_work;
  715. struct wpa_radio_work *p2p_listen_work;
  716. struct wpa_radio_work *p2p_send_action_work;
  717. u16 p2p_oob_dev_pw_id; /* OOB Device Password Id for group formation */
  718. struct wpabuf *p2p_oob_dev_pw; /* OOB Device Password for group
  719. * formation */
  720. u8 p2p_peer_oob_pubkey_hash[WPS_OOB_PUBKEY_HASH_LEN];
  721. u8 p2p_ip_addr_info[3 * 4];
  722. /* group common frequencies */
  723. int *p2p_group_common_freqs;
  724. unsigned int p2p_group_common_freqs_num;
  725. #endif /* CONFIG_P2P */
  726. struct wpa_ssid *bgscan_ssid;
  727. const struct bgscan_ops *bgscan;
  728. void *bgscan_priv;
  729. const struct autoscan_ops *autoscan;
  730. struct wpa_driver_scan_params *autoscan_params;
  731. void *autoscan_priv;
  732. struct wpa_ssid *connect_without_scan;
  733. struct wps_ap_info *wps_ap;
  734. size_t num_wps_ap;
  735. int wps_ap_iter;
  736. int after_wps;
  737. int known_wps_freq;
  738. unsigned int wps_freq;
  739. int wps_fragment_size;
  740. int auto_reconnect_disabled;
  741. /* Channel preferences for AP/P2P GO use */
  742. int best_24_freq;
  743. int best_5_freq;
  744. int best_overall_freq;
  745. struct gas_query *gas;
  746. #ifdef CONFIG_INTERWORKING
  747. unsigned int fetch_anqp_in_progress:1;
  748. unsigned int network_select:1;
  749. unsigned int auto_select:1;
  750. unsigned int auto_network_select:1;
  751. unsigned int fetch_all_anqp:1;
  752. unsigned int fetch_osu_info:1;
  753. unsigned int fetch_osu_waiting_scan:1;
  754. unsigned int fetch_osu_icon_in_progress:1;
  755. struct wpa_bss *interworking_gas_bss;
  756. unsigned int osu_icon_id;
  757. struct osu_provider *osu_prov;
  758. size_t osu_prov_count;
  759. struct os_reltime osu_icon_fetch_start;
  760. unsigned int num_osu_scans;
  761. unsigned int num_prov_found;
  762. #endif /* CONFIG_INTERWORKING */
  763. unsigned int drv_capa_known;
  764. struct {
  765. struct hostapd_hw_modes *modes;
  766. u16 num_modes;
  767. u16 flags;
  768. } hw;
  769. #ifdef CONFIG_MACSEC
  770. struct ieee802_1x_kay *kay;
  771. #endif /* CONFIG_MACSEC */
  772. int pno;
  773. int pno_sched_pending;
  774. /* WLAN_REASON_* reason codes. Negative if locally generated. */
  775. int disconnect_reason;
  776. struct ext_password_data *ext_pw;
  777. struct wpabuf *last_gas_resp, *prev_gas_resp;
  778. u8 last_gas_addr[ETH_ALEN], prev_gas_addr[ETH_ALEN];
  779. u8 last_gas_dialog_token, prev_gas_dialog_token;
  780. unsigned int no_keep_alive:1;
  781. unsigned int ext_mgmt_frame_handling:1;
  782. unsigned int ext_eapol_frame_io:1;
  783. unsigned int wmm_ac_supported:1;
  784. unsigned int ext_work_in_progress:1;
  785. #define MAC_ADDR_RAND_SCAN BIT(0)
  786. #define MAC_ADDR_RAND_SCHED_SCAN BIT(1)
  787. #define MAC_ADDR_RAND_PNO BIT(2)
  788. #define MAC_ADDR_RAND_ALL (MAC_ADDR_RAND_SCAN | \
  789. MAC_ADDR_RAND_SCHED_SCAN | \
  790. MAC_ADDR_RAND_PNO)
  791. unsigned int mac_addr_rand_supported;
  792. unsigned int mac_addr_rand_enable;
  793. /* MAC Address followed by mask (2 * ETH_ALEN) */
  794. u8 *mac_addr_scan;
  795. u8 *mac_addr_sched_scan;
  796. u8 *mac_addr_pno;
  797. #ifdef CONFIG_WNM
  798. u8 wnm_dialog_token;
  799. u8 wnm_reply;
  800. u8 wnm_num_neighbor_report;
  801. u8 wnm_mode;
  802. u16 wnm_dissoc_timer;
  803. u8 wnm_bss_termination_duration[12];
  804. struct neighbor_report *wnm_neighbor_report_elements;
  805. struct os_reltime wnm_cand_valid_until;
  806. u8 wnm_cand_from_bss[ETH_ALEN];
  807. #endif /* CONFIG_WNM */
  808. #ifdef CONFIG_TESTING_GET_GTK
  809. u8 last_gtk[32];
  810. size_t last_gtk_len;
  811. #endif /* CONFIG_TESTING_GET_GTK */
  812. unsigned int num_multichan_concurrent;
  813. struct wpa_radio_work *connect_work;
  814. unsigned int ext_work_id;
  815. struct wpabuf *vendor_elem[NUM_VENDOR_ELEM_FRAMES];
  816. #ifdef CONFIG_TESTING_OPTIONS
  817. struct l2_packet_data *l2_test;
  818. unsigned int extra_roc_dur;
  819. #endif /* CONFIG_TESTING_OPTIONS */
  820. struct wmm_ac_assoc_data *wmm_ac_assoc_info;
  821. struct wmm_tspec_element *tspecs[WMM_AC_NUM][TS_DIR_IDX_COUNT];
  822. struct wmm_ac_addts_request *addts_request;
  823. u8 wmm_ac_last_dialog_token;
  824. struct wmm_tspec_element *last_tspecs;
  825. u8 last_tspecs_count;
  826. struct rrm_data rrm;
  827. };
  828. /* wpa_supplicant.c */
  829. void wpa_supplicant_apply_ht_overrides(
  830. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  831. struct wpa_driver_associate_params *params);
  832. void wpa_supplicant_apply_vht_overrides(
  833. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  834. struct wpa_driver_associate_params *params);
  835. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  836. int wpa_supplicant_set_wpa_none_key(struct wpa_supplicant *wpa_s,
  837. struct wpa_ssid *ssid);
  838. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s);
  839. const char * wpa_supplicant_state_txt(enum wpa_states state);
  840. int wpa_supplicant_update_mac_addr(struct wpa_supplicant *wpa_s);
  841. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s);
  842. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  843. struct wpa_bss *bss, struct wpa_ssid *ssid,
  844. u8 *wpa_ie, size_t *wpa_ie_len);
  845. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  846. struct wpa_bss *bss,
  847. struct wpa_ssid *ssid);
  848. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  849. struct wpa_ssid *ssid);
  850. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s);
  851. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr);
  852. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  853. int sec, int usec);
  854. void wpa_supplicant_reinit_autoscan(struct wpa_supplicant *wpa_s);
  855. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  856. enum wpa_states state);
  857. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s);
  858. const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s);
  859. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s);
  860. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  861. int reason_code);
  862. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  863. struct wpa_ssid *ssid);
  864. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  865. struct wpa_ssid *ssid);
  866. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  867. struct wpa_ssid *ssid);
  868. int wpas_set_pkcs11_engine_and_module_path(struct wpa_supplicant *wpa_s,
  869. const char *pkcs11_engine_path,
  870. const char *pkcs11_module_path);
  871. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s,
  872. int ap_scan);
  873. int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
  874. unsigned int expire_age);
  875. int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
  876. unsigned int expire_count);
  877. int wpa_supplicant_set_scan_interval(struct wpa_supplicant *wpa_s,
  878. int scan_interval);
  879. int wpa_supplicant_set_debug_params(struct wpa_global *global,
  880. int debug_level, int debug_timestamp,
  881. int debug_show_keys);
  882. void free_hw_features(struct wpa_supplicant *wpa_s);
  883. void wpa_show_license(void);
  884. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  885. struct wpa_interface *iface);
  886. int wpa_supplicant_remove_iface(struct wpa_global *global,
  887. struct wpa_supplicant *wpa_s,
  888. int terminate);
  889. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  890. const char *ifname);
  891. struct wpa_global * wpa_supplicant_init(struct wpa_params *params);
  892. int wpa_supplicant_run(struct wpa_global *global);
  893. void wpa_supplicant_deinit(struct wpa_global *global);
  894. int wpa_supplicant_scard_init(struct wpa_supplicant *wpa_s,
  895. struct wpa_ssid *ssid);
  896. void wpa_supplicant_terminate_proc(struct wpa_global *global);
  897. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  898. const u8 *buf, size_t len);
  899. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s);
  900. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s);
  901. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid);
  902. int wpas_driver_bss_selection(struct wpa_supplicant *wpa_s);
  903. int wpas_is_p2p_prioritized(struct wpa_supplicant *wpa_s);
  904. void wpas_auth_failed(struct wpa_supplicant *wpa_s, char *reason);
  905. void wpas_clear_temp_disabled(struct wpa_supplicant *wpa_s,
  906. struct wpa_ssid *ssid, int clear_failures);
  907. int disallowed_bssid(struct wpa_supplicant *wpa_s, const u8 *bssid);
  908. int disallowed_ssid(struct wpa_supplicant *wpa_s, const u8 *ssid,
  909. size_t ssid_len);
  910. void wpas_request_connection(struct wpa_supplicant *wpa_s);
  911. int wpas_build_ext_capab(struct wpa_supplicant *wpa_s, u8 *buf, size_t buflen);
  912. int wpas_update_random_addr(struct wpa_supplicant *wpa_s, int style);
  913. int wpas_update_random_addr_disassoc(struct wpa_supplicant *wpa_s);
  914. void add_freq(int *freqs, int *num_freqs, int freq);
  915. void wpas_rrm_reset(struct wpa_supplicant *wpa_s);
  916. void wpas_rrm_process_neighbor_rep(struct wpa_supplicant *wpa_s,
  917. const u8 *report, size_t report_len);
  918. int wpas_rrm_send_neighbor_rep_request(struct wpa_supplicant *wpa_s,
  919. const struct wpa_ssid *ssid,
  920. void (*cb)(void *ctx,
  921. struct wpabuf *neighbor_rep),
  922. void *cb_ctx);
  923. void wpas_rrm_handle_link_measurement_request(struct wpa_supplicant *wpa_s,
  924. const u8 *src,
  925. const u8 *frame, size_t len,
  926. int rssi);
  927. /**
  928. * wpa_supplicant_ctrl_iface_ctrl_rsp_handle - Handle a control response
  929. * @wpa_s: Pointer to wpa_supplicant data
  930. * @ssid: Pointer to the network block the reply is for
  931. * @field: field the response is a reply for
  932. * @value: value (ie, password, etc) for @field
  933. * Returns: 0 on success, non-zero on error
  934. *
  935. * Helper function to handle replies to control interface requests.
  936. */
  937. int wpa_supplicant_ctrl_iface_ctrl_rsp_handle(struct wpa_supplicant *wpa_s,
  938. struct wpa_ssid *ssid,
  939. const char *field,
  940. const char *value);
  941. /* events.c */
  942. void wpa_supplicant_mark_disassoc(struct wpa_supplicant *wpa_s);
  943. int wpa_supplicant_connect(struct wpa_supplicant *wpa_s,
  944. struct wpa_bss *selected,
  945. struct wpa_ssid *ssid);
  946. void wpa_supplicant_stop_countermeasures(void *eloop_ctx, void *sock_ctx);
  947. void wpa_supplicant_delayed_mic_error_report(void *eloop_ctx, void *sock_ctx);
  948. void wnm_bss_keep_alive_deinit(struct wpa_supplicant *wpa_s);
  949. int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s);
  950. struct wpa_bss * wpa_supplicant_pick_network(struct wpa_supplicant *wpa_s,
  951. struct wpa_ssid **selected_ssid);
  952. /* eap_register.c */
  953. int eap_register_methods(void);
  954. /**
  955. * Utility method to tell if a given network is a persistent group
  956. * @ssid: Network object
  957. * Returns: 1 if network is a persistent group, 0 otherwise
  958. */
  959. static inline int network_is_persistent_group(struct wpa_ssid *ssid)
  960. {
  961. return ((ssid->disabled == 2) || ssid->p2p_persistent_group);
  962. }
  963. int wpas_network_disabled(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  964. int wpas_init_ext_pw(struct wpa_supplicant *wpa_s);
  965. void dump_freq_data(struct wpa_supplicant *wpa_s, const char *title,
  966. struct wpa_used_freq_data *freqs_data,
  967. unsigned int len);
  968. int get_shared_radio_freqs_data(struct wpa_supplicant *wpa_s,
  969. struct wpa_used_freq_data *freqs_data,
  970. unsigned int len);
  971. int get_shared_radio_freqs(struct wpa_supplicant *wpa_s,
  972. int *freq_array, unsigned int len);
  973. #endif /* WPA_SUPPLICANT_I_H */