radius_server.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*
  2. * RADIUS authentication server
  3. * Copyright (c) 2005-2009, 2011, 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 RADIUS_SERVER_H
  15. #define RADIUS_SERVER_H
  16. struct radius_server_data;
  17. struct eap_user;
  18. /**
  19. * struct radius_server_conf - RADIUS server configuration
  20. */
  21. struct radius_server_conf {
  22. /**
  23. * auth_port - UDP port to listen to as an authentication server
  24. */
  25. int auth_port;
  26. /**
  27. * client_file - RADIUS client configuration file
  28. *
  29. * This file contains the RADIUS clients and the shared secret to be
  30. * used with them in a format where each client is on its own line. The
  31. * first item on the line is the IPv4 or IPv6 address of the client
  32. * with an optional address mask to allow full network to be specified
  33. * (e.g., 192.168.1.2 or 192.168.1.0/24). This is followed by white
  34. * space (space or tabulator) and the shared secret. Lines starting
  35. * with '#' are skipped and can be used as comments.
  36. */
  37. char *client_file;
  38. /**
  39. * conf_ctx - Context pointer for callbacks
  40. *
  41. * This is used as the ctx argument in get_eap_user() calls.
  42. */
  43. void *conf_ctx;
  44. /**
  45. * eap_sim_db_priv - EAP-SIM/AKA database context
  46. *
  47. * This is passed to the EAP-SIM/AKA server implementation as a
  48. * callback context.
  49. */
  50. void *eap_sim_db_priv;
  51. /**
  52. * ssl_ctx - TLS context
  53. *
  54. * This is passed to the EAP server implementation as a callback
  55. * context for TLS operations.
  56. */
  57. void *ssl_ctx;
  58. /**
  59. * pac_opaque_encr_key - PAC-Opaque encryption key for EAP-FAST
  60. *
  61. * This parameter is used to set a key for EAP-FAST to encrypt the
  62. * PAC-Opaque data. It can be set to %NULL if EAP-FAST is not used. If
  63. * set, must point to a 16-octet key.
  64. */
  65. u8 *pac_opaque_encr_key;
  66. /**
  67. * eap_fast_a_id - EAP-FAST authority identity (A-ID)
  68. *
  69. * If EAP-FAST is not used, this can be set to %NULL. In theory, this
  70. * is a variable length field, but due to some existing implementations
  71. * requiring A-ID to be 16 octets in length, it is recommended to use
  72. * that length for the field to provide interoperability with deployed
  73. * peer implementations.
  74. */
  75. u8 *eap_fast_a_id;
  76. /**
  77. * eap_fast_a_id_len - Length of eap_fast_a_id buffer in octets
  78. */
  79. size_t eap_fast_a_id_len;
  80. /**
  81. * eap_fast_a_id_info - EAP-FAST authority identifier information
  82. *
  83. * This A-ID-Info contains a user-friendly name for the A-ID. For
  84. * example, this could be the enterprise and server names in
  85. * human-readable format. This field is encoded as UTF-8. If EAP-FAST
  86. * is not used, this can be set to %NULL.
  87. */
  88. char *eap_fast_a_id_info;
  89. /**
  90. * eap_fast_prov - EAP-FAST provisioning modes
  91. *
  92. * 0 = provisioning disabled, 1 = only anonymous provisioning allowed,
  93. * 2 = only authenticated provisioning allowed, 3 = both provisioning
  94. * modes allowed.
  95. */
  96. int eap_fast_prov;
  97. /**
  98. * pac_key_lifetime - EAP-FAST PAC-Key lifetime in seconds
  99. *
  100. * This is the hard limit on how long a provisioned PAC-Key can be
  101. * used.
  102. */
  103. int pac_key_lifetime;
  104. /**
  105. * pac_key_refresh_time - EAP-FAST PAC-Key refresh time in seconds
  106. *
  107. * This is a soft limit on the PAC-Key. The server will automatically
  108. * generate a new PAC-Key when this number of seconds (or fewer) of the
  109. * lifetime remains.
  110. */
  111. int pac_key_refresh_time;
  112. /**
  113. * eap_sim_aka_result_ind - EAP-SIM/AKA protected success indication
  114. *
  115. * This controls whether the protected success/failure indication
  116. * (AT_RESULT_IND) is used with EAP-SIM and EAP-AKA.
  117. */
  118. int eap_sim_aka_result_ind;
  119. /**
  120. * tnc - Trusted Network Connect (TNC)
  121. *
  122. * This controls whether TNC is enabled and will be required before the
  123. * peer is allowed to connect. Note: This is only used with EAP-TTLS
  124. * and EAP-FAST. If any other EAP method is enabled, the peer will be
  125. * allowed to connect without TNC.
  126. */
  127. int tnc;
  128. /**
  129. * pwd_group - EAP-pwd D-H group
  130. *
  131. * This is used to select which D-H group to use with EAP-pwd.
  132. */
  133. u16 pwd_group;
  134. /**
  135. * wps - Wi-Fi Protected Setup context
  136. *
  137. * If WPS is used with an external RADIUS server (which is quite
  138. * unlikely configuration), this is used to provide a pointer to WPS
  139. * context data. Normally, this can be set to %NULL.
  140. */
  141. struct wps_context *wps;
  142. /**
  143. * ipv6 - Whether to enable IPv6 support in the RADIUS server
  144. */
  145. int ipv6;
  146. /**
  147. * get_eap_user - Callback for fetching EAP user information
  148. * @ctx: Context data from conf_ctx
  149. * @identity: User identity
  150. * @identity_len: identity buffer length in octets
  151. * @phase2: Whether this is for Phase 2 identity
  152. * @user: Data structure for filling in the user information
  153. * Returns: 0 on success, -1 on failure
  154. *
  155. * This is used to fetch information from user database. The callback
  156. * will fill in information about allowed EAP methods and the user
  157. * password. The password field will be an allocated copy of the
  158. * password data and RADIUS server will free it after use.
  159. */
  160. int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
  161. int phase2, struct eap_user *user);
  162. /**
  163. * eap_req_id_text - Optional data for EAP-Request/Identity
  164. *
  165. * This can be used to configure an optional, displayable message that
  166. * will be sent in EAP-Request/Identity. This string can contain an
  167. * ASCII-0 character (nul) to separate network infromation per RFC
  168. * 4284. The actual string length is explicit provided in
  169. * eap_req_id_text_len since nul character will not be used as a string
  170. * terminator.
  171. */
  172. const char *eap_req_id_text;
  173. /**
  174. * eap_req_id_text_len - Length of eap_req_id_text buffer in octets
  175. */
  176. size_t eap_req_id_text_len;
  177. /*
  178. * msg_ctx - Context data for wpa_msg() calls
  179. */
  180. void *msg_ctx;
  181. #ifdef CONFIG_RADIUS_TEST
  182. const char *dump_msk_file;
  183. #endif /* CONFIG_RADIUS_TEST */
  184. };
  185. struct radius_server_data *
  186. radius_server_init(struct radius_server_conf *conf);
  187. void radius_server_deinit(struct radius_server_data *data);
  188. int radius_server_get_mib(struct radius_server_data *data, char *buf,
  189. size_t buflen);
  190. void radius_server_eap_pending_cb(struct radius_server_data *data, void *ctx);
  191. #endif /* RADIUS_SERVER_H */