hostapd: Add mechanism to track unconnected stations
[mech_eap.git] / src / ap / ap_config.h
index e1e34e2..3434214 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * hostapd / Configuration definitions and helpers functions
- * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi>
  *
  * This software may be distributed under the terms of the BSD license.
  * See README for more details.
 #include "common/defs.h"
 #include "ip_addr.h"
 #include "common/wpa_common.h"
+#include "common/ieee802_11_defs.h"
 #include "common/ieee802_11_common.h"
 #include "wps/wps.h"
+#include "fst/fst.h"
+
+/**
+ * mesh_conf - local MBSS state and settings
+ */
+struct mesh_conf {
+       u8 meshid[32];
+       u8 meshid_len;
+       /* Active Path Selection Protocol Identifier */
+       u8 mesh_pp_id;
+       /* Active Path Selection Metric Identifier */
+       u8 mesh_pm_id;
+       /* Congestion Control Mode Identifier */
+       u8 mesh_cc_id;
+       /* Synchronization Protocol Identifier */
+       u8 mesh_sp_id;
+       /* Authentication Protocol Identifier */
+       u8 mesh_auth_id;
+       u8 *ies;
+       int ie_len;
+#define MESH_CONF_SEC_NONE BIT(0)
+#define MESH_CONF_SEC_AUTH BIT(1)
+#define MESH_CONF_SEC_AMPE BIT(2)
+       unsigned int security;
+       int dot11MeshMaxRetries;
+       int dot11MeshRetryTimeout; /* msec */
+       int dot11MeshConfirmTimeout; /* msec */
+       int dot11MeshHoldingTimeout; /* msec */
+};
 
 #define MAX_STA_COUNT 2007
 #define MAX_VLAN_ID 4094
@@ -29,8 +59,6 @@ struct hostapd_radius_servers;
 struct ft_remote_r0kh;
 struct ft_remote_r1kh;
 
