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