hostapd.h 15 KB

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