]> git.ipfire.org Git - thirdparty/hostap.git/blobdiff - src/ap/wpa_auth.h
AP: Support Extended Key ID
[thirdparty/hostap.git] / src / ap / wpa_auth.h
index 5e8a4cc840a98f0631524ab516a231c2bb6adb12..528516195c4c00fb438e84dc1a05a2b4542a5a17 100644 (file)
@@ -14,6 +14,8 @@
 #include "common/wpa_common.h"
 #include "common/ieee802_11_defs.h"
 
+struct vlan_description;
+
 #define MAX_OWN_IE_OVERRIDE 256
 
 #ifdef _MSC_VER
@@ -77,6 +79,14 @@ struct ft_rrb_frame {
 #define FT_RRB_PMK_R1        10 /* PMK_LEN */
 
 #define FT_RRB_PAIRWISE      11 /* le16 */
+#define FT_RRB_EXPIRES_IN    12 /* le16 seconds */
+
+#define FT_RRB_VLAN_UNTAGGED 13 /* le16 */
+#define FT_RRB_VLAN_TAGGED   14 /* n times le16 */
+
+#define FT_RRB_IDENTITY      15
+#define FT_RRB_RADIUS_CUI    16
+#define FT_RRB_SESSION_TIMEOUT  17 /* le32 seconds */
 
 struct ft_rrb_tlv {
        le16 type;
@@ -92,6 +102,8 @@ struct ft_rrb_seq {
 
 /* session TLVs:
  *   required: PMK_R1, PMK_R1_NAME, PAIRWISE
+ *   optional: VLAN_UNTAGGED, VLAN_TAGGED, EXPIRES_IN, IDENTITY, RADIUS_CUI,
+ *              SESSION_TIMEOUT
  *
  * pull frame TLVs:
  *   auth:
@@ -133,6 +145,7 @@ struct wpa_state_machine;
 struct rsn_pmksa_cache_entry;
 struct eapol_state_machine;
 struct ft_remote_seq;
+struct wpa_channel_info;
 
 
 struct ft_remote_r0kh {
@@ -156,6 +169,7 @@ struct ft_remote_r1kh {
 
 struct wpa_auth_config {
        int wpa;
+       int extended_key_id;
        int wpa_key_mgmt;
        int wpa_pairwise;
        int wpa_group;
@@ -163,21 +177,25 @@ struct wpa_auth_config {
        int wpa_strict_rekey;
        int wpa_gmk_rekey;
        int wpa_ptk_rekey;
+       int wpa_deny_ptk0_rekey;
        u32 wpa_group_update_count;
        u32 wpa_pairwise_update_count;
+       int wpa_disable_eapol_key_retries;
        int rsn_pairwise;
        int rsn_preauth;
        int eapol_version;
-       int peerkey;
        int wmm_enabled;
        int wmm_uapsd;
        int disable_pmksa_caching;
        int okc;
        int tx_status;
-#ifdef CONFIG_IEEE80211W
        enum mfp_options ieee80211w;
+       int beacon_prot;
        int group_mgmt_cipher;
-#endif /* CONFIG_IEEE80211W */
+       int sae_require_mfp;
+#ifdef CONFIG_OCV
+       int ocv; /* Operating Channel Validation */
+#endif /* CONFIG_OCV */
 #ifdef CONFIG_IEEE80211R_AP
        u8 ssid[SSID_MAX_LEN];
        size_t ssid_len;
@@ -185,11 +203,12 @@ struct wpa_auth_config {
        u8 r0_key_holder[FT_R0KH_ID_MAX_LEN];
        size_t r0_key_holder_len;
        u8 r1_key_holder[FT_R1KH_ID_LEN];
-       u32 r0_key_lifetime;
+       u32 r0_key_lifetime; /* PMK-R0 lifetime seconds */
        int rkh_pos_timeout;
        int rkh_neg_timeout;
        int rkh_pull_timeout; /* ms */
        int rkh_pull_retries;
+       int r1_max_key_lifetime;
        u32 reassociation_deadline;
        struct ft_remote_r0kh **r0kh_list;
        struct ft_remote_r1kh **r1kh_list;
@@ -203,6 +222,22 @@ struct wpa_auth_config {
        double corrupt_gtk_rekey_mic_probability;
        u8 own_ie_override[MAX_OWN_IE_OVERRIDE];
        size_t own_ie_override_len;
+       u8 rsne_override_eapol[MAX_OWN_IE_OVERRIDE];
+       size_t rsne_override_eapol_len;
+       u8 rsnxe_override_eapol[MAX_OWN_IE_OVERRIDE];
+       size_t rsnxe_override_eapol_len;
+       u8 rsne_override_ft[MAX_OWN_IE_OVERRIDE];
+       size_t rsne_override_ft_len;
+       u8 rsnxe_override_ft[MAX_OWN_IE_OVERRIDE];
+       size_t rsnxe_override_ft_len;
+       u8 gtk_rsc_override[WPA_KEY_RSC_LEN];
+       u8 igtk_rsc_override[WPA_KEY_RSC_LEN];
+       unsigned int rsne_override_eapol_set:1;
+       unsigned int rsnxe_override_eapol_set:1;
+       unsigned int rsne_override_ft_set:1;
+       unsigned int rsnxe_override_ft_set:1;
+       unsigned int gtk_rsc_override_set:1;
+       unsigned int igtk_rsc_override_set:1;
 #endif /* CONFIG_TESTING_OPTIONS */
 #ifdef CONFIG_P2P
        u8 ip_addr_go[4];
@@ -214,6 +249,8 @@ struct wpa_auth_config {
        unsigned int fils_cache_id_set:1;
        u8 fils_cache_id[FILS_CACHE_ID_LEN];
 #endif /* CONFIG_FILS */
+       int sae_pwe;
+       int owe_ptk_workaround;
 };
 
 typedef enum {
@@ -236,10 +273,12 @@ struct wpa_auth_callbacks {
                          int value);
        int (*get_eapol)(void *ctx, const u8 *addr, wpa_eapol_variable var);
        const u8 * (*get_psk)(void *ctx, const u8 *addr, const u8 *p2p_dev_addr,
-                             const u8 *prev_psk);
+                             const u8 *prev_psk, size_t *psk_len,
+                             int *vlan_id);
        int (*get_msk)(void *ctx, const u8 *addr, u8 *msk, size_t *len);
        int (*set_key)(void *ctx, int vlan_id, enum wpa_alg alg,
-                      const u8 *addr, int idx, u8 *key, size_t key_len);
+                      const u8 *addr, int idx, u8 *key, size_t key_len,
+                      enum key_flag key_flag);
        int (*get_seqnum)(void *ctx, const u8 *addr, int idx, u8 *seq);
        int (*send_eapol)(void *ctx, const u8 *addr, const u8 *data,
                          size_t data_len, int encrypt);
@@ -251,8 +290,27 @@ struct wpa_auth_callbacks {
                          size_t data_len);
        int (*send_oui)(void *ctx, const u8 *dst, u8 oui_suffix, const u8 *data,
                        size_t data_len);
+       int (*channel_info)(void *ctx, struct wpa_channel_info *ci);
+       int (*update_vlan)(void *ctx, const u8 *addr, int vlan_id);
+       int (*get_sta_tx_params)(void *ctx, const u8 *addr,
+                                int ap_max_chanwidth, int ap_seg1_idx,
+                                int *bandwidth, int *seg1_idx);
 #ifdef CONFIG_IEEE80211R_AP
        struct wpa_state_machine * (*add_sta)(void *ctx, const u8 *sta_addr);
+       int (*set_vlan)(void *ctx, const u8 *sta_addr,
+                       struct vlan_description *vlan);
+       int (*get_vlan)(void *ctx, const u8 *sta_addr,
+                       struct vlan_description *vlan);
+       int (*set_identity)(void *ctx, const u8 *sta_addr,
+                           const u8 *identity, size_t identity_len);
+       size_t (*get_identity)(void *ctx, const u8 *sta_addr, const u8 **buf);
+       int (*set_radius_cui)(void *ctx, const u8 *sta_addr,
+                             const u8 *radius_cui, size_t radius_cui_len);
+       size_t (*get_radius_cui)(void *ctx, const u8 *sta_addr, const u8 **buf);
+       void (*set_session_timeout)(void *ctx, const u8 *sta_addr,
+                                   int session_timeout);
+       int (*get_session_timeout)(void *ctx, const u8 *sta_addr);
+
        int (*send_ft_action)(void *ctx, const u8 *dst,
                              const u8 *data, size_t data_len);
        int (*add_tspec)(void *ctx, const u8 *sta_addr, u8 *tspec_ie,
@@ -280,14 +338,17 @@ enum {
 };
 
 int wpa_validate_wpa_ie(struct wpa_authenticator *wpa_auth,
-                       struct wpa_state_machine *sm,
+                       struct wpa_state_machine *sm, int freq,
                        const u8 *wpa_ie, size_t wpa_ie_len,
+                       const u8 *rsnxe, size_t rsnxe_len,
                        const u8 *mdie, size_t mdie_len,
                        const u8 *owe_dh, size_t owe_dh_len);
 int wpa_validate_osen(struct wpa_authenticator *wpa_auth,
                      struct wpa_state_machine *sm,
                      const u8 *osen_ie, size_t osen_ie_len);
 int wpa_auth_uses_mfp(struct wpa_state_machine *sm);
+void wpa_auth_set_ocv(struct wpa_state_machine *sm, int ocv);
+int wpa_auth_uses_ocv(struct wpa_state_machine *sm);
 struct wpa_state_machine *
 wpa_auth_sta_init(struct wpa_authenticator *wpa_auth, const u8 *addr,
                  const u8 *p2p_dev_addr);
@@ -300,7 +361,7 @@ void wpa_receive(struct wpa_authenticator *wpa_auth,
                 u8 *data, size_t data_len);
 enum wpa_event {
        WPA_AUTH, WPA_ASSOC, WPA_DISASSOC, WPA_DEAUTH, WPA_REAUTH,
-       WPA_REAUTH_EAPOL, WPA_ASSOC_FT, WPA_ASSOC_FILS
+       WPA_REAUTH_EAPOL, WPA_ASSOC_FT, WPA_ASSOC_FILS, WPA_DRV_STA_REMOVED
 };
 void wpa_remove_ptk(struct wpa_state_machine *sm);
 int wpa_auth_sm_event(struct wpa_state_machine *sm, enum wpa_event event);
@@ -311,8 +372,11 @@ int wpa_get_mib_sta(struct wpa_state_machine *sm, char *buf, size_t buflen);
 void wpa_auth_countermeasures_start(struct wpa_authenticator *wpa_auth);
 int wpa_auth_pairwise_set(struct wpa_state_machine *sm);
 int wpa_auth_get_pairwise(struct wpa_state_machine *sm);
+const u8 * wpa_auth_get_pmk(struct wpa_state_machine *sm, int *len);
 int wpa_auth_sta_key_mgmt(struct wpa_state_machine *sm);
 int wpa_auth_sta_wpa_version(struct wpa_state_machine *sm);
+int wpa_auth_sta_ft_tk_already_set(struct wpa_state_machine *sm);
+int wpa_auth_sta_fils_tk_already_set(struct wpa_state_machine *sm);
 int wpa_auth_sta_clear_pmksa(struct wpa_state_machine *sm,
                             struct rsn_pmksa_cache_entry *entry);
 struct rsn_pmksa_cache_entry *
@@ -329,6 +393,7 @@ int wpa_auth_pmksa_add_preauth(struct wpa_authenticator *wpa_auth,
                               struct eapol_state_machine *eapol);
 int wpa_auth_pmksa_add_sae(struct wpa_authenticator *wpa_auth, const u8 *addr,
                           const u8 *pmk, const u8 *pmkid);
+void wpa_auth_add_sae_pmkid(struct wpa_state_machine *sm, const u8 *pmkid);
 int wpa_auth_pmksa_add2(struct wpa_authenticator *wpa_auth, const u8 *addr,
                        const u8 *pmk, size_t pmk_len, const u8 *pmkid,
                        int session_timeout, int akmp);
@@ -361,7 +426,8 @@ void wpa_auth_eapol_key_tx_status(struct wpa_authenticator *wpa_auth,
 #ifdef CONFIG_IEEE80211R_AP
 u8 * wpa_sm_write_assoc_resp_ies(struct wpa_state_machine *sm, u8 *pos,
                                 size_t max_len, int auth_alg,
-                                const u8 *req_ies, size_t req_ies_len);
+                                const u8 *req_ies, size_t req_ies_len,
+                                int omit_rsnxe);
 void wpa_ft_process_auth(struct wpa_state_machine *sm, const u8 *bssid,
                         u16 auth_transaction, const u8 *ies, size_t ies_len,
                         void (*cb)(void *ctx, const u8 *dst, const u8 *bssid,
@@ -385,6 +451,7 @@ void wpa_wnmsleep_rekey_gtk(struct wpa_state_machine *sm);
 void wpa_set_wnmsleep(struct wpa_state_machine *sm, int flag);
 int wpa_wnmsleep_gtk_subelem(struct wpa_state_machine *sm, u8 *pos);
 int wpa_wnmsleep_igtk_subelem(struct wpa_state_machine *sm, u8 *pos);
+int wpa_wnmsleep_bigtk_subelem(struct wpa_state_machine *sm, u8 *pos);
 
 int wpa_auth_uses_sae(struct wpa_state_machine *sm);
 int wpa_auth_uses_ft_sae(struct wpa_state_machine *sm);
@@ -418,9 +485,35 @@ const u8 *  wpa_fils_validate_fils_session(struct wpa_state_machine *sm,
 int wpa_fils_validate_key_confirm(struct wpa_state_machine *sm, const u8 *ies,
                                  size_t ies_len);
 
-int wpa_auth_write_fte(struct wpa_authenticator *wpa_auth, u8 *buf, size_t len);
+int get_sta_tx_parameters(struct wpa_state_machine *sm, int ap_max_chanwidth,
+                         int ap_seg1_idx, int *bandwidth, int *seg1_idx);
+
+int wpa_auth_write_fte(struct wpa_authenticator *wpa_auth, int use_sha384,
+                      u8 *buf, size_t len);
 void wpa_auth_get_fils_aead_params(struct wpa_state_machine *sm,
                                   u8 *fils_anonce, u8 *fils_snonce,
                                   u8 *fils_kek, size_t *fils_kek_len);
+void wpa_auth_add_fils_pmk_pmkid(struct wpa_state_machine *sm, const u8 *pmk,
+                                size_t pmk_len, const u8 *pmkid);
+u8 * wpa_auth_write_assoc_resp_owe(struct wpa_state_machine *sm,
+                                  u8 *pos, size_t max_len,
+                                  const u8 *req_ies, size_t req_ies_len);
+u8 * wpa_auth_write_assoc_resp_fils(struct wpa_state_machine *sm,
+                                   u8 *pos, size_t max_len,
+                                   const u8 *req_ies, size_t req_ies_len);
+void wpa_auth_set_auth_alg(struct wpa_state_machine *sm, u16 auth_alg);
+void wpa_auth_set_dpp_z(struct wpa_state_machine *sm, const struct wpabuf *z);
+
+int wpa_auth_resend_m1(struct wpa_state_machine *sm, int change_anonce,
+                      void (*cb)(void *ctx1, void *ctx2),
+                      void *ctx1, void *ctx2);
+int wpa_auth_resend_m3(struct wpa_state_machine *sm,
+                      void (*cb)(void *ctx1, void *ctx2),
+                      void *ctx1, void *ctx2);
+int wpa_auth_resend_group_m1(struct wpa_state_machine *sm,
+                            void (*cb)(void *ctx1, void *ctx2),
+                            void *ctx1, void *ctx2);
+int wpa_auth_rekey_gtk(struct wpa_authenticator *wpa_auth);
+void wpa_auth_set_ptk_rekey_timer(struct wpa_state_machine *sm);
 
 #endif /* WPA_AUTH_H */