eap_i.h 12 KB

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