2008-02-27 20:34:43 -05:00
|
|
|
/*
|
|
|
|
* hostapd / Initialization and configuration
|
2013-11-03 11:13:14 -05:00
|
|
|
* Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
|
2008-02-27 20:34:43 -05:00
|
|
|
*
|
2012-02-11 09:46:35 -05:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-27 20:34:43 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HOSTAPD_H
|
|
|
|
#define HOSTAPD_H
|
|
|
|
|
2009-12-24 13:41:30 -05:00
|
|
|
#include "common/defs.h"
|
2012-11-20 17:47:47 -05:00
|
|
|
#include "ap_config.h"
|
2013-12-15 03:47:40 -05:00
|
|
|
#include "drivers/driver.h"
|
2009-12-24 13:41:30 -05:00
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
struct wpa_ctrl_dst;
|
|
|
|
struct radius_server_data;
|
2009-01-29 11:47:02 -05:00
|
|
|
struct upnp_wps_device_sm;
|
2009-12-24 09:15:22 -05:00
|
|
|
struct hostapd_data;
|
2009-12-24 13:41:30 -05:00
|
|
|
struct sta_info;
|
2009-12-24 17:35:10 -05:00
|
|
|
struct ieee80211_ht_capabilities;
|
2008-02-27 20:34:43 -05:00
|
|
|
struct full_dynamic_vlan;
|
2010-10-14 13:57:00 -04:00
|
|
|
enum wps_event;
|
|
|
|
union wps_event_data;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2012-08-25 05:43:27 -04:00
|
|
|
struct hostapd_iface;
|
2013-06-25 04:55:30 -04:00
|
|
|
struct hostapd_dynamic_iface;
|
2012-08-25 05:43:27 -04:00
|
|
|
|
2012-02-16 12:46:27 -05:00
|
|
|
struct hapd_interfaces {
|
2012-08-25 05:43:27 -04:00
|
|
|
int (*reload_config)(struct hostapd_iface *iface);
|
|
|
|
struct hostapd_config * (*config_read_cb)(const char *config_fname);
|
|
|
|
int (*ctrl_iface_init)(struct hostapd_data *hapd);
|
|
|
|
void (*ctrl_iface_deinit)(struct hostapd_data *hapd);
|
|
|
|
int (*for_each_interface)(struct hapd_interfaces *interfaces,
|
|
|
|
int (*cb)(struct hostapd_iface *iface,
|
|
|
|
void *ctx), void *ctx);
|
2011-12-16 13:42:40 -05:00
|
|
|
int (*driver_init)(struct hostapd_iface *iface);
|
2012-08-25 05:43:27 -04:00
|
|
|
|
2012-02-16 12:46:27 -05:00
|
|
|
size_t count;
|
2013-06-25 04:55:30 -04:00
|
|
|
size_t count_dynamic;
|
2011-12-20 10:10:47 -05:00
|
|
|
int global_ctrl_sock;
|
|
|
|
char *global_iface_path;
|
|
|
|
char *global_iface_name;
|
2013-11-20 16:12:03 -05:00
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
2013-03-29 11:09:31 -04:00
|
|
|
gid_t ctrl_iface_group;
|
2013-11-20 16:12:03 -05:00
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
2012-02-16 12:46:27 -05:00
|
|
|
struct hostapd_iface **iface;
|
2013-06-25 04:55:30 -04:00
|
|
|
struct hostapd_dynamic_iface **dynamic_iface;
|
2013-11-05 06:39:21 -05:00
|
|
|
|
|
|
|
size_t terminate_on_error;
|
2012-02-16 12:46:27 -05:00
|
|
|
};
|
|
|
|
|
2013-07-18 03:17:06 -04:00
|
|
|
enum hostapd_chan_status {
|
|
|
|
HOSTAPD_CHAN_VALID = 0, /* channel is ready */
|
|
|
|
HOSTAPD_CHAN_INVALID = 1, /* no usable channel found */
|
|
|
|
HOSTAPD_CHAN_ACS = 2, /* ACS work being performed */
|
|
|
|
};
|
2012-02-16 12:46:27 -05:00
|
|
|
|
2009-06-12 11:13:40 -04:00
|
|
|
struct hostapd_probereq_cb {
|
2011-07-15 13:25:53 -04:00
|
|
|
int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid,
|
2012-04-01 11:48:12 -04:00
|
|
|
const u8 *ie, size_t ie_len, int ssi_signal);
|
2009-06-12 11:13:40 -04:00
|
|
|
void *ctx;
|
|
|
|
};
|
|
|
|
|
2009-12-09 14:57:50 -05:00
|
|
|
#define HOSTAPD_RATE_BASIC 0x00000001
|
|
|
|
|
|
|
|
struct hostapd_rate_data {
|
|
|
|
int rate; /* rate in 100 kbps */
|
|
|
|
int flags; /* HOSTAPD_RATE_ flags */
|
|
|
|
};
|
|
|
|
|
2010-01-03 05:37:02 -05:00
|
|
|
struct hostapd_frame_info {
|
|
|
|
u32 channel;
|
|
|
|
u32 datarate;
|
2012-04-01 11:48:12 -04:00
|
|
|
int ssi_signal; /* dBm */
|
2010-01-03 05:37:02 -05:00
|
|
|
};
|
|
|
|
|
2013-08-23 09:38:16 -04:00
|
|
|
enum wps_status {
|
|
|
|
WPS_STATUS_SUCCESS = 1,
|
|
|
|
WPS_STATUS_FAILURE
|
|
|
|
};
|
|
|
|
|
2013-08-23 09:51:27 -04:00
|
|
|
enum pbc_status {
|
|
|
|
WPS_PBC_STATUS_DISABLE,
|
|
|
|
WPS_PBC_STATUS_ACTIVE,
|
|
|
|
WPS_PBC_STATUS_TIMEOUT,
|
|
|
|
WPS_PBC_STATUS_OVERLAP
|
|
|
|
};
|
|
|
|
|
2013-08-23 09:38:16 -04:00
|
|
|
struct wps_stat {
|
|
|
|
enum wps_status status;
|
|
|
|
enum wps_error_indication failure_reason;
|
2013-08-23 09:51:27 -04:00
|
|
|
enum pbc_status pbc_status;
|
2013-08-23 09:01:55 -04:00
|
|
|
u8 peer_addr[ETH_ALEN];
|
2013-08-23 09:38:16 -04:00
|
|
|
};
|
|
|
|
|
2009-12-09 14:57:50 -05:00
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
/**
|
|
|
|
* struct hostapd_data - hostapd per-BSS data structure
|
|
|
|
*/
|
|
|
|
struct hostapd_data {
|
|
|
|
struct hostapd_iface *iface;
|
|
|
|
struct hostapd_config *iconf;
|
|
|
|
struct hostapd_bss_config *conf;
|
2013-11-05 18:38:17 -05:00
|
|
|
int interface_added; /* virtual interface added for this BSS */
|
2013-11-06 06:39:41 -05:00
|
|
|
unsigned int started:1;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
|
|
|
u8 own_addr[ETH_ALEN];
|
|
|
|
|
|
|
|
int num_sta; /* number of entries in sta_list */
|
|
|
|
struct sta_info *sta_list; /* STA info list head */
|
2009-03-25 09:54:25 -04:00
|
|
|
#define STA_HASH_SIZE 256
|
|
|
|
#define STA_HASH(sta) (sta[5])
|
2008-02-27 20:34:43 -05:00
|
|
|
struct sta_info *sta_hash[STA_HASH_SIZE];
|
|
|
|
|
2009-03-25 09:54:25 -04:00
|
|
|
/*
|
|
|
|
* Bitfield for indicating which AIDs are allocated. Only AID values
|
|
|
|
* 1-2007 are used and as such, the bit at index 0 corresponds to AID
|
|
|
|
* 1.
|
2008-02-27 20:34:43 -05:00
|
|
|
*/
|
2009-03-25 09:54:25 -04:00
|
|
|
#define AID_WORDS ((2008 + 31) / 32)
|
|
|
|
u32 sta_aid[AID_WORDS];
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2009-04-09 06:40:12 -04:00
|
|
|
const struct wpa_driver_ops *driver;
|
2008-02-27 20:34:43 -05:00
|
|
|
void *drv_priv;
|
|
|
|
|
2009-12-24 16:42:13 -05:00
|
|
|
void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta, int reassoc);
|
|
|
|
|
2009-09-29 14:25:14 -04:00
|
|
|
void *msg_ctx; /* ctx for wpa_msg() calls */
|
2011-07-21 18:19:46 -04:00
|
|
|
void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */
|
2009-09-29 14:25:14 -04:00
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
struct radius_client_data *radius;
|
|
|
|
u32 acct_session_id_hi, acct_session_id_lo;
|
2012-05-06 15:02:42 -04:00
|
|
|
struct radius_das_data *radius_das;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
|
|
|
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;
|
2013-12-16 15:08:24 -05:00
|
|
|
struct os_reltime michael_mic_failure;
|
2008-02-27 20:34:43 -05:00
|
|
|
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;
|
|
|
|
|
2011-10-17 17:24:16 -04:00
|
|
|
/* Time Advertisement */
|
|
|
|
u8 time_update_counter;
|
|
|
|
struct wpabuf *time_adv;
|
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
#ifdef CONFIG_FULL_DYNAMIC_VLAN
|
|
|
|
struct full_dynamic_vlan *full_dynamic_vlan;
|
|
|
|
#endif /* CONFIG_FULL_DYNAMIC_VLAN */
|
|
|
|
|
|
|
|
struct l2_packet_data *l2;
|
2008-11-23 12:34:26 -05:00
|
|
|
struct wps_context *wps;
|
|
|
|
|
2011-08-09 07:40:06 -04:00
|
|
|
int beacon_set_done;
|
2009-12-24 12:46:06 -05:00
|
|
|
struct wpabuf *wps_beacon_ie;
|
|
|
|
struct wpabuf *wps_probe_resp_ie;
|
2010-04-12 08:15:17 -04:00
|
|
|
#ifdef CONFIG_WPS
|
2009-01-23 14:57:43 -05:00
|
|
|
unsigned int ap_pin_failures;
|
2012-01-30 10:31:06 -05:00
|
|
|
unsigned int ap_pin_failures_consecutive;
|
2009-01-29 11:47:02 -05:00
|
|
|
struct upnp_wps_device_sm *wps_upnp;
|
2010-08-24 08:24:05 -04:00
|
|
|
unsigned int ap_pin_lockout_time;
|
2013-08-23 09:38:16 -04:00
|
|
|
|
|
|
|
struct wps_stat wps_stats;
|
2008-11-23 12:34:26 -05:00
|
|
|
#endif /* CONFIG_WPS */
|
2009-06-12 11:13:40 -04:00
|
|
|
|
|
|
|
struct hostapd_probereq_cb *probereq_cb;
|
|
|
|
size_t num_probereq_cb;
|
2010-04-11 13:21:08 -04:00
|
|
|
|
2010-04-11 13:33:33 -04:00
|
|
|
void (*public_action_cb)(void *ctx, const u8 *buf, size_t len,
|
|
|
|
int freq);
|
|
|
|
void *public_action_cb_ctx;
|
2013-02-04 08:38:35 -05:00
|
|
|
void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len,
|
|
|
|
int freq);
|
|
|
|
void *public_action_cb2_ctx;
|
2010-04-11 13:33:33 -04:00
|
|
|
|
2010-07-18 17:30:25 -04:00
|
|
|
int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len,
|
|
|
|
int freq);
|
|
|
|
void *vendor_action_cb_ctx;
|
|
|
|
|
2010-04-11 13:21:08 -04:00
|
|
|
void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
|
|
|
|
const u8 *uuid_e);
|
|
|
|
void *wps_reg_success_cb_ctx;
|
2010-07-18 17:30:25 -04:00
|
|
|
|
2010-10-14 13:57:00 -04:00
|
|
|
void (*wps_event_cb)(void *ctx, enum wps_event event,
|
|
|
|
union wps_event_data *data);
|
|
|
|
void *wps_event_cb_ctx;
|
|
|
|
|
2011-02-02 09:56:59 -05:00
|
|
|
void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
|
2011-12-22 15:47:41 -05:00
|
|
|
int authorized, const u8 *p2p_dev_addr);
|
2011-02-02 09:56:59 -05:00
|
|
|
void *sta_authorized_cb_ctx;
|
|
|
|
|
2011-03-19 07:11:15 -04:00
|
|
|
void (*setup_complete_cb)(void *ctx);
|
|
|
|
void *setup_complete_cb_ctx;
|
|
|
|
|
2013-09-01 06:40:33 -04:00
|
|
|
void (*new_psk_cb)(void *ctx, const u8 *mac_addr,
|
|
|
|
const u8 *p2p_dev_addr, const u8 *psk,
|
|
|
|
size_t psk_len);
|
|
|
|
void *new_psk_cb_ctx;
|
|
|
|
|
2010-07-18 17:30:25 -04:00
|
|
|
#ifdef CONFIG_P2P
|
2010-07-18 17:30:25 -04:00
|
|
|
struct p2p_data *p2p;
|
|
|
|
struct p2p_group *p2p_group;
|
2010-07-18 17:30:25 -04:00
|
|
|
struct wpabuf *p2p_beacon_ie;
|
|
|
|
struct wpabuf *p2p_probe_resp_ie;
|
2010-07-08 20:14:24 -04:00
|
|
|
|
|
|
|
/* Number of non-P2P association stations */
|
|
|
|
int num_sta_no_p2p;
|
|
|
|
|
|
|
|
/* Periodic NoA (used only when no non-P2P clients in the group) */
|
|
|
|
int noa_enabled;
|
|
|
|
int noa_start;
|
|
|
|
int noa_duration;
|
2010-07-18 17:30:25 -04:00
|
|
|
#endif /* CONFIG_P2P */
|
2012-02-26 15:34:19 -05:00
|
|
|
#ifdef CONFIG_INTERWORKING
|
|
|
|
size_t gas_frag_limit;
|
|
|
|
#endif /* CONFIG_INTERWORKING */
|
2012-11-20 17:47:47 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_SQLITE
|
|
|
|
struct hostapd_eap_user tmp_eap_user;
|
|
|
|
#endif /* CONFIG_SQLITE */
|
2012-12-31 09:58:36 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_SAE
|
|
|
|
/** Key used for generating SAE anti-clogging tokens */
|
|
|
|
u8 sae_token_key[8];
|
2013-11-25 15:56:07 -05:00
|
|
|
struct os_reltime last_sae_token_key_update;
|
2012-12-31 09:58:36 -05:00
|
|
|
#endif /* CONFIG_SAE */
|
2008-02-27 20:34:43 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct hostapd_iface - hostapd per-interface data structure
|
|
|
|
*/
|
|
|
|
struct hostapd_iface {
|
2009-12-19 12:07:31 -05:00
|
|
|
struct hapd_interfaces *interfaces;
|
2009-03-27 11:13:54 -04:00
|
|
|
void *owner;
|
2008-02-27 20:34:43 -05:00
|
|
|
char *config_fname;
|
|
|
|
struct hostapd_config *conf;
|
2013-10-17 10:41:26 -04:00
|
|
|
char phy[16]; /* Name of the PHY (radio) */
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2013-11-03 10:25:05 -05:00
|
|
|
enum hostapd_iface_state {
|
|
|
|
HAPD_IFACE_UNINITIALIZED,
|
|
|
|
HAPD_IFACE_DISABLED,
|
|
|
|
HAPD_IFACE_COUNTRY_UPDATE,
|
|
|
|
HAPD_IFACE_ACS,
|
|
|
|
HAPD_IFACE_HT_SCAN,
|
|
|
|
HAPD_IFACE_DFS,
|
|
|
|
HAPD_IFACE_ENABLED
|
|
|
|
} state;
|
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
size_t num_bss;
|
|
|
|
struct hostapd_data **bss;
|
|
|
|
|
2013-11-03 09:33:11 -05:00
|
|
|
unsigned int wait_channel_update:1;
|
2013-11-03 11:48:03 -05:00
|
|
|
unsigned int cac_started:1;
|
2013-11-03 09:33:11 -05:00
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
int num_ap; /* number of entries in ap_list */
|
|
|
|
struct ap_info *ap_list; /* AP info list head */
|
|
|
|
struct ap_info *ap_hash[STA_HASH_SIZE];
|
|
|
|
|
2011-03-29 10:36:06 -04:00
|
|
|
unsigned int drv_flags;
|
2011-12-10 10:17:43 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A bitmap of supported protocols for probe response offload. See
|
|
|
|
* struct wpa_driver_capa in driver.h
|
|
|
|
*/
|
|
|
|
unsigned int probe_resp_offloads;
|
|
|
|
|
2013-03-31 14:51:44 -04:00
|
|
|
/* extended capabilities supported by the driver */
|
|
|
|
const u8 *extended_capa, *extended_capa_mask;
|
|
|
|
unsigned int extended_capa_len;
|
|
|
|
|
2013-05-24 06:37:22 -04:00
|
|
|
unsigned int drv_max_acl_mac_addrs;
|
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
struct hostapd_hw_modes *hw_features;
|
|
|
|
int num_hw_features;
|
|
|
|
struct hostapd_hw_modes *current_mode;
|
|
|
|
/* Rates that are currently used (i.e., filtered copy of
|
|
|
|
* current_mode->channels */
|
|
|
|
int num_rates;
|
|
|
|
struct hostapd_rate_data *current_rates;
|
2011-12-03 05:16:03 -05:00
|
|
|
int *basic_rates;
|
2010-04-11 13:33:33 -04:00
|
|
|
int freq;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
|
|
|
u16 hw_flags;
|
|
|
|
|
|
|
|
/* Number of associated Non-ERP stations (i.e., stations using 802.11b
|
|
|
|
* in 802.11g BSS) */
|
|
|
|
int num_sta_non_erp;
|
|
|
|
|
|
|
|
/* Number of associated stations that do not support Short Slot Time */
|
|
|
|
int num_sta_no_short_slot_time;
|
|
|
|
|
|
|
|
/* Number of associated stations that do not support Short Preamble */
|
|
|
|
int num_sta_no_short_preamble;
|
|
|
|
|
|
|
|
int olbc; /* Overlapping Legacy BSS Condition */
|
|
|
|
|
2008-08-21 11:18:38 -04:00
|
|
|
/* Number of HT associated stations that do not support greenfield */
|
|
|
|
int num_sta_ht_no_gf;
|
|
|
|
|
|
|
|
/* Number of associated non-HT stations */
|
|
|
|
int num_sta_no_ht;
|
|
|
|
|
|
|
|
/* Number of HT associated stations 20 MHz */
|
|
|
|
int num_sta_ht_20mhz;
|
|
|
|
|
|
|
|
/* Overlapping BSS information */
|
|
|
|
int olbc_ht;
|
|
|
|
|
2008-08-22 13:55:52 -04:00
|
|
|
u16 ht_op_mode;
|
2013-07-24 02:59:13 -04:00
|
|
|
|
|
|
|
/* surveying helpers */
|
|
|
|
|
|
|
|
/* number of channels surveyed */
|
|
|
|
unsigned int chans_surveyed;
|
|
|
|
|
|
|
|
/* lowest observed noise floor in dBm */
|
|
|
|
s8 lowest_nf;
|
|
|
|
|
2013-11-14 05:28:31 -05:00
|
|
|
/* channel switch parameters */
|
2013-12-15 03:47:41 -05:00
|
|
|
struct hostapd_freq_params cs_freq_params;
|
2013-11-14 05:28:31 -05:00
|
|
|
u8 cs_count;
|
|
|
|
int cs_block_tx;
|
|
|
|
unsigned int cs_c_off_beacon;
|
|
|
|
unsigned int cs_c_off_proberesp;
|
|
|
|
int csa_in_progress;
|
|
|
|
|
2013-08-31 04:49:51 -04:00
|
|
|
#ifdef CONFIG_ACS
|
|
|
|
unsigned int acs_num_completed_scans;
|
|
|
|
#endif /* CONFIG_ACS */
|
|
|
|
|
2009-04-16 09:22:40 -04:00
|
|
|
void (*scan_cb)(struct hostapd_iface *iface);
|
2008-02-27 20:34:43 -05:00
|
|
|
};
|
|
|
|
|
2013-06-25 04:55:30 -04:00
|
|
|
/**
|
|
|
|
* struct hostapd_dynamic_iface - hostapd per dynamically allocated
|
|
|
|
* or added interface data structure
|
|
|
|
*/
|
|
|
|
struct hostapd_dynamic_iface {
|
|
|
|
char parent[IFNAMSIZ + 1];
|
|
|
|
char iface[IFNAMSIZ + 1];
|
|
|
|
unsigned int usage;
|
|
|
|
};
|
|
|
|
|
2009-12-25 07:20:35 -05:00
|
|
|
/* hostapd.c */
|
2012-02-16 12:46:27 -05:00
|
|
|
int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
|
|
|
|
int (*cb)(struct hostapd_iface *iface,
|
|
|
|
void *ctx), void *ctx);
|
2008-11-23 12:34:26 -05:00
|
|
|
int hostapd_reload_config(struct hostapd_iface *iface);
|
2009-03-26 13:23:41 -04:00
|
|
|
struct hostapd_data *
|
|
|
|
hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
|
|
|
|
struct hostapd_config *conf,
|
|
|
|
struct hostapd_bss_config *bss);
|
2009-03-26 13:06:02 -04:00
|
|
|
int hostapd_setup_interface(struct hostapd_iface *iface);
|
2009-04-16 09:22:40 -04:00
|
|
|
int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
|
2009-03-26 13:06:02 -04:00
|
|
|
void hostapd_interface_deinit(struct hostapd_iface *iface);
|
2009-12-27 14:31:13 -05:00
|
|
|
void hostapd_interface_free(struct hostapd_iface *iface);
|
2013-10-29 10:27:30 -04:00
|
|
|
struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
|
|
|
|
const char *config_file);
|
2013-10-29 10:29:49 -04:00
|
|
|
struct hostapd_iface *
|
|
|
|
hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
|
|
|
|
const char *config_fname, int debug);
|
2009-12-25 07:20:35 -05:00
|
|
|
void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
int reassoc);
|
2011-12-16 13:42:40 -05:00
|
|
|
void hostapd_interface_deinit_free(struct hostapd_iface *iface);
|
|
|
|
int hostapd_enable_iface(struct hostapd_iface *hapd_iface);
|
|
|
|
int hostapd_reload_iface(struct hostapd_iface *hapd_iface);
|
|
|
|
int hostapd_disable_iface(struct hostapd_iface *hapd_iface);
|
2012-08-25 04:37:12 -04:00
|
|
|
int hostapd_add_iface(struct hapd_interfaces *ifaces, char *buf);
|
|
|
|
int hostapd_remove_iface(struct hapd_interfaces *ifaces, char *buf);
|
2013-11-13 07:00:27 -05:00
|
|
|
void hostapd_channel_list_updated(struct hostapd_iface *iface, int initiator);
|
2013-11-03 10:25:05 -05:00
|
|
|
void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s);
|
2013-11-03 11:13:14 -05:00
|
|
|
const char * hostapd_state_text(enum hostapd_iface_state s);
|
2013-11-14 05:28:31 -05:00
|
|
|
int hostapd_switch_channel(struct hostapd_data *hapd,
|
|
|
|
struct csa_settings *settings);
|
|
|
|
void hostapd_cleanup_cs_params(struct hostapd_data *hapd);
|
2009-03-26 13:06:02 -04:00
|
|
|
|
2009-12-25 07:20:35 -05:00
|
|
|
/* utils.c */
|
2009-06-12 11:13:40 -04:00
|
|
|
int hostapd_register_probereq_cb(struct hostapd_data *hapd,
|
2009-12-28 06:14:58 -05:00
|
|
|
int (*cb)(void *ctx, const u8 *sa,
|
2011-07-15 13:25:53 -04:00
|
|
|
const u8 *da, const u8 *bssid,
|
2012-04-01 11:48:12 -04:00
|
|
|
const u8 *ie, size_t ie_len,
|
|
|
|
int ssi_signal),
|
2009-06-12 11:13:40 -04:00
|
|
|
void *ctx);
|
2009-12-25 07:06:26 -05:00
|
|
|
void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr);
|
2009-06-12 11:13:40 -04:00
|
|
|
|
2010-01-03 11:22:22 -05:00
|
|
|
/* drv_callbacks.c (TODO: move to somewhere else?) */
|
|
|
|
int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
|
2010-10-25 06:50:34 -04:00
|
|
|
const u8 *ie, size_t ielen, int reassoc);
|
2010-01-03 11:22:22 -05:00
|
|
|
void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr);
|
2010-12-28 10:15:01 -05:00
|
|
|
void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr);
|
2013-02-07 08:24:53 -05:00
|
|
|
void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
|
|
|
|
const u8 *addr, int reason_code);
|
2011-07-15 13:25:53 -04:00
|
|
|
int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
|
2012-04-01 11:48:12 -04:00
|
|
|
const u8 *bssid, const u8 *ie, size_t ie_len,
|
|
|
|
int ssi_signal);
|
2012-06-25 07:45:14 -04:00
|
|
|
void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
|
2013-11-25 14:16:12 -05:00
|
|
|
int offset, int width, int cf1, int cf2);
|
2010-01-03 11:22:22 -05:00
|
|
|
|
2012-11-20 17:47:47 -05:00
|
|
|
const struct hostapd_eap_user *
|
|
|
|
hostapd_get_eap_user(struct hostapd_data *hapd, const u8 *identity,
|
|
|
|
size_t identity_len, int phase2);
|
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
#endif /* HOSTAPD_H */
|