hostapd.h 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /*
  2. * hostapd / Initialization and configuration
  3. * Copyright (c) 2002-2009, 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 "ap_config.h"
  12. struct wpa_driver_ops;
  13. struct wpa_ctrl_dst;
  14. struct radius_server_data;
  15. struct upnp_wps_device_sm;
  16. struct hostapd_data;
  17. struct sta_info;
  18. struct hostap_sta_driver_data;
  19. struct ieee80211_ht_capabilities;
  20. struct full_dynamic_vlan;
  21. enum wps_event;
  22. union wps_event_data;
  23. struct hostapd_iface;
  24. struct hapd_interfaces {
  25. int (*reload_config)(struct hostapd_iface *iface);
  26. struct hostapd_config * (*config_read_cb)(const char *config_fname);
  27. int (*ctrl_iface_init)(struct hostapd_data *hapd);
  28. void (*ctrl_iface_deinit)(struct hostapd_data *hapd);
  29. int (*for_each_interface)(struct hapd_interfaces *interfaces,
  30. int (*cb)(struct hostapd_iface *iface,
  31. void *ctx), void *ctx);
  32. int (*driver_init)(struct hostapd_iface *iface);
  33. size_t count;
  34. int global_ctrl_sock;
  35. char *global_iface_path;
  36. char *global_iface_name;
  37. gid_t ctrl_iface_group;
  38. struct hostapd_iface **iface;
  39. };
  40. struct hostapd_probereq_cb {
  41. int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid,
  42. const u8 *ie, size_t ie_len, int ssi_signal);
  43. void *ctx;
  44. };
  45. #define HOSTAPD_RATE_BASIC 0x00000001
  46. struct hostapd_rate_data {
  47. int rate; /* rate in 100 kbps */
  48. int flags; /* HOSTAPD_RATE_ flags */
  49. };
  50. struct hostapd_frame_info {
  51. u32 channel;
  52. u32 datarate;
  53. int ssi_signal; /* dBm */
  54. };
  55. /**
  56. * struct hostapd_data - hostapd per-BSS data structure
  57. */
  58. struct hostapd_data {
  59. struct hostapd_iface *iface;
  60. struct hostapd_config *iconf;
  61. struct hostapd_bss_config *conf;
  62. int interface_added; /* virtual interface added for this BSS */
  63. u8 own_addr[ETH_ALEN];
  64. int num_sta; /* number of entries in sta_list */
  65. struct sta_info *sta_list; /* STA info list head */
  66. #define STA_HASH_SIZE 256
  67. #define STA_HASH(sta) (sta[5])
  68. struct sta_info *sta_hash[STA_HASH_SIZE];
  69. /*
  70. * Bitfield for indicating which AIDs are allocated. Only AID values
  71. * 1-2007 are used and as such, the bit at index 0 corresponds to AID
  72. * 1.
  73. */
  74. #define AID_WORDS ((2008 + 31) / 32)
  75. u32 sta_aid[AID_WORDS];
  76. const struct wpa_driver_ops *driver;
  77. void *drv_priv;
  78. void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
  79. struct sta_info *sta, int reassoc);
  80. void *msg_ctx; /* ctx for wpa_msg() calls */
  81. void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */
  82. struct radius_client_data *radius;
  83. u32 acct_session_id_hi, acct_session_id_lo;
  84. struct radius_das_data *radius_das;
  85. struct iapp_data *iapp;
  86. struct hostapd_cached_radius_acl *acl_cache;
  87. struct hostapd_acl_query_data *acl_queries;
  88. struct wpa_authenticator *wpa_auth;
  89. struct eapol_authenticator *eapol_auth;
  90. struct rsn_preauth_interface *preauth_iface;
  91. time_t michael_mic_failure;
  92. int michael_mic_failures;
  93. int tkip_countermeasures;
  94. int ctrl_sock;
  95. struct wpa_ctrl_dst *ctrl_dst;
  96. void *ssl_ctx;
  97. void *eap_sim_db_priv;
  98. struct radius_server_data *radius_srv;
  99. int parameter_set_count;
  100. /* Time Advertisement */
  101. u8 time_update_counter;
  102. struct wpabuf *time_adv;
  103. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  104. struct full_dynamic_vlan *full_dynamic_vlan;
  105. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  106. struct l2_packet_data *l2;
  107. struct wps_context *wps;
  108. int beacon_set_done;
  109. struct wpabuf *wps_beacon_ie;
  110. struct wpabuf *wps_probe_resp_ie;
  111. #ifdef CONFIG_WPS
  112. unsigned int ap_pin_failures;
  113. unsigned int ap_pin_failures_consecutive;
  114. struct upnp_wps_device_sm *wps_upnp;
  115. unsigned int ap_pin_lockout_time;
  116. #endif /* CONFIG_WPS */
  117. struct hostapd_probereq_cb *probereq_cb;
  118. size_t num_probereq_cb;
  119. void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
  120. int freq);
  121. void *public_action_cb_ctx;
  122. void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len,
  123. int freq);
  124. void *public_action_cb2_ctx;
  125. int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len,
  126. int freq);
  127. void *vendor_action_cb_ctx;
  128. void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
  129. const u8 *uuid_e);
  130. void *wps_reg_success_cb_ctx;
  131. void (*wps_event_cb)(void *ctx, enum wps_event event,
  132. union wps_event_data *data);
  133. void *wps_event_cb_ctx;
  134. void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
  135. int authorized, const u8 *p2p_dev_addr);
  136. void *sta_authorized_cb_ctx;
  137. void (*setup_complete_cb)(void *ctx);
  138. void *setup_complete_cb_ctx;
  139. #ifdef CONFIG_P2P
  140. struct p2p_data *p2p;
  141. struct p2p_group *p2p_group;
  142. struct wpabuf *p2p_beacon_ie;
  143. struct wpabuf *p2p_probe_resp_ie;
  144. /* Number of non-P2P association stations */
  145. int num_sta_no_p2p;
  146. /* Periodic NoA (used only when no non-P2P clients in the group) */
  147. int noa_enabled;
  148. int noa_start;
  149. int noa_duration;
  150. #endif /* CONFIG_P2P */
  151. #ifdef CONFIG_INTERWORKING
  152. size_t gas_frag_limit;
  153. #endif /* CONFIG_INTERWORKING */
  154. #ifdef CONFIG_SQLITE
  155. struct hostapd_eap_user tmp_eap_user;
  156. #endif /* CONFIG_SQLITE */
  157. #ifdef CONFIG_SAE
  158. /** Key used for generating SAE anti-clogging tokens */
  159. u8 sae_token_key[8];
  160. os_time_t last_sae_token_key_update;
  161. #endif /* CONFIG_SAE */
  162. };
  163. /**
  164. * struct hostapd_iface - hostapd per-interface data structure
  165. */
  166. struct hostapd_iface {
  167. struct hapd_interfaces *interfaces;
  168. void *owner;
  169. char *config_fname;
  170. struct hostapd_config *conf;
  171. size_t num_bss;
  172. struct hostapd_data **bss;
  173. int num_ap; /* number of entries in ap_list */
  174. struct ap_info *ap_list; /* AP info list head */
  175. struct ap_info *ap_hash[STA_HASH_SIZE];
  176. unsigned int drv_flags;
  177. /*
  178. * A bitmap of supported protocols for probe response offload. See
  179. * struct wpa_driver_capa in driver.h
  180. */
  181. unsigned int probe_resp_offloads;
  182. /* extended capabilities supported by the driver */
  183. const u8 *extended_capa, *extended_capa_mask;
  184. unsigned int extended_capa_len;
  185. struct hostapd_hw_modes *hw_features;
  186. int num_hw_features;
  187. struct hostapd_hw_modes *current_mode;
  188. /* Rates that are currently used (i.e., filtered copy of
  189. * current_mode->channels */
  190. int num_rates;
  191. struct hostapd_rate_data *current_rates;
  192. int *basic_rates;
  193. int freq;
  194. u16 hw_flags;
  195. /* Number of associated Non-ERP stations (i.e., stations using 802.11b
  196. * in 802.11g BSS) */
  197. int num_sta_non_erp;
  198. /* Number of associated stations that do not support Short Slot Time */
  199. int num_sta_no_short_slot_time;
  200. /* Number of associated stations that do not support Short Preamble */
  201. int num_sta_no_short_preamble;
  202. int olbc; /* Overlapping Legacy BSS Condition */
  203. /* Number of HT associated stations that do not support greenfield */
  204. int num_sta_ht_no_gf;
  205. /* Number of associated non-HT stations */
  206. int num_sta_no_ht;
  207. /* Number of HT associated stations 20 MHz */
  208. int num_sta_ht_20mhz;
  209. /* Overlapping BSS information */
  210. int olbc_ht;
  211. u16 ht_op_mode;
  212. void (*scan_cb)(struct hostapd_iface *iface);
  213. };
  214. /* hostapd.c */
  215. int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
  216. int (*cb)(struct hostapd_iface *iface,
  217. void *ctx), void *ctx);
  218. int hostapd_reload_config(struct hostapd_iface *iface);
  219. struct hostapd_data *
  220. hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
  221. struct hostapd_config *conf,
  222. struct hostapd_bss_config *bss);
  223. int hostapd_setup_interface(struct hostapd_iface *iface);
  224. int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
  225. void hostapd_interface_deinit(struct hostapd_iface *iface);
  226. void hostapd_interface_free(struct hostapd_iface *iface);
  227. void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
  228. int reassoc);
  229. void hostapd_interface_deinit_free(struct hostapd_iface *iface);
  230. int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
  231. int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
  232. int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
  233. int hostapd_add_iface(struct hapd_interfaces *ifaces, char *buf);
  234. int hostapd_remove_iface(struct hapd_interfaces *ifaces, char *buf);
  235. /* utils.c */
  236. int hostapd_register_probereq_cb(struct hostapd_data *hapd,
  237. int (*cb)(void *ctx, const u8 *sa,
  238. const u8 *da, const u8 *bssid,
  239. const u8 *ie, size_t ie_len,
  240. int ssi_signal),
  241. void *ctx);
  242. void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr);
  243. /* drv_callbacks.c (TODO: move to somewhere else?) */
  244. int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
  245. const u8 *ie, size_t ielen, int reassoc);
  246. void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
  247. void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr);
  248. void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
  249. const u8 *addr, int reason_code);
  250. int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
  251. const u8 *bssid, const u8 *ie, size_t ie_len,
  252. int ssi_signal);
  253. void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
  254. int offset);
  255. const struct hostapd_eap_user *
  256. hostapd_get_eap_user(struct hostapd_data *hapd, const u8 *identity,
  257. size_t identity_len, int phase2);
  258. #endif /* HOSTAPD_H */