wpa_auth.h 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * hostapd - IEEE 802.11i-2004 / WPA Authenticator
  3. * Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef WPA_AUTH_H
  9. #define WPA_AUTH_H
  10. #include "common/defs.h"
  11. #include "common/eapol_common.h"
  12. #include "common/wpa_common.h"
  13. #ifdef _MSC_VER
  14. #pragma pack(push, 1)
  15. #endif /* _MSC_VER */
  16. /* IEEE Std 802.11r-2008, 11A.10.3 - Remote request/response frame definition
  17. */
  18. struct ft_rrb_frame {
  19. u8 frame_type; /* RSN_REMOTE_FRAME_TYPE_FT_RRB */
  20. u8 packet_type; /* FT_PACKET_REQUEST/FT_PACKET_RESPONSE */
  21. le16 action_length; /* little endian length of action_frame */
  22. u8 ap_address[ETH_ALEN];
  23. /*
  24. * Followed by action_length bytes of FT Action frame (from Category
  25. * field to the end of Action Frame body.
  26. */
  27. } STRUCT_PACKED;
  28. #define RSN_REMOTE_FRAME_TYPE_FT_RRB 1
  29. #define FT_PACKET_REQUEST 0
  30. #define FT_PACKET_RESPONSE 1
  31. /* Vendor-specific types for R0KH-R1KH protocol; not defined in 802.11r */
  32. #define FT_PACKET_R0KH_R1KH_PULL 200
  33. #define FT_PACKET_R0KH_R1KH_RESP 201
  34. #define FT_PACKET_R0KH_R1KH_PUSH 202
  35. #define FT_R0KH_R1KH_PULL_DATA_LEN 44
  36. #define FT_R0KH_R1KH_RESP_DATA_LEN 76
  37. #define FT_R0KH_R1KH_PUSH_DATA_LEN 88
  38. struct ft_r0kh_r1kh_pull_frame {
  39. u8 frame_type; /* RSN_REMOTE_FRAME_TYPE_FT_RRB */
  40. u8 packet_type; /* FT_PACKET_R0KH_R1KH_PULL */
  41. le16 data_length; /* little endian length of data (44) */
  42. u8 ap_address[ETH_ALEN];
  43. u8 nonce[16];
  44. u8 pmk_r0_name[WPA_PMK_NAME_LEN];
  45. u8 r1kh_id[FT_R1KH_ID_LEN];
  46. u8 s1kh_id[ETH_ALEN];
  47. u8 pad[4]; /* 8-octet boundary for AES key wrap */
  48. u8 key_wrap_extra[8];
  49. } STRUCT_PACKED;
  50. struct ft_r0kh_r1kh_resp_frame {
  51. u8 frame_type; /* RSN_REMOTE_FRAME_TYPE_FT_RRB */
  52. u8 packet_type; /* FT_PACKET_R0KH_R1KH_RESP */
  53. le16 data_length; /* little endian length of data (76) */
  54. u8 ap_address[ETH_ALEN];
  55. u8 nonce[16]; /* copied from pull */
  56. u8 r1kh_id[FT_R1KH_ID_LEN]; /* copied from pull */
  57. u8 s1kh_id[ETH_ALEN]; /* copied from pull */
  58. u8 pmk_r1[PMK_LEN];
  59. u8 pmk_r1_name[WPA_PMK_NAME_LEN];
  60. le16 pairwise;
  61. u8 pad[2]; /* 8-octet boundary for AES key wrap */
  62. u8 key_wrap_extra[8];
  63. } STRUCT_PACKED;
  64. struct ft_r0kh_r1kh_push_frame {
  65. u8 frame_type; /* RSN_REMOTE_FRAME_TYPE_FT_RRB */
  66. u8 packet_type; /* FT_PACKET_R0KH_R1KH_PUSH */
  67. le16 data_length; /* little endian length of data (88) */
  68. u8 ap_address[ETH_ALEN];
  69. /* Encrypted with AES key-wrap */
  70. u8 timestamp[4]; /* current time in seconds since unix epoch, little
  71. * endian */
  72. u8 r1kh_id[FT_R1KH_ID_LEN];
  73. u8 s1kh_id[ETH_ALEN];
  74. u8 pmk_r0_name[WPA_PMK_NAME_LEN];
  75. u8 pmk_r1[PMK_LEN];
  76. u8 pmk_r1_name[WPA_PMK_NAME_LEN];
  77. le16 pairwise;
  78. u8 pad[6]; /* 8-octet boundary for AES key wrap */
  79. u8 key_wrap_extra[8];
  80. } STRUCT_PACKED;
  81. #ifdef _MSC_VER
  82. #pragma pack(pop)
  83. #endif /* _MSC_VER */
  84. /* per STA state machine data */
  85. struct wpa_authenticator;
  86. struct wpa_state_machine;
  87. struct rsn_pmksa_cache_entry;
  88. struct eapol_state_machine;
  89. struct ft_remote_r0kh {
  90. struct ft_remote_r0kh *next;
  91. u8 addr[ETH_ALEN];
  92. u8 id[FT_R0KH_ID_MAX_LEN];
  93. size_t id_len;
  94. u8 key[16];
  95. };
  96. struct ft_remote_r1kh {
  97. struct ft_remote_r1kh *next;
  98. u8 addr[ETH_ALEN];
  99. u8 id[FT_R1KH_ID_LEN];
  100. u8 key[16];
  101. };
  102. struct wpa_auth_config {
  103. int wpa;
  104. int wpa_key_mgmt;
  105. int wpa_pairwise;
  106. int wpa_group;
  107. int wpa_group_rekey;
  108. int wpa_strict_rekey;
  109. int wpa_gmk_rekey;
  110. int wpa_ptk_rekey;
  111. int rsn_pairwise;
  112. int rsn_preauth;
  113. int eapol_version;
  114. int peerkey;
  115. int wmm_enabled;
  116. int wmm_uapsd;
  117. int disable_pmksa_caching;
  118. int okc;
  119. int tx_status;
  120. #ifdef CONFIG_IEEE80211W
  121. enum mfp_options ieee80211w;
  122. #endif /* CONFIG_IEEE80211W */
  123. #ifdef CONFIG_IEEE80211R
  124. #define SSID_LEN 32
  125. u8 ssid[SSID_LEN];
  126. size_t ssid_len;
  127. u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
  128. u8 r0_key_holder[FT_R0KH_ID_MAX_LEN];
  129. size_t r0_key_holder_len;
  130. u8 r1_key_holder[FT_R1KH_ID_LEN];
  131. u32 r0_key_lifetime;
  132. u32 reassociation_deadline;
  133. struct ft_remote_r0kh *r0kh_list;
  134. struct ft_remote_r1kh *r1kh_list;
  135. int pmk_r1_push;
  136. int ft_over_ds;
  137. #endif /* CONFIG_IEEE80211R */
  138. int disable_gtk;
  139. int ap_mlme;
  140. };
  141. typedef enum {
  142. LOGGER_DEBUG, LOGGER_INFO, LOGGER_WARNING
  143. } logger_level;
  144. typedef enum {
  145. WPA_EAPOL_portEnabled, WPA_EAPOL_portValid, WPA_EAPOL_authorized,
  146. WPA_EAPOL_portControl_Auto, WPA_EAPOL_keyRun, WPA_EAPOL_keyAvailable,
  147. WPA_EAPOL_keyDone, WPA_EAPOL_inc_EapolFramesTx
  148. } wpa_eapol_variable;
  149. struct wpa_auth_callbacks {
  150. void *ctx;
  151. void (*logger)(void *ctx, const u8 *addr, logger_level level,
  152. const char *txt);
  153. void (*disconnect)(void *ctx, const u8 *addr, u16 reason);
  154. int (*mic_failure_report)(void *ctx, const u8 *addr);
  155. void (*set_eapol)(void *ctx, const u8 *addr, wpa_eapol_variable var,
  156. int value);
  157. int (*get_eapol)(void *ctx, const u8 *addr, wpa_eapol_variable var);
  158. const u8 * (*get_psk)(void *ctx, const u8 *addr, const u8 *prev_psk);
  159. int (*get_msk)(void *ctx, const u8 *addr, u8 *msk, size_t *len);
  160. int (*set_key)(void *ctx, int vlan_id, enum wpa_alg alg,
  161. const u8 *addr, int idx, u8 *key, size_t key_len);
  162. int (*get_seqnum)(void *ctx, const u8 *addr, int idx, u8 *seq);
  163. int (*send_eapol)(void *ctx, const u8 *addr, const u8 *data,
  164. size_t data_len, int encrypt);
  165. int (*for_each_sta)(void *ctx, int (*cb)(struct wpa_state_machine *sm,
  166. void *ctx), void *cb_ctx);
  167. int (*for_each_auth)(void *ctx, int (*cb)(struct wpa_authenticator *a,
  168. void *ctx), void *cb_ctx);
  169. int (*send_ether)(void *ctx, const u8 *dst, u16 proto, const u8 *data,
  170. size_t data_len);
  171. #ifdef CONFIG_IEEE80211R
  172. struct wpa_state_machine * (*add_sta)(void *ctx, const u8 *sta_addr);
  173. int (*send_ft_action)(void *ctx, const u8 *dst,
  174. const u8 *data, size_t data_len);
  175. int (*add_tspec)(void *ctx, const u8 *sta_addr, u8 *tspec_ie,
  176. size_t tspec_ielen);
  177. #endif /* CONFIG_IEEE80211R */
  178. };
  179. struct wpa_authenticator * wpa_init(const u8 *addr,
  180. struct wpa_auth_config *conf,
  181. struct wpa_auth_callbacks *cb);
  182. int wpa_init_keys(struct wpa_authenticator *wpa_auth);
  183. void wpa_deinit(struct wpa_authenticator *wpa_auth);
  184. int wpa_reconfig(struct wpa_authenticator *wpa_auth,
  185. struct wpa_auth_config *conf);
  186. enum {
  187. WPA_IE_OK, WPA_INVALID_IE, WPA_INVALID_GROUP, WPA_INVALID_PAIRWISE,
  188. WPA_INVALID_AKMP, WPA_NOT_ENABLED, WPA_ALLOC_FAIL,
  189. WPA_MGMT_FRAME_PROTECTION_VIOLATION, WPA_INVALID_MGMT_GROUP_CIPHER,
  190. WPA_INVALID_MDIE, WPA_INVALID_PROTO
  191. };
  192. int wpa_validate_wpa_ie(struct wpa_authenticator *wpa_auth,
  193. struct wpa_state_machine *sm,
  194. const u8 *wpa_ie, size_t wpa_ie_len,
  195. const u8 *mdie, size_t mdie_len);
  196. int wpa_auth_uses_mfp(struct wpa_state_machine *sm);
  197. struct wpa_state_machine *
  198. wpa_auth_sta_init(struct wpa_authenticator *wpa_auth, const u8 *addr);
  199. int wpa_auth_sta_associated(struct wpa_authenticator *wpa_auth,
  200. struct wpa_state_machine *sm);
  201. void wpa_auth_sta_no_wpa(struct wpa_state_machine *sm);
  202. void wpa_auth_sta_deinit(struct wpa_state_machine *sm);
  203. void wpa_receive(struct wpa_authenticator *wpa_auth,
  204. struct wpa_state_machine *sm,
  205. u8 *data, size_t data_len);
  206. typedef enum {
  207. WPA_AUTH, WPA_ASSOC, WPA_DISASSOC, WPA_DEAUTH, WPA_REAUTH,
  208. WPA_REAUTH_EAPOL, WPA_ASSOC_FT
  209. } wpa_event;
  210. void wpa_remove_ptk(struct wpa_state_machine *sm);
  211. int wpa_auth_sm_event(struct wpa_state_machine *sm, wpa_event event);
  212. void wpa_auth_sm_notify(struct wpa_state_machine *sm);
  213. void wpa_gtk_rekey(struct wpa_authenticator *wpa_auth);
  214. int wpa_get_mib(struct wpa_authenticator *wpa_auth, char *buf, size_t buflen);
  215. int wpa_get_mib_sta(struct wpa_state_machine *sm, char *buf, size_t buflen);
  216. void wpa_auth_countermeasures_start(struct wpa_authenticator *wpa_auth);
  217. int wpa_auth_pairwise_set(struct wpa_state_machine *sm);
  218. int wpa_auth_get_pairwise(struct wpa_state_machine *sm);
  219. int wpa_auth_sta_key_mgmt(struct wpa_state_machine *sm);
  220. int wpa_auth_sta_wpa_version(struct wpa_state_machine *sm);
  221. int wpa_auth_sta_clear_pmksa(struct wpa_state_machine *sm,
  222. struct rsn_pmksa_cache_entry *entry);
  223. struct rsn_pmksa_cache_entry *
  224. wpa_auth_sta_get_pmksa(struct wpa_state_machine *sm);
  225. void wpa_auth_sta_local_mic_failure_report(struct wpa_state_machine *sm);
  226. const u8 * wpa_auth_get_wpa_ie(struct wpa_authenticator *wpa_auth,
  227. size_t *len);
  228. int wpa_auth_pmksa_add(struct wpa_state_machine *sm, const u8 *pmk,
  229. int session_timeout, struct eapol_state_machine *eapol);
  230. int wpa_auth_pmksa_add_preauth(struct wpa_authenticator *wpa_auth,
  231. const u8 *pmk, size_t len, const u8 *sta_addr,
  232. int session_timeout,
  233. struct eapol_state_machine *eapol);
  234. int wpa_auth_sta_set_vlan(struct wpa_state_machine *sm, int vlan_id);
  235. void wpa_auth_eapol_key_tx_status(struct wpa_authenticator *wpa_auth,
  236. struct wpa_state_machine *sm, int ack);
  237. #ifdef CONFIG_IEEE80211R
  238. u8 * wpa_sm_write_assoc_resp_ies(struct wpa_state_machine *sm, u8 *pos,
  239. size_t max_len, int auth_alg,
  240. const u8 *req_ies, size_t req_ies_len);
  241. void wpa_ft_process_auth(struct wpa_state_machine *sm, const u8 *bssid,
  242. u16 auth_transaction, const u8 *ies, size_t ies_len,
  243. void (*cb)(void *ctx, const u8 *dst, const u8 *bssid,
  244. u16 auth_transaction, u16 resp,
  245. const u8 *ies, size_t ies_len),
  246. void *ctx);
  247. u16 wpa_ft_validate_reassoc(struct wpa_state_machine *sm, const u8 *ies,
  248. size_t ies_len);
  249. int wpa_ft_action_rx(struct wpa_state_machine *sm, const u8 *data, size_t len);
  250. int wpa_ft_rrb_rx(struct wpa_authenticator *wpa_auth, const u8 *src_addr,
  251. const u8 *data, size_t data_len);
  252. void wpa_ft_push_pmk_r1(struct wpa_authenticator *wpa_auth, const u8 *addr);
  253. #endif /* CONFIG_IEEE80211R */
  254. #ifdef CONFIG_IEEE80211V
  255. void wpa_wnmsleep_rekey_gtk(struct wpa_state_machine *sm);
  256. void wpa_set_wnmsleep(struct wpa_state_machine *sm, int flag);
  257. int wpa_wnmsleep_gtk_subelem(struct wpa_state_machine *sm, u8 *pos);
  258. #ifdef CONFIG_IEEE80211W
  259. int wpa_wnmsleep_igtk_subelem(struct wpa_state_machine *sm, u8 *pos);
  260. #endif /* CONFIG_IEEE80211W */
  261. #endif /* CONFIG_IEEE80211V */
  262. int wpa_auth_uses_sae(struct wpa_state_machine *sm);
  263. #endif /* WPA_AUTH_H */