eap_i.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. /*
  2. * EAP peer state machines internal structures (RFC 4137)
  3. * Copyright (c) 2004-2014, 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 EAP_I_H
  9. #define EAP_I_H
  10. #include "wpabuf.h"
  11. #include "utils/list.h"
  12. #include "eap_peer/eap.h"
  13. #include "eap_common/eap_common.h"
  14. #define NO_EAP_METHOD_ERROR (-1)
  15. /* RFC 4137 - EAP Peer state machine */
  16. typedef enum {
  17. DECISION_FAIL, DECISION_COND_SUCC, DECISION_UNCOND_SUCC
  18. } EapDecision;
  19. typedef enum {
  20. METHOD_NONE, METHOD_INIT, METHOD_CONT, METHOD_MAY_CONT, METHOD_DONE
  21. } EapMethodState;
  22. /**
  23. * struct eap_method_ret - EAP return values from struct eap_method::process()
  24. *
  25. * These structure contains OUT variables for the interface between peer state
  26. * machine and methods (RFC 4137, Sect. 4.2). eapRespData will be returned as
  27. * the return value of struct eap_method::process() so it is not included in
  28. * this structure.
  29. */
  30. struct eap_method_ret {
  31. /**
  32. * ignore - Whether method decided to drop the current packed (OUT)
  33. */
  34. Boolean ignore;
  35. /**
  36. * methodState - Method-specific state (IN/OUT)
  37. */
  38. EapMethodState methodState;
  39. /**
  40. * decision - Authentication decision (OUT)
  41. */
  42. EapDecision decision;
  43. /**
  44. * allowNotifications - Whether method allows notifications (OUT)
  45. */
  46. Boolean allowNotifications;
  47. };
  48. /**
  49. * struct eap_method - EAP method interface
  50. * This structure defines the EAP method interface. Each method will need to
  51. * register its own EAP type, EAP name, and set of function pointers for method
  52. * specific operations. This interface is based on section 4.4 of RFC 4137.
  53. */
  54. struct eap_method {
  55. /**
  56. * vendor - EAP Vendor-ID (EAP_VENDOR_*) (0 = IETF)
  57. */
  58. int vendor;
  59. /**
  60. * method - EAP type number (EAP_TYPE_*)
  61. */
  62. EapType method;
  63. /**
  64. * name - Name of the method (e.g., "TLS")
  65. */
  66. const char *name;
  67. /**
  68. * init - Initialize an EAP method
  69. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  70. * Returns: Pointer to allocated private data, or %NULL on failure
  71. *
  72. * This function is used to initialize the EAP method explicitly
  73. * instead of using METHOD_INIT state as specific in RFC 4137. The
  74. * method is expected to initialize it method-specific state and return
  75. * a pointer that will be used as the priv argument to other calls.
  76. */
  77. void * (*init)(struct eap_sm *sm);
  78. /**
  79. * deinit - Deinitialize an EAP method
  80. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  81. * @priv: Pointer to private EAP method data from eap_method::init()
  82. *
  83. * Deinitialize the EAP method and free any allocated private data.
  84. */
  85. void (*deinit)(struct eap_sm *sm, void *priv);
  86. /**
  87. * process - Process an EAP request
  88. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  89. * @priv: Pointer to private EAP method data from eap_method::init()
  90. * @ret: Return values from EAP request validation and processing
  91. * @reqData: EAP request to be processed (eapReqData)
  92. * Returns: Pointer to allocated EAP response packet (eapRespData)
  93. *
  94. * This function is a combination of m.check(), m.process(), and
  95. * m.buildResp() procedures defined in section 4.4 of RFC 4137 In other
  96. * words, this function validates the incoming request, processes it,
  97. * and build a response packet. m.check() and m.process() return values
  98. * are returned through struct eap_method_ret *ret variable. Caller is
  99. * responsible for freeing the returned EAP response packet.
  100. */
  101. struct wpabuf * (*process)(struct eap_sm *sm, void *priv,
  102. struct eap_method_ret *ret,
  103. const struct wpabuf *reqData);
  104. /**
  105. * isKeyAvailable - Find out whether EAP method has keying material
  106. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  107. * @priv: Pointer to private EAP method data from eap_method::init()
  108. * Returns: %TRUE if key material (eapKeyData) is available
  109. */
  110. Boolean (*isKeyAvailable)(struct eap_sm *sm, void *priv);
  111. /**
  112. * getKey - Get EAP method specific keying material (eapKeyData)
  113. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  114. * @priv: Pointer to private EAP method data from eap_method::init()
  115. * @len: Pointer to variable to store key length (eapKeyDataLen)
  116. * Returns: Keying material (eapKeyData) or %NULL if not available
  117. *
  118. * This function can be used to get the keying material from the EAP
  119. * method. The key may already be stored in the method-specific private
  120. * data or this function may derive the key.
  121. */
  122. u8 * (*getKey)(struct eap_sm *sm, void *priv, size_t *len);
  123. /**
  124. * get_status - Get EAP method status
  125. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  126. * @priv: Pointer to private EAP method data from eap_method::init()
  127. * @buf: Buffer for status information
  128. * @buflen: Maximum buffer length
  129. * @verbose: Whether to include verbose status information
  130. * Returns: Number of bytes written to buf
  131. *
  132. * Query EAP method for status information. This function fills in a
  133. * text area with current status information from the EAP method. If
  134. * the buffer (buf) is not large enough, status information will be
  135. * truncated to fit the buffer.
  136. */
  137. int (*get_status)(struct eap_sm *sm, void *priv, char *buf,
  138. size_t buflen, int verbose);
  139. /**
  140. * has_reauth_data - Whether method is ready for fast reauthentication
  141. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  142. * @priv: Pointer to private EAP method data from eap_method::init()
  143. * Returns: %TRUE or %FALSE based on whether fast reauthentication is
  144. * possible
  145. *
  146. * This function is an optional handler that only EAP methods
  147. * supporting fast re-authentication need to implement.
  148. */
  149. Boolean (*has_reauth_data)(struct eap_sm *sm, void *priv);
  150. /**
  151. * deinit_for_reauth - Release data that is not needed for fast re-auth
  152. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  153. * @priv: Pointer to private EAP method data from eap_method::init()
  154. *
  155. * This function is an optional handler that only EAP methods
  156. * supporting fast re-authentication need to implement. This is called
  157. * when authentication has been completed and EAP state machine is
  158. * requesting that enough state information is maintained for fast
  159. * re-authentication
  160. */
  161. void (*deinit_for_reauth)(struct eap_sm *sm, void *priv);
  162. /**
  163. * init_for_reauth - Prepare for start of fast re-authentication
  164. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  165. * @priv: Pointer to private EAP method data from eap_method::init()
  166. *
  167. * This function is an optional handler that only EAP methods
  168. * supporting fast re-authentication need to implement. This is called
  169. * when EAP authentication is started and EAP state machine is
  170. * requesting fast re-authentication to be used.
  171. */
  172. void * (*init_for_reauth)(struct eap_sm *sm, void *priv);
  173. /**
  174. * get_identity - Get method specific identity for re-authentication
  175. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  176. * @priv: Pointer to private EAP method data from eap_method::init()
  177. * @len: Length of the returned identity
  178. * Returns: Pointer to the method specific identity or %NULL if default
  179. * identity is to be used
  180. *
  181. * This function is an optional handler that only EAP methods
  182. * that use method specific identity need to implement.
  183. */
  184. const u8 * (*get_identity)(struct eap_sm *sm, void *priv, size_t *len);
  185. /**
  186. * get_error_code - Get the latest EAP method error code
  187. * @priv: Pointer to private EAP method data from eap_method::init()
  188. * Returns: An int for the EAP method specific error code if exists or
  189. * NO_EAP_METHOD_ERROR otherwise.
  190. *
  191. * This method is an optional handler that only EAP methods that need to
  192. * report their error code need to implement.
  193. */
  194. int (*get_error_code)(void *priv);
  195. /**
  196. * free - Free EAP method data
  197. * @method: Pointer to the method data registered with
  198. * eap_peer_method_register().
  199. *
  200. * This function will be called when the EAP method is being
  201. * unregistered. If the EAP method allocated resources during
  202. * registration (e.g., allocated struct eap_method), they should be
  203. * freed in this function. No other method functions will be called
  204. * after this call. If this function is not defined (i.e., function
  205. * pointer is %NULL), a default handler is used to release the method
  206. * data with free(method). This is suitable for most cases.
  207. */
  208. void (*free)(struct eap_method *method);
  209. #define EAP_PEER_METHOD_INTERFACE_VERSION 1
  210. /**
  211. * version - Version of the EAP peer method interface
  212. *
  213. * The EAP peer method implementation should set this variable to
  214. * EAP_PEER_METHOD_INTERFACE_VERSION. This is used to verify that the
  215. * EAP method is using supported API version when using dynamically
  216. * loadable EAP methods.
  217. */
  218. int version;
  219. /**
  220. * next - Pointer to the next EAP method
  221. *
  222. * This variable is used internally in the EAP method registration code
  223. * to create a linked list of registered EAP methods.
  224. */
  225. struct eap_method *next;
  226. #ifdef CONFIG_DYNAMIC_EAP_METHODS
  227. /**
  228. * dl_handle - Handle for the dynamic library
  229. *
  230. * This variable is used internally in the EAP method registration code
  231. * to store a handle for the dynamic library. If the method is linked
  232. * in statically, this is %NULL.
  233. */
  234. void *dl_handle;
  235. #endif /* CONFIG_DYNAMIC_EAP_METHODS */
  236. /**
  237. * get_emsk - Get EAP method specific keying extended material (EMSK)
  238. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  239. * @priv: Pointer to private EAP method data from eap_method::init()
  240. * @len: Pointer to a variable to store EMSK length
  241. * Returns: EMSK or %NULL if not available
  242. *
  243. * This function can be used to get the extended keying material from
  244. * the EAP method. The key may already be stored in the method-specific
  245. * private data or this function may derive the key.
  246. */
  247. u8 * (*get_emsk)(struct eap_sm *sm, void *priv, size_t *len);
  248. /**
  249. * getSessionId - Get EAP method specific Session-Id
  250. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  251. * @priv: Pointer to private EAP method data from eap_method::init()
  252. * @len: Pointer to a variable to store Session-Id length
  253. * Returns: Session-Id or %NULL if not available
  254. *
  255. * This function can be used to get the Session-Id from the EAP method.
  256. * The Session-Id may already be stored in the method-specific private
  257. * data or this function may derive the Session-Id.
  258. */
  259. u8 * (*getSessionId)(struct eap_sm *sm, void *priv, size_t *len);
  260. };
  261. struct eap_erp_key {
  262. struct dl_list list;
  263. size_t rRK_len;
  264. size_t rIK_len;
  265. u8 rRK[ERP_MAX_KEY_LEN];
  266. u8 rIK[ERP_MAX_KEY_LEN];
  267. u32 next_seq;
  268. char keyname_nai[];
  269. };
  270. /**
  271. * struct eap_sm - EAP state machine data
  272. */
  273. struct eap_sm {
  274. enum {
  275. EAP_INITIALIZE, EAP_DISABLED, EAP_IDLE, EAP_RECEIVED,
  276. EAP_GET_METHOD, EAP_METHOD, EAP_SEND_RESPONSE, EAP_DISCARD,
  277. EAP_IDENTITY, EAP_NOTIFICATION, EAP_RETRANSMIT, EAP_SUCCESS,
  278. EAP_FAILURE
  279. } EAP_state;
  280. /* Long-term local variables */
  281. EapType selectedMethod;
  282. EapMethodState methodState;
  283. int lastId;
  284. struct wpabuf *lastRespData;
  285. EapDecision decision;
  286. /* Short-term local variables */
  287. Boolean rxReq;
  288. Boolean rxSuccess;
  289. Boolean rxFailure;
  290. int reqId;
  291. EapType reqMethod;
  292. int reqVendor;
  293. u32 reqVendorMethod;
  294. Boolean ignore;
  295. /* Constants */
  296. int ClientTimeout;
  297. /* Miscellaneous variables */
  298. Boolean allowNotifications; /* peer state machine <-> methods */
  299. struct wpabuf *eapRespData; /* peer to lower layer */
  300. Boolean eapKeyAvailable; /* peer to lower layer */
  301. u8 *eapKeyData; /* peer to lower layer */
  302. size_t eapKeyDataLen; /* peer to lower layer */
  303. u8 *eapSessionId; /* peer to lower layer */
  304. size_t eapSessionIdLen; /* peer to lower layer */
  305. const struct eap_method *m; /* selected EAP method */
  306. /* not defined in RFC 4137 */
  307. Boolean changed;
  308. void *eapol_ctx;
  309. const struct eapol_callbacks *eapol_cb;
  310. void *eap_method_priv;
  311. int init_phase2;
  312. int fast_reauth;
  313. Boolean reauthInit; /* send EAP-Identity/Re-auth */
  314. u32 erp_seq;
  315. Boolean rxResp /* LEAP only */;
  316. Boolean leap_done;
  317. Boolean peap_done;
  318. u8 req_sha1[20]; /* SHA1() of the current EAP packet */
  319. u8 last_sha1[20]; /* SHA1() of the previously received EAP packet; used
  320. * in duplicate request detection. */
  321. void *msg_ctx;
  322. void *scard_ctx;
  323. void *ssl_ctx;
  324. void *ssl_ctx2;
  325. unsigned int workaround;
  326. /* Optional challenges generated in Phase 1 (EAP-FAST) */
  327. u8 *peer_challenge, *auth_challenge;
  328. int num_rounds;
  329. int force_disabled;
  330. struct wps_context *wps;
  331. int prev_failure;
  332. struct eap_peer_config *last_config;
  333. struct ext_password_data *ext_pw;
  334. struct wpabuf *ext_pw_buf;
  335. int external_sim;
  336. unsigned int expected_failure:1;
  337. unsigned int ext_cert_check:1;
  338. unsigned int waiting_ext_cert_check:1;
  339. struct dl_list erp_keys; /* struct eap_erp_key */
  340. };
  341. const u8 * eap_get_config_identity(struct eap_sm *sm, size_t *len);
  342. const u8 * eap_get_config_password(struct eap_sm *sm, size_t *len);
  343. const u8 * eap_get_config_password2(struct eap_sm *sm, size_t *len, int *hash);
  344. const u8 * eap_get_config_new_password(struct eap_sm *sm, size_t *len);
  345. const u8 * eap_get_config_otp(struct eap_sm *sm, size_t *len);
  346. void eap_clear_config_otp(struct eap_sm *sm);
  347. const char * eap_get_config_phase1(struct eap_sm *sm);
  348. const char * eap_get_config_phase2(struct eap_sm *sm);
  349. int eap_get_config_fragment_size(struct eap_sm *sm);
  350. struct eap_peer_config * eap_get_config(struct eap_sm *sm);
  351. void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
  352. const struct wpa_config_blob *
  353. eap_get_config_blob(struct eap_sm *sm, const char *name);
  354. void eap_notify_pending(struct eap_sm *sm);
  355. int eap_allowed_method(struct eap_sm *sm, int vendor, u32 method);
  356. #endif /* EAP_I_H */