wpa.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*
  2. * wpa_supplicant - WPA definitions
  3. * Copyright (c) 2003-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_H
  9. #define WPA_H
  10. #include "common/defs.h"
  11. #include "common/eapol_common.h"
  12. #include "common/wpa_common.h"
  13. #include "common/ieee802_11_defs.h"
  14. struct wpa_sm;
  15. struct eapol_sm;
  16. struct wpa_config_blob;
  17. struct wpa_sm_ctx {
  18. void *ctx; /* pointer to arbitrary upper level context */
  19. void *msg_ctx; /* upper level context for wpa_msg() calls */
  20. void (*set_state)(void *ctx, enum wpa_states state);
  21. enum wpa_states (*get_state)(void *ctx);
  22. void (*deauthenticate)(void * ctx, int reason_code);
  23. int (*set_key)(void *ctx, enum wpa_alg alg,
  24. const u8 *addr, int key_idx, int set_tx,
  25. const u8 *seq, size_t seq_len,
  26. const u8 *key, size_t key_len);
  27. void * (*get_network_ctx)(void *ctx);
  28. int (*get_bssid)(void *ctx, u8 *bssid);
  29. int (*ether_send)(void *ctx, const u8 *dest, u16 proto, const u8 *buf,
  30. size_t len);
  31. int (*get_beacon_ie)(void *ctx);
  32. void (*cancel_auth_timeout)(void *ctx);
  33. u8 * (*alloc_eapol)(void *ctx, u8 type, const void *data, u16 data_len,
  34. size_t *msg_len, void **data_pos);
  35. int (*add_pmkid)(void *ctx, const u8 *bssid, const u8 *pmkid);
  36. int (*remove_pmkid)(void *ctx, const u8 *bssid, const u8 *pmkid);
  37. void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
  38. const struct wpa_config_blob * (*get_config_blob)(void *ctx,
  39. const char *name);
  40. int (*mlme_setprotection)(void *ctx, const u8 *addr,
  41. int protection_type, int key_type);
  42. int (*update_ft_ies)(void *ctx, const u8 *md, const u8 *ies,
  43. size_t ies_len);
  44. int (*send_ft_action)(void *ctx, u8 action, const u8 *target_ap,
  45. const u8 *ies, size_t ies_len);
  46. int (*mark_authenticated)(void *ctx, const u8 *target_ap);
  47. #ifdef CONFIG_TDLS
  48. int (*tdls_get_capa)(void *ctx, int *tdls_supported,
  49. int *tdls_ext_setup);
  50. int (*send_tdls_mgmt)(void *ctx, const u8 *dst,
  51. u8 action_code, u8 dialog_token,
  52. u16 status_code, const u8 *buf, size_t len);
  53. int (*tdls_oper)(void *ctx, int oper, const u8 *peer);
  54. int (*tdls_peer_addset)(void *ctx, const u8 *addr, int add, u16 aid,
  55. u16 capability, const u8 *supp_rates,
  56. size_t supp_rates_len,
  57. const struct ieee80211_ht_capabilities *ht_capab,
  58. const struct ieee80211_vht_capabilities *vht_capab,
  59. u8 qosinfo, const u8 *ext_capab,
  60. size_t ext_capab_len);
  61. #endif /* CONFIG_TDLS */
  62. void (*set_rekey_offload)(void *ctx, const u8 *kek, const u8 *kck,
  63. const u8 *replay_ctr);
  64. };
  65. enum wpa_sm_conf_params {
  66. RSNA_PMK_LIFETIME /* dot11RSNAConfigPMKLifetime */,
  67. RSNA_PMK_REAUTH_THRESHOLD /* dot11RSNAConfigPMKReauthThreshold */,
  68. RSNA_SA_TIMEOUT /* dot11RSNAConfigSATimeout */,
  69. WPA_PARAM_PROTO,
  70. WPA_PARAM_PAIRWISE,
  71. WPA_PARAM_GROUP,
  72. WPA_PARAM_KEY_MGMT,
  73. WPA_PARAM_MGMT_GROUP,
  74. WPA_PARAM_RSN_ENABLED,
  75. WPA_PARAM_MFP
  76. };
  77. struct rsn_supp_config {
  78. void *network_ctx;
  79. int peerkey_enabled;
  80. int allowed_pairwise_cipher; /* bitfield of WPA_CIPHER_* */
  81. int proactive_key_caching;
  82. int eap_workaround;
  83. void *eap_conf_ctx;
  84. const u8 *ssid;
  85. size_t ssid_len;
  86. int wpa_ptk_rekey;
  87. };
  88. #ifndef CONFIG_NO_WPA
  89. struct wpa_sm * wpa_sm_init(struct wpa_sm_ctx *ctx);
  90. void wpa_sm_deinit(struct wpa_sm *sm);
  91. void wpa_sm_notify_assoc(struct wpa_sm *sm, const u8 *bssid);
  92. void wpa_sm_notify_disassoc(struct wpa_sm *sm);
  93. void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk, size_t pmk_len);
  94. void wpa_sm_set_pmk_from_pmksa(struct wpa_sm *sm);
  95. void wpa_sm_set_fast_reauth(struct wpa_sm *sm, int fast_reauth);
  96. void wpa_sm_set_scard_ctx(struct wpa_sm *sm, void *scard_ctx);
  97. void wpa_sm_set_config(struct wpa_sm *sm, struct rsn_supp_config *config);
  98. void wpa_sm_set_own_addr(struct wpa_sm *sm, const u8 *addr);
  99. void wpa_sm_set_ifname(struct wpa_sm *sm, const char *ifname,
  100. const char *bridge_ifname);
  101. void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol);
  102. int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
  103. int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm *sm, u8 *wpa_ie,
  104. size_t *wpa_ie_len);
  105. int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
  106. int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
  107. int wpa_sm_get_mib(struct wpa_sm *sm, char *buf, size_t buflen);
  108. int wpa_sm_set_param(struct wpa_sm *sm, enum wpa_sm_conf_params param,
  109. unsigned int value);
  110. unsigned int wpa_sm_get_param(struct wpa_sm *sm,
  111. enum wpa_sm_conf_params param);
  112. int wpa_sm_get_status(struct wpa_sm *sm, char *buf, size_t buflen,
  113. int verbose);
  114. int wpa_sm_pmf_enabled(struct wpa_sm *sm);
  115. void wpa_sm_key_request(struct wpa_sm *sm, int error, int pairwise);
  116. int wpa_parse_wpa_ie(const u8 *wpa_ie, size_t wpa_ie_len,
  117. struct wpa_ie_data *data);
  118. void wpa_sm_aborted_cached(struct wpa_sm *sm);
  119. int wpa_sm_rx_eapol(struct wpa_sm *sm, const u8 *src_addr,
  120. const u8 *buf, size_t len);
  121. int wpa_sm_parse_own_wpa_ie(struct wpa_sm *sm, struct wpa_ie_data *data);
  122. int wpa_sm_pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len);
  123. void wpa_sm_drop_sa(struct wpa_sm *sm);
  124. int wpa_sm_has_ptk(struct wpa_sm *sm);
  125. void wpa_sm_update_replay_ctr(struct wpa_sm *sm, const u8 *replay_ctr);
  126. void wpa_sm_pmksa_cache_flush(struct wpa_sm *sm, void *network_ctx);
  127. #else /* CONFIG_NO_WPA */
  128. static inline struct wpa_sm * wpa_sm_init(struct wpa_sm_ctx *ctx)
  129. {
  130. return (struct wpa_sm *) 1;
  131. }
  132. static inline void wpa_sm_deinit(struct wpa_sm *sm)
  133. {
  134. }
  135. static inline void wpa_sm_notify_assoc(struct wpa_sm *sm, const u8 *bssid)
  136. {
  137. }
  138. static inline void wpa_sm_notify_disassoc(struct wpa_sm *sm)
  139. {
  140. }
  141. static inline void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk,
  142. size_t pmk_len)
  143. {
  144. }
  145. static inline void wpa_sm_set_pmk_from_pmksa(struct wpa_sm *sm)
  146. {
  147. }
  148. static inline void wpa_sm_set_fast_reauth(struct wpa_sm *sm, int fast_reauth)
  149. {
  150. }
  151. static inline void wpa_sm_set_scard_ctx(struct wpa_sm *sm, void *scard_ctx)
  152. {
  153. }
  154. static inline void wpa_sm_set_config(struct wpa_sm *sm,
  155. struct rsn_supp_config *config)
  156. {
  157. }
  158. static inline void wpa_sm_set_own_addr(struct wpa_sm *sm, const u8 *addr)
  159. {
  160. }
  161. static inline void wpa_sm_set_ifname(struct wpa_sm *sm, const char *ifname,
  162. const char *bridge_ifname)
  163. {
  164. }
  165. static inline void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol)
  166. {
  167. }
  168. static inline int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie,
  169. size_t len)
  170. {
  171. return -1;
  172. }
  173. static inline int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm *sm,
  174. u8 *wpa_ie,
  175. size_t *wpa_ie_len)
  176. {
  177. return -1;
  178. }
  179. static inline int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie,
  180. size_t len)
  181. {
  182. return -1;
  183. }
  184. static inline int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie,
  185. size_t len)
  186. {
  187. return -1;
  188. }
  189. static inline int wpa_sm_get_mib(struct wpa_sm *sm, char *buf, size_t buflen)
  190. {
  191. return 0;
  192. }
  193. static inline int wpa_sm_set_param(struct wpa_sm *sm,
  194. enum wpa_sm_conf_params param,
  195. unsigned int value)
  196. {
  197. return -1;
  198. }
  199. static inline unsigned int wpa_sm_get_param(struct wpa_sm *sm,
  200. enum wpa_sm_conf_params param)
  201. {
  202. return 0;
  203. }
  204. static inline int wpa_sm_get_status(struct wpa_sm *sm, char *buf,
  205. size_t buflen, int verbose)
  206. {
  207. return 0;
  208. }
  209. static inline void wpa_sm_key_request(struct wpa_sm *sm, int error,
  210. int pairwise)
  211. {
  212. }
  213. static inline int wpa_parse_wpa_ie(const u8 *wpa_ie, size_t wpa_ie_len,
  214. struct wpa_ie_data *data)
  215. {
  216. return -1;
  217. }
  218. static inline void wpa_sm_aborted_cached(struct wpa_sm *sm)
  219. {
  220. }
  221. static inline int wpa_sm_rx_eapol(struct wpa_sm *sm, const u8 *src_addr,
  222. const u8 *buf, size_t len)
  223. {
  224. return -1;
  225. }
  226. static inline int wpa_sm_parse_own_wpa_ie(struct wpa_sm *sm,
  227. struct wpa_ie_data *data)
  228. {
  229. return -1;
  230. }
  231. static inline int wpa_sm_pmksa_cache_list(struct wpa_sm *sm, char *buf,
  232. size_t len)
  233. {
  234. return -1;
  235. }
  236. static inline void wpa_sm_drop_sa(struct wpa_sm *sm)
  237. {
  238. }
  239. static inline int wpa_sm_has_ptk(struct wpa_sm *sm)
  240. {
  241. return 0;
  242. }
  243. static inline void wpa_sm_update_replay_ctr(struct wpa_sm *sm,
  244. const u8 *replay_ctr)
  245. {
  246. }
  247. static inline void wpa_sm_pmksa_cache_flush(struct wpa_sm *sm,
  248. void *network_ctx)
  249. {
  250. }
  251. #endif /* CONFIG_NO_WPA */
  252. #ifdef CONFIG_PEERKEY
  253. int wpa_sm_stkstart(struct wpa_sm *sm, const u8 *peer);
  254. #else /* CONFIG_PEERKEY */
  255. static inline int wpa_sm_stkstart(struct wpa_sm *sm, const u8 *peer)
  256. {
  257. return -1;
  258. }
  259. #endif /* CONFIG_PEERKEY */
  260. #ifdef CONFIG_IEEE80211R
  261. int wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len);
  262. int wpa_ft_prepare_auth_request(struct wpa_sm *sm, const u8 *mdie);
  263. int wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
  264. int ft_action, const u8 *target_ap,
  265. const u8 *ric_ies, size_t ric_ies_len);
  266. int wpa_ft_is_completed(struct wpa_sm *sm);
  267. void wpa_reset_ft_completed(struct wpa_sm *sm);
  268. int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies,
  269. size_t ies_len, const u8 *src_addr);
  270. int wpa_ft_start_over_ds(struct wpa_sm *sm, const u8 *target_ap,
  271. const u8 *mdie);
  272. #else /* CONFIG_IEEE80211R */
  273. static inline int
  274. wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len)
  275. {
  276. return 0;
  277. }
  278. static inline int wpa_ft_prepare_auth_request(struct wpa_sm *sm,
  279. const u8 *mdie)
  280. {
  281. return 0;
  282. }
  283. static inline int
  284. wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
  285. int ft_action, const u8 *target_ap)
  286. {
  287. return 0;
  288. }
  289. static inline int wpa_ft_is_completed(struct wpa_sm *sm)
  290. {
  291. return 0;
  292. }
  293. static inline void wpa_reset_ft_completed(struct wpa_sm *sm)
  294. {
  295. }
  296. static inline int
  297. wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
  298. const u8 *src_addr)
  299. {
  300. return -1;
  301. }
  302. #endif /* CONFIG_IEEE80211R */
  303. /* tdls.c */
  304. void wpa_tdls_ap_ies(struct wpa_sm *sm, const u8 *ies, size_t len);
  305. void wpa_tdls_assoc_resp_ies(struct wpa_sm *sm, const u8 *ies, size_t len);
  306. int wpa_tdls_start(struct wpa_sm *sm, const u8 *addr);
  307. void wpa_tdls_remove(struct wpa_sm *sm, const u8 *addr);
  308. int wpa_tdls_send_teardown(struct wpa_sm *sm, const u8 *addr, u16 reason_code);
  309. int wpa_tdls_teardown_link(struct wpa_sm *sm, const u8 *addr, u16 reason_code);
  310. int wpa_tdls_send_discovery_request(struct wpa_sm *sm, const u8 *addr);
  311. int wpa_tdls_init(struct wpa_sm *sm);
  312. void wpa_tdls_teardown_peers(struct wpa_sm *sm);
  313. void wpa_tdls_deinit(struct wpa_sm *sm);
  314. void wpa_tdls_enable(struct wpa_sm *sm, int enabled);
  315. void wpa_tdls_disable_link(struct wpa_sm *sm, const u8 *addr);
  316. int wpa_tdls_is_external_setup(struct wpa_sm *sm);
  317. int wpa_wnmsleep_install_key(struct wpa_sm *sm, u8 subelem_id, u8 *buf);
  318. #endif /* WPA_H */