eap.h 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. /*
  2. * EAP peer state machine functions (RFC 4137)
  3. * Copyright (c) 2004-2012, 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_H
  9. #define EAP_H
  10. #include "common/defs.h"
  11. #include "eap_common/eap_defs.h"
  12. #include "eap_peer/eap_methods.h"
  13. struct eap_sm;
  14. struct wpa_config_blob;
  15. struct wpabuf;
  16. struct eap_method_type {
  17. int vendor;
  18. u32 method;
  19. };
  20. #ifdef IEEE8021X_EAPOL
  21. /**
  22. * enum eapol_bool_var - EAPOL boolean state variables for EAP state machine
  23. *
  24. * These variables are used in the interface between EAP peer state machine and
  25. * lower layer. These are defined in RFC 4137, Sect. 4.1. Lower layer code is
  26. * expected to maintain these variables and register a callback functions for
  27. * EAP state machine to get and set the variables.
  28. */
  29. enum eapol_bool_var {
  30. /**
  31. * EAPOL_eapSuccess - EAP SUCCESS state reached
  32. *
  33. * EAP state machine reads and writes this value.
  34. */
  35. EAPOL_eapSuccess,
  36. /**
  37. * EAPOL_eapRestart - Lower layer request to restart authentication
  38. *
  39. * Set to TRUE in lower layer, FALSE in EAP state machine.
  40. */
  41. EAPOL_eapRestart,
  42. /**
  43. * EAPOL_eapFail - EAP FAILURE state reached
  44. *
  45. * EAP state machine writes this value.
  46. */
  47. EAPOL_eapFail,
  48. /**
  49. * EAPOL_eapResp - Response to send
  50. *
  51. * Set to TRUE in EAP state machine, FALSE in lower layer.
  52. */
  53. EAPOL_eapResp,
  54. /**
  55. * EAPOL_eapNoResp - Request has been process; no response to send
  56. *
  57. * Set to TRUE in EAP state machine, FALSE in lower layer.
  58. */
  59. EAPOL_eapNoResp,
  60. /**
  61. * EAPOL_eapReq - EAP request available from lower layer
  62. *
  63. * Set to TRUE in lower layer, FALSE in EAP state machine.
  64. */
  65. EAPOL_eapReq,
  66. /**
  67. * EAPOL_portEnabled - Lower layer is ready for communication
  68. *
  69. * EAP state machines reads this value.
  70. */
  71. EAPOL_portEnabled,
  72. /**
  73. * EAPOL_altAccept - Alternate indication of success (RFC3748)
  74. *
  75. * EAP state machines reads this value.
  76. */
  77. EAPOL_altAccept,
  78. /**
  79. * EAPOL_altReject - Alternate indication of failure (RFC3748)
  80. *
  81. * EAP state machines reads this value.
  82. */
  83. EAPOL_altReject
  84. };
  85. /**
  86. * enum eapol_int_var - EAPOL integer state variables for EAP state machine
  87. *
  88. * These variables are used in the interface between EAP peer state machine and
  89. * lower layer. These are defined in RFC 4137, Sect. 4.1. Lower layer code is
  90. * expected to maintain these variables and register a callback functions for
  91. * EAP state machine to get and set the variables.
  92. */
  93. enum eapol_int_var {
  94. /**
  95. * EAPOL_idleWhile - Outside time for EAP peer timeout
  96. *
  97. * This integer variable is used to provide an outside timer that the
  98. * external (to EAP state machine) code must decrement by one every
  99. * second until the value reaches zero. This is used in the same way as
  100. * EAPOL state machine timers. EAP state machine reads and writes this
  101. * value.
  102. */
  103. EAPOL_idleWhile
  104. };
  105. /**
  106. * struct eapol_callbacks - Callback functions from EAP to lower layer
  107. *
  108. * This structure defines the callback functions that EAP state machine
  109. * requires from the lower layer (usually EAPOL state machine) for updating
  110. * state variables and requesting information. eapol_ctx from
  111. * eap_peer_sm_init() call will be used as the ctx parameter for these
  112. * callback functions.
  113. */
  114. struct eapol_callbacks {
  115. /**
  116. * get_config - Get pointer to the current network configuration
  117. * @ctx: eapol_ctx from eap_peer_sm_init() call
  118. */
  119. struct eap_peer_config * (*get_config)(void *ctx);
  120. /**
  121. * get_bool - Get a boolean EAPOL state variable
  122. * @variable: EAPOL boolean variable to get
  123. * Returns: Value of the EAPOL variable
  124. */
  125. Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
  126. /**
  127. * set_bool - Set a boolean EAPOL state variable
  128. * @ctx: eapol_ctx from eap_peer_sm_init() call
  129. * @variable: EAPOL boolean variable to set
  130. * @value: Value for the EAPOL variable
  131. */
  132. void (*set_bool)(void *ctx, enum eapol_bool_var variable,
  133. Boolean value);
  134. /**
  135. * get_int - Get an integer EAPOL state variable
  136. * @ctx: eapol_ctx from eap_peer_sm_init() call
  137. * @variable: EAPOL integer variable to get
  138. * Returns: Value of the EAPOL variable
  139. */
  140. unsigned int (*get_int)(void *ctx, enum eapol_int_var variable);
  141. /**
  142. * set_int - Set an integer EAPOL state variable
  143. * @ctx: eapol_ctx from eap_peer_sm_init() call
  144. * @variable: EAPOL integer variable to set
  145. * @value: Value for the EAPOL variable
  146. */
  147. void (*set_int)(void *ctx, enum eapol_int_var variable,
  148. unsigned int value);
  149. /**
  150. * get_eapReqData - Get EAP-Request data
  151. * @ctx: eapol_ctx from eap_peer_sm_init() call
  152. * @len: Pointer to variable that will be set to eapReqDataLen
  153. * Returns: Reference to eapReqData (EAP state machine will not free
  154. * this) or %NULL if eapReqData not available.
  155. */
  156. struct wpabuf * (*get_eapReqData)(void *ctx);
  157. /**
  158. * set_config_blob - Set named configuration blob
  159. * @ctx: eapol_ctx from eap_peer_sm_init() call
  160. * @blob: New value for the blob
  161. *
  162. * Adds a new configuration blob or replaces the current value of an
  163. * existing blob.
  164. */
  165. void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
  166. /**
  167. * get_config_blob - Get a named configuration blob
  168. * @ctx: eapol_ctx from eap_peer_sm_init() call
  169. * @name: Name of the blob
  170. * Returns: Pointer to blob data or %NULL if not found
  171. */
  172. const struct wpa_config_blob * (*get_config_blob)(void *ctx,
  173. const char *name);
  174. /**
  175. * notify_pending - Notify that a pending request can be retried
  176. * @ctx: eapol_ctx from eap_peer_sm_init() call
  177. *
  178. * An EAP method can perform a pending operation (e.g., to get a
  179. * response from an external process). Once the response is available,
  180. * this callback function can be used to request EAPOL state machine to
  181. * retry delivering the previously received (and still unanswered) EAP
  182. * request to EAP state machine.
  183. */
  184. void (*notify_pending)(void *ctx);
  185. /**
  186. * eap_param_needed - Notify that EAP parameter is needed
  187. * @ctx: eapol_ctx from eap_peer_sm_init() call
  188. * @field: Field indicator (e.g., WPA_CTRL_REQ_EAP_IDENTITY)
  189. * @txt: User readable text describing the required parameter
  190. */
  191. void (*eap_param_needed)(void *ctx, enum wpa_ctrl_req_type field,
  192. const char *txt);
  193. /**
  194. * notify_cert - Notification of a peer certificate
  195. * @ctx: eapol_ctx from eap_peer_sm_init() call
  196. * @depth: Depth in certificate chain (0 = server)
  197. * @subject: Subject of the peer certificate
  198. * @cert_hash: SHA-256 hash of the certificate
  199. * @cert: Peer certificate
  200. */
  201. void (*notify_cert)(void *ctx, int depth, const char *subject,
  202. const char *cert_hash, const struct wpabuf *cert);
  203. /**
  204. * notify_status - Notification of the current EAP state
  205. * @ctx: eapol_ctx from eap_peer_sm_init() call
  206. * @status: Step in the process of EAP authentication
  207. * @parameter: Step-specific parameter, e.g., EAP method name
  208. */
  209. void (*notify_status)(void *ctx, const char *status,
  210. const char *parameter);
  211. /**
  212. * set_anon_id - Set or add anonymous identity
  213. * @ctx: eapol_ctx from eap_peer_sm_init() call
  214. * @id: Anonymous identity (e.g., EAP-SIM pseudonym) or %NULL to clear
  215. * @len: Length of anonymous identity in octets
  216. */
  217. void (*set_anon_id)(void *ctx, const u8 *id, size_t len);
  218. };
  219. /**
  220. * struct eap_config - Configuration for EAP state machine
  221. */
  222. struct eap_config {
  223. /**
  224. * opensc_engine_path - OpenSC engine for OpenSSL engine support
  225. *
  226. * Usually, path to engine_opensc.so.
  227. */
  228. const char *opensc_engine_path;
  229. /**
  230. * pkcs11_engine_path - PKCS#11 engine for OpenSSL engine support
  231. *
  232. * Usually, path to engine_pkcs11.so.
  233. */
  234. const char *pkcs11_engine_path;
  235. /**
  236. * pkcs11_module_path - OpenSC PKCS#11 module for OpenSSL engine
  237. *
  238. * Usually, path to opensc-pkcs11.so.
  239. */
  240. const char *pkcs11_module_path;
  241. /**
  242. * wps - WPS context data
  243. *
  244. * This is only used by EAP-WSC and can be left %NULL if not available.
  245. */
  246. struct wps_context *wps;
  247. /**
  248. * cert_in_cb - Include server certificates in callback
  249. */
  250. int cert_in_cb;
  251. };
  252. struct eap_sm * eap_peer_sm_init(void *eapol_ctx,
  253. struct eapol_callbacks *eapol_cb,
  254. void *msg_ctx, struct eap_config *conf);
  255. void eap_peer_sm_deinit(struct eap_sm *sm);
  256. int eap_peer_sm_step(struct eap_sm *sm);
  257. void eap_sm_abort(struct eap_sm *sm);
  258. int eap_sm_get_status(struct eap_sm *sm, char *buf, size_t buflen,
  259. int verbose);
  260. const char * eap_sm_get_method_name(struct eap_sm *sm);
  261. struct wpabuf * eap_sm_buildIdentity(struct eap_sm *sm, int id, int encrypted);
  262. void eap_sm_request_identity(struct eap_sm *sm);
  263. void eap_sm_request_password(struct eap_sm *sm);
  264. void eap_sm_request_new_password(struct eap_sm *sm);
  265. void eap_sm_request_pin(struct eap_sm *sm);
  266. void eap_sm_request_otp(struct eap_sm *sm, const char *msg, size_t msg_len);
  267. void eap_sm_request_passphrase(struct eap_sm *sm);
  268. void eap_sm_request_sim(struct eap_sm *sm, const char *req);
  269. void eap_sm_notify_ctrl_attached(struct eap_sm *sm);
  270. u32 eap_get_phase2_type(const char *name, int *vendor);
  271. struct eap_method_type * eap_get_phase2_types(struct eap_peer_config *config,
  272. size_t *count);
  273. void eap_set_fast_reauth(struct eap_sm *sm, int enabled);
  274. void eap_set_workaround(struct eap_sm *sm, unsigned int workaround);
  275. void eap_set_force_disabled(struct eap_sm *sm, int disabled);
  276. void eap_set_external_sim(struct eap_sm *sm, int external_sim);
  277. int eap_key_available(struct eap_sm *sm);
  278. void eap_notify_success(struct eap_sm *sm);
  279. void eap_notify_lower_layer_success(struct eap_sm *sm);
  280. const u8 * eap_get_eapSessionId(struct eap_sm *sm, size_t *len);
  281. const u8 * eap_get_eapKeyData(struct eap_sm *sm, size_t *len);
  282. struct wpabuf * eap_get_eapRespData(struct eap_sm *sm);
  283. void eap_register_scard_ctx(struct eap_sm *sm, void *ctx);
  284. void eap_invalidate_cached_session(struct eap_sm *sm);
  285. int eap_is_wps_pbc_enrollee(struct eap_peer_config *conf);
  286. int eap_is_wps_pin_enrollee(struct eap_peer_config *conf);
  287. struct ext_password_data;
  288. void eap_sm_set_ext_pw_ctx(struct eap_sm *sm, struct ext_password_data *ext);
  289. void eap_set_anon_id(struct eap_sm *sm, const u8 *id, size_t len);
  290. int eap_peer_was_failure_expected(struct eap_sm *sm);
  291. #endif /* IEEE8021X_EAPOL */
  292. #endif /* EAP_H */