]> git.ipfire.org Git - thirdparty/hostap.git/blobdiff - src/ap/ap_config.h
DPP2: Allow AP to require or reject PFS
[thirdparty/hostap.git] / src / ap / ap_config.h
index c49e2c1c41f8c9bf79767d10c1e396b84fd414fd..7930fc3743819254c3f551940ebd2d6c50855e89 100644 (file)
@@ -15,6 +15,7 @@
 #include "common/wpa_common.h"
 #include "common/ieee802_11_defs.h"
 #include "common/ieee802_11_common.h"
+#include "crypto/sha256.h"
 #include "wps/wps.h"
 #include "fst/fst.h"
 #include "vlan.h"
@@ -66,6 +67,7 @@ struct hostapd_radius_servers;
 struct ft_remote_r0kh;
 struct ft_remote_r1kh;
 
+#ifdef CONFIG_WEP
 #define NUM_WEP_KEYS 4
 struct hostapd_wep_keys {
        u8 idx;
@@ -74,10 +76,13 @@ struct hostapd_wep_keys {
        int keys_set;
        size_t default_len; /* key length used for dynamic key generation */
 };
+#endif /* CONFIG_WEP */
 
 typedef enum hostap_security_policy {
        SECURITY_PLAINTEXT = 0,
+#ifdef CONFIG_WEP
        SECURITY_STATIC_WEP = 1,
+#endif /* CONFIG_WEP */
        SECURITY_IEEE_802_1X = 2,
        SECURITY_WPA_PSK = 3,
        SECURITY_WPA = 4,
@@ -87,6 +92,7 @@ typedef enum hostap_security_policy {
 struct hostapd_ssid {
        u8 ssid[SSID_MAX_LEN];
        size_t ssid_len;
+       u32 short_ssid;
        unsigned int ssid_set:1;
        unsigned int utf8_ssid:1;
        unsigned int wpa_passphrase_set:1;
@@ -98,8 +104,11 @@ struct hostapd_ssid {
        struct hostapd_wpa_psk *wpa_psk;
        char *wpa_passphrase;
        char *wpa_psk_file;
+       struct sae_pt *pt;
 
+#ifdef CONFIG_WEP
        struct hostapd_wep_keys wep;
+#endif /* CONFIG_WEP */
 
 #define DYNAMIC_VLAN_DISABLED 0
 #define DYNAMIC_VLAN_OPTIONAL 1
@@ -134,6 +143,7 @@ struct hostapd_vlan {
 };
 
 #define PMK_LEN 32
+#define KEYID_LEN 32
 #define MIN_PASSPHRASE_LEN 8
 #define MAX_PASSPHRASE_LEN 63
 struct hostapd_sta_wpa_psk_short {
@@ -147,9 +157,12 @@ struct hostapd_sta_wpa_psk_short {
 struct hostapd_wpa_psk {
        struct hostapd_wpa_psk *next;
        int group;
+       char keyid[KEYID_LEN];
+       int wps;
        u8 psk[PMK_LEN];
        u8 addr[ETH_ALEN];
        u8 p2p_dev_addr[ETH_ALEN];
+       int vlan_id;
 };
 
 struct hostapd_eap_user {
@@ -246,6 +259,20 @@ struct sae_password_entry {
        char *password;
        char *identifier;
        u8 peer_addr[ETH_ALEN];
+       int vlan_id;
+       struct sae_pt *pt;
+};
+
+struct dpp_controller_conf {
+       struct dpp_controller_conf *next;
+       u8 pkhash[SHA256_MAC_LEN];
+       struct hostapd_ip_addr ipaddr;
+};
+
+struct airtime_sta_weight {
+       struct airtime_sta_weight *next;
+       unsigned int weight;
+       u8 addr[ETH_ALEN];
 };
 
 /**
@@ -284,6 +311,7 @@ struct hostapd_bss_config {
        int radius_request_cui;
        struct hostapd_radius_attr *radius_auth_req_attr;
        struct hostapd_radius_attr *radius_acct_req_attr;
+       char *radius_req_attr_sqlite;
        int radius_das_port;
        unsigned int radius_das_time_window;
        int radius_das_require_event_timestamp;
@@ -299,18 +327,16 @@ struct hostapd_bss_config {
        size_t eap_req_id_text_len;
        int eapol_key_index_workaround;
 
+#ifdef CONFIG_WEP
        size_t default_wep_key_len;
        int individual_wep_key_len;
        int wep_rekeying_period;
        int broadcast_key_idx_min, broadcast_key_idx_max;
+#endif /* CONFIG_WEP */
        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
-                                       * frames */
-
        enum macaddr_acl {
                ACCEPT_UNLESS_DENIED = 0,
                DENY_UNLESS_ACCEPTED = 1,
@@ -328,15 +354,15 @@ struct hostapd_bss_config {
                        * algorithms, WPA_AUTH_ALG_{OPEN,SHARED,LEAP} */
 
        int wpa; /* bitfield of WPA_PROTO_WPA, WPA_PROTO_RSN */
+       int extended_key_id;
        int wpa_key_mgmt;
-#ifdef CONFIG_IEEE80211W
        enum mfp_options ieee80211w;
        int group_mgmt_cipher;
+       int beacon_prot;
        /* dot11AssociationSAQueryMaximumTimeout (in TUs) */
        unsigned int assoc_sa_query_max_timeout;
        /* dot11AssociationSAQueryRetryTimeout (in TUs) */
        int assoc_sa_query_retry_timeout;
-#endif /* CONFIG_IEEE80211W */
 #ifdef CONFIG_OCV
        int ocv; /* Operating Channel Validation */
 #endif /* CONFIG_OCV */
@@ -353,6 +379,7 @@ struct hostapd_bss_config {
        int wpa_strict_rekey;
        int wpa_gmk_rekey;
        int wpa_ptk_rekey;
+       enum ptk0_rekey_handling wpa_deny_ptk0_rekey;
        u32 wpa_group_update_count;
        u32 wpa_pairwise_update_count;
        int wpa_disable_eapol_key_retries;
@@ -386,12 +413,19 @@ struct hostapd_bss_config {
 
        char *ca_cert;
        char *server_cert;
+       char *server_cert2;
        char *private_key;
+       char *private_key2;
        char *private_key_passwd;
+       char *private_key_passwd2;
+       char *check_cert_subject;
        int check_crl;
        int check_crl_strict;
+       unsigned int crl_reload_interval;
        unsigned int tls_session_lifetime;
        unsigned int tls_flags;
+       unsigned int max_auth_rounds;
+       unsigned int max_auth_rounds_short;
        char *ocsp_stapling_response;
        char *ocsp_stapling_response_multi;
        char *dh_file;
@@ -404,7 +438,12 @@ struct hostapd_bss_config {
        int eap_fast_prov;
        int pac_key_lifetime;
        int pac_key_refresh_time;
+       int eap_teap_auth;
+       int eap_teap_pac_no_inner;
+       int eap_teap_separate_result;
+       int eap_teap_id;
        int eap_sim_aka_result_ind;
+       int eap_sim_id;
        int tnc;
        int fragment_size;
        u16 pwd_group;
@@ -459,9 +498,11 @@ struct hostapd_bss_config {
        u8 *extra_cred;
        size_t extra_cred_len;
        int wps_cred_processing;
+       int wps_cred_add_sae;
        int force_per_enrollee_psk;
        u8 *ap_settings;
        size_t ap_settings_len;
+       struct hostapd_ssid multi_ap_backhaul_ssid;
        char *upnp_iface;
        char *friendly_name;
        char *manufacturer_url;
@@ -469,6 +510,7 @@ struct hostapd_bss_config {
        char *model_url;
        char *upc;
        struct wpabuf *wps_vendor_ext[MAX_WPS_VENDOR_EXTENSIONS];
+       struct wpabuf *wps_application_ext;
        int wps_nfc_pw_from_config;
        int wps_nfc_dev_pw_id;
        struct wpabuf *wps_nfc_dh_pubkey;
@@ -562,6 +604,7 @@ struct hostapd_bss_config {
        int osen;
        int proxy_arp;
        int na_mcast_to_ucast;
+
 #ifdef CONFIG_HS20
        int hs20;
        int hs20_release;
@@ -622,6 +665,8 @@ struct hostapd_bss_config {
        unsigned int sae_anti_clogging_threshold;
        unsigned int sae_sync;
        int sae_require_mfp;
+       int sae_confirm_immediate;
+       int sae_pwe;
        int *sae_groups;
        struct sae_password_entry *sae_passwords;
 
@@ -633,6 +678,13 @@ struct hostapd_bss_config {
        struct wpabuf *own_ie_override;
        int sae_reflection_attack;
        struct wpabuf *sae_commit_override;
+       struct wpabuf *rsne_override_eapol;
+       struct wpabuf *rsnxe_override_eapol;
+       struct wpabuf *rsne_override_ft;
+       struct wpabuf *rsnxe_override_ft;
+       struct wpabuf *gtk_rsc_override;
+       struct wpabuf *igtk_rsc_override;
+       int no_beacon_rsnxe;
 #endif /* CONFIG_TESTING_OPTIONS */
 
 #define MESH_ENABLED BIT(0)
@@ -680,10 +732,17 @@ struct hostapd_bss_config {
        int broadcast_deauth;
 
 #ifdef CONFIG_DPP
+       char *dpp_name;
+       char *dpp_mud_url;
        char *dpp_connector;
        struct wpabuf *dpp_netaccesskey;
        unsigned int dpp_netaccesskey_expiry;
        struct wpabuf *dpp_csign;
+#ifdef CONFIG_DPP2
+       struct dpp_controller_conf *dpp_controller;
+       int dpp_configurator_connectivity;
+       int dpp_pfs;
+#endif /* CONFIG_DPP2 */
 #endif /* CONFIG_DPP */
 
 #ifdef CONFIG_OWE
@@ -692,15 +751,112 @@ struct hostapd_bss_config {
        size_t owe_transition_ssid_len;
        char owe_transition_ifname[IFNAMSIZ + 1];
        int *owe_groups;
+       int owe_ptk_workaround;
 #endif /* CONFIG_OWE */
 
        int coloc_intf_reporting;
 
        u8 send_probe_response;
 
+       u8 transition_disable;
+
 #define BACKHAUL_BSS 1
 #define FRONTHAUL_BSS 2
        int multi_ap; /* bitmap of BACKHAUL_BSS, FRONTHAUL_BSS */
+
+#ifdef CONFIG_AIRTIME_POLICY
+       unsigned int airtime_weight;
+       int airtime_limit;
+       struct airtime_sta_weight *airtime_weight_list;
+#endif /* CONFIG_AIRTIME_POLICY */
+
+#ifdef CONFIG_MACSEC
+       /**
+        * macsec_policy - Determines the policy for MACsec secure session
+        *
+        * 0: MACsec not in use (default)
+        * 1: MACsec enabled - Should secure, accept key server's advice to
+        *    determine whether to use a secure session or not.
+        */
+       int macsec_policy;
+
+       /**
+        * macsec_integ_only - Determines how MACsec are transmitted
+        *
+        * This setting applies only when MACsec is in use, i.e.,
+        *  - macsec_policy is enabled
+        *  - the key server has decided to enable MACsec
+        *
+        * 0: Encrypt traffic (default)
+        * 1: Integrity only
+        */
+       int macsec_integ_only;
+
+       /**
+        * macsec_replay_protect - Enable MACsec replay protection
+        *
+        * This setting applies only when MACsec is in use, i.e.,
+        *  - macsec_policy is enabled
+        *  - the key server has decided to enable MACsec
+        *
+        * 0: Replay protection disabled (default)
+        * 1: Replay protection enabled
+        */
+       int macsec_replay_protect;
+
+       /**
+        * macsec_replay_window - MACsec replay protection window
+        *
+        * A window in which replay is tolerated, to allow receipt of frames
+        * that have been misordered by the network.
+        *
+        * This setting applies only when MACsec replay protection active, i.e.,
+        *  - macsec_replay_protect is enabled
+        *  - the key server has decided to enable MACsec
+        *
+        * 0: No replay window, strict check (default)
+        * 1..2^32-1: number of packets that could be misordered
+        */
+       u32 macsec_replay_window;
+
+       /**
+        * macsec_port - MACsec port (in SCI)
+        *
+        * Port component of the SCI.
+        *
+        * Range: 1-65534 (default: 1)
+        */
+       int macsec_port;
+
+       /**
+        * mka_priority - Priority of MKA Actor
+        *
+        * Range: 0-255 (default: 255)
+        */
+       int mka_priority;
+
+       /**
+        * mka_ckn - MKA pre-shared CKN
+        */
+#define MACSEC_CKN_MAX_LEN 32
+       size_t mka_ckn_len;
+       u8 mka_ckn[MACSEC_CKN_MAX_LEN];
+
+       /**
+        * mka_cak - MKA pre-shared CAK
+        */
+#define MACSEC_CAK_MAX_LEN 32
+       size_t mka_cak_len;
+       u8 mka_cak[MACSEC_CAK_MAX_LEN];
+
+#define MKA_PSK_SET_CKN BIT(0)
+#define MKA_PSK_SET_CAK BIT(1)
+#define MKA_PSK_SET (MKA_PSK_SET_CKN | MKA_PSK_SET_CAK)
+       /**
+        * mka_psk_set - Whether mka_ckn and mka_cak are set
+        */
+       u8 mka_psk_set;
+#endif /* CONFIG_MACSEC */
 };
 
 /**
@@ -717,9 +873,24 @@ struct he_phy_capabilities_info {
  */
 struct he_operation {
        u8 he_bss_color;
+       u8 he_bss_color_disabled;
+       u8 he_bss_color_partial;
        u8 he_default_pe_duration;
        u8 he_twt_required;
-       u8 he_rts_threshold;
+       u16 he_rts_threshold;
+       u16 he_basic_mcs_nss_set;
+};
+
+/**
+ * struct spatial_reuse - Spatial reuse
+ */
+struct spatial_reuse {
+       u8 sr_control;
+       u8 non_srg_obss_pd_max_offset;
+       u8 srg_obss_pd_min_offset;
+       u8 srg_obss_pd_max_offset;
+       u8 srg_obss_color_bitmap;
+       u8 srg_obss_color_partial_bitmap;
 };
 
 /**
@@ -732,11 +903,17 @@ struct hostapd_config {
        u16 beacon_int;
        int rts_threshold;
        int fragm_threshold;
+       u8 op_class;
        u8 channel;
+       int enable_edmg;
+       u8 edmg_channel;
        u8 acs;
        struct wpa_freq_range_list acs_ch_list;
+       struct wpa_freq_range_list acs_freq_list;
+       u8 acs_freq_list_present;
        int acs_exclude_dfs;
        enum hostapd_hw_mode hw_mode; /* HOSTAPD_MODE_IEEE80211A, .. */
+       int acs_exclude_6ghz_non_psc;
        enum {
                LONG_PREAMBLE = 0,
                SHORT_PREAMBLE = 1
@@ -843,6 +1020,11 @@ struct hostapd_config {
 #ifdef CONFIG_IEEE80211AX
        struct he_phy_capabilities_info he_phy_capab;
        struct he_operation he_op;
+       struct ieee80211_he_mu_edca_parameter_set he_mu_edca;
+       struct spatial_reuse spr;
+       u8 he_oper_chwidth;
+       u8 he_oper_centr_freq_seg0_idx;
+       u8 he_oper_centr_freq_seg1_idx;
 #endif /* CONFIG_IEEE80211AX */
 
        /* VHT enable/disable config from CHAN_SWITCH */
@@ -852,12 +1034,87 @@ struct hostapd_config {
 
        int rssi_reject_assoc_rssi;
        int rssi_reject_assoc_timeout;
+
+#ifdef CONFIG_AIRTIME_POLICY
+       enum {
+               AIRTIME_MODE_OFF = 0,
+               AIRTIME_MODE_STATIC = 1,
+               AIRTIME_MODE_DYNAMIC = 2,
+               AIRTIME_MODE_LIMIT = 3,
+               __AIRTIME_MODE_MAX,
+       } airtime_mode;
+       unsigned int airtime_update_interval;
+#define AIRTIME_MODE_MAX (__AIRTIME_MODE_MAX - 1)
+#endif /* CONFIG_AIRTIME_POLICY */
 };
 
 
+static inline u8 hostapd_get_oper_chwidth(struct hostapd_config *conf)
+{
+#ifdef CONFIG_IEEE80211AX
+       if (conf->ieee80211ax)
+               return conf->he_oper_chwidth;
+#endif /* CONFIG_IEEE80211AX */
+       return conf->vht_oper_chwidth;
+}
+
+static inline void
+hostapd_set_oper_chwidth(struct hostapd_config *conf, u8 oper_chwidth)
+{
+#ifdef CONFIG_IEEE80211AX
+       if (conf->ieee80211ax)
+               conf->he_oper_chwidth = oper_chwidth;
+#endif /* CONFIG_IEEE80211AX */
+       conf->vht_oper_chwidth = oper_chwidth;
+}
+
+static inline u8
+hostapd_get_oper_centr_freq_seg0_idx(struct hostapd_config *conf)
+{
+#ifdef CONFIG_IEEE80211AX
+       if (conf->ieee80211ax)
+               return conf->he_oper_centr_freq_seg0_idx;
+#endif /* CONFIG_IEEE80211AX */
+       return conf->vht_oper_centr_freq_seg0_idx;
+}
+
+static inline void
+hostapd_set_oper_centr_freq_seg0_idx(struct hostapd_config *conf,
+                                    u8 oper_centr_freq_seg0_idx)
+{
+#ifdef CONFIG_IEEE80211AX
+       if (conf->ieee80211ax)
+               conf->he_oper_centr_freq_seg0_idx = oper_centr_freq_seg0_idx;
+#endif /* CONFIG_IEEE80211AX */
+       conf->vht_oper_centr_freq_seg0_idx = oper_centr_freq_seg0_idx;
+}
+
+static inline u8
+hostapd_get_oper_centr_freq_seg1_idx(struct hostapd_config *conf)
+{
+#ifdef CONFIG_IEEE80211AX
+       if (conf->ieee80211ax)
+               return conf->he_oper_centr_freq_seg1_idx;
+#endif /* CONFIG_IEEE80211AX */
+       return conf->vht_oper_centr_freq_seg1_idx;
+}
+
+static inline void
+hostapd_set_oper_centr_freq_seg1_idx(struct hostapd_config *conf,
+                                    u8 oper_centr_freq_seg1_idx)
+{
+#ifdef CONFIG_IEEE80211AX
+       if (conf->ieee80211ax)
+               conf->he_oper_centr_freq_seg1_idx = oper_centr_freq_seg1_idx;
+#endif /* CONFIG_IEEE80211AX */
+       conf->vht_oper_centr_freq_seg1_idx = oper_centr_freq_seg1_idx;
+}
+
+
 int hostapd_mac_comp(const void *a, const void *b);
 struct hostapd_config * hostapd_config_defaults(void);
 void hostapd_config_defaults_bss(struct hostapd_bss_config *bss);
+void hostapd_config_free_radius_attr(struct hostapd_radius_attr *attr);
 void hostapd_config_free_eap_user(struct hostapd_eap_user *user);
 void hostapd_config_free_eap_users(struct hostapd_eap_user *user);
 void hostapd_config_clear_wpa_psk(struct hostapd_wpa_psk **p);
@@ -868,7 +1125,7 @@ int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
 int hostapd_rate_found(int *list, int rate);
 const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
                           const u8 *addr, const u8 *p2p_dev_addr,
-                          const u8 *prev_psk);
+                          const u8 *prev_psk, int *vlan_id);
 int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf);
 int hostapd_vlan_valid(struct hostapd_vlan *vlan,
                       struct vlan_description *vlan_desc);
@@ -876,8 +1133,11 @@ const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan,
                                        int vlan_id);
 struct hostapd_radius_attr *
 hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type);
+struct hostapd_radius_attr * hostapd_parse_radius_attr(const char *value);
 int hostapd_config_check(struct hostapd_config *conf, int full_config);
 void hostapd_set_security_params(struct hostapd_bss_config *bss,
                                 int full_config);
+int hostapd_sae_pw_id_in_use(struct hostapd_bss_config *conf);
+int hostapd_setup_sae_pt(struct hostapd_bss_config *conf);
 
 #endif /* HOSTAPD_CONFIG_H */