hostapd.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. /*
  2. * hostapd / Initialization and configuration
  3. * Copyright (c) 2002-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 HOSTAPD_H
  9. #define HOSTAPD_H
  10. #include "common/defs.h"
  11. #include "utils/list.h"
  12. #include "ap_config.h"
  13. #include "drivers/driver.h"
  14. struct wpa_ctrl_dst;
  15. struct radius_server_data;
  16. struct upnp_wps_device_sm;
  17. struct hostapd_data;
  18. struct sta_info;
  19. struct ieee80211_ht_capabilities;
  20. struct full_dynamic_vlan;
  21. enum wps_event;
  22. union wps_event_data;
  23. #ifdef CONFIG_MESH
  24. struct mesh_conf;
  25. #endif /* CONFIG_MESH */
  26. struct hostapd_iface;
  27. struct hapd_interfaces {
  28. int (*reload_config)(struct hostapd_iface *iface);
  29. struct hostapd_config * (*config_read_cb)(const char *config_fname);
  30. int (*ctrl_iface_init)(struct hostapd_data *hapd);
  31. void (*ctrl_iface_deinit)(struct hostapd_data *hapd);
  32. int (*for_each_interface)(struct hapd_interfaces *interfaces,
  33. int (*cb)(struct hostapd_iface *iface,
  34. void *ctx), void *ctx);
  35. int (*driver_init)(struct hostapd_iface *iface);
  36. size_t count;
  37. int global_ctrl_sock;
  38. struct dl_list global_ctrl_dst;
  39. char *global_iface_path;
  40. char *global_iface_name;
  41. #ifndef CONFIG_NATIVE_WINDOWS
  42. gid_t ctrl_iface_group;
  43. #endif /* CONFIG_NATIVE_WINDOWS */
  44. struct hostapd_iface **iface;
  45. size_t terminate_on_error;
  46. #ifndef CONFIG_NO_VLAN
  47. struct dynamic_iface *vlan_priv;
  48. #endif /* CONFIG_NO_VLAN */
  49. int eloop_initialized;
  50. };
  51. enum hostapd_chan_status {
  52. HOSTAPD_CHAN_VALID = 0, /* channel is ready */
  53. HOSTAPD_CHAN_INVALID = 1, /* no usable channel found */
  54. HOSTAPD_CHAN_ACS = 2, /* ACS work being performed */
  55. };
  56. struct hostapd_probereq_cb {
  57. int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid,
  58. const u8 *ie, size_t ie_len, int ssi_signal);
  59. void *ctx;
  60. };
  61. #define HOSTAPD_RATE_BASIC 0x00000001
  62. struct hostapd_rate_data {
  63. int rate; /* rate in 100 kbps */
  64. int flags; /* HOSTAPD_RATE_ flags */
  65. };
  66. struct hostapd_frame_info {
  67. u32 channel;
  68. u32 datarate;
  69. int ssi_signal; /* dBm */
  70. };
  71. enum wps_status {
  72. WPS_STATUS_SUCCESS = 1,
  73. WPS_STATUS_FAILURE
  74. };
  75. enum pbc_status {
  76. WPS_PBC_STATUS_DISABLE,
  77. WPS_PBC_STATUS_ACTIVE,
  78. WPS_PBC_STATUS_TIMEOUT,
  79. WPS_PBC_STATUS_OVERLAP
  80. };
  81. struct wps_stat {
  82. enum wps_status status;
  83. enum wps_error_indication failure_reason;
  84. enum pbc_status pbc_status;
  85. u8 peer_addr[ETH_ALEN];
  86. };
  87. struct hostapd_neighbor_entry {
  88. struct dl_list list;
  89. u8 bssid[ETH_ALEN];
  90. struct wpa_ssid_value ssid;
  91. struct wpabuf *nr;
  92. struct wpabuf *lci;
  93. struct wpabuf *civic;
  94. /* LCI update time */
  95. struct os_time lci_date;
  96. int stationary;
  97. };
  98. /**
  99. * struct hostapd_data - hostapd per-BSS data structure
  100. */
  101. struct hostapd_data {
  102. struct hostapd_iface *iface;
  103. struct hostapd_config *iconf;
  104. struct hostapd_bss_config *conf;
  105. int interface_added; /* virtual interface added for this BSS */
  106. unsigned int started:1;
  107. unsigned int disabled:1;
  108. unsigned int reenable_beacon:1;
  109. u8 own_addr[ETH_ALEN];
  110. int num_sta; /* number of entries in sta_list */
  111. struct sta_info *sta_list; /* STA info list head */
  112. #define STA_HASH_SIZE 256
  113. #define STA_HASH(sta) (sta[5])
  114. struct sta_info *sta_hash[STA_HASH_SIZE];
  115. /*
  116. * Bitfield for indicating which AIDs are allocated. Only AID values
  117. * 1-2007 are used and as such, the bit at index 0 corresponds to AID
  118. * 1.
  119. */
  120. #define AID_WORDS ((2008 + 31) / 32)
  121. u32 sta_aid[AID_WORDS];
  122. const struct wpa_driver_ops *driver;
  123. void *drv_priv;
  124. void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
  125. struct sta_info *sta, int reassoc);
  126. void *msg_ctx; /* ctx for wpa_msg() calls */
  127. void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */
  128. struct radius_client_data *radius;
  129. u64 acct_session_id;
  130. struct radius_das_data *radius_das;
  131. struct iapp_data *iapp;
  132. struct hostapd_cached_radius_acl *acl_cache;
  133. struct hostapd_acl_query_data *acl_queries;
  134. struct wpa_authenticator *wpa_auth;
  135. struct eapol_authenticator *eapol_auth;
  136. struct rsn_preauth_interface *preauth_iface;
  137. struct os_reltime michael_mic_failure;
  138. int michael_mic_failures;
  139. int tkip_countermeasures;
  140. int ctrl_sock;
  141. struct dl_list ctrl_dst;
  142. void *ssl_ctx;
  143. void *eap_sim_db_priv;
  144. struct radius_server_data *radius_srv;
  145. struct dl_list erp_keys; /* struct eap_server_erp_key */
  146. int parameter_set_count;
  147. /* Time Advertisement */
  148. u8 time_update_counter;
  149. struct wpabuf *time_adv;
  150. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  151. struct full_dynamic_vlan *full_dynamic_vlan;
  152. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  153. struct l2_packet_data *l2;
  154. struct wps_context *wps;
  155. int beacon_set_done;
  156. struct wpabuf *wps_beacon_ie;
  157. struct wpabuf *wps_probe_resp_ie;
  158. #ifdef CONFIG_WPS
  159. unsigned int ap_pin_failures;
  160. unsigned int ap_pin_failures_consecutive;
  161. struct upnp_wps_device_sm *wps_upnp;
  162. unsigned int ap_pin_lockout_time;
  163. struct wps_stat wps_stats;
  164. #endif /* CONFIG_WPS */
  165. struct hostapd_probereq_cb *probereq_cb;
  166. size_t num_probereq_cb;
  167. void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
  168. int freq);
  169. void *public_action_cb_ctx;
  170. void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len,
  171. int freq);
  172. void *public_action_cb2_ctx;
  173. int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len,
  174. int freq);
  175. void *vendor_action_cb_ctx;
  176. void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
  177. const u8 *uuid_e);
  178. void *wps_reg_success_cb_ctx;
  179. void (*wps_event_cb)(void *ctx, enum wps_event event,
  180. union wps_event_data *data);
  181. void *wps_event_cb_ctx;
  182. void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
  183. int authorized, const u8 *p2p_dev_addr);
  184. void *sta_authorized_cb_ctx;
  185. void (*setup_complete_cb)(void *ctx);
  186. void *setup_complete_cb_ctx;
  187. void (*new_psk_cb)(void *ctx, const u8 *mac_addr,
  188. const u8 *p2p_dev_addr, const u8 *psk,
  189. size_t psk_len);
  190. void *new_psk_cb_ctx;
  191. /* channel switch parameters */
  192. struct hostapd_freq_params cs_freq_params;
  193. u8 cs_count;
  194. int cs_block_tx;
  195. unsigned int cs_c_off_beacon;
  196. unsigned int cs_c_off_proberesp;
  197. int csa_in_progress;
  198. unsigned int cs_c_off_ecsa_beacon;
  199. unsigned int cs_c_off_ecsa_proberesp;
  200. /* BSS Load */
  201. unsigned int bss_load_update_timeout;
  202. #ifdef CONFIG_P2P
  203. struct p2p_data *p2p;
  204. struct p2p_group *p2p_group;
  205. struct wpabuf *p2p_beacon_ie;
  206. struct wpabuf *p2p_probe_resp_ie;
  207. /* Number of non-P2P association stations */
  208. int num_sta_no_p2p;
  209. /* Periodic NoA (used only when no non-P2P clients in the group) */
  210. int noa_enabled;
  211. int noa_start;
  212. int noa_duration;
  213. #endif /* CONFIG_P2P */
  214. #ifdef CONFIG_PROXYARP
  215. struct l2_packet_data *sock_dhcp;
  216. struct l2_packet_data *sock_ndisc;
  217. #endif /* CONFIG_PROXYARP */
  218. #ifdef CONFIG_MESH
  219. int num_plinks;
  220. int max_plinks;
  221. void (*mesh_sta_free_cb)(struct hostapd_data *hapd,
  222. struct sta_info *sta);
  223. struct wpabuf *mesh_pending_auth;
  224. struct os_reltime mesh_pending_auth_time;
  225. u8 mesh_required_peer[ETH_ALEN];
  226. #endif /* CONFIG_MESH */
  227. #ifdef CONFIG_SQLITE
  228. struct hostapd_eap_user tmp_eap_user;
  229. #endif /* CONFIG_SQLITE */
  230. #ifdef CONFIG_SAE
  231. /** Key used for generating SAE anti-clogging tokens */
  232. u8 sae_token_key[8];
  233. struct os_reltime last_sae_token_key_update;
  234. int dot11RSNASAERetransPeriod; /* msec */
  235. #endif /* CONFIG_SAE */
  236. #ifdef CONFIG_TESTING_OPTIONS
  237. unsigned int ext_mgmt_frame_handling:1;
  238. unsigned int ext_eapol_frame_io:1;
  239. struct l2_packet_data *l2_test;
  240. #endif /* CONFIG_TESTING_OPTIONS */
  241. #ifdef CONFIG_MBO
  242. unsigned int mbo_assoc_disallow;
  243. #endif /* CONFIG_MBO */
  244. struct dl_list nr_db;
  245. u8 lci_req_token;
  246. u8 range_req_token;
  247. unsigned int lci_req_active:1;
  248. unsigned int range_req_active:1;
  249. };
  250. struct hostapd_sta_info {
  251. struct dl_list list;
  252. u8 addr[ETH_ALEN];
  253. struct os_reltime last_seen;
  254. int ssi_signal;
  255. #ifdef CONFIG_TAXONOMY
  256. struct wpabuf *probe_ie_taxonomy;
  257. #endif /* CONFIG_TAXONOMY */
  258. };
  259. /**
  260. * struct hostapd_iface - hostapd per-interface data structure
  261. */
  262. struct hostapd_iface {
  263. struct hapd_interfaces *interfaces;
  264. void *owner;
  265. char *config_fname;
  266. struct hostapd_config *conf;
  267. char phy[16]; /* Name of the PHY (radio) */
  268. enum hostapd_iface_state {
  269. HAPD_IFACE_UNINITIALIZED,
  270. HAPD_IFACE_DISABLED,
  271. HAPD_IFACE_COUNTRY_UPDATE,
  272. HAPD_IFACE_ACS,
  273. HAPD_IFACE_HT_SCAN,
  274. HAPD_IFACE_DFS,
  275. HAPD_IFACE_ENABLED
  276. } state;
  277. #ifdef CONFIG_MESH
  278. struct mesh_conf *mconf;
  279. #endif /* CONFIG_MESH */
  280. size_t num_bss;
  281. struct hostapd_data **bss;
  282. unsigned int wait_channel_update:1;
  283. unsigned int cac_started:1;
  284. #ifdef CONFIG_FST
  285. struct fst_iface *fst;
  286. const struct wpabuf *fst_ies;
  287. #endif /* CONFIG_FST */
  288. /*
  289. * When set, indicates that the driver will handle the AP
  290. * teardown: delete global keys, station keys, and stations.
  291. */
  292. unsigned int driver_ap_teardown:1;
  293. /*
  294. * When set, indicates that this interface is part of list of
  295. * interfaces that need to be started together (synchronously).
  296. */
  297. unsigned int need_to_start_in_sync:1;
  298. /* Ready to start but waiting for other interfaces to become ready. */
  299. unsigned int ready_to_start_in_sync:1;
  300. int num_ap; /* number of entries in ap_list */
  301. struct ap_info *ap_list; /* AP info list head */
  302. struct ap_info *ap_hash[STA_HASH_SIZE];
  303. u64 drv_flags;
  304. /* SMPS modes supported by the driver (WPA_DRIVER_SMPS_MODE_*) */
  305. unsigned int smps_modes;
  306. /*
  307. * A bitmap of supported protocols for probe response offload. See
  308. * struct wpa_driver_capa in driver.h
  309. */
  310. unsigned int probe_resp_offloads;
  311. /* extended capabilities supported by the driver */
  312. const u8 *extended_capa, *extended_capa_mask;
  313. unsigned int extended_capa_len;
  314. unsigned int drv_max_acl_mac_addrs;
  315. struct hostapd_hw_modes *hw_features;
  316. int num_hw_features;
  317. struct hostapd_hw_modes *current_mode;
  318. /* Rates that are currently used (i.e., filtered copy of
  319. * current_mode->channels */
  320. int num_rates;
  321. struct hostapd_rate_data *current_rates;
  322. int *basic_rates;
  323. int freq;
  324. u16 hw_flags;
  325. /* Number of associated Non-ERP stations (i.e., stations using 802.11b
  326. * in 802.11g BSS) */
  327. int num_sta_non_erp;
  328. /* Number of associated stations that do not support Short Slot Time */
  329. int num_sta_no_short_slot_time;
  330. /* Number of associated stations that do not support Short Preamble */
  331. int num_sta_no_short_preamble;
  332. int olbc; /* Overlapping Legacy BSS Condition */
  333. /* Number of HT associated stations that do not support greenfield */
  334. int num_sta_ht_no_gf;
  335. /* Number of associated non-HT stations */
  336. int num_sta_no_ht;
  337. /* Number of HT associated stations 20 MHz */
  338. int num_sta_ht_20mhz;
  339. /* Number of HT40 intolerant stations */
  340. int num_sta_ht40_intolerant;
  341. /* Overlapping BSS information */
  342. int olbc_ht;
  343. u16 ht_op_mode;
  344. /* surveying helpers */
  345. /* number of channels surveyed */
  346. unsigned int chans_surveyed;
  347. /* lowest observed noise floor in dBm */
  348. s8 lowest_nf;
  349. /* channel utilization calculation */
  350. u64 last_channel_time;
  351. u64 last_channel_time_busy;
  352. u8 channel_utilization;
  353. /* eCSA IE will be added only if operating class is specified */
  354. u8 cs_oper_class;
  355. unsigned int dfs_cac_ms;
  356. struct os_reltime dfs_cac_start;
  357. /* Latched with the actual secondary channel information and will be
  358. * used while juggling between HT20 and HT40 modes. */
  359. int secondary_ch;
  360. #ifdef CONFIG_ACS
  361. unsigned int acs_num_completed_scans;
  362. #endif /* CONFIG_ACS */
  363. void (*scan_cb)(struct hostapd_iface *iface);
  364. int num_ht40_scan_tries;
  365. struct dl_list sta_seen; /* struct hostapd_sta_info */
  366. unsigned int num_sta_seen;
  367. };
  368. /* hostapd.c */
  369. int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
  370. int (*cb)(struct hostapd_iface *iface,
  371. void *ctx), void *ctx);
  372. int hostapd_reload_config(struct hostapd_iface *iface);
  373. struct hostapd_data *
  374. hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
  375. struct hostapd_config *conf,
  376. struct hostapd_bss_config *bss);
  377. int hostapd_setup_interface(struct hostapd_iface *iface);
  378. int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
  379. void hostapd_interface_deinit(struct hostapd_iface *iface);
  380. void hostapd_interface_free(struct hostapd_iface *iface);
  381. struct hostapd_iface * hostapd_alloc_iface(void);
  382. struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
  383. const char *config_file);
  384. struct hostapd_iface *
  385. hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
  386. const char *config_fname, int debug);
  387. void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
  388. int reassoc);
  389. void hostapd_interface_deinit_free(struct hostapd_iface *iface);
  390. int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
  391. int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
  392. int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
  393. int hostapd_add_iface(struct hapd_interfaces *ifaces, char *buf);
  394. int hostapd_remove_iface(struct hapd_interfaces *ifaces, char *buf);
  395. void hostapd_channel_list_updated(struct hostapd_iface *iface, int initiator);
  396. void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s);
  397. const char * hostapd_state_text(enum hostapd_iface_state s);
  398. int hostapd_csa_in_progress(struct hostapd_iface *iface);
  399. int hostapd_switch_channel(struct hostapd_data *hapd,
  400. struct csa_settings *settings);
  401. void
  402. hostapd_switch_channel_fallback(struct hostapd_iface *iface,
  403. const struct hostapd_freq_params *freq_params);
  404. void hostapd_cleanup_cs_params(struct hostapd_data *hapd);
  405. void hostapd_periodic_iface(struct hostapd_iface *iface);
  406. /* utils.c */
  407. int hostapd_register_probereq_cb(struct hostapd_data *hapd,
  408. int (*cb)(void *ctx, const u8 *sa,
  409. const u8 *da, const u8 *bssid,
  410. const u8 *ie, size_t ie_len,
  411. int ssi_signal),
  412. void *ctx);
  413. void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr);
  414. /* drv_callbacks.c (TODO: move to somewhere else?) */
  415. int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
  416. const u8 *ie, size_t ielen, int reassoc);
  417. void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
  418. void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr);
  419. void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
  420. const u8 *addr, int reason_code);
  421. int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
  422. const u8 *bssid, const u8 *ie, size_t ie_len,
  423. int ssi_signal);
  424. void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
  425. int offset, int width, int cf1, int cf2);
  426. struct survey_results;
  427. void hostapd_event_get_survey(struct hostapd_iface *iface,
  428. struct survey_results *survey_results);
  429. void hostapd_acs_channel_selected(struct hostapd_data *hapd,
  430. struct acs_selected_channels *acs_res);
  431. const struct hostapd_eap_user *
  432. hostapd_get_eap_user(struct hostapd_data *hapd, const u8 *identity,
  433. size_t identity_len, int phase2);
  434. struct hostapd_data * hostapd_get_iface(struct hapd_interfaces *interfaces,
  435. const char *ifname);
  436. #ifdef CONFIG_FST
  437. void fst_hostapd_fill_iface_obj(struct hostapd_data *hapd,
  438. struct fst_wpa_obj *iface_obj);
  439. #endif /* CONFIG_FST */
  440. #endif /* HOSTAPD_H */