123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- #ifndef HOSTAPD_H
- #define HOSTAPD_H
- #include "common.h"
- #include "hostapd_defs.h"
- #define MAX_VLAN_ID 4094
- struct wpa_driver_ops;
- struct wpa_ctrl_dst;
- struct radius_server_data;
- struct upnp_wps_device_sm;
- #ifdef CONFIG_FULL_DYNAMIC_VLAN
- struct full_dynamic_vlan;
- #endif
- struct hostapd_probereq_cb {
- void (*cb)(void *ctx, const u8 *sa, const u8 *ie, size_t ie_len);
- void *ctx;
- };
- struct hostapd_data {
- struct hostapd_iface *iface;
- struct hostapd_config *iconf;
- struct hostapd_bss_config *conf;
- int interface_added;
- u8 own_addr[ETH_ALEN];
- int num_sta;
- struct sta_info *sta_list;
- #define STA_HASH_SIZE 256
- #define STA_HASH(sta) (sta[5])
- struct sta_info *sta_hash[STA_HASH_SIZE];
-
- #define AID_WORDS ((2008 + 31) / 32)
- u32 sta_aid[AID_WORDS];
- const struct wpa_driver_ops *driver;
- void *drv_priv;
- void *msg_ctx;
- struct radius_client_data *radius;
- int radius_client_reconfigured;
- u32 acct_session_id_hi, acct_session_id_lo;
- struct iapp_data *iapp;
- struct hostapd_cached_radius_acl *acl_cache;
- struct hostapd_acl_query_data *acl_queries;
- struct wpa_authenticator *wpa_auth;
- struct eapol_authenticator *eapol_auth;
- struct rsn_preauth_interface *preauth_iface;
- time_t michael_mic_failure;
- int michael_mic_failures;
- int tkip_countermeasures;
- int ctrl_sock;
- struct wpa_ctrl_dst *ctrl_dst;
- void *ssl_ctx;
- void *eap_sim_db_priv;
- struct radius_server_data *radius_srv;
- int parameter_set_count;
- #ifdef CONFIG_FULL_DYNAMIC_VLAN
- struct full_dynamic_vlan *full_dynamic_vlan;
- #endif
- struct l2_packet_data *l2;
- struct wps_context *wps;
- #ifdef CONFIG_WPS
- u8 *wps_beacon_ie;
- size_t wps_beacon_ie_len;
- u8 *wps_probe_resp_ie;
- size_t wps_probe_resp_ie_len;
- unsigned int ap_pin_failures;
- struct upnp_wps_device_sm *wps_upnp;
- #endif
- struct hostapd_probereq_cb *probereq_cb;
- size_t num_probereq_cb;
- };
- struct hostapd_iface {
- void *owner;
- char *config_fname;
- struct hostapd_config *conf;
- size_t num_bss;
- struct hostapd_data **bss;
- int num_ap;
- struct ap_info *ap_list;
- struct ap_info *ap_hash[STA_HASH_SIZE];
- struct ap_info *ap_iter_list;
- struct hostapd_hw_modes *hw_features;
- int num_hw_features;
- struct hostapd_hw_modes *current_mode;
-
- int num_rates;
- struct hostapd_rate_data *current_rates;
- u16 hw_flags;
-
- int num_sta_non_erp;
-
- int num_sta_no_short_slot_time;
-
- int num_sta_no_short_preamble;
- int olbc;
-
- int num_sta_ht_no_gf;
-
- int num_sta_no_ht;
-
- int num_sta_ht_20mhz;
-
- int olbc_ht;
- u16 ht_op_mode;
- void (*scan_cb)(struct hostapd_iface *iface);
- };
- int hostapd_reload_config(struct hostapd_iface *iface);
- struct hostapd_data *
- hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
- struct hostapd_config *conf,
- struct hostapd_bss_config *bss);
- int hostapd_setup_interface(struct hostapd_iface *iface);
- int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
- void hostapd_interface_deinit(struct hostapd_iface *iface);
- int handle_reload_iface(struct hostapd_iface *iface, void *ctx);
- int handle_dump_state_iface(struct hostapd_iface *iface, void *ctx);
- int hostapd_for_each_interface(int (*cb)(struct hostapd_iface *iface,
- void *ctx), void *ctx);
- int hostapd_register_probereq_cb(struct hostapd_data *hapd,
- void (*cb)(void *ctx, const u8 *sa,
- const u8 *ie, size_t ie_len),
- void *ctx);
- #endif
|