radius.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*
  2. * hostapd / RADIUS message processing
  3. * Copyright (c) 2002-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 RADIUS_H
  15. #define RADIUS_H
  16. /* RFC 2865 - RADIUS */
  17. #ifdef _MSC_VER
  18. #pragma pack(push, 1)
  19. #endif /* _MSC_VER */
  20. struct radius_hdr {
  21. u8 code;
  22. u8 identifier;
  23. u16 length; /* including this header */
  24. u8 authenticator[16];
  25. /* followed by length-20 octets of attributes */
  26. } STRUCT_PACKED;
  27. enum { RADIUS_CODE_ACCESS_REQUEST = 1,
  28. RADIUS_CODE_ACCESS_ACCEPT = 2,
  29. RADIUS_CODE_ACCESS_REJECT = 3,
  30. RADIUS_CODE_ACCOUNTING_REQUEST = 4,
  31. RADIUS_CODE_ACCOUNTING_RESPONSE = 5,
  32. RADIUS_CODE_ACCESS_CHALLENGE = 11,
  33. RADIUS_CODE_STATUS_SERVER = 12,
  34. RADIUS_CODE_STATUS_CLIENT = 13,
  35. RADIUS_CODE_RESERVED = 255
  36. };
  37. struct radius_attr_hdr {
  38. u8 type;
  39. u8 length; /* including this header */
  40. /* followed by length-2 octets of attribute value */
  41. } STRUCT_PACKED;
  42. #define RADIUS_MAX_ATTR_LEN (255 - sizeof(struct radius_attr_hdr))
  43. enum { RADIUS_ATTR_USER_NAME = 1,
  44. RADIUS_ATTR_USER_PASSWORD = 2,
  45. RADIUS_ATTR_NAS_IP_ADDRESS = 4,
  46. RADIUS_ATTR_NAS_PORT = 5,
  47. RADIUS_ATTR_FRAMED_MTU = 12,
  48. RADIUS_ATTR_REPLY_MESSAGE = 18,
  49. RADIUS_ATTR_STATE = 24,
  50. RADIUS_ATTR_CLASS = 25,
  51. RADIUS_ATTR_VENDOR_SPECIFIC = 26,
  52. RADIUS_ATTR_SESSION_TIMEOUT = 27,
  53. RADIUS_ATTR_IDLE_TIMEOUT = 28,
  54. RADIUS_ATTR_TERMINATION_ACTION = 29,
  55. RADIUS_ATTR_CALLED_STATION_ID = 30,
  56. RADIUS_ATTR_CALLING_STATION_ID = 31,
  57. RADIUS_ATTR_NAS_IDENTIFIER = 32,
  58. RADIUS_ATTR_PROXY_STATE = 33,
  59. RADIUS_ATTR_ACCT_STATUS_TYPE = 40,
  60. RADIUS_ATTR_ACCT_DELAY_TIME = 41,
  61. RADIUS_ATTR_ACCT_INPUT_OCTETS = 42,
  62. RADIUS_ATTR_ACCT_OUTPUT_OCTETS = 43,
  63. RADIUS_ATTR_ACCT_SESSION_ID = 44,
  64. RADIUS_ATTR_ACCT_AUTHENTIC = 45,
  65. RADIUS_ATTR_ACCT_SESSION_TIME = 46,
  66. RADIUS_ATTR_ACCT_INPUT_PACKETS = 47,
  67. RADIUS_ATTR_ACCT_OUTPUT_PACKETS = 48,
  68. RADIUS_ATTR_ACCT_TERMINATE_CAUSE = 49,
  69. RADIUS_ATTR_ACCT_MULTI_SESSION_ID = 50,
  70. RADIUS_ATTR_ACCT_LINK_COUNT = 51,
  71. RADIUS_ATTR_ACCT_INPUT_GIGAWORDS = 52,
  72. RADIUS_ATTR_ACCT_OUTPUT_GIGAWORDS = 53,
  73. RADIUS_ATTR_EVENT_TIMESTAMP = 55,
  74. RADIUS_ATTR_NAS_PORT_TYPE = 61,
  75. RADIUS_ATTR_TUNNEL_TYPE = 64,
  76. RADIUS_ATTR_TUNNEL_MEDIUM_TYPE = 65,
  77. RADIUS_ATTR_CONNECT_INFO = 77,
  78. RADIUS_ATTR_EAP_MESSAGE = 79,
  79. RADIUS_ATTR_MESSAGE_AUTHENTICATOR = 80,
  80. RADIUS_ATTR_TUNNEL_PRIVATE_GROUP_ID = 81,
  81. RADIUS_ATTR_ACCT_INTERIM_INTERVAL = 85,
  82. RADIUS_ATTR_CHARGEABLE_USER_IDENTITY = 89,
  83. RADIUS_ATTR_NAS_IPV6_ADDRESS = 95
  84. };
  85. /* Termination-Action */
  86. #define RADIUS_TERMINATION_ACTION_DEFAULT 0
  87. #define RADIUS_TERMINATION_ACTION_RADIUS_REQUEST 1
  88. /* NAS-Port-Type */
  89. #define RADIUS_NAS_PORT_TYPE_IEEE_802_11 19
  90. /* Acct-Status-Type */
  91. #define RADIUS_ACCT_STATUS_TYPE_START 1
  92. #define RADIUS_ACCT_STATUS_TYPE_STOP 2
  93. #define RADIUS_ACCT_STATUS_TYPE_INTERIM_UPDATE 3
  94. #define RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON 7
  95. #define RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_OFF 8
  96. /* Acct-Authentic */
  97. #define RADIUS_ACCT_AUTHENTIC_RADIUS 1
  98. #define RADIUS_ACCT_AUTHENTIC_LOCAL 2
  99. #define RADIUS_ACCT_AUTHENTIC_REMOTE 3
  100. /* Acct-Terminate-Cause */
  101. #define RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST 1
  102. #define RADIUS_ACCT_TERMINATE_CAUSE_LOST_CARRIER 2
  103. #define RADIUS_ACCT_TERMINATE_CAUSE_LOST_SERVICE 3
  104. #define RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT 4
  105. #define RADIUS_ACCT_TERMINATE_CAUSE_SESSION_TIMEOUT 5
  106. #define RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_RESET 6
  107. #define RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_REBOOT 7
  108. #define RADIUS_ACCT_TERMINATE_CAUSE_PORT_ERROR 8
  109. #define RADIUS_ACCT_TERMINATE_CAUSE_NAS_ERROR 9
  110. #define RADIUS_ACCT_TERMINATE_CAUSE_NAS_REQUEST 10
  111. #define RADIUS_ACCT_TERMINATE_CAUSE_NAS_REBOOT 11
  112. #define RADIUS_ACCT_TERMINATE_CAUSE_PORT_UNNEEDED 12
  113. #define RADIUS_ACCT_TERMINATE_CAUSE_PORT_PREEMPTED 13
  114. #define RADIUS_ACCT_TERMINATE_CAUSE_PORT_SUSPENDED 14
  115. #define RADIUS_ACCT_TERMINATE_CAUSE_SERVICE_UNAVAILABLE 15
  116. #define RADIUS_ACCT_TERMINATE_CAUSE_CALLBACK 16
  117. #define RADIUS_ACCT_TERMINATE_CAUSE_USER_ERROR 17
  118. #define RADIUS_ACCT_TERMINATE_CAUSE_HOST_REQUEST 18
  119. #define RADIUS_TUNNEL_TAGS 32
  120. /* Tunnel-Type */
  121. #define RADIUS_TUNNEL_TYPE_PPTP 1
  122. #define RADIUS_TUNNEL_TYPE_L2TP 3
  123. #define RADIUS_TUNNEL_TYPE_IPIP 7
  124. #define RADIUS_TUNNEL_TYPE_GRE 10
  125. #define RADIUS_TUNNEL_TYPE_VLAN 13
  126. /* Tunnel-Medium-Type */
  127. #define RADIUS_TUNNEL_MEDIUM_TYPE_IPV4 1
  128. #define RADIUS_TUNNEL_MEDIUM_TYPE_IPV6 2
  129. #define RADIUS_TUNNEL_MEDIUM_TYPE_802 6
  130. struct radius_attr_vendor {
  131. u8 vendor_type;
  132. u8 vendor_length;
  133. } STRUCT_PACKED;
  134. #define RADIUS_VENDOR_ID_CISCO 9
  135. #define RADIUS_CISCO_AV_PAIR 1
  136. /* RFC 2548 - Microsoft Vendor-specific RADIUS Attributes */
  137. #define RADIUS_VENDOR_ID_MICROSOFT 311
  138. enum { RADIUS_VENDOR_ATTR_MS_MPPE_SEND_KEY = 16,
  139. RADIUS_VENDOR_ATTR_MS_MPPE_RECV_KEY = 17
  140. };
  141. #ifdef _MSC_VER
  142. #pragma pack(pop)
  143. #endif /* _MSC_VER */
  144. struct radius_ms_mppe_keys {
  145. u8 *send;
  146. size_t send_len;
  147. u8 *recv;
  148. size_t recv_len;
  149. };
  150. /* RADIUS message structure for new and parsed messages */
  151. struct radius_msg {
  152. unsigned char *buf;
  153. size_t buf_size; /* total size allocated for buf */
  154. size_t buf_used; /* bytes used in buf */
  155. struct radius_hdr *hdr;
  156. size_t *attr_pos; /* array of indexes to attributes (number of bytes
  157. * from buf to the beginning of
  158. * struct radius_attr_hdr). */
  159. size_t attr_size; /* total size of the attribute pointer array */
  160. size_t attr_used; /* total number of attributes in the array */
  161. };
  162. /* Default size to be allocated for new RADIUS messages */
  163. #define RADIUS_DEFAULT_MSG_SIZE 1024
  164. /* Default size to be allocated for attribute array */
  165. #define RADIUS_DEFAULT_ATTR_COUNT 16
  166. /* MAC address ASCII format for IEEE 802.1X use
  167. * (draft-congdon-radius-8021x-20.txt) */
  168. #define RADIUS_802_1X_ADDR_FORMAT "%02X-%02X-%02X-%02X-%02X-%02X"
  169. /* MAC address ASCII format for non-802.1X use */
  170. #define RADIUS_ADDR_FORMAT "%02x%02x%02x%02x%02x%02x"
  171. struct radius_msg *radius_msg_new(u8 code, u8 identifier);
  172. int radius_msg_initialize(struct radius_msg *msg, size_t init_len);
  173. void radius_msg_set_hdr(struct radius_msg *msg, u8 code, u8 identifier);
  174. void radius_msg_free(struct radius_msg *msg);
  175. void radius_msg_dump(struct radius_msg *msg);
  176. int radius_msg_finish(struct radius_msg *msg, u8 *secret, size_t secret_len);
  177. int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
  178. size_t secret_len, const u8 *req_authenticator);
  179. void radius_msg_finish_acct(struct radius_msg *msg, u8 *secret,
  180. size_t secret_len);
  181. struct radius_attr_hdr *radius_msg_add_attr(struct radius_msg *msg, u8 type,
  182. const u8 *data, size_t data_len);
  183. struct radius_msg *radius_msg_parse(const u8 *data, size_t len);
  184. int radius_msg_add_eap(struct radius_msg *msg, const u8 *data,
  185. size_t data_len);
  186. u8 *radius_msg_get_eap(struct radius_msg *msg, size_t *len);
  187. int radius_msg_verify(struct radius_msg *msg, const u8 *secret,
  188. size_t secret_len, struct radius_msg *sent_msg,
  189. int auth);
  190. int radius_msg_verify_msg_auth(struct radius_msg *msg, const u8 *secret,
  191. size_t secret_len, const u8 *req_auth);
  192. int radius_msg_copy_attr(struct radius_msg *dst, struct radius_msg *src,
  193. u8 type);
  194. void radius_msg_make_authenticator(struct radius_msg *msg,
  195. const u8 *data, size_t len);
  196. struct radius_ms_mppe_keys *
  197. radius_msg_get_ms_keys(struct radius_msg *msg, struct radius_msg *sent_msg,
  198. u8 *secret, size_t secret_len);
  199. struct radius_ms_mppe_keys *
  200. radius_msg_get_cisco_keys(struct radius_msg *msg, struct radius_msg *sent_msg,
  201. u8 *secret, size_t secret_len);
  202. int radius_msg_add_mppe_keys(struct radius_msg *msg,
  203. const u8 *req_authenticator,
  204. const u8 *secret, size_t secret_len,
  205. const u8 *send_key, size_t send_key_len,
  206. const u8 *recv_key, size_t recv_key_len);
  207. struct radius_attr_hdr *
  208. radius_msg_add_attr_user_password(struct radius_msg *msg,
  209. u8 *data, size_t data_len,
  210. u8 *secret, size_t secret_len);
  211. int radius_msg_get_attr(struct radius_msg *msg, u8 type, u8 *buf, size_t len);
  212. int radius_msg_get_vlanid(struct radius_msg *msg);
  213. static inline int radius_msg_add_attr_int32(struct radius_msg *msg, u8 type,
  214. u32 value)
  215. {
  216. u32 val = htonl(value);
  217. return radius_msg_add_attr(msg, type, (u8 *) &val, 4) != NULL;
  218. }
  219. static inline int radius_msg_get_attr_int32(struct radius_msg *msg, u8 type,
  220. u32 *value)
  221. {
  222. u32 val;
  223. int res;
  224. res = radius_msg_get_attr(msg, type, (u8 *) &val, 4);
  225. if (res != 4)
  226. return -1;
  227. *value = ntohl(val);
  228. return 0;
  229. }
  230. int radius_msg_get_attr_ptr(struct radius_msg *msg, u8 type, u8 **buf,
  231. size_t *len, const u8 *start);
  232. int radius_msg_count_attr(struct radius_msg *msg, u8 type, int min_len);
  233. #endif /* RADIUS_H */