-#define HOSTAPD_MAX_SSID_LEN 32
-
 #define NUM_WEP_KEYS 4
 struct hostapd_wep_keys {
        u8 idx;
@@ -50,7 +78,7 @@ typedef enum hostap_security_policy {
 } secpolicy;
 
 struct hostapd_ssid {
-       u8 ssid[HOSTAPD_MAX_SSID_LEN];
+       u8 ssid[SSID_MAX_LEN];
        size_t ssid_len;
        unsigned int ssid_set:1;
        unsigned int utf8_ssid:1;
@@ -86,12 +114,10 @@ struct hostapd_vlan {
        struct hostapd_vlan *next;
        int vlan_id; /* VLAN ID or -1 (VLAN_ID_WILDCARD) for wildcard entry */
        char ifname[IFNAMSIZ + 1];
+       int configured;
        int dynamic_vlan;
 #ifdef CONFIG_FULL_DYNAMIC_VLAN
 
-#define DVLAN_CLEAN_BR         0x1
-#define DVLAN_CLEAN_VLAN       0x2
-#define DVLAN_CLEAN_VLAN_PORT  0x4
 #define DVLAN_CLEAN_WLAN_PORT  0x8
        int clean;
 #endif /* CONFIG_FULL_DYNAMIC_VLAN */
@@ -127,7 +153,9 @@ struct hostapd_eap_user {
        unsigned int password_hash:1; /* whether password is hashed with
                                       * nt_password_hash() */
        unsigned int remediation:1;
+       unsigned int macacl:1;
        int ttls_auth; /* EAP_TTLS_AUTH_* bitfield */
+       struct hostapd_radius_attr *accept_attr;
 };
 
 struct hostapd_radius_attr {
@@ -194,6 +222,7 @@ struct hostapd_bss_config {
        int max_num_sta; /* maximum number of STAs in station table */
 
        int dtim_period;
+       int bss_load_update_period;
 
        int ieee802_1x; /* use IEEE 802.1X */
        int eapol_version;
@@ -202,6 +231,7 @@ struct hostapd_bss_config {
        struct hostapd_eap_user *eap_user;
        char *eap_user_sqlite;
        char *eap_sim_db;
+       int eap_server_erp; /* Whether ERP is enabled on internal EAP server */
        struct hostapd_ip_addr own_ip_addr;
        char *nas_identifier;
        struct hostapd_radius_servers *radius;
@@ -228,6 +258,8 @@ struct hostapd_bss_config {
        int wep_rekeying_period;
        int broadcast_key_idx_min, broadcast_key_idx_max;
        int eap_reauth_period;
+       int erp_send_reauth_start;
+       char *erp_domain;
 
        int ieee802_11f; /* use IEEE 802.11f (IAPP) */
        char iapp_iface[IFNAMSIZ + 1]; /* interface used with IAPP broadcast
@@ -253,6 +285,7 @@ struct hostapd_bss_config {
        int wpa_key_mgmt;
 #ifdef CONFIG_IEEE80211W
        enum mfp_options ieee80211w;
+       int group_mgmt_cipher;
        /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
        unsigned int assoc_sa_query_max_timeout;
        /* dot11AssociationSAQueryRetryTimeout (in TUs) */
@@ -297,8 +330,10 @@ struct hostapd_bss_config {
        char *private_key;
        char *private_key_passwd;
        int check_crl;
+       unsigned int tls_session_lifetime;
        char *ocsp_stapling_response;
        char *dh_file;
+       char *openssl_ciphers;
        u8 *pac_opaque_encr_key;
        u8 *eap_fast_a_id;
        size_t eap_fast_a_id_len;
@@ -316,8 +351,6 @@ struct hostapd_bss_config {
        int radius_server_acct_port;
        int radius_server_ipv6;
 
-       char *test_socket; /* UNIX domain socket path for driver_test */
-
        int use_pae_group_addr; /* Whether to send EAPOL frames to PAE group
                                 * address instead of individual address
                                 * (for driver_wired.c).
@@ -455,6 +488,8 @@ struct hostapd_bss_config {
        unsigned int qos_map_set_len;
 
        int osen;
+       int proxy_arp;
+       int na_mcast_to_ucast;
 #ifdef CONFIG_HS20
        int hs20;
        int disable_dgaf;
@@ -475,7 +510,7 @@ struct hostapd_bss_config {
                char file[256];
        } *hs20_icons;
        size_t hs20_icons_count;
-       u8 osu_ssid[HOSTAPD_MAX_SSID_LEN];
+       u8 osu_ssid[SSID_MAX_LEN];
        size_t osu_ssid_len;
        struct hs20_osu_provider {
                unsigned int friendly_name_count;
@@ -505,10 +540,20 @@ struct hostapd_bss_config {
        unsigned int sae_anti_clogging_threshold;
        int *sae_groups;
 
+       char *wowlan_triggers; /* Wake-on-WLAN triggers */
+
 #ifdef CONFIG_TESTING_OPTIONS
        u8 bss_load_test[5];
        u8 bss_load_test_set;
+       struct wpabuf *own_ie_override;
 #endif /* CONFIG_TESTING_OPTIONS */
+
+#define MESH_ENABLED BIT(0)
+       int mesh;
+
+       int radio_measurements;
+
+       int vendor_vht;
 };
 
 
@@ -524,6 +569,8 @@ struct hostapd_config {
        int fragm_threshold;
        u8 send_probe_response;
        u8 channel;
+       u8 acs;
+       struct wpa_freq_range_list acs_ch_list;
        enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
        enum {
                LONG_PREAMBLE = 0,
@@ -534,10 +581,14 @@ struct hostapd_config {
        int *basic_rates;
 
        const struct wpa_driver_ops *driver;
+       char *driver_params;
 
        int ap_table_max_size;
        int ap_table_expiration_time;
 
+       unsigned int track_sta_max_num;
+       unsigned int track_sta_max_age;
+
        char country[3]; /* first two octets: country code as described in
                          * ISO/IEC 3166-1. Third octet:
                          * ' ' (ascii 32): all environments
@@ -574,6 +625,7 @@ struct hostapd_config {
        u16 ht_capab;
        int ieee80211n;
        int secondary_channel;
+       int no_pri_sec_switch;
        int require_ht;
        int obss_interval;
        u32 vht_capab;
@@ -583,6 +635,14 @@ struct hostapd_config {
        u8 vht_oper_centr_freq_seg0_idx;
        u8 vht_oper_centr_freq_seg1_idx;
 
+#ifdef CONFIG_FST
+       struct fst_iface_cfg fst_cfg;
+#endif /* CONFIG_FST */
+
+#ifdef CONFIG_P2P
+       u8 p2p_go_ctwindow;
+#endif /* CONFIG_P2P */
+
 #ifdef CONFIG_TESTING_OPTIONS
        double ignore_probe_probability;
        double ignore_auth_probability;
@@ -593,6 +653,11 @@ struct hostapd_config {
 
 #ifdef CONFIG_ACS
        unsigned int acs_num_scans;
+       struct acs_bias {
+               int channel;
+               double bias;
+       } *acs_chan_bias;
+       unsigned int num_acs_chan_bias;
 #endif /* CONFIG_ACS */
 };
 
@@ -601,13 +666,13 @@ int hostapd_mac_comp(const void *a, const void *b);
 int hostapd_mac_comp_empty(const void *a);
 struct hostapd_config * hostapd_config_defaults(void);
 void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
+void hostapd_config_free_eap_user(struct hostapd_eap_user *user);
+void hostapd_config_clear_wpa_psk(struct hostapd_wpa_psk **p);
 void hostapd_config_free_bss(struct hostapd_bss_config *conf);
 void hostapd_config_free(struct hostapd_config *conf);
 int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
                          const u8 *addr, int *vlan_id);
 int hostapd_rate_found(int *list, int rate);
-int hostapd_wep_key_cmp(struct hostapd_wep_keys *a,
-                       struct hostapd_wep_keys *b);
 const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
                           const u8 *addr, const u8 *p2p_dev_addr,
                           const u8 *prev_psk);
@@ -618,6 +683,7 @@ const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
 struct hostapd_radius_attr *
 hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
 int hostapd_config_check(struct hostapd_config *conf, int full_config);
-void hostapd_set_security_params(struct hostapd_bss_config *bss);
+void hostapd_set_security_params(struct hostapd_bss_config *bss,
+                                int full_config);
 
 #endif /* HOSTAPD_CONFIG_H */