wpa_common.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*
  2. * WPA definitions shared between hostapd and wpa_supplicant
  3. * Copyright (c) 2002-2008, 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_COMMON_H
  9. #define WPA_COMMON_H
  10. #define WPA_MAX_SSID_LEN 32
  11. /* IEEE 802.11i */
  12. #define PMKID_LEN 16
  13. #define PMK_LEN 32
  14. #define WPA_REPLAY_COUNTER_LEN 8
  15. #define WPA_NONCE_LEN 32
  16. #define WPA_KEY_RSC_LEN 8
  17. #define WPA_GMK_LEN 32
  18. #define WPA_GTK_MAX_LEN 32
  19. #define WPA_SELECTOR_LEN 4
  20. #define WPA_VERSION 1
  21. #define RSN_SELECTOR_LEN 4
  22. #define RSN_VERSION 1
  23. #define RSN_SELECTOR(a, b, c, d) \
  24. ((((u32) (a)) << 24) | (((u32) (b)) << 16) | (((u32) (c)) << 8) | \
  25. (u32) (d))
  26. #define WPA_AUTH_KEY_MGMT_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
  27. #define WPA_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
  28. #define WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
  29. #define WPA_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
  30. #define WPA_CIPHER_SUITE_WEP40 RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
  31. #define WPA_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
  32. #if 0
  33. #define WPA_CIPHER_SUITE_WRAP RSN_SELECTOR(0x00, 0x50, 0xf2, 3)
  34. #endif
  35. #define WPA_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x50, 0xf2, 4)
  36. #define WPA_CIPHER_SUITE_WEP104 RSN_SELECTOR(0x00, 0x50, 0xf2, 5)
  37. #define RSN_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
  38. #define RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
  39. #ifdef CONFIG_IEEE80211R
  40. #define RSN_AUTH_KEY_MGMT_FT_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
  41. #define RSN_AUTH_KEY_MGMT_FT_PSK RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
  42. #endif /* CONFIG_IEEE80211R */
  43. #define RSN_AUTH_KEY_MGMT_802_1X_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
  44. #define RSN_AUTH_KEY_MGMT_PSK_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
  45. #define RSN_AUTH_KEY_MGMT_TPK_HANDSHAKE RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
  46. #define RSN_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x0f, 0xac, 0)
  47. #define RSN_CIPHER_SUITE_WEP40 RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
  48. #define RSN_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
  49. #if 0
  50. #define RSN_CIPHER_SUITE_WRAP RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
  51. #endif
  52. #define RSN_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
  53. #define RSN_CIPHER_SUITE_WEP104 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
  54. #ifdef CONFIG_IEEE80211W
  55. #define RSN_CIPHER_SUITE_AES_128_CMAC RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
  56. #endif /* CONFIG_IEEE80211W */
  57. #define RSN_CIPHER_SUITE_NO_GROUP_ADDRESSED RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
  58. #define RSN_CIPHER_SUITE_GCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
  59. /* EAPOL-Key Key Data Encapsulation
  60. * GroupKey and PeerKey require encryption, otherwise, encryption is optional.
  61. */
  62. #define RSN_KEY_DATA_GROUPKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
  63. #if 0
  64. #define RSN_KEY_DATA_STAKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
  65. #endif
  66. #define RSN_KEY_DATA_MAC_ADDR RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
  67. #define RSN_KEY_DATA_PMKID RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
  68. #ifdef CONFIG_PEERKEY
  69. #define RSN_KEY_DATA_SMK RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
  70. #define RSN_KEY_DATA_NONCE RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
  71. #define RSN_KEY_DATA_LIFETIME RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
  72. #define RSN_KEY_DATA_ERROR RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
  73. #endif /* CONFIG_PEERKEY */
  74. #ifdef CONFIG_IEEE80211W
  75. #define RSN_KEY_DATA_IGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
  76. #endif /* CONFIG_IEEE80211W */
  77. #define RSN_KEY_DATA_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 10)
  78. #define RSN_KEY_DATA_MULTIBAND_GTK RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
  79. #define RSN_KEY_DATA_MULTIBAND_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
  80. #define WPA_OUI_TYPE RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
  81. #define RSN_SELECTOR_PUT(a, val) WPA_PUT_BE32((u8 *) (a), (val))
  82. #define RSN_SELECTOR_GET(a) WPA_GET_BE32((const u8 *) (a))
  83. #define RSN_NUM_REPLAY_COUNTERS_1 0
  84. #define RSN_NUM_REPLAY_COUNTERS_2 1
  85. #define RSN_NUM_REPLAY_COUNTERS_4 2
  86. #define RSN_NUM_REPLAY_COUNTERS_16 3
  87. #ifdef _MSC_VER
  88. #pragma pack(push, 1)
  89. #endif /* _MSC_VER */
  90. #ifdef CONFIG_IEEE80211W
  91. #define WPA_IGTK_LEN 16
  92. #endif /* CONFIG_IEEE80211W */
  93. /* IEEE 802.11, 7.3.2.25.3 RSN Capabilities */
  94. #define WPA_CAPABILITY_PREAUTH BIT(0)
  95. #define WPA_CAPABILITY_NO_PAIRWISE BIT(1)
  96. /* B2-B3: PTKSA Replay Counter */
  97. /* B4-B5: GTKSA Replay Counter */
  98. #define WPA_CAPABILITY_MFPR BIT(6)
  99. #define WPA_CAPABILITY_MFPC BIT(7)
  100. /* B8: Reserved */
  101. #define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9)
  102. #define WPA_CAPABILITY_SPP_A_MSDU_CAPABLE BIT(10)
  103. #define WPA_CAPABILITY_SPP_A_MSDU_REQUIRED BIT(11)
  104. #define WPA_CAPABILITY_PBAC BIT(12)
  105. #define WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST BIT(13)
  106. /* B14-B15: Reserved */
  107. /* IEEE 802.11r */
  108. #define MOBILITY_DOMAIN_ID_LEN 2
  109. #define FT_R0KH_ID_MAX_LEN 48
  110. #define FT_R1KH_ID_LEN 6
  111. #define WPA_PMK_NAME_LEN 16
  112. /* IEEE 802.11, 8.5.2 EAPOL-Key frames */
  113. #define WPA_KEY_INFO_TYPE_MASK ((u16) (BIT(0) | BIT(1) | BIT(2)))
  114. #define WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 BIT(0)
  115. #define WPA_KEY_INFO_TYPE_HMAC_SHA1_AES BIT(1)
  116. #define WPA_KEY_INFO_TYPE_AES_128_CMAC 3
  117. #define WPA_KEY_INFO_KEY_TYPE BIT(3) /* 1 = Pairwise, 0 = Group key */
  118. /* bit4..5 is used in WPA, but is reserved in IEEE 802.11i/RSN */
  119. #define WPA_KEY_INFO_KEY_INDEX_MASK (BIT(4) | BIT(5))
  120. #define WPA_KEY_INFO_KEY_INDEX_SHIFT 4
  121. #define WPA_KEY_INFO_INSTALL BIT(6) /* pairwise */
  122. #define WPA_KEY_INFO_TXRX BIT(6) /* group */
  123. #define WPA_KEY_INFO_ACK BIT(7)
  124. #define WPA_KEY_INFO_MIC BIT(8)
  125. #define WPA_KEY_INFO_SECURE BIT(9)
  126. #define WPA_KEY_INFO_ERROR BIT(10)
  127. #define WPA_KEY_INFO_REQUEST BIT(11)
  128. #define WPA_KEY_INFO_ENCR_KEY_DATA BIT(12) /* IEEE 802.11i/RSN only */
  129. #define WPA_KEY_INFO_SMK_MESSAGE BIT(13)
  130. struct wpa_eapol_key {
  131. u8 type;
  132. /* Note: key_info, key_length, and key_data_length are unaligned */
  133. u8 key_info[2]; /* big endian */
  134. u8 key_length[2]; /* big endian */
  135. u8 replay_counter[WPA_REPLAY_COUNTER_LEN];
  136. u8 key_nonce[WPA_NONCE_LEN];
  137. u8 key_iv[16];
  138. u8 key_rsc[WPA_KEY_RSC_LEN];
  139. u8 key_id[8]; /* Reserved in IEEE 802.11i/RSN */
  140. u8 key_mic[16];
  141. u8 key_data_length[2]; /* big endian */
  142. /* followed by key_data_length bytes of key_data */
  143. } STRUCT_PACKED;
  144. /**
  145. * struct wpa_ptk - WPA Pairwise Transient Key
  146. * IEEE Std 802.11i-2004 - 8.5.1.2 Pairwise key hierarchy
  147. */
  148. struct wpa_ptk {
  149. u8 kck[16]; /* EAPOL-Key Key Confirmation Key (KCK) */
  150. u8 kek[16]; /* EAPOL-Key Key Encryption Key (KEK) */
  151. u8 tk1[16]; /* Temporal Key 1 (TK1) */
  152. union {
  153. u8 tk2[16]; /* Temporal Key 2 (TK2) */
  154. struct {
  155. u8 tx_mic_key[8];
  156. u8 rx_mic_key[8];
  157. } auth;
  158. } u;
  159. } STRUCT_PACKED;
  160. /* WPA IE version 1
  161. * 00-50-f2:1 (OUI:OUI type)
  162. * 0x01 0x00 (version; little endian)
  163. * (all following fields are optional:)
  164. * Group Suite Selector (4 octets) (default: TKIP)
  165. * Pairwise Suite Count (2 octets, little endian) (default: 1)
  166. * Pairwise Suite List (4 * n octets) (default: TKIP)
  167. * Authenticated Key Management Suite Count (2 octets, little endian)
  168. * (default: 1)
  169. * Authenticated Key Management Suite List (4 * n octets)
  170. * (default: unspec 802.1X)
  171. * WPA Capabilities (2 octets, little endian) (default: 0)
  172. */
  173. struct wpa_ie_hdr {
  174. u8 elem_id;
  175. u8 len;
  176. u8 oui[4]; /* 24-bit OUI followed by 8-bit OUI type */
  177. u8 version[2]; /* little endian */
  178. } STRUCT_PACKED;
  179. /* 1/4: PMKID
  180. * 2/4: RSN IE
  181. * 3/4: one or two RSN IEs + GTK IE (encrypted)
  182. * 4/4: empty
  183. * 1/2: GTK IE (encrypted)
  184. * 2/2: empty
  185. */
  186. /* RSN IE version 1
  187. * 0x01 0x00 (version; little endian)
  188. * (all following fields are optional:)
  189. * Group Suite Selector (4 octets) (default: CCMP)
  190. * Pairwise Suite Count (2 octets, little endian) (default: 1)
  191. * Pairwise Suite List (4 * n octets) (default: CCMP)
  192. * Authenticated Key Management Suite Count (2 octets, little endian)
  193. * (default: 1)
  194. * Authenticated Key Management Suite List (4 * n octets)
  195. * (default: unspec 802.1X)
  196. * RSN Capabilities (2 octets, little endian) (default: 0)
  197. * PMKID Count (2 octets) (default: 0)
  198. * PMKID List (16 * n octets)
  199. * Management Group Cipher Suite (4 octets) (default: AES-128-CMAC)
  200. */
  201. struct rsn_ie_hdr {
  202. u8 elem_id; /* WLAN_EID_RSN */
  203. u8 len;
  204. u8 version[2]; /* little endian */
  205. } STRUCT_PACKED;
  206. #ifdef CONFIG_PEERKEY
  207. enum {
  208. STK_MUI_4WAY_STA_AP = 1,
  209. STK_MUI_4WAY_STAT_STA = 2,
  210. STK_MUI_GTK = 3,
  211. STK_MUI_SMK = 4
  212. };
  213. enum {
  214. STK_ERR_STA_NR = 1,
  215. STK_ERR_STA_NRSN = 2,
  216. STK_ERR_CPHR_NS = 3,
  217. STK_ERR_NO_STSL = 4
  218. };
  219. #endif /* CONFIG_PEERKEY */
  220. struct rsn_error_kde {
  221. be16 mui;
  222. be16 error_type;
  223. } STRUCT_PACKED;
  224. #ifdef CONFIG_IEEE80211W
  225. struct wpa_igtk_kde {
  226. u8 keyid[2];
  227. u8 pn[6];
  228. u8 igtk[WPA_IGTK_LEN];
  229. } STRUCT_PACKED;
  230. #endif /* CONFIG_IEEE80211W */
  231. #ifdef CONFIG_IEEE80211R
  232. struct rsn_mdie {
  233. u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
  234. u8 ft_capab;
  235. } STRUCT_PACKED;
  236. #define RSN_FT_CAPAB_FT_OVER_DS BIT(0)
  237. #define RSN_FT_CAPAB_FT_RESOURCE_REQ_SUPP BIT(1)
  238. struct rsn_ftie {
  239. u8 mic_control[2];
  240. u8 mic[16];
  241. u8 anonce[WPA_NONCE_LEN];
  242. u8 snonce[WPA_NONCE_LEN];
  243. /* followed by optional parameters */
  244. } STRUCT_PACKED;
  245. #define FTIE_SUBELEM_R1KH_ID 1
  246. #define FTIE_SUBELEM_GTK 2
  247. #define FTIE_SUBELEM_R0KH_ID 3
  248. #define FTIE_SUBELEM_IGTK 4
  249. struct rsn_rdie {
  250. u8 id;
  251. u8 descr_count;
  252. le16 status_code;
  253. } STRUCT_PACKED;
  254. #endif /* CONFIG_IEEE80211R */
  255. #ifdef _MSC_VER
  256. #pragma pack(pop)
  257. #endif /* _MSC_VER */
  258. int wpa_eapol_key_mic(const u8 *key, int ver, const u8 *buf, size_t len,
  259. u8 *mic);
  260. void wpa_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const char *label,
  261. const u8 *addr1, const u8 *addr2,
  262. const u8 *nonce1, const u8 *nonce2,
  263. u8 *ptk, size_t ptk_len, int use_sha256);
  264. #ifdef CONFIG_IEEE80211R
  265. int wpa_ft_mic(const u8 *kck, const u8 *sta_addr, const u8 *ap_addr,
  266. u8 transaction_seqnum, const u8 *mdie, size_t mdie_len,
  267. const u8 *ftie, size_t ftie_len,
  268. const u8 *rsnie, size_t rsnie_len,
  269. const u8 *ric, size_t ric_len, u8 *mic);
  270. void wpa_derive_pmk_r0(const u8 *xxkey, size_t xxkey_len,
  271. const u8 *ssid, size_t ssid_len,
  272. const u8 *mdid, const u8 *r0kh_id, size_t r0kh_id_len,
  273. const u8 *s0kh_id, u8 *pmk_r0, u8 *pmk_r0_name);
  274. void wpa_derive_pmk_r1_name(const u8 *pmk_r0_name, const u8 *r1kh_id,
  275. const u8 *s1kh_id, u8 *pmk_r1_name);
  276. void wpa_derive_pmk_r1(const u8 *pmk_r0, const u8 *pmk_r0_name,
  277. const u8 *r1kh_id, const u8 *s1kh_id,
  278. u8 *pmk_r1, u8 *pmk_r1_name);
  279. void wpa_pmk_r1_to_ptk(const u8 *pmk_r1, const u8 *snonce, const u8 *anonce,
  280. const u8 *sta_addr, const u8 *bssid,
  281. const u8 *pmk_r1_name,
  282. u8 *ptk, size_t ptk_len, u8 *ptk_name);
  283. #endif /* CONFIG_IEEE80211R */
  284. struct wpa_ie_data {
  285. int proto;
  286. int pairwise_cipher;
  287. int group_cipher;
  288. int key_mgmt;
  289. int capabilities;
  290. size_t num_pmkid;
  291. const u8 *pmkid;
  292. int mgmt_group_cipher;
  293. };
  294. int wpa_parse_wpa_ie_rsn(const u8 *rsn_ie, size_t rsn_ie_len,
  295. struct wpa_ie_data *data);
  296. int wpa_parse_wpa_ie_wpa(const u8 *wpa_ie, size_t wpa_ie_len,
  297. struct wpa_ie_data *data);
  298. void rsn_pmkid(const u8 *pmk, size_t pmk_len, const u8 *aa, const u8 *spa,
  299. u8 *pmkid, int use_sha256);
  300. const char * wpa_cipher_txt(int cipher);
  301. const char * wpa_key_mgmt_txt(int key_mgmt, int proto);
  302. int wpa_compare_rsn_ie(int ft_initial_assoc,
  303. const u8 *ie1, size_t ie1len,
  304. const u8 *ie2, size_t ie2len);
  305. int wpa_insert_pmkid(u8 *ies, size_t ies_len, const u8 *pmkid);
  306. struct wpa_ft_ies {
  307. const u8 *mdie;
  308. size_t mdie_len;
  309. const u8 *ftie;
  310. size_t ftie_len;
  311. const u8 *r1kh_id;
  312. const u8 *gtk;
  313. size_t gtk_len;
  314. const u8 *r0kh_id;
  315. size_t r0kh_id_len;
  316. const u8 *rsn;
  317. size_t rsn_len;
  318. const u8 *rsn_pmkid;
  319. const u8 *tie;
  320. size_t tie_len;
  321. const u8 *igtk;
  322. size_t igtk_len;
  323. const u8 *ric;
  324. size_t ric_len;
  325. };
  326. int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, struct wpa_ft_ies *parse);
  327. #endif /* WPA_COMMON_H */