eap.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * hostapd / EAP Full Authenticator state machine (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_H
  15. #define EAP_H
  16. #include "common/defs.h"
  17. #include "eap_common/eap_defs.h"
  18. #include "eap_server/eap_methods.h"
  19. #include "wpabuf.h"
  20. struct eap_sm;
  21. #define EAP_MAX_METHODS 8
  22. #define EAP_TTLS_AUTH_PAP 1
  23. #define EAP_TTLS_AUTH_CHAP 2
  24. #define EAP_TTLS_AUTH_MSCHAP 4
  25. #define EAP_TTLS_AUTH_MSCHAPV2 8
  26. struct eap_user {
  27. struct {
  28. int vendor;
  29. u32 method;
  30. } methods[EAP_MAX_METHODS];
  31. u8 *password;
  32. size_t password_len;
  33. int password_hash; /* whether password is hashed with
  34. * nt_password_hash() */
  35. int phase2;
  36. int force_version;
  37. int ttls_auth; /* bitfield of
  38. * EAP_TTLS_AUTH_{PAP,CHAP,MSCHAP,MSCHAPV2} */
  39. };
  40. struct eap_eapol_interface {
  41. /* Lower layer to full authenticator variables */
  42. Boolean eapResp; /* shared with EAPOL Backend Authentication */
  43. struct wpabuf *eapRespData;
  44. Boolean portEnabled;
  45. int retransWhile;
  46. Boolean eapRestart; /* shared with EAPOL Authenticator PAE */
  47. int eapSRTT;
  48. int eapRTTVAR;
  49. /* Full authenticator to lower layer variables */
  50. Boolean eapReq; /* shared with EAPOL Backend Authentication */
  51. Boolean eapNoReq; /* shared with EAPOL Backend Authentication */
  52. Boolean eapSuccess;
  53. Boolean eapFail;
  54. Boolean eapTimeout;
  55. struct wpabuf *eapReqData;
  56. u8 *eapKeyData;
  57. size_t eapKeyDataLen;
  58. Boolean eapKeyAvailable; /* called keyAvailable in IEEE 802.1X-2004 */
  59. /* AAA interface to full authenticator variables */
  60. Boolean aaaEapReq;
  61. Boolean aaaEapNoReq;
  62. Boolean aaaSuccess;
  63. Boolean aaaFail;
  64. struct wpabuf *aaaEapReqData;
  65. u8 *aaaEapKeyData;
  66. size_t aaaEapKeyDataLen;
  67. Boolean aaaEapKeyAvailable;
  68. int aaaMethodTimeout;
  69. /* Full authenticator to AAA interface variables */
  70. Boolean aaaEapResp;
  71. struct wpabuf *aaaEapRespData;
  72. /* aaaIdentity -> eap_get_identity() */
  73. Boolean aaaTimeout;
  74. };
  75. struct eapol_callbacks {
  76. int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
  77. int phase2, struct eap_user *user);
  78. const char * (*get_eap_req_id_text)(void *ctx, size_t *len);
  79. };
  80. struct eap_config {
  81. void *ssl_ctx;
  82. void *msg_ctx;
  83. void *eap_sim_db_priv;
  84. Boolean backend_auth;
  85. int eap_server;
  86. u8 *pac_opaque_encr_key;
  87. u8 *eap_fast_a_id;
  88. size_t eap_fast_a_id_len;
  89. char *eap_fast_a_id_info;
  90. int eap_fast_prov;
  91. int pac_key_lifetime;
  92. int pac_key_refresh_time;
  93. int eap_sim_aka_result_ind;
  94. int tnc;
  95. struct wps_context *wps;
  96. const struct wpabuf *assoc_wps_ie;
  97. const struct wpabuf *assoc_p2p_ie;
  98. const u8 *peer_addr;
  99. int fragment_size;
  100. };
  101. struct eap_sm * eap_server_sm_init(void *eapol_ctx,
  102. struct eapol_callbacks *eapol_cb,
  103. struct eap_config *eap_conf);
  104. void eap_server_sm_deinit(struct eap_sm *sm);
  105. int eap_server_sm_step(struct eap_sm *sm);
  106. void eap_sm_notify_cached(struct eap_sm *sm);
  107. void eap_sm_pending_cb(struct eap_sm *sm);
  108. int eap_sm_method_pending(struct eap_sm *sm);
  109. const u8 * eap_get_identity(struct eap_sm *sm, size_t *len);
  110. struct eap_eapol_interface * eap_get_interface(struct eap_sm *sm);
  111. #endif /* EAP_H */