radius.c 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718
  1. /*
  2. * RADIUS message processing
  3. * Copyright (c) 2002-2009, 2011-2015, 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. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/wpabuf.h"
  11. #include "crypto/md5.h"
  12. #include "crypto/crypto.h"
  13. #include "radius.h"
  14. /**
  15. * struct radius_msg - RADIUS message structure for new and parsed messages
  16. */
  17. struct radius_msg {
  18. /**
  19. * buf - Allocated buffer for RADIUS message
  20. */
  21. struct wpabuf *buf;
  22. /**
  23. * hdr - Pointer to the RADIUS header in buf
  24. */
  25. struct radius_hdr *hdr;
  26. /**
  27. * attr_pos - Array of indexes to attributes
  28. *
  29. * The values are number of bytes from buf to the beginning of
  30. * struct radius_attr_hdr.
  31. */
  32. size_t *attr_pos;
  33. /**
  34. * attr_size - Total size of the attribute pointer array
  35. */
  36. size_t attr_size;
  37. /**
  38. * attr_used - Total number of attributes in the array
  39. */
  40. size_t attr_used;
  41. };
  42. struct radius_hdr * radius_msg_get_hdr(struct radius_msg *msg)
  43. {
  44. return msg->hdr;
  45. }
  46. struct wpabuf * radius_msg_get_buf(struct radius_msg *msg)
  47. {
  48. return msg->buf;
  49. }
  50. static struct radius_attr_hdr *
  51. radius_get_attr_hdr(struct radius_msg *msg, int idx)
  52. {
  53. return (struct radius_attr_hdr *)
  54. (wpabuf_mhead_u8(msg->buf) + msg->attr_pos[idx]);
  55. }
  56. static void radius_msg_set_hdr(struct radius_msg *msg, u8 code, u8 identifier)
  57. {
  58. msg->hdr->code = code;
  59. msg->hdr->identifier = identifier;
  60. }
  61. static int radius_msg_initialize(struct radius_msg *msg)
  62. {
  63. msg->attr_pos = os_calloc(RADIUS_DEFAULT_ATTR_COUNT,
  64. sizeof(*msg->attr_pos));
  65. if (msg->attr_pos == NULL)
  66. return -1;
  67. msg->attr_size = RADIUS_DEFAULT_ATTR_COUNT;
  68. msg->attr_used = 0;
  69. return 0;
  70. }
  71. /**
  72. * radius_msg_new - Create a new RADIUS message
  73. * @code: Code for RADIUS header
  74. * @identifier: Identifier for RADIUS header
  75. * Returns: Context for RADIUS message or %NULL on failure
  76. *
  77. * The caller is responsible for freeing the returned data with
  78. * radius_msg_free().
  79. */
  80. struct radius_msg * radius_msg_new(u8 code, u8 identifier)
  81. {
  82. struct radius_msg *msg;
  83. msg = os_zalloc(sizeof(*msg));
  84. if (msg == NULL)
  85. return NULL;
  86. msg->buf = wpabuf_alloc(RADIUS_DEFAULT_MSG_SIZE);
  87. if (msg->buf == NULL || radius_msg_initialize(msg)) {
  88. radius_msg_free(msg);
  89. return NULL;
  90. }
  91. msg->hdr = wpabuf_put(msg->buf, sizeof(struct radius_hdr));
  92. radius_msg_set_hdr(msg, code, identifier);
  93. return msg;
  94. }
  95. /**
  96. * radius_msg_free - Free a RADIUS message
  97. * @msg: RADIUS message from radius_msg_new() or radius_msg_parse()
  98. */
  99. void radius_msg_free(struct radius_msg *msg)
  100. {
  101. if (msg == NULL)
  102. return;
  103. wpabuf_free(msg->buf);
  104. os_free(msg->attr_pos);
  105. os_free(msg);
  106. }
  107. static const char *radius_code_string(u8 code)
  108. {
  109. switch (code) {
  110. case RADIUS_CODE_ACCESS_REQUEST: return "Access-Request";
  111. case RADIUS_CODE_ACCESS_ACCEPT: return "Access-Accept";
  112. case RADIUS_CODE_ACCESS_REJECT: return "Access-Reject";
  113. case RADIUS_CODE_ACCOUNTING_REQUEST: return "Accounting-Request";
  114. case RADIUS_CODE_ACCOUNTING_RESPONSE: return "Accounting-Response";
  115. case RADIUS_CODE_ACCESS_CHALLENGE: return "Access-Challenge";
  116. case RADIUS_CODE_STATUS_SERVER: return "Status-Server";
  117. case RADIUS_CODE_STATUS_CLIENT: return "Status-Client";
  118. case RADIUS_CODE_RESERVED: return "Reserved";
  119. case RADIUS_CODE_DISCONNECT_REQUEST: return "Disconnect-Request";
  120. case RADIUS_CODE_DISCONNECT_ACK: return "Disconnect-ACK";
  121. case RADIUS_CODE_DISCONNECT_NAK: return "Disconnect-NAK";
  122. case RADIUS_CODE_COA_REQUEST: return "CoA-Request";
  123. case RADIUS_CODE_COA_ACK: return "CoA-ACK";
  124. case RADIUS_CODE_COA_NAK: return "CoA-NAK";
  125. default: return "?Unknown?";
  126. }
  127. }
  128. struct radius_attr_type {
  129. u8 type;
  130. char *name;
  131. enum {
  132. RADIUS_ATTR_UNDIST, RADIUS_ATTR_TEXT, RADIUS_ATTR_IP,
  133. RADIUS_ATTR_HEXDUMP, RADIUS_ATTR_INT32, RADIUS_ATTR_IPV6
  134. } data_type;
  135. };
  136. static const struct radius_attr_type radius_attrs[] =
  137. {
  138. { RADIUS_ATTR_USER_NAME, "User-Name", RADIUS_ATTR_TEXT },
  139. { RADIUS_ATTR_USER_PASSWORD, "User-Password", RADIUS_ATTR_UNDIST },
  140. { RADIUS_ATTR_NAS_IP_ADDRESS, "NAS-IP-Address", RADIUS_ATTR_IP },
  141. { RADIUS_ATTR_NAS_PORT, "NAS-Port", RADIUS_ATTR_INT32 },
  142. { RADIUS_ATTR_SERVICE_TYPE, "Service-Type", RADIUS_ATTR_INT32 },
  143. { RADIUS_ATTR_FRAMED_IP_ADDRESS, "Framed-IP-Address", RADIUS_ATTR_IP },
  144. { RADIUS_ATTR_FRAMED_MTU, "Framed-MTU", RADIUS_ATTR_INT32 },
  145. { RADIUS_ATTR_REPLY_MESSAGE, "Reply-Message", RADIUS_ATTR_TEXT },
  146. { RADIUS_ATTR_STATE, "State", RADIUS_ATTR_UNDIST },
  147. { RADIUS_ATTR_CLASS, "Class", RADIUS_ATTR_UNDIST },
  148. { RADIUS_ATTR_VENDOR_SPECIFIC, "Vendor-Specific", RADIUS_ATTR_UNDIST },
  149. { RADIUS_ATTR_SESSION_TIMEOUT, "Session-Timeout", RADIUS_ATTR_INT32 },
  150. { RADIUS_ATTR_IDLE_TIMEOUT, "Idle-Timeout", RADIUS_ATTR_INT32 },
  151. { RADIUS_ATTR_TERMINATION_ACTION, "Termination-Action",
  152. RADIUS_ATTR_INT32 },
  153. { RADIUS_ATTR_CALLED_STATION_ID, "Called-Station-Id",
  154. RADIUS_ATTR_TEXT },
  155. { RADIUS_ATTR_CALLING_STATION_ID, "Calling-Station-Id",
  156. RADIUS_ATTR_TEXT },
  157. { RADIUS_ATTR_NAS_IDENTIFIER, "NAS-Identifier", RADIUS_ATTR_TEXT },
  158. { RADIUS_ATTR_PROXY_STATE, "Proxy-State", RADIUS_ATTR_UNDIST },
  159. { RADIUS_ATTR_ACCT_STATUS_TYPE, "Acct-Status-Type",
  160. RADIUS_ATTR_INT32 },
  161. { RADIUS_ATTR_ACCT_DELAY_TIME, "Acct-Delay-Time", RADIUS_ATTR_INT32 },
  162. { RADIUS_ATTR_ACCT_INPUT_OCTETS, "Acct-Input-Octets",
  163. RADIUS_ATTR_INT32 },
  164. { RADIUS_ATTR_ACCT_OUTPUT_OCTETS, "Acct-Output-Octets",
  165. RADIUS_ATTR_INT32 },
  166. { RADIUS_ATTR_ACCT_SESSION_ID, "Acct-Session-Id", RADIUS_ATTR_TEXT },
  167. { RADIUS_ATTR_ACCT_AUTHENTIC, "Acct-Authentic", RADIUS_ATTR_INT32 },
  168. { RADIUS_ATTR_ACCT_SESSION_TIME, "Acct-Session-Time",
  169. RADIUS_ATTR_INT32 },
  170. { RADIUS_ATTR_ACCT_INPUT_PACKETS, "Acct-Input-Packets",
  171. RADIUS_ATTR_INT32 },
  172. { RADIUS_ATTR_ACCT_OUTPUT_PACKETS, "Acct-Output-Packets",
  173. RADIUS_ATTR_INT32 },
  174. { RADIUS_ATTR_ACCT_TERMINATE_CAUSE, "Acct-Terminate-Cause",
  175. RADIUS_ATTR_INT32 },
  176. { RADIUS_ATTR_ACCT_MULTI_SESSION_ID, "Acct-Multi-Session-Id",
  177. RADIUS_ATTR_TEXT },
  178. { RADIUS_ATTR_ACCT_LINK_COUNT, "Acct-Link-Count", RADIUS_ATTR_INT32 },
  179. { RADIUS_ATTR_ACCT_INPUT_GIGAWORDS, "Acct-Input-Gigawords",
  180. RADIUS_ATTR_INT32 },
  181. { RADIUS_ATTR_ACCT_OUTPUT_GIGAWORDS, "Acct-Output-Gigawords",
  182. RADIUS_ATTR_INT32 },
  183. { RADIUS_ATTR_EVENT_TIMESTAMP, "Event-Timestamp",
  184. RADIUS_ATTR_INT32 },
  185. { RADIUS_ATTR_EGRESS_VLANID, "EGRESS-VLANID", RADIUS_ATTR_HEXDUMP },
  186. { RADIUS_ATTR_NAS_PORT_TYPE, "NAS-Port-Type", RADIUS_ATTR_INT32 },
  187. { RADIUS_ATTR_TUNNEL_TYPE, "Tunnel-Type", RADIUS_ATTR_HEXDUMP },
  188. { RADIUS_ATTR_TUNNEL_MEDIUM_TYPE, "Tunnel-Medium-Type",
  189. RADIUS_ATTR_HEXDUMP },
  190. { RADIUS_ATTR_TUNNEL_PASSWORD, "Tunnel-Password",
  191. RADIUS_ATTR_UNDIST },
  192. { RADIUS_ATTR_CONNECT_INFO, "Connect-Info", RADIUS_ATTR_TEXT },
  193. { RADIUS_ATTR_EAP_MESSAGE, "EAP-Message", RADIUS_ATTR_UNDIST },
  194. { RADIUS_ATTR_MESSAGE_AUTHENTICATOR, "Message-Authenticator",
  195. RADIUS_ATTR_UNDIST },
  196. { RADIUS_ATTR_TUNNEL_PRIVATE_GROUP_ID, "Tunnel-Private-Group-Id",
  197. RADIUS_ATTR_HEXDUMP },
  198. { RADIUS_ATTR_ACCT_INTERIM_INTERVAL, "Acct-Interim-Interval",
  199. RADIUS_ATTR_INT32 },
  200. { RADIUS_ATTR_CHARGEABLE_USER_IDENTITY, "Chargeable-User-Identity",
  201. RADIUS_ATTR_TEXT },
  202. { RADIUS_ATTR_NAS_IPV6_ADDRESS, "NAS-IPv6-Address", RADIUS_ATTR_IPV6 },
  203. { RADIUS_ATTR_ERROR_CAUSE, "Error-Cause", RADIUS_ATTR_INT32 },
  204. { RADIUS_ATTR_EAP_KEY_NAME, "EAP-Key-Name", RADIUS_ATTR_HEXDUMP },
  205. { RADIUS_ATTR_OPERATOR_NAME, "Operator-Name", RADIUS_ATTR_TEXT },
  206. { RADIUS_ATTR_LOCATION_INFO, "Location-Information",
  207. RADIUS_ATTR_HEXDUMP },
  208. { RADIUS_ATTR_LOCATION_DATA, "Location-Data", RADIUS_ATTR_HEXDUMP },
  209. { RADIUS_ATTR_BASIC_LOCATION_POLICY_RULES,
  210. "Basic-Location-Policy-Rules", RADIUS_ATTR_HEXDUMP },
  211. { RADIUS_ATTR_EXTENDED_LOCATION_POLICY_RULES,
  212. "Extended-Location-Policy-Rules", RADIUS_ATTR_HEXDUMP },
  213. { RADIUS_ATTR_LOCATION_CAPABLE, "Location-Capable", RADIUS_ATTR_INT32 },
  214. { RADIUS_ATTR_REQUESTED_LOCATION_INFO, "Requested-Location-Info",
  215. RADIUS_ATTR_INT32 },
  216. { RADIUS_ATTR_MOBILITY_DOMAIN_ID, "Mobility-Domain-Id",
  217. RADIUS_ATTR_INT32 },
  218. { RADIUS_ATTR_WLAN_HESSID, "WLAN-HESSID", RADIUS_ATTR_TEXT },
  219. { RADIUS_ATTR_WLAN_PAIRWISE_CIPHER, "WLAN-Pairwise-Cipher",
  220. RADIUS_ATTR_HEXDUMP },
  221. { RADIUS_ATTR_WLAN_GROUP_CIPHER, "WLAN-Group-Cipher",
  222. RADIUS_ATTR_HEXDUMP },
  223. { RADIUS_ATTR_WLAN_AKM_SUITE, "WLAN-AKM-Suite",
  224. RADIUS_ATTR_HEXDUMP },
  225. { RADIUS_ATTR_WLAN_GROUP_MGMT_CIPHER, "WLAN-Group-Mgmt-Pairwise-Cipher",
  226. RADIUS_ATTR_HEXDUMP },
  227. };
  228. #define RADIUS_ATTRS ARRAY_SIZE(radius_attrs)
  229. static const struct radius_attr_type *radius_get_attr_type(u8 type)
  230. {
  231. size_t i;
  232. for (i = 0; i < RADIUS_ATTRS; i++) {
  233. if (type == radius_attrs[i].type)
  234. return &radius_attrs[i];
  235. }
  236. return NULL;
  237. }
  238. static void radius_msg_dump_attr(struct radius_attr_hdr *hdr)
  239. {
  240. const struct radius_attr_type *attr;
  241. int len;
  242. unsigned char *pos;
  243. char buf[1000];
  244. attr = radius_get_attr_type(hdr->type);
  245. wpa_printf(MSG_INFO, " Attribute %d (%s) length=%d",
  246. hdr->type, attr ? attr->name : "?Unknown?", hdr->length);
  247. if (attr == NULL || hdr->length < sizeof(struct radius_attr_hdr))
  248. return;
  249. len = hdr->length - sizeof(struct radius_attr_hdr);
  250. pos = (unsigned char *) (hdr + 1);
  251. switch (attr->data_type) {
  252. case RADIUS_ATTR_TEXT:
  253. printf_encode(buf, sizeof(buf), pos, len);
  254. wpa_printf(MSG_INFO, " Value: '%s'", buf);
  255. break;
  256. case RADIUS_ATTR_IP:
  257. if (len == 4) {
  258. struct in_addr addr;
  259. os_memcpy(&addr, pos, 4);
  260. wpa_printf(MSG_INFO, " Value: %s",
  261. inet_ntoa(addr));
  262. } else {
  263. wpa_printf(MSG_INFO, " Invalid IP address length %d",
  264. len);
  265. }
  266. break;
  267. #ifdef CONFIG_IPV6
  268. case RADIUS_ATTR_IPV6:
  269. if (len == 16) {
  270. const char *atxt;
  271. struct in6_addr *addr = (struct in6_addr *) pos;
  272. atxt = inet_ntop(AF_INET6, addr, buf, sizeof(buf));
  273. wpa_printf(MSG_INFO, " Value: %s",
  274. atxt ? atxt : "?");
  275. } else {
  276. wpa_printf(MSG_INFO, " Invalid IPv6 address length %d",
  277. len);
  278. }
  279. break;
  280. #endif /* CONFIG_IPV6 */
  281. case RADIUS_ATTR_HEXDUMP:
  282. case RADIUS_ATTR_UNDIST:
  283. wpa_snprintf_hex(buf, sizeof(buf), pos, len);
  284. wpa_printf(MSG_INFO, " Value: %s", buf);
  285. break;
  286. case RADIUS_ATTR_INT32:
  287. if (len == 4)
  288. wpa_printf(MSG_INFO, " Value: %u",
  289. WPA_GET_BE32(pos));
  290. else
  291. wpa_printf(MSG_INFO, " Invalid INT32 length %d",
  292. len);
  293. break;
  294. default:
  295. break;
  296. }
  297. }
  298. void radius_msg_dump(struct radius_msg *msg)
  299. {
  300. size_t i;
  301. wpa_printf(MSG_INFO, "RADIUS message: code=%d (%s) identifier=%d length=%d",
  302. msg->hdr->code, radius_code_string(msg->hdr->code),
  303. msg->hdr->identifier, be_to_host16(msg->hdr->length));
  304. for (i = 0; i < msg->attr_used; i++) {
  305. struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i);
  306. radius_msg_dump_attr(attr);
  307. }
  308. }
  309. int radius_msg_finish(struct radius_msg *msg, const u8 *secret,
  310. size_t secret_len)
  311. {
  312. if (secret) {
  313. u8 auth[MD5_MAC_LEN];
  314. struct radius_attr_hdr *attr;
  315. os_memset(auth, 0, MD5_MAC_LEN);
  316. attr = radius_msg_add_attr(msg,
  317. RADIUS_ATTR_MESSAGE_AUTHENTICATOR,
  318. auth, MD5_MAC_LEN);
  319. if (attr == NULL) {
  320. wpa_printf(MSG_WARNING, "RADIUS: Could not add "
  321. "Message-Authenticator");
  322. return -1;
  323. }
  324. msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
  325. hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
  326. wpabuf_len(msg->buf), (u8 *) (attr + 1));
  327. } else
  328. msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
  329. if (wpabuf_len(msg->buf) > 0xffff) {
  330. wpa_printf(MSG_WARNING, "RADIUS: Too long message (%lu)",
  331. (unsigned long) wpabuf_len(msg->buf));
  332. return -1;
  333. }
  334. return 0;
  335. }
  336. int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
  337. size_t secret_len, const u8 *req_authenticator)
  338. {
  339. u8 auth[MD5_MAC_LEN];
  340. struct radius_attr_hdr *attr;
  341. const u8 *addr[4];
  342. size_t len[4];
  343. os_memset(auth, 0, MD5_MAC_LEN);
  344. attr = radius_msg_add_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR,
  345. auth, MD5_MAC_LEN);
  346. if (attr == NULL) {
  347. wpa_printf(MSG_ERROR, "WARNING: Could not add Message-Authenticator");
  348. return -1;
  349. }
  350. msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
  351. os_memcpy(msg->hdr->authenticator, req_authenticator,
  352. sizeof(msg->hdr->authenticator));
  353. hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
  354. wpabuf_len(msg->buf), (u8 *) (attr + 1));
  355. /* ResponseAuth = MD5(Code+ID+Length+RequestAuth+Attributes+Secret) */
  356. addr[0] = (u8 *) msg->hdr;
  357. len[0] = 1 + 1 + 2;
  358. addr[1] = req_authenticator;
  359. len[1] = MD5_MAC_LEN;
  360. addr[2] = wpabuf_head_u8(msg->buf) + sizeof(struct radius_hdr);
  361. len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
  362. addr[3] = secret;
  363. len[3] = secret_len;
  364. md5_vector(4, addr, len, msg->hdr->authenticator);
  365. if (wpabuf_len(msg->buf) > 0xffff) {
  366. wpa_printf(MSG_WARNING, "RADIUS: Too long message (%lu)",
  367. (unsigned long) wpabuf_len(msg->buf));
  368. return -1;
  369. }
  370. return 0;
  371. }
  372. int radius_msg_finish_das_resp(struct radius_msg *msg, const u8 *secret,
  373. size_t secret_len,
  374. const struct radius_hdr *req_hdr)
  375. {
  376. const u8 *addr[2];
  377. size_t len[2];
  378. u8 auth[MD5_MAC_LEN];
  379. struct radius_attr_hdr *attr;
  380. os_memset(auth, 0, MD5_MAC_LEN);
  381. attr = radius_msg_add_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR,
  382. auth, MD5_MAC_LEN);
  383. if (attr == NULL) {
  384. wpa_printf(MSG_WARNING, "Could not add Message-Authenticator");
  385. return -1;
  386. }
  387. msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
  388. os_memcpy(msg->hdr->authenticator, req_hdr->authenticator, 16);
  389. hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
  390. wpabuf_len(msg->buf), (u8 *) (attr + 1));
  391. /* ResponseAuth = MD5(Code+ID+Length+RequestAuth+Attributes+Secret) */
  392. addr[0] = wpabuf_head_u8(msg->buf);
  393. len[0] = wpabuf_len(msg->buf);
  394. addr[1] = secret;
  395. len[1] = secret_len;
  396. if (md5_vector(2, addr, len, msg->hdr->authenticator) < 0)
  397. return -1;
  398. if (wpabuf_len(msg->buf) > 0xffff) {
  399. wpa_printf(MSG_WARNING, "RADIUS: Too long message (%lu)",
  400. (unsigned long) wpabuf_len(msg->buf));
  401. return -1;
  402. }
  403. return 0;
  404. }
  405. void radius_msg_finish_acct(struct radius_msg *msg, const u8 *secret,
  406. size_t secret_len)
  407. {
  408. const u8 *addr[2];
  409. size_t len[2];
  410. msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
  411. os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN);
  412. addr[0] = wpabuf_head(msg->buf);
  413. len[0] = wpabuf_len(msg->buf);
  414. addr[1] = secret;
  415. len[1] = secret_len;
  416. md5_vector(2, addr, len, msg->hdr->authenticator);
  417. if (wpabuf_len(msg->buf) > 0xffff) {
  418. wpa_printf(MSG_WARNING, "RADIUS: Too long messages (%lu)",
  419. (unsigned long) wpabuf_len(msg->buf));
  420. }
  421. }
  422. void radius_msg_finish_acct_resp(struct radius_msg *msg, const u8 *secret,
  423. size_t secret_len, const u8 *req_authenticator)
  424. {
  425. const u8 *addr[2];
  426. size_t len[2];
  427. msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
  428. os_memcpy(msg->hdr->authenticator, req_authenticator, MD5_MAC_LEN);
  429. addr[0] = wpabuf_head(msg->buf);
  430. len[0] = wpabuf_len(msg->buf);
  431. addr[1] = secret;
  432. len[1] = secret_len;
  433. md5_vector(2, addr, len, msg->hdr->authenticator);
  434. if (wpabuf_len(msg->buf) > 0xffff) {
  435. wpa_printf(MSG_WARNING, "RADIUS: Too long messages (%lu)",
  436. (unsigned long) wpabuf_len(msg->buf));
  437. }
  438. }
  439. int radius_msg_verify_acct_req(struct radius_msg *msg, const u8 *secret,
  440. size_t secret_len)
  441. {
  442. const u8 *addr[4];
  443. size_t len[4];
  444. u8 zero[MD5_MAC_LEN];
  445. u8 hash[MD5_MAC_LEN];
  446. os_memset(zero, 0, sizeof(zero));
  447. addr[0] = (u8 *) msg->hdr;
  448. len[0] = sizeof(struct radius_hdr) - MD5_MAC_LEN;
  449. addr[1] = zero;
  450. len[1] = MD5_MAC_LEN;
  451. addr[2] = (u8 *) (msg->hdr + 1);
  452. len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
  453. addr[3] = secret;
  454. len[3] = secret_len;
  455. md5_vector(4, addr, len, hash);
  456. return os_memcmp_const(msg->hdr->authenticator, hash, MD5_MAC_LEN) != 0;
  457. }
  458. int radius_msg_verify_das_req(struct radius_msg *msg, const u8 *secret,
  459. size_t secret_len)
  460. {
  461. const u8 *addr[4];
  462. size_t len[4];
  463. u8 zero[MD5_MAC_LEN];
  464. u8 hash[MD5_MAC_LEN];
  465. u8 auth[MD5_MAC_LEN], orig[MD5_MAC_LEN];
  466. u8 orig_authenticator[16];
  467. struct radius_attr_hdr *attr = NULL, *tmp;
  468. size_t i;
  469. os_memset(zero, 0, sizeof(zero));
  470. addr[0] = (u8 *) msg->hdr;
  471. len[0] = sizeof(struct radius_hdr) - MD5_MAC_LEN;
  472. addr[1] = zero;
  473. len[1] = MD5_MAC_LEN;
  474. addr[2] = (u8 *) (msg->hdr + 1);
  475. len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
  476. addr[3] = secret;
  477. len[3] = secret_len;
  478. md5_vector(4, addr, len, hash);
  479. if (os_memcmp_const(msg->hdr->authenticator, hash, MD5_MAC_LEN) != 0)
  480. return 1;
  481. for (i = 0; i < msg->attr_used; i++) {
  482. tmp = radius_get_attr_hdr(msg, i);
  483. if (tmp->type == RADIUS_ATTR_MESSAGE_AUTHENTICATOR) {
  484. if (attr != NULL) {
  485. wpa_printf(MSG_WARNING, "Multiple "
  486. "Message-Authenticator attributes "
  487. "in RADIUS message");
  488. return 1;
  489. }
  490. attr = tmp;
  491. }
  492. }
  493. if (attr == NULL) {
  494. /* Message-Authenticator is MAY; not required */
  495. return 0;
  496. }
  497. os_memcpy(orig, attr + 1, MD5_MAC_LEN);
  498. os_memset(attr + 1, 0, MD5_MAC_LEN);
  499. os_memcpy(orig_authenticator, msg->hdr->authenticator,
  500. sizeof(orig_authenticator));
  501. os_memset(msg->hdr->authenticator, 0,
  502. sizeof(msg->hdr->authenticator));
  503. hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
  504. wpabuf_len(msg->buf), auth);
  505. os_memcpy(attr + 1, orig, MD5_MAC_LEN);
  506. os_memcpy(msg->hdr->authenticator, orig_authenticator,
  507. sizeof(orig_authenticator));
  508. return os_memcmp_const(orig, auth, MD5_MAC_LEN) != 0;
  509. }
  510. static int radius_msg_add_attr_to_array(struct radius_msg *msg,
  511. struct radius_attr_hdr *attr)
  512. {
  513. if (msg->attr_used >= msg->attr_size) {
  514. size_t *nattr_pos;
  515. int nlen = msg->attr_size * 2;
  516. nattr_pos = os_realloc_array(msg->attr_pos, nlen,
  517. sizeof(*msg->attr_pos));
  518. if (nattr_pos == NULL)
  519. return -1;
  520. msg->attr_pos = nattr_pos;
  521. msg->attr_size = nlen;
  522. }
  523. msg->attr_pos[msg->attr_used++] =
  524. (unsigned char *) attr - wpabuf_head_u8(msg->buf);
  525. return 0;
  526. }
  527. struct radius_attr_hdr *radius_msg_add_attr(struct radius_msg *msg, u8 type,
  528. const u8 *data, size_t data_len)
  529. {
  530. size_t buf_needed;
  531. struct radius_attr_hdr *attr;
  532. if (data_len > RADIUS_MAX_ATTR_LEN) {
  533. wpa_printf(MSG_ERROR, "radius_msg_add_attr: too long attribute (%lu bytes)",
  534. (unsigned long) data_len);
  535. return NULL;
  536. }
  537. buf_needed = sizeof(*attr) + data_len;
  538. if (wpabuf_tailroom(msg->buf) < buf_needed) {
  539. /* allocate more space for message buffer */
  540. if (wpabuf_resize(&msg->buf, buf_needed) < 0)
  541. return NULL;
  542. msg->hdr = wpabuf_mhead(msg->buf);
  543. }
  544. attr = wpabuf_put(msg->buf, sizeof(struct radius_attr_hdr));
  545. attr->type = type;
  546. attr->length = sizeof(*attr) + data_len;
  547. wpabuf_put_data(msg->buf, data, data_len);
  548. if (radius_msg_add_attr_to_array(msg, attr))
  549. return NULL;
  550. return attr;
  551. }
  552. /**
  553. * radius_msg_parse - Parse a RADIUS message
  554. * @data: RADIUS message to be parsed
  555. * @len: Length of data buffer in octets
  556. * Returns: Parsed RADIUS message or %NULL on failure
  557. *
  558. * This parses a RADIUS message and makes a copy of its data. The caller is
  559. * responsible for freeing the returned data with radius_msg_free().
  560. */
  561. struct radius_msg * radius_msg_parse(const u8 *data, size_t len)
  562. {
  563. struct radius_msg *msg;
  564. struct radius_hdr *hdr;
  565. struct radius_attr_hdr *attr;
  566. size_t msg_len;
  567. unsigned char *pos, *end;
  568. if (data == NULL || len < sizeof(*hdr))
  569. return NULL;
  570. hdr = (struct radius_hdr *) data;
  571. msg_len = be_to_host16(hdr->length);
  572. if (msg_len < sizeof(*hdr) || msg_len > len) {
  573. wpa_printf(MSG_INFO, "RADIUS: Invalid message length");
  574. return NULL;
  575. }
  576. if (msg_len < len) {
  577. wpa_printf(MSG_DEBUG, "RADIUS: Ignored %lu extra bytes after "
  578. "RADIUS message", (unsigned long) len - msg_len);
  579. }
  580. msg = os_zalloc(sizeof(*msg));
  581. if (msg == NULL)
  582. return NULL;
  583. msg->buf = wpabuf_alloc_copy(data, msg_len);
  584. if (msg->buf == NULL || radius_msg_initialize(msg)) {
  585. radius_msg_free(msg);
  586. return NULL;
  587. }
  588. msg->hdr = wpabuf_mhead(msg->buf);
  589. /* parse attributes */
  590. pos = wpabuf_mhead_u8(msg->buf) + sizeof(struct radius_hdr);
  591. end = wpabuf_mhead_u8(msg->buf) + wpabuf_len(msg->buf);
  592. while (pos < end) {
  593. if ((size_t) (end - pos) < sizeof(*attr))
  594. goto fail;
  595. attr = (struct radius_attr_hdr *) pos;
  596. if (attr->length > end - pos || attr->length < sizeof(*attr))
  597. goto fail;
  598. /* TODO: check that attr->length is suitable for attr->type */
  599. if (radius_msg_add_attr_to_array(msg, attr))
  600. goto fail;
  601. pos += attr->length;
  602. }
  603. return msg;
  604. fail:
  605. radius_msg_free(msg);
  606. return NULL;
  607. }
  608. int radius_msg_add_eap(struct radius_msg *msg, const u8 *data, size_t data_len)
  609. {
  610. const u8 *pos = data;
  611. size_t left = data_len;
  612. while (left > 0) {
  613. int len;
  614. if (left > RADIUS_MAX_ATTR_LEN)
  615. len = RADIUS_MAX_ATTR_LEN;
  616. else
  617. len = left;
  618. if (!radius_msg_add_attr(msg, RADIUS_ATTR_EAP_MESSAGE,
  619. pos, len))
  620. return 0;
  621. pos += len;
  622. left -= len;
  623. }
  624. return 1;
  625. }
  626. struct wpabuf * radius_msg_get_eap(struct radius_msg *msg)
  627. {
  628. struct wpabuf *eap;
  629. size_t len, i;
  630. struct radius_attr_hdr *attr;
  631. if (msg == NULL)
  632. return NULL;
  633. len = 0;
  634. for (i = 0; i < msg->attr_used; i++) {
  635. attr = radius_get_attr_hdr(msg, i);
  636. if (attr->type == RADIUS_ATTR_EAP_MESSAGE &&
  637. attr->length > sizeof(struct radius_attr_hdr))
  638. len += attr->length - sizeof(struct radius_attr_hdr);
  639. }
  640. if (len == 0)
  641. return NULL;
  642. eap = wpabuf_alloc(len);
  643. if (eap == NULL)
  644. return NULL;
  645. for (i = 0; i < msg->attr_used; i++) {
  646. attr = radius_get_attr_hdr(msg, i);
  647. if (attr->type == RADIUS_ATTR_EAP_MESSAGE &&
  648. attr->length > sizeof(struct radius_attr_hdr)) {
  649. int flen = attr->length - sizeof(*attr);
  650. wpabuf_put_data(eap, attr + 1, flen);
  651. }
  652. }
  653. return eap;
  654. }
  655. int radius_msg_verify_msg_auth(struct radius_msg *msg, const u8 *secret,
  656. size_t secret_len, const u8 *req_auth)
  657. {
  658. u8 auth[MD5_MAC_LEN], orig[MD5_MAC_LEN];
  659. u8 orig_authenticator[16];
  660. struct radius_attr_hdr *attr = NULL, *tmp;
  661. size_t i;
  662. for (i = 0; i < msg->attr_used; i++) {
  663. tmp = radius_get_attr_hdr(msg, i);
  664. if (tmp->type == RADIUS_ATTR_MESSAGE_AUTHENTICATOR) {
  665. if (attr != NULL) {
  666. wpa_printf(MSG_INFO, "Multiple Message-Authenticator attributes in RADIUS message");
  667. return 1;
  668. }
  669. attr = tmp;
  670. }
  671. }
  672. if (attr == NULL) {
  673. wpa_printf(MSG_INFO, "No Message-Authenticator attribute found");
  674. return 1;
  675. }
  676. os_memcpy(orig, attr + 1, MD5_MAC_LEN);
  677. os_memset(attr + 1, 0, MD5_MAC_LEN);
  678. if (req_auth) {
  679. os_memcpy(orig_authenticator, msg->hdr->authenticator,
  680. sizeof(orig_authenticator));
  681. os_memcpy(msg->hdr->authenticator, req_auth,
  682. sizeof(msg->hdr->authenticator));
  683. }
  684. hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
  685. wpabuf_len(msg->buf), auth);
  686. os_memcpy(attr + 1, orig, MD5_MAC_LEN);
  687. if (req_auth) {
  688. os_memcpy(msg->hdr->authenticator, orig_authenticator,
  689. sizeof(orig_authenticator));
  690. }
  691. if (os_memcmp_const(orig, auth, MD5_MAC_LEN) != 0) {
  692. wpa_printf(MSG_INFO, "Invalid Message-Authenticator!");
  693. return 1;
  694. }
  695. return 0;
  696. }
  697. int radius_msg_verify(struct radius_msg *msg, const u8 *secret,
  698. size_t secret_len, struct radius_msg *sent_msg, int auth)
  699. {
  700. const u8 *addr[4];
  701. size_t len[4];
  702. u8 hash[MD5_MAC_LEN];
  703. if (sent_msg == NULL) {
  704. wpa_printf(MSG_INFO, "No matching Access-Request message found");
  705. return 1;
  706. }
  707. if (auth &&
  708. radius_msg_verify_msg_auth(msg, secret, secret_len,
  709. sent_msg->hdr->authenticator)) {
  710. return 1;
  711. }
  712. /* ResponseAuth = MD5(Code+ID+Length+RequestAuth+Attributes+Secret) */
  713. addr[0] = (u8 *) msg->hdr;
  714. len[0] = 1 + 1 + 2;
  715. addr[1] = sent_msg->hdr->authenticator;
  716. len[1] = MD5_MAC_LEN;
  717. addr[2] = wpabuf_head_u8(msg->buf) + sizeof(struct radius_hdr);
  718. len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
  719. addr[3] = secret;
  720. len[3] = secret_len;
  721. md5_vector(4, addr, len, hash);
  722. if (os_memcmp_const(hash, msg->hdr->authenticator, MD5_MAC_LEN) != 0) {
  723. wpa_printf(MSG_INFO, "Response Authenticator invalid!");
  724. return 1;
  725. }
  726. return 0;
  727. }
  728. int radius_msg_copy_attr(struct radius_msg *dst, struct radius_msg *src,
  729. u8 type)
  730. {
  731. struct radius_attr_hdr *attr;
  732. size_t i;
  733. int count = 0;
  734. for (i = 0; i < src->attr_used; i++) {
  735. attr = radius_get_attr_hdr(src, i);
  736. if (attr->type == type && attr->length >= sizeof(*attr)) {
  737. if (!radius_msg_add_attr(dst, type, (u8 *) (attr + 1),
  738. attr->length - sizeof(*attr)))
  739. return -1;
  740. count++;
  741. }
  742. }
  743. return count;
  744. }
  745. /* Create Request Authenticator. The value should be unique over the lifetime
  746. * of the shared secret between authenticator and authentication server.
  747. */
  748. int radius_msg_make_authenticator(struct radius_msg *msg)
  749. {
  750. return os_get_random((u8 *) &msg->hdr->authenticator,
  751. sizeof(msg->hdr->authenticator));
  752. }
  753. /* Get Vendor-specific RADIUS Attribute from a parsed RADIUS message.
  754. * Returns the Attribute payload and sets alen to indicate the length of the
  755. * payload if a vendor attribute with subtype is found, otherwise returns NULL.
  756. * The returned payload is allocated with os_malloc() and caller must free it
  757. * by calling os_free().
  758. */
  759. static u8 *radius_msg_get_vendor_attr(struct radius_msg *msg, u32 vendor,
  760. u8 subtype, size_t *alen)
  761. {
  762. u8 *data, *pos;
  763. size_t i, len;
  764. if (msg == NULL)
  765. return NULL;
  766. for (i = 0; i < msg->attr_used; i++) {
  767. struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i);
  768. size_t left;
  769. u32 vendor_id;
  770. struct radius_attr_vendor *vhdr;
  771. if (attr->type != RADIUS_ATTR_VENDOR_SPECIFIC ||
  772. attr->length < sizeof(*attr))
  773. continue;
  774. left = attr->length - sizeof(*attr);
  775. if (left < 4)
  776. continue;
  777. pos = (u8 *) (attr + 1);
  778. os_memcpy(&vendor_id, pos, 4);
  779. pos += 4;
  780. left -= 4;
  781. if (ntohl(vendor_id) != vendor)
  782. continue;
  783. while (left >= sizeof(*vhdr)) {
  784. vhdr = (struct radius_attr_vendor *) pos;
  785. if (vhdr->vendor_length > left ||
  786. vhdr->vendor_length < sizeof(*vhdr)) {
  787. break;
  788. }
  789. if (vhdr->vendor_type != subtype) {
  790. pos += vhdr->vendor_length;
  791. left -= vhdr->vendor_length;
  792. continue;
  793. }
  794. len = vhdr->vendor_length - sizeof(*vhdr);
  795. data = os_malloc(len);
  796. if (data == NULL)
  797. return NULL;
  798. os_memcpy(data, pos + sizeof(*vhdr), len);
  799. if (alen)
  800. *alen = len;
  801. return data;
  802. }
  803. }
  804. return NULL;
  805. }
  806. static u8 * decrypt_ms_key(const u8 *key, size_t len,
  807. const u8 *req_authenticator,
  808. const u8 *secret, size_t secret_len, size_t *reslen)
  809. {
  810. u8 *plain, *ppos, *res;
  811. const u8 *pos;
  812. size_t left, plen;
  813. u8 hash[MD5_MAC_LEN];
  814. int i, first = 1;
  815. const u8 *addr[3];
  816. size_t elen[3];
  817. /* key: 16-bit salt followed by encrypted key info */
  818. if (len < 2 + 16) {
  819. wpa_printf(MSG_DEBUG, "RADIUS: %s: Len is too small: %d",
  820. __func__, (int) len);
  821. return NULL;
  822. }
  823. pos = key + 2;
  824. left = len - 2;
  825. if (left % 16) {
  826. wpa_printf(MSG_INFO, "RADIUS: Invalid ms key len %lu",
  827. (unsigned long) left);
  828. return NULL;
  829. }
  830. plen = left;
  831. ppos = plain = os_malloc(plen);
  832. if (plain == NULL)
  833. return NULL;
  834. plain[0] = 0;
  835. while (left > 0) {
  836. /* b(1) = MD5(Secret + Request-Authenticator + Salt)
  837. * b(i) = MD5(Secret + c(i - 1)) for i > 1 */
  838. addr[0] = secret;
  839. elen[0] = secret_len;
  840. if (first) {
  841. addr[1] = req_authenticator;
  842. elen[1] = MD5_MAC_LEN;
  843. addr[2] = key;
  844. elen[2] = 2; /* Salt */
  845. } else {
  846. addr[1] = pos - MD5_MAC_LEN;
  847. elen[1] = MD5_MAC_LEN;
  848. }
  849. md5_vector(first ? 3 : 2, addr, elen, hash);
  850. first = 0;
  851. for (i = 0; i < MD5_MAC_LEN; i++)
  852. *ppos++ = *pos++ ^ hash[i];
  853. left -= MD5_MAC_LEN;
  854. }
  855. if (plain[0] == 0 || plain[0] > plen - 1) {
  856. wpa_printf(MSG_INFO, "RADIUS: Failed to decrypt MPPE key");
  857. os_free(plain);
  858. return NULL;
  859. }
  860. res = os_malloc(plain[0]);
  861. if (res == NULL) {
  862. os_free(plain);
  863. return NULL;
  864. }
  865. os_memcpy(res, plain + 1, plain[0]);
  866. if (reslen)
  867. *reslen = plain[0];
  868. os_free(plain);
  869. return res;
  870. }
  871. static void encrypt_ms_key(const u8 *key, size_t key_len, u16 salt,
  872. const u8 *req_authenticator,
  873. const u8 *secret, size_t secret_len,
  874. u8 *ebuf, size_t *elen)
  875. {
  876. int i, len, first = 1;
  877. u8 hash[MD5_MAC_LEN], saltbuf[2], *pos;
  878. const u8 *addr[3];
  879. size_t _len[3];
  880. WPA_PUT_BE16(saltbuf, salt);
  881. len = 1 + key_len;
  882. if (len & 0x0f) {
  883. len = (len & 0xf0) + 16;
  884. }
  885. os_memset(ebuf, 0, len);
  886. ebuf[0] = key_len;
  887. os_memcpy(ebuf + 1, key, key_len);
  888. *elen = len;
  889. pos = ebuf;
  890. while (len > 0) {
  891. /* b(1) = MD5(Secret + Request-Authenticator + Salt)
  892. * b(i) = MD5(Secret + c(i - 1)) for i > 1 */
  893. addr[0] = secret;
  894. _len[0] = secret_len;
  895. if (first) {
  896. addr[1] = req_authenticator;
  897. _len[1] = MD5_MAC_LEN;
  898. addr[2] = saltbuf;
  899. _len[2] = sizeof(saltbuf);
  900. } else {
  901. addr[1] = pos - MD5_MAC_LEN;
  902. _len[1] = MD5_MAC_LEN;
  903. }
  904. md5_vector(first ? 3 : 2, addr, _len, hash);
  905. first = 0;
  906. for (i = 0; i < MD5_MAC_LEN; i++)
  907. *pos++ ^= hash[i];
  908. len -= MD5_MAC_LEN;
  909. }
  910. }
  911. struct radius_ms_mppe_keys *
  912. radius_msg_get_ms_keys(struct radius_msg *msg, struct radius_msg *sent_msg,
  913. const u8 *secret, size_t secret_len)
  914. {
  915. u8 *key;
  916. size_t keylen;
  917. struct radius_ms_mppe_keys *keys;
  918. if (msg == NULL || sent_msg == NULL)
  919. return NULL;
  920. keys = os_zalloc(sizeof(*keys));
  921. if (keys == NULL)
  922. return NULL;
  923. key = radius_msg_get_vendor_attr(msg, RADIUS_VENDOR_ID_MICROSOFT,
  924. RADIUS_VENDOR_ATTR_MS_MPPE_SEND_KEY,
  925. &keylen);
  926. if (key) {
  927. keys->send = decrypt_ms_key(key, keylen,
  928. sent_msg->hdr->authenticator,
  929. secret, secret_len,
  930. &keys->send_len);
  931. if (!keys->send) {
  932. wpa_printf(MSG_DEBUG,
  933. "RADIUS: Failed to decrypt send key");
  934. }
  935. os_free(key);
  936. }
  937. key = radius_msg_get_vendor_attr(msg, RADIUS_VENDOR_ID_MICROSOFT,
  938. RADIUS_VENDOR_ATTR_MS_MPPE_RECV_KEY,
  939. &keylen);
  940. if (key) {
  941. keys->recv = decrypt_ms_key(key, keylen,
  942. sent_msg->hdr->authenticator,
  943. secret, secret_len,
  944. &keys->recv_len);
  945. if (!keys->recv) {
  946. wpa_printf(MSG_DEBUG,
  947. "RADIUS: Failed to decrypt recv key");
  948. }
  949. os_free(key);
  950. }
  951. return keys;
  952. }
  953. struct radius_ms_mppe_keys *
  954. radius_msg_get_cisco_keys(struct radius_msg *msg, struct radius_msg *sent_msg,
  955. const u8 *secret, size_t secret_len)
  956. {
  957. u8 *key;
  958. size_t keylen;
  959. struct radius_ms_mppe_keys *keys;
  960. if (msg == NULL || sent_msg == NULL)
  961. return NULL;
  962. keys = os_zalloc(sizeof(*keys));
  963. if (keys == NULL)
  964. return NULL;
  965. key = radius_msg_get_vendor_attr(msg, RADIUS_VENDOR_ID_CISCO,
  966. RADIUS_CISCO_AV_PAIR, &keylen);
  967. if (key && keylen == 51 &&
  968. os_memcmp(key, "leap:session-key=", 17) == 0) {
  969. keys->recv = decrypt_ms_key(key + 17, keylen - 17,
  970. sent_msg->hdr->authenticator,
  971. secret, secret_len,
  972. &keys->recv_len);
  973. }
  974. os_free(key);
  975. return keys;
  976. }
  977. int radius_msg_add_mppe_keys(struct radius_msg *msg,
  978. const u8 *req_authenticator,
  979. const u8 *secret, size_t secret_len,
  980. const u8 *send_key, size_t send_key_len,
  981. const u8 *recv_key, size_t recv_key_len)
  982. {
  983. struct radius_attr_hdr *attr;
  984. u32 vendor_id = htonl(RADIUS_VENDOR_ID_MICROSOFT);
  985. u8 *buf;
  986. struct radius_attr_vendor *vhdr;
  987. u8 *pos;
  988. size_t elen;
  989. int hlen;
  990. u16 salt;
  991. hlen = sizeof(vendor_id) + sizeof(*vhdr) + 2;
  992. /* MS-MPPE-Send-Key */
  993. buf = os_malloc(hlen + send_key_len + 16);
  994. if (buf == NULL) {
  995. return 0;
  996. }
  997. pos = buf;
  998. os_memcpy(pos, &vendor_id, sizeof(vendor_id));
  999. pos += sizeof(vendor_id);
  1000. vhdr = (struct radius_attr_vendor *) pos;
  1001. vhdr->vendor_type = RADIUS_VENDOR_ATTR_MS_MPPE_SEND_KEY;
  1002. pos = (u8 *) (vhdr + 1);
  1003. if (os_get_random((u8 *) &salt, sizeof(salt)) < 0)
  1004. return 0;
  1005. salt |= 0x8000;
  1006. WPA_PUT_BE16(pos, salt);
  1007. pos += 2;
  1008. encrypt_ms_key(send_key, send_key_len, salt, req_authenticator, secret,
  1009. secret_len, pos, &elen);
  1010. vhdr->vendor_length = hlen + elen - sizeof(vendor_id);
  1011. attr = radius_msg_add_attr(msg, RADIUS_ATTR_VENDOR_SPECIFIC,
  1012. buf, hlen + elen);
  1013. os_free(buf);
  1014. if (attr == NULL) {
  1015. return 0;
  1016. }
  1017. /* MS-MPPE-Recv-Key */
  1018. buf = os_malloc(hlen + recv_key_len + 16);
  1019. if (buf == NULL) {
  1020. return 0;
  1021. }
  1022. pos = buf;
  1023. os_memcpy(pos, &vendor_id, sizeof(vendor_id));
  1024. pos += sizeof(vendor_id);
  1025. vhdr = (struct radius_attr_vendor *) pos;
  1026. vhdr->vendor_type = RADIUS_VENDOR_ATTR_MS_MPPE_RECV_KEY;
  1027. pos = (u8 *) (vhdr + 1);
  1028. salt ^= 1;
  1029. WPA_PUT_BE16(pos, salt);
  1030. pos += 2;
  1031. encrypt_ms_key(recv_key, recv_key_len, salt, req_authenticator, secret,
  1032. secret_len, pos, &elen);
  1033. vhdr->vendor_length = hlen + elen - sizeof(vendor_id);
  1034. attr = radius_msg_add_attr(msg, RADIUS_ATTR_VENDOR_SPECIFIC,
  1035. buf, hlen + elen);
  1036. os_free(buf);
  1037. if (attr == NULL) {
  1038. return 0;
  1039. }
  1040. return 1;
  1041. }
  1042. int radius_msg_add_wfa(struct radius_msg *msg, u8 subtype, const u8 *data,
  1043. size_t len)
  1044. {
  1045. struct radius_attr_hdr *attr;
  1046. u8 *buf, *pos;
  1047. size_t alen;
  1048. alen = 4 + 2 + len;
  1049. buf = os_malloc(alen);
  1050. if (buf == NULL)
  1051. return 0;
  1052. pos = buf;
  1053. WPA_PUT_BE32(pos, RADIUS_VENDOR_ID_WFA);
  1054. pos += 4;
  1055. *pos++ = subtype;
  1056. *pos++ = 2 + len;
  1057. os_memcpy(pos, data, len);
  1058. attr = radius_msg_add_attr(msg, RADIUS_ATTR_VENDOR_SPECIFIC,
  1059. buf, alen);
  1060. os_free(buf);
  1061. if (attr == NULL)
  1062. return 0;
  1063. return 1;
  1064. }
  1065. int radius_user_password_hide(struct radius_msg *msg,
  1066. const u8 *data, size_t data_len,
  1067. const u8 *secret, size_t secret_len,
  1068. u8 *buf, size_t buf_len)
  1069. {
  1070. size_t padlen, i, pos;
  1071. const u8 *addr[2];
  1072. size_t len[2];
  1073. u8 hash[16];
  1074. if (data_len + 16 > buf_len)
  1075. return -1;
  1076. os_memcpy(buf, data, data_len);
  1077. padlen = data_len % 16;
  1078. if (padlen && data_len < buf_len) {
  1079. padlen = 16 - padlen;
  1080. os_memset(buf + data_len, 0, padlen);
  1081. buf_len = data_len + padlen;
  1082. } else {
  1083. buf_len = data_len;
  1084. }
  1085. addr[0] = secret;
  1086. len[0] = secret_len;
  1087. addr[1] = msg->hdr->authenticator;
  1088. len[1] = 16;
  1089. md5_vector(2, addr, len, hash);
  1090. for (i = 0; i < 16; i++)
  1091. buf[i] ^= hash[i];
  1092. pos = 16;
  1093. while (pos < buf_len) {
  1094. addr[0] = secret;
  1095. len[0] = secret_len;
  1096. addr[1] = &buf[pos - 16];
  1097. len[1] = 16;
  1098. md5_vector(2, addr, len, hash);
  1099. for (i = 0; i < 16; i++)
  1100. buf[pos + i] ^= hash[i];
  1101. pos += 16;
  1102. }
  1103. return buf_len;
  1104. }
  1105. /* Add User-Password attribute to a RADIUS message and encrypt it as specified
  1106. * in RFC 2865, Chap. 5.2 */
  1107. struct radius_attr_hdr *
  1108. radius_msg_add_attr_user_password(struct radius_msg *msg,
  1109. const u8 *data, size_t data_len,
  1110. const u8 *secret, size_t secret_len)
  1111. {
  1112. u8 buf[128];
  1113. int res;
  1114. res = radius_user_password_hide(msg, data, data_len,
  1115. secret, secret_len, buf, sizeof(buf));
  1116. if (res < 0)
  1117. return NULL;
  1118. return radius_msg_add_attr(msg, RADIUS_ATTR_USER_PASSWORD,
  1119. buf, res);
  1120. }
  1121. int radius_msg_get_attr(struct radius_msg *msg, u8 type, u8 *buf, size_t len)
  1122. {
  1123. struct radius_attr_hdr *attr = NULL, *tmp;
  1124. size_t i, dlen;
  1125. for (i = 0; i < msg->attr_used; i++) {
  1126. tmp = radius_get_attr_hdr(msg, i);
  1127. if (tmp->type == type) {
  1128. attr = tmp;
  1129. break;
  1130. }
  1131. }
  1132. if (!attr || attr->length < sizeof(*attr))
  1133. return -1;
  1134. dlen = attr->length - sizeof(*attr);
  1135. if (buf)
  1136. os_memcpy(buf, (attr + 1), dlen > len ? len : dlen);
  1137. return dlen;
  1138. }
  1139. int radius_msg_get_attr_ptr(struct radius_msg *msg, u8 type, u8 **buf,
  1140. size_t *len, const u8 *start)
  1141. {
  1142. size_t i;
  1143. struct radius_attr_hdr *attr = NULL, *tmp;
  1144. for (i = 0; i < msg->attr_used; i++) {
  1145. tmp = radius_get_attr_hdr(msg, i);
  1146. if (tmp->type == type &&
  1147. (start == NULL || (u8 *) tmp > start)) {
  1148. attr = tmp;
  1149. break;
  1150. }
  1151. }
  1152. if (!attr || attr->length < sizeof(*attr))
  1153. return -1;
  1154. *buf = (u8 *) (attr + 1);
  1155. *len = attr->length - sizeof(*attr);
  1156. return 0;
  1157. }
  1158. int radius_msg_count_attr(struct radius_msg *msg, u8 type, int min_len)
  1159. {
  1160. size_t i;
  1161. int count;
  1162. for (count = 0, i = 0; i < msg->attr_used; i++) {
  1163. struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i);
  1164. if (attr->type == type &&
  1165. attr->length >= sizeof(struct radius_attr_hdr) + min_len)
  1166. count++;
  1167. }
  1168. return count;
  1169. }
  1170. struct radius_tunnel_attrs {
  1171. int tag_used;
  1172. int type; /* Tunnel-Type */
  1173. int medium_type; /* Tunnel-Medium-Type */
  1174. int vlanid;
  1175. };
  1176. static int cmp_int(const void *a, const void *b)
  1177. {
  1178. int x, y;
  1179. x = *((int *) a);
  1180. y = *((int *) b);
  1181. return (x - y);
  1182. }
  1183. /**
  1184. * radius_msg_get_vlanid - Parse RADIUS attributes for VLAN tunnel information
  1185. * The k tagged vlans found are sorted by vlan_id and stored in the first k
  1186. * items of tagged.
  1187. *
  1188. * @msg: RADIUS message
  1189. * @untagged: Pointer to store untagged vid
  1190. * @numtagged: Size of tagged
  1191. * @tagged: Pointer to store tagged list
  1192. *
  1193. * Returns: 0 if neither tagged nor untagged configuration is found, 1 otherwise
  1194. */
  1195. int radius_msg_get_vlanid(struct radius_msg *msg, int *untagged, int numtagged,
  1196. int *tagged)
  1197. {
  1198. struct radius_tunnel_attrs tunnel[RADIUS_TUNNEL_TAGS], *tun;
  1199. size_t i;
  1200. struct radius_attr_hdr *attr = NULL;
  1201. const u8 *data;
  1202. char buf[10];
  1203. size_t dlen;
  1204. int j, taggedidx = 0, vlan_id;
  1205. os_memset(&tunnel, 0, sizeof(tunnel));
  1206. for (j = 0; j < numtagged; j++)
  1207. tagged[j] = 0;
  1208. *untagged = 0;
  1209. for (i = 0; i < msg->attr_used; i++) {
  1210. attr = radius_get_attr_hdr(msg, i);
  1211. if (attr->length < sizeof(*attr))
  1212. return -1;
  1213. data = (const u8 *) (attr + 1);
  1214. dlen = attr->length - sizeof(*attr);
  1215. if (attr->length < 3)
  1216. continue;
  1217. if (data[0] >= RADIUS_TUNNEL_TAGS)
  1218. tun = &tunnel[0];
  1219. else
  1220. tun = &tunnel[data[0]];
  1221. switch (attr->type) {
  1222. case RADIUS_ATTR_TUNNEL_TYPE:
  1223. if (attr->length != 6)
  1224. break;
  1225. tun->tag_used++;
  1226. tun->type = WPA_GET_BE24(data + 1);
  1227. break;
  1228. case RADIUS_ATTR_TUNNEL_MEDIUM_TYPE:
  1229. if (attr->length != 6)
  1230. break;
  1231. tun->tag_used++;
  1232. tun->medium_type = WPA_GET_BE24(data + 1);
  1233. break;
  1234. case RADIUS_ATTR_TUNNEL_PRIVATE_GROUP_ID:
  1235. if (data[0] < RADIUS_TUNNEL_TAGS) {
  1236. data++;
  1237. dlen--;
  1238. }
  1239. if (dlen >= sizeof(buf))
  1240. break;
  1241. os_memcpy(buf, data, dlen);
  1242. buf[dlen] = '\0';
  1243. vlan_id = atoi(buf);
  1244. if (vlan_id <= 0)
  1245. break;
  1246. tun->tag_used++;
  1247. tun->vlanid = vlan_id;
  1248. break;
  1249. case RADIUS_ATTR_EGRESS_VLANID: /* RFC 4675 */
  1250. if (attr->length != 6)
  1251. break;
  1252. vlan_id = WPA_GET_BE24(data + 1);
  1253. if (vlan_id <= 0)
  1254. break;
  1255. if (data[0] == 0x32)
  1256. *untagged = vlan_id;
  1257. else if (data[0] == 0x31 && tagged &&
  1258. taggedidx < numtagged)
  1259. tagged[taggedidx++] = vlan_id;
  1260. break;
  1261. }
  1262. }
  1263. /* Use tunnel with the lowest tag for untagged VLAN id */
  1264. for (i = 0; i < RADIUS_TUNNEL_TAGS; i++) {
  1265. tun = &tunnel[i];
  1266. if (tun->tag_used &&
  1267. tun->type == RADIUS_TUNNEL_TYPE_VLAN &&
  1268. tun->medium_type == RADIUS_TUNNEL_MEDIUM_TYPE_802 &&
  1269. tun->vlanid > 0) {
  1270. *untagged = tun->vlanid;
  1271. break;
  1272. }
  1273. }
  1274. if (taggedidx)
  1275. qsort(tagged, taggedidx, sizeof(int), cmp_int);
  1276. if (*untagged > 0 || taggedidx)
  1277. return 1;
  1278. return 0;
  1279. }
  1280. /**
  1281. * radius_msg_get_tunnel_password - Parse RADIUS attribute Tunnel-Password
  1282. * @msg: Received RADIUS message
  1283. * @keylen: Length of returned password
  1284. * @secret: RADIUS shared secret
  1285. * @secret_len: Length of secret
  1286. * @sent_msg: Sent RADIUS message
  1287. * @n: Number of password attribute to return (starting with 0)
  1288. * Returns: Pointer to n-th password (free with os_free) or %NULL
  1289. */
  1290. char * radius_msg_get_tunnel_password(struct radius_msg *msg, int *keylen,
  1291. const u8 *secret, size_t secret_len,
  1292. struct radius_msg *sent_msg, size_t n)
  1293. {
  1294. u8 *buf = NULL;
  1295. size_t buflen;
  1296. const u8 *salt;
  1297. u8 *str;
  1298. const u8 *addr[3];
  1299. size_t len[3];
  1300. u8 hash[16];
  1301. u8 *pos;
  1302. size_t i, j = 0;
  1303. struct radius_attr_hdr *attr;
  1304. const u8 *data;
  1305. size_t dlen;
  1306. const u8 *fdata = NULL; /* points to found item */
  1307. size_t fdlen = -1;
  1308. char *ret = NULL;
  1309. /* find n-th valid Tunnel-Password attribute */
  1310. for (i = 0; i < msg->attr_used; i++) {
  1311. attr = radius_get_attr_hdr(msg, i);
  1312. if (attr == NULL ||
  1313. attr->type != RADIUS_ATTR_TUNNEL_PASSWORD) {
  1314. continue;
  1315. }
  1316. if (attr->length <= 5)
  1317. continue;
  1318. data = (const u8 *) (attr + 1);
  1319. dlen = attr->length - sizeof(*attr);
  1320. if (dlen <= 3 || dlen % 16 != 3)
  1321. continue;
  1322. j++;
  1323. if (j <= n)
  1324. continue;
  1325. fdata = data;
  1326. fdlen = dlen;
  1327. break;
  1328. }
  1329. if (fdata == NULL)
  1330. goto out;
  1331. /* alloc writable memory for decryption */
  1332. buf = os_malloc(fdlen);
  1333. if (buf == NULL)
  1334. goto out;
  1335. os_memcpy(buf, fdata, fdlen);
  1336. buflen = fdlen;
  1337. /* init pointers */
  1338. salt = buf + 1;
  1339. str = buf + 3;
  1340. /* decrypt blocks */
  1341. pos = buf + buflen - 16; /* last block */
  1342. while (pos >= str + 16) { /* all but the first block */
  1343. addr[0] = secret;
  1344. len[0] = secret_len;
  1345. addr[1] = pos - 16;
  1346. len[1] = 16;
  1347. md5_vector(2, addr, len, hash);
  1348. for (i = 0; i < 16; i++)
  1349. pos[i] ^= hash[i];
  1350. pos -= 16;
  1351. }
  1352. /* decrypt first block */
  1353. if (str != pos)
  1354. goto out;
  1355. addr[0] = secret;
  1356. len[0] = secret_len;
  1357. addr[1] = sent_msg->hdr->authenticator;
  1358. len[1] = 16;
  1359. addr[2] = salt;
  1360. len[2] = 2;
  1361. md5_vector(3, addr, len, hash);
  1362. for (i = 0; i < 16; i++)
  1363. pos[i] ^= hash[i];
  1364. /* derive plaintext length from first subfield */
  1365. *keylen = (unsigned char) str[0];
  1366. if ((u8 *) (str + *keylen) >= (u8 *) (buf + buflen)) {
  1367. /* decryption error - invalid key length */
  1368. goto out;
  1369. }
  1370. if (*keylen == 0) {
  1371. /* empty password */
  1372. goto out;
  1373. }
  1374. /* copy passphrase into new buffer */
  1375. ret = os_malloc(*keylen);
  1376. if (ret)
  1377. os_memcpy(ret, str + 1, *keylen);
  1378. out:
  1379. /* return new buffer */
  1380. os_free(buf);
  1381. return ret;
  1382. }
  1383. void radius_free_class(struct radius_class_data *c)
  1384. {
  1385. size_t i;
  1386. if (c == NULL)
  1387. return;
  1388. for (i = 0; i < c->count; i++)
  1389. os_free(c->attr[i].data);
  1390. os_free(c->attr);
  1391. c->attr = NULL;
  1392. c->count = 0;
  1393. }
  1394. int radius_copy_class(struct radius_class_data *dst,
  1395. const struct radius_class_data *src)
  1396. {
  1397. size_t i;
  1398. if (src->attr == NULL)
  1399. return 0;
  1400. dst->attr = os_calloc(src->count, sizeof(struct radius_attr_data));
  1401. if (dst->attr == NULL)
  1402. return -1;
  1403. dst->count = 0;
  1404. for (i = 0; i < src->count; i++) {
  1405. dst->attr[i].data = os_malloc(src->attr[i].len);
  1406. if (dst->attr[i].data == NULL)
  1407. break;
  1408. dst->count++;
  1409. os_memcpy(dst->attr[i].data, src->attr[i].data,
  1410. src->attr[i].len);
  1411. dst->attr[i].len = src->attr[i].len;
  1412. }
  1413. return 0;
  1414. }
  1415. u8 radius_msg_find_unlisted_attr(struct radius_msg *msg, u8 *attrs)
  1416. {
  1417. size_t i, j;
  1418. struct radius_attr_hdr *attr;
  1419. for (i = 0; i < msg->attr_used; i++) {
  1420. attr = radius_get_attr_hdr(msg, i);
  1421. for (j = 0; attrs[j]; j++) {
  1422. if (attr->type == attrs[j])
  1423. break;
  1424. }
  1425. if (attrs[j] == 0)
  1426. return attr->type; /* unlisted attr */
  1427. }
  1428. return 0;
  1429. }
  1430. int radius_gen_session_id(u8 *id, size_t len)
  1431. {
  1432. /*
  1433. * Acct-Session-Id and Acct-Multi-Session-Id should be globally and
  1434. * temporarily unique. A high quality random number is required
  1435. * therefore. This could be be improved by switching to a GUID.
  1436. */
  1437. return os_get_random(id, len);
  1438. }