eapol_test.c 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208
  1. /*
  2. * WPA Supplicant - test code
  3. * Copyright (c) 2003-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. * IEEE 802.1X Supplicant test code (to be used in place of wpa_supplicant.c.
  15. * Not used in production version.
  16. */
  17. #include "includes.h"
  18. #include <assert.h>
  19. #include "common.h"
  20. #include "config.h"
  21. #include "eapol_supp/eapol_supp_sm.h"
  22. #include "eap_peer/eap.h"
  23. #include "eloop.h"
  24. #include "rsn_supp/wpa.h"
  25. #include "eap_peer/eap_i.h"
  26. #include "wpa_supplicant_i.h"
  27. #include "radius/radius.h"
  28. #include "radius/radius_client.h"
  29. #include "ctrl_iface.h"
  30. #include "pcsc_funcs.h"
  31. extern int wpa_debug_level;
  32. extern int wpa_debug_show_keys;
  33. struct wpa_driver_ops *wpa_drivers[] = { NULL };
  34. struct extra_radius_attr {
  35. u8 type;
  36. char syntax;
  37. char *data;
  38. struct extra_radius_attr *next;
  39. };
  40. struct eapol_test_data {
  41. struct wpa_supplicant *wpa_s;
  42. int eapol_test_num_reauths;
  43. int no_mppe_keys;
  44. int num_mppe_ok, num_mppe_mismatch;
  45. u8 radius_identifier;
  46. struct radius_msg *last_recv_radius;
  47. struct in_addr own_ip_addr;
  48. struct radius_client_data *radius;
  49. struct hostapd_radius_servers *radius_conf;
  50. u8 *last_eap_radius; /* last received EAP Response from Authentication
  51. * Server */
  52. size_t last_eap_radius_len;
  53. u8 authenticator_pmk[PMK_LEN];
  54. size_t authenticator_pmk_len;
  55. int radius_access_accept_received;
  56. int radius_access_reject_received;
  57. int auth_timed_out;
  58. u8 *eap_identity;
  59. size_t eap_identity_len;
  60. char *connect_info;
  61. u8 own_addr[ETH_ALEN];
  62. struct extra_radius_attr *extra_attrs;
  63. };
  64. static struct eapol_test_data eapol_test;
  65. static void send_eap_request_identity(void *eloop_ctx, void *timeout_ctx);
  66. static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
  67. int level, const char *txt, size_t len)
  68. {
  69. if (addr)
  70. wpa_printf(MSG_DEBUG, "STA " MACSTR ": %s\n",
  71. MAC2STR(addr), txt);
  72. else
  73. wpa_printf(MSG_DEBUG, "%s", txt);
  74. }
  75. static int add_extra_attr(struct radius_msg *msg,
  76. struct extra_radius_attr *attr)
  77. {
  78. size_t len;
  79. char *pos;
  80. u32 val;
  81. char buf[128];
  82. switch (attr->syntax) {
  83. case 's':
  84. os_snprintf(buf, sizeof(buf), "%s", attr->data);
  85. len = os_strlen(buf);
  86. break;
  87. case 'n':
  88. buf[0] = '\0';
  89. len = 1;
  90. break;
  91. case 'x':
  92. pos = attr->data;
  93. if (pos[0] == '0' && pos[1] == 'x')
  94. pos += 2;
  95. len = os_strlen(pos);
  96. if ((len & 1) || (len / 2) > sizeof(buf)) {
  97. printf("Invalid extra attribute hexstring\n");
  98. return -1;
  99. }
  100. len /= 2;
  101. if (hexstr2bin(pos, (u8 *) buf, len) < 0) {
  102. printf("Invalid extra attribute hexstring\n");
  103. return -1;
  104. }
  105. break;
  106. case 'd':
  107. val = htonl(atoi(attr->data));
  108. os_memcpy(buf, &val, 4);
  109. len = 4;
  110. break;
  111. default:
  112. printf("Incorrect extra attribute syntax specification\n");
  113. return -1;
  114. }
  115. if (!radius_msg_add_attr(msg, attr->type, (u8 *) buf, len)) {
  116. printf("Could not add attribute %d\n", attr->type);
  117. return -1;
  118. }
  119. return 0;
  120. }
  121. static int add_extra_attrs(struct radius_msg *msg,
  122. struct extra_radius_attr *attrs)
  123. {
  124. struct extra_radius_attr *p;
  125. for (p = attrs; p; p = p->next) {
  126. if (add_extra_attr(msg, p) < 0)
  127. return -1;
  128. }
  129. return 0;
  130. }
  131. static struct extra_radius_attr *
  132. find_extra_attr(struct extra_radius_attr *attrs, u8 type)
  133. {
  134. struct extra_radius_attr *p;
  135. for (p = attrs; p; p = p->next) {
  136. if (p->type == type)
  137. return p;
  138. }
  139. return NULL;
  140. }
  141. static void ieee802_1x_encapsulate_radius(struct eapol_test_data *e,
  142. const u8 *eap, size_t len)
  143. {
  144. struct radius_msg *msg;
  145. char buf[128];
  146. const struct eap_hdr *hdr;
  147. const u8 *pos;
  148. wpa_printf(MSG_DEBUG, "Encapsulating EAP message into a RADIUS "
  149. "packet");
  150. e->radius_identifier = radius_client_get_id(e->radius);
  151. msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST,
  152. e->radius_identifier);
  153. if (msg == NULL) {
  154. printf("Could not create net RADIUS packet\n");
  155. return;
  156. }
  157. radius_msg_make_authenticator(msg, (u8 *) e, sizeof(*e));
  158. hdr = (const struct eap_hdr *) eap;
  159. pos = (const u8 *) (hdr + 1);
  160. if (len > sizeof(*hdr) && hdr->code == EAP_CODE_RESPONSE &&
  161. pos[0] == EAP_TYPE_IDENTITY) {
  162. pos++;
  163. os_free(e->eap_identity);
  164. e->eap_identity_len = len - sizeof(*hdr) - 1;
  165. e->eap_identity = os_malloc(e->eap_identity_len);
  166. if (e->eap_identity) {
  167. os_memcpy(e->eap_identity, pos, e->eap_identity_len);
  168. wpa_hexdump(MSG_DEBUG, "Learned identity from "
  169. "EAP-Response-Identity",
  170. e->eap_identity, e->eap_identity_len);
  171. }
  172. }
  173. if (e->eap_identity &&
  174. !radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME,
  175. e->eap_identity, e->eap_identity_len)) {
  176. printf("Could not add User-Name\n");
  177. goto fail;
  178. }
  179. if (!find_extra_attr(e->extra_attrs, RADIUS_ATTR_NAS_IP_ADDRESS) &&
  180. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
  181. (u8 *) &e->own_ip_addr, 4)) {
  182. printf("Could not add NAS-IP-Address\n");
  183. goto fail;
  184. }
  185. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
  186. MAC2STR(e->wpa_s->own_addr));
  187. if (!find_extra_attr(e->extra_attrs, RADIUS_ATTR_CALLING_STATION_ID)
  188. &&
  189. !radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
  190. (u8 *) buf, os_strlen(buf))) {
  191. printf("Could not add Calling-Station-Id\n");
  192. goto fail;
  193. }
  194. /* TODO: should probably check MTU from driver config; 2304 is max for
  195. * IEEE 802.11, but use 1400 to avoid problems with too large packets
  196. */
  197. if (!find_extra_attr(e->extra_attrs, RADIUS_ATTR_FRAMED_MTU) &&
  198. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_FRAMED_MTU, 1400)) {
  199. printf("Could not add Framed-MTU\n");
  200. goto fail;
  201. }
  202. if (!find_extra_attr(e->extra_attrs, RADIUS_ATTR_NAS_PORT_TYPE) &&
  203. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT_TYPE,
  204. RADIUS_NAS_PORT_TYPE_IEEE_802_11)) {
  205. printf("Could not add NAS-Port-Type\n");
  206. goto fail;
  207. }
  208. os_snprintf(buf, sizeof(buf), "%s", e->connect_info);
  209. if (!find_extra_attr(e->extra_attrs, RADIUS_ATTR_CONNECT_INFO) &&
  210. !radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
  211. (u8 *) buf, os_strlen(buf))) {
  212. printf("Could not add Connect-Info\n");
  213. goto fail;
  214. }
  215. if (add_extra_attrs(msg, e->extra_attrs) < 0)
  216. goto fail;
  217. if (eap && !radius_msg_add_eap(msg, eap, len)) {
  218. printf("Could not add EAP-Message\n");
  219. goto fail;
  220. }
  221. /* State attribute must be copied if and only if this packet is
  222. * Access-Request reply to the previous Access-Challenge */
  223. if (e->last_recv_radius && e->last_recv_radius->hdr->code ==
  224. RADIUS_CODE_ACCESS_CHALLENGE) {
  225. int res = radius_msg_copy_attr(msg, e->last_recv_radius,
  226. RADIUS_ATTR_STATE);
  227. if (res < 0) {
  228. printf("Could not copy State attribute from previous "
  229. "Access-Challenge\n");
  230. goto fail;
  231. }
  232. if (res > 0) {
  233. wpa_printf(MSG_DEBUG, " Copied RADIUS State "
  234. "Attribute");
  235. }
  236. }
  237. radius_client_send(e->radius, msg, RADIUS_AUTH, e->wpa_s->own_addr);
  238. return;
  239. fail:
  240. radius_msg_free(msg);
  241. }
  242. static int eapol_test_eapol_send(void *ctx, int type, const u8 *buf,
  243. size_t len)
  244. {
  245. /* struct wpa_supplicant *wpa_s = ctx; */
  246. printf("WPA: eapol_test_eapol_send(type=%d len=%lu)\n",
  247. type, (unsigned long) len);
  248. if (type == IEEE802_1X_TYPE_EAP_PACKET) {
  249. wpa_hexdump(MSG_DEBUG, "TX EAP -> RADIUS", buf, len);
  250. ieee802_1x_encapsulate_radius(&eapol_test, buf, len);
  251. }
  252. return 0;
  253. }
  254. static void eapol_test_set_config_blob(void *ctx,
  255. struct wpa_config_blob *blob)
  256. {
  257. struct wpa_supplicant *wpa_s = ctx;
  258. wpa_config_set_blob(wpa_s->conf, blob);
  259. }
  260. static const struct wpa_config_blob *
  261. eapol_test_get_config_blob(void *ctx, const char *name)
  262. {
  263. struct wpa_supplicant *wpa_s = ctx;
  264. return wpa_config_get_blob(wpa_s->conf, name);
  265. }
  266. static void eapol_test_eapol_done_cb(void *ctx)
  267. {
  268. printf("WPA: EAPOL processing complete\n");
  269. }
  270. static void eapol_sm_reauth(void *eloop_ctx, void *timeout_ctx)
  271. {
  272. struct eapol_test_data *e = eloop_ctx;
  273. printf("\n\n\n\n\neapol_test: Triggering EAP reauthentication\n\n");
  274. e->radius_access_accept_received = 0;
  275. send_eap_request_identity(e->wpa_s, NULL);
  276. }
  277. static int eapol_test_compare_pmk(struct eapol_test_data *e)
  278. {
  279. u8 pmk[PMK_LEN];
  280. int ret = 1;
  281. if (eapol_sm_get_key(e->wpa_s->eapol, pmk, PMK_LEN) == 0) {
  282. wpa_hexdump(MSG_DEBUG, "PMK from EAPOL", pmk, PMK_LEN);
  283. if (os_memcmp(pmk, e->authenticator_pmk, PMK_LEN) != 0) {
  284. printf("WARNING: PMK mismatch\n");
  285. wpa_hexdump(MSG_DEBUG, "PMK from AS",
  286. e->authenticator_pmk, PMK_LEN);
  287. } else if (e->radius_access_accept_received)
  288. ret = 0;
  289. } else if (e->authenticator_pmk_len == 16 &&
  290. eapol_sm_get_key(e->wpa_s->eapol, pmk, 16) == 0) {
  291. wpa_hexdump(MSG_DEBUG, "LEAP PMK from EAPOL", pmk, 16);
  292. if (os_memcmp(pmk, e->authenticator_pmk, 16) != 0) {
  293. printf("WARNING: PMK mismatch\n");
  294. wpa_hexdump(MSG_DEBUG, "PMK from AS",
  295. e->authenticator_pmk, 16);
  296. } else if (e->radius_access_accept_received)
  297. ret = 0;
  298. } else if (e->radius_access_accept_received && e->no_mppe_keys) {
  299. /* No keying material expected */
  300. ret = 0;
  301. }
  302. if (ret && !e->no_mppe_keys)
  303. e->num_mppe_mismatch++;
  304. else if (!e->no_mppe_keys)
  305. e->num_mppe_ok++;
  306. return ret;
  307. }
  308. static void eapol_sm_cb(struct eapol_sm *eapol, int success, void *ctx)
  309. {
  310. struct eapol_test_data *e = ctx;
  311. printf("eapol_sm_cb: success=%d\n", success);
  312. e->eapol_test_num_reauths--;
  313. if (e->eapol_test_num_reauths < 0)
  314. eloop_terminate();
  315. else {
  316. eapol_test_compare_pmk(e);
  317. eloop_register_timeout(0, 100000, eapol_sm_reauth, e, NULL);
  318. }
  319. }
  320. static int test_eapol(struct eapol_test_data *e, struct wpa_supplicant *wpa_s,
  321. struct wpa_ssid *ssid)
  322. {
  323. struct eapol_config eapol_conf;
  324. struct eapol_ctx *ctx;
  325. ctx = os_zalloc(sizeof(*ctx));
  326. if (ctx == NULL) {
  327. printf("Failed to allocate EAPOL context.\n");
  328. return -1;
  329. }
  330. ctx->ctx = wpa_s;
  331. ctx->msg_ctx = wpa_s;
  332. ctx->scard_ctx = wpa_s->scard;
  333. ctx->cb = eapol_sm_cb;
  334. ctx->cb_ctx = e;
  335. ctx->eapol_send_ctx = wpa_s;
  336. ctx->preauth = 0;
  337. ctx->eapol_done_cb = eapol_test_eapol_done_cb;
  338. ctx->eapol_send = eapol_test_eapol_send;
  339. ctx->set_config_blob = eapol_test_set_config_blob;
  340. ctx->get_config_blob = eapol_test_get_config_blob;
  341. ctx->opensc_engine_path = wpa_s->conf->opensc_engine_path;
  342. ctx->pkcs11_engine_path = wpa_s->conf->pkcs11_engine_path;
  343. ctx->pkcs11_module_path = wpa_s->conf->pkcs11_module_path;
  344. wpa_s->eapol = eapol_sm_init(ctx);
  345. if (wpa_s->eapol == NULL) {
  346. os_free(ctx);
  347. printf("Failed to initialize EAPOL state machines.\n");
  348. return -1;
  349. }
  350. wpa_s->current_ssid = ssid;
  351. os_memset(&eapol_conf, 0, sizeof(eapol_conf));
  352. eapol_conf.accept_802_1x_keys = 1;
  353. eapol_conf.required_keys = 0;
  354. eapol_conf.fast_reauth = wpa_s->conf->fast_reauth;
  355. eapol_conf.workaround = ssid->eap_workaround;
  356. eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &eapol_conf);
  357. eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
  358. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  359. /* 802.1X::portControl = Auto */
  360. eapol_sm_notify_portEnabled(wpa_s->eapol, TRUE);
  361. return 0;
  362. }
  363. static void test_eapol_clean(struct eapol_test_data *e,
  364. struct wpa_supplicant *wpa_s)
  365. {
  366. struct extra_radius_attr *p, *prev;
  367. radius_client_deinit(e->radius);
  368. os_free(e->last_eap_radius);
  369. radius_msg_free(e->last_recv_radius);
  370. e->last_recv_radius = NULL;
  371. os_free(e->eap_identity);
  372. e->eap_identity = NULL;
  373. eapol_sm_deinit(wpa_s->eapol);
  374. wpa_s->eapol = NULL;
  375. if (e->radius_conf && e->radius_conf->auth_server) {
  376. os_free(e->radius_conf->auth_server->shared_secret);
  377. os_free(e->radius_conf->auth_server);
  378. }
  379. os_free(e->radius_conf);
  380. e->radius_conf = NULL;
  381. scard_deinit(wpa_s->scard);
  382. if (wpa_s->ctrl_iface) {
  383. wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
  384. wpa_s->ctrl_iface = NULL;
  385. }
  386. wpa_config_free(wpa_s->conf);
  387. p = e->extra_attrs;
  388. while (p) {
  389. prev = p;
  390. p = p->next;
  391. os_free(prev);
  392. }
  393. }
  394. static void send_eap_request_identity(void *eloop_ctx, void *timeout_ctx)
  395. {
  396. struct wpa_supplicant *wpa_s = eloop_ctx;
  397. u8 buf[100], *pos;
  398. struct ieee802_1x_hdr *hdr;
  399. struct eap_hdr *eap;
  400. hdr = (struct ieee802_1x_hdr *) buf;
  401. hdr->version = EAPOL_VERSION;
  402. hdr->type = IEEE802_1X_TYPE_EAP_PACKET;
  403. hdr->length = htons(5);
  404. eap = (struct eap_hdr *) (hdr + 1);
  405. eap->code = EAP_CODE_REQUEST;
  406. eap->identifier = 0;
  407. eap->length = htons(5);
  408. pos = (u8 *) (eap + 1);
  409. *pos = EAP_TYPE_IDENTITY;
  410. printf("Sending fake EAP-Request-Identity\n");
  411. eapol_sm_rx_eapol(wpa_s->eapol, wpa_s->bssid, buf,
  412. sizeof(*hdr) + 5);
  413. }
  414. static void eapol_test_timeout(void *eloop_ctx, void *timeout_ctx)
  415. {
  416. struct eapol_test_data *e = eloop_ctx;
  417. printf("EAPOL test timed out\n");
  418. e->auth_timed_out = 1;
  419. eloop_terminate();
  420. }
  421. static char *eap_type_text(u8 type)
  422. {
  423. switch (type) {
  424. case EAP_TYPE_IDENTITY: return "Identity";
  425. case EAP_TYPE_NOTIFICATION: return "Notification";
  426. case EAP_TYPE_NAK: return "Nak";
  427. case EAP_TYPE_TLS: return "TLS";
  428. case EAP_TYPE_TTLS: return "TTLS";
  429. case EAP_TYPE_PEAP: return "PEAP";
  430. case EAP_TYPE_SIM: return "SIM";
  431. case EAP_TYPE_GTC: return "GTC";
  432. case EAP_TYPE_MD5: return "MD5";
  433. case EAP_TYPE_OTP: return "OTP";
  434. case EAP_TYPE_FAST: return "FAST";
  435. case EAP_TYPE_SAKE: return "SAKE";
  436. case EAP_TYPE_PSK: return "PSK";
  437. default: return "Unknown";
  438. }
  439. }
  440. static void ieee802_1x_decapsulate_radius(struct eapol_test_data *e)
  441. {
  442. u8 *eap;
  443. size_t len;
  444. struct eap_hdr *hdr;
  445. int eap_type = -1;
  446. char buf[64];
  447. struct radius_msg *msg;
  448. if (e->last_recv_radius == NULL)
  449. return;
  450. msg = e->last_recv_radius;
  451. eap = radius_msg_get_eap(msg, &len);
  452. if (eap == NULL) {
  453. /* draft-aboba-radius-rfc2869bis-20.txt, Chap. 2.6.3:
  454. * RADIUS server SHOULD NOT send Access-Reject/no EAP-Message
  455. * attribute */
  456. wpa_printf(MSG_DEBUG, "could not extract "
  457. "EAP-Message from RADIUS message");
  458. os_free(e->last_eap_radius);
  459. e->last_eap_radius = NULL;
  460. e->last_eap_radius_len = 0;
  461. return;
  462. }
  463. if (len < sizeof(*hdr)) {
  464. wpa_printf(MSG_DEBUG, "too short EAP packet "
  465. "received from authentication server");
  466. os_free(eap);
  467. return;
  468. }
  469. if (len > sizeof(*hdr))
  470. eap_type = eap[sizeof(*hdr)];
  471. hdr = (struct eap_hdr *) eap;
  472. switch (hdr->code) {
  473. case EAP_CODE_REQUEST:
  474. os_snprintf(buf, sizeof(buf), "EAP-Request-%s (%d)",
  475. eap_type >= 0 ? eap_type_text(eap_type) : "??",
  476. eap_type);
  477. break;
  478. case EAP_CODE_RESPONSE:
  479. os_snprintf(buf, sizeof(buf), "EAP Response-%s (%d)",
  480. eap_type >= 0 ? eap_type_text(eap_type) : "??",
  481. eap_type);
  482. break;
  483. case EAP_CODE_SUCCESS:
  484. os_strlcpy(buf, "EAP Success", sizeof(buf));
  485. /* LEAP uses EAP Success within an authentication, so must not
  486. * stop here with eloop_terminate(); */
  487. break;
  488. case EAP_CODE_FAILURE:
  489. os_strlcpy(buf, "EAP Failure", sizeof(buf));
  490. eloop_terminate();
  491. break;
  492. default:
  493. os_strlcpy(buf, "unknown EAP code", sizeof(buf));
  494. wpa_hexdump(MSG_DEBUG, "Decapsulated EAP packet", eap, len);
  495. break;
  496. }
  497. wpa_printf(MSG_DEBUG, "decapsulated EAP packet (code=%d "
  498. "id=%d len=%d) from RADIUS server: %s",
  499. hdr->code, hdr->identifier, ntohs(hdr->length), buf);
  500. /* sta->eapol_sm->be_auth.idFromServer = hdr->identifier; */
  501. os_free(e->last_eap_radius);
  502. e->last_eap_radius = eap;
  503. e->last_eap_radius_len = len;
  504. {
  505. struct ieee802_1x_hdr *dot1x;
  506. dot1x = os_malloc(sizeof(*dot1x) + len);
  507. assert(dot1x != NULL);
  508. dot1x->version = EAPOL_VERSION;
  509. dot1x->type = IEEE802_1X_TYPE_EAP_PACKET;
  510. dot1x->length = htons(len);
  511. os_memcpy((u8 *) (dot1x + 1), eap, len);
  512. eapol_sm_rx_eapol(e->wpa_s->eapol, e->wpa_s->bssid,
  513. (u8 *) dot1x, sizeof(*dot1x) + len);
  514. os_free(dot1x);
  515. }
  516. }
  517. static void ieee802_1x_get_keys(struct eapol_test_data *e,
  518. struct radius_msg *msg, struct radius_msg *req,
  519. const u8 *shared_secret,
  520. size_t shared_secret_len)
  521. {
  522. struct radius_ms_mppe_keys *keys;
  523. keys = radius_msg_get_ms_keys(msg, req, shared_secret,
  524. shared_secret_len);
  525. if (keys && keys->send == NULL && keys->recv == NULL) {
  526. os_free(keys);
  527. keys = radius_msg_get_cisco_keys(msg, req, shared_secret,
  528. shared_secret_len);
  529. }
  530. if (keys) {
  531. if (keys->send) {
  532. wpa_hexdump(MSG_DEBUG, "MS-MPPE-Send-Key (sign)",
  533. keys->send, keys->send_len);
  534. }
  535. if (keys->recv) {
  536. wpa_hexdump(MSG_DEBUG, "MS-MPPE-Recv-Key (crypt)",
  537. keys->recv, keys->recv_len);
  538. e->authenticator_pmk_len =
  539. keys->recv_len > PMK_LEN ? PMK_LEN :
  540. keys->recv_len;
  541. os_memcpy(e->authenticator_pmk, keys->recv,
  542. e->authenticator_pmk_len);
  543. if (e->authenticator_pmk_len == 16 && keys->send &&
  544. keys->send_len == 16) {
  545. /* MS-CHAP-v2 derives 16 octet keys */
  546. wpa_printf(MSG_DEBUG, "Use MS-MPPE-Send-Key "
  547. "to extend PMK to 32 octets");
  548. os_memcpy(e->authenticator_pmk +
  549. e->authenticator_pmk_len,
  550. keys->send, keys->send_len);
  551. e->authenticator_pmk_len += keys->send_len;
  552. }
  553. }
  554. os_free(keys->send);
  555. os_free(keys->recv);
  556. os_free(keys);
  557. }
  558. }
  559. /* Process the RADIUS frames from Authentication Server */
  560. static RadiusRxResult
  561. ieee802_1x_receive_auth(struct radius_msg *msg, struct radius_msg *req,
  562. const u8 *shared_secret, size_t shared_secret_len,
  563. void *data)
  564. {
  565. struct eapol_test_data *e = data;
  566. /* RFC 2869, Ch. 5.13: valid Message-Authenticator attribute MUST be
  567. * present when packet contains an EAP-Message attribute */
  568. if (msg->hdr->code == RADIUS_CODE_ACCESS_REJECT &&
  569. radius_msg_get_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR, NULL,
  570. 0) < 0 &&
  571. radius_msg_get_attr(msg, RADIUS_ATTR_EAP_MESSAGE, NULL, 0) < 0) {
  572. wpa_printf(MSG_DEBUG, "Allowing RADIUS "
  573. "Access-Reject without Message-Authenticator "
  574. "since it does not include EAP-Message\n");
  575. } else if (radius_msg_verify(msg, shared_secret, shared_secret_len,
  576. req, 1)) {
  577. printf("Incoming RADIUS packet did not have correct "
  578. "Message-Authenticator - dropped\n");
  579. return RADIUS_RX_UNKNOWN;
  580. }
  581. if (msg->hdr->code != RADIUS_CODE_ACCESS_ACCEPT &&
  582. msg->hdr->code != RADIUS_CODE_ACCESS_REJECT &&
  583. msg->hdr->code != RADIUS_CODE_ACCESS_CHALLENGE) {
  584. printf("Unknown RADIUS message code\n");
  585. return RADIUS_RX_UNKNOWN;
  586. }
  587. e->radius_identifier = -1;
  588. wpa_printf(MSG_DEBUG, "RADIUS packet matching with station");
  589. radius_msg_free(e->last_recv_radius);
  590. e->last_recv_radius = msg;
  591. switch (msg->hdr->code) {
  592. case RADIUS_CODE_ACCESS_ACCEPT:
  593. e->radius_access_accept_received = 1;
  594. ieee802_1x_get_keys(e, msg, req, shared_secret,
  595. shared_secret_len);
  596. break;
  597. case RADIUS_CODE_ACCESS_REJECT:
  598. e->radius_access_reject_received = 1;
  599. break;
  600. }
  601. ieee802_1x_decapsulate_radius(e);
  602. if ((msg->hdr->code == RADIUS_CODE_ACCESS_ACCEPT &&
  603. e->eapol_test_num_reauths < 0) ||
  604. msg->hdr->code == RADIUS_CODE_ACCESS_REJECT) {
  605. eloop_terminate();
  606. }
  607. return RADIUS_RX_QUEUED;
  608. }
  609. static void wpa_init_conf(struct eapol_test_data *e,
  610. struct wpa_supplicant *wpa_s, const char *authsrv,
  611. int port, const char *secret,
  612. const char *cli_addr)
  613. {
  614. struct hostapd_radius_server *as;
  615. int res;
  616. wpa_s->bssid[5] = 1;
  617. os_memcpy(wpa_s->own_addr, e->own_addr, ETH_ALEN);
  618. e->own_ip_addr.s_addr = htonl((127 << 24) | 1);
  619. os_strlcpy(wpa_s->ifname, "test", sizeof(wpa_s->ifname));
  620. e->radius_conf = os_zalloc(sizeof(struct hostapd_radius_servers));
  621. assert(e->radius_conf != NULL);
  622. e->radius_conf->num_auth_servers = 1;
  623. as = os_zalloc(sizeof(struct hostapd_radius_server));
  624. assert(as != NULL);
  625. #if defined(CONFIG_NATIVE_WINDOWS) || defined(CONFIG_ANSI_C_EXTRA)
  626. {
  627. int a[4];
  628. u8 *pos;
  629. sscanf(authsrv, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]);
  630. pos = (u8 *) &as->addr.u.v4;
  631. *pos++ = a[0];
  632. *pos++ = a[1];
  633. *pos++ = a[2];
  634. *pos++ = a[3];
  635. }
  636. #else /* CONFIG_NATIVE_WINDOWS or CONFIG_ANSI_C_EXTRA */
  637. inet_aton(authsrv, &as->addr.u.v4);
  638. #endif /* CONFIG_NATIVE_WINDOWS or CONFIG_ANSI_C_EXTRA */
  639. as->addr.af = AF_INET;
  640. as->port = port;
  641. as->shared_secret = (u8 *) os_strdup(secret);
  642. as->shared_secret_len = os_strlen(secret);
  643. e->radius_conf->auth_server = as;
  644. e->radius_conf->auth_servers = as;
  645. e->radius_conf->msg_dumps = 1;
  646. if (cli_addr) {
  647. if (hostapd_parse_ip_addr(cli_addr,
  648. &e->radius_conf->client_addr) == 0)
  649. e->radius_conf->force_client_addr = 1;
  650. else {
  651. wpa_printf(MSG_ERROR, "Invalid IP address '%s'",
  652. cli_addr);
  653. assert(0);
  654. }
  655. }
  656. e->radius = radius_client_init(wpa_s, e->radius_conf);
  657. assert(e->radius != NULL);
  658. res = radius_client_register(e->radius, RADIUS_AUTH,
  659. ieee802_1x_receive_auth, e);
  660. assert(res == 0);
  661. }
  662. static int scard_test(void)
  663. {
  664. struct scard_data *scard;
  665. size_t len;
  666. char imsi[20];
  667. unsigned char _rand[16];
  668. #ifdef PCSC_FUNCS
  669. unsigned char sres[4];
  670. unsigned char kc[8];
  671. #endif /* PCSC_FUNCS */
  672. #define num_triplets 5
  673. unsigned char rand_[num_triplets][16];
  674. unsigned char sres_[num_triplets][4];
  675. unsigned char kc_[num_triplets][8];
  676. int i, res;
  677. size_t j;
  678. #define AKA_RAND_LEN 16
  679. #define AKA_AUTN_LEN 16
  680. #define AKA_AUTS_LEN 14
  681. #define RES_MAX_LEN 16
  682. #define IK_LEN 16
  683. #define CK_LEN 16
  684. unsigned char aka_rand[AKA_RAND_LEN];
  685. unsigned char aka_autn[AKA_AUTN_LEN];
  686. unsigned char aka_auts[AKA_AUTS_LEN];
  687. unsigned char aka_res[RES_MAX_LEN];
  688. size_t aka_res_len;
  689. unsigned char aka_ik[IK_LEN];
  690. unsigned char aka_ck[CK_LEN];
  691. scard = scard_init(SCARD_TRY_BOTH);
  692. if (scard == NULL)
  693. return -1;
  694. if (scard_set_pin(scard, "1234")) {
  695. wpa_printf(MSG_WARNING, "PIN validation failed");
  696. scard_deinit(scard);
  697. return -1;
  698. }
  699. len = sizeof(imsi);
  700. if (scard_get_imsi(scard, imsi, &len))
  701. goto failed;
  702. wpa_hexdump_ascii(MSG_DEBUG, "SCARD: IMSI", (u8 *) imsi, len);
  703. /* NOTE: Permanent Username: 1 | IMSI */
  704. os_memset(_rand, 0, sizeof(_rand));
  705. if (scard_gsm_auth(scard, _rand, sres, kc))
  706. goto failed;
  707. os_memset(_rand, 0xff, sizeof(_rand));
  708. if (scard_gsm_auth(scard, _rand, sres, kc))
  709. goto failed;
  710. for (i = 0; i < num_triplets; i++) {
  711. os_memset(rand_[i], i, sizeof(rand_[i]));
  712. if (scard_gsm_auth(scard, rand_[i], sres_[i], kc_[i]))
  713. goto failed;
  714. }
  715. for (i = 0; i < num_triplets; i++) {
  716. printf("1");
  717. for (j = 0; j < len; j++)
  718. printf("%c", imsi[j]);
  719. printf(",");
  720. for (j = 0; j < 16; j++)
  721. printf("%02X", rand_[i][j]);
  722. printf(",");
  723. for (j = 0; j < 4; j++)
  724. printf("%02X", sres_[i][j]);
  725. printf(",");
  726. for (j = 0; j < 8; j++)
  727. printf("%02X", kc_[i][j]);
  728. printf("\n");
  729. }
  730. wpa_printf(MSG_DEBUG, "Trying to use UMTS authentication");
  731. /* seq 39 (0x28) */
  732. os_memset(aka_rand, 0xaa, 16);
  733. os_memcpy(aka_autn, "\x86\x71\x31\xcb\xa2\xfc\x61\xdf"
  734. "\xa3\xb3\x97\x9d\x07\x32\xa2\x12", 16);
  735. res = scard_umts_auth(scard, aka_rand, aka_autn, aka_res, &aka_res_len,
  736. aka_ik, aka_ck, aka_auts);
  737. if (res == 0) {
  738. wpa_printf(MSG_DEBUG, "UMTS auth completed successfully");
  739. wpa_hexdump(MSG_DEBUG, "RES", aka_res, aka_res_len);
  740. wpa_hexdump(MSG_DEBUG, "IK", aka_ik, IK_LEN);
  741. wpa_hexdump(MSG_DEBUG, "CK", aka_ck, CK_LEN);
  742. } else if (res == -2) {
  743. wpa_printf(MSG_DEBUG, "UMTS auth resulted in synchronization "
  744. "failure");
  745. wpa_hexdump(MSG_DEBUG, "AUTS", aka_auts, AKA_AUTS_LEN);
  746. } else {
  747. wpa_printf(MSG_DEBUG, "UMTS auth failed");
  748. }
  749. failed:
  750. scard_deinit(scard);
  751. return 0;
  752. #undef num_triplets
  753. }
  754. static int scard_get_triplets(int argc, char *argv[])
  755. {
  756. struct scard_data *scard;
  757. size_t len;
  758. char imsi[20];
  759. unsigned char _rand[16];
  760. unsigned char sres[4];
  761. unsigned char kc[8];
  762. int num_triplets;
  763. int i;
  764. size_t j;
  765. if (argc < 2 || ((num_triplets = atoi(argv[1])) <= 0)) {
  766. printf("invalid parameters for sim command\n");
  767. return -1;
  768. }
  769. if (argc <= 2 || os_strcmp(argv[2], "debug") != 0) {
  770. /* disable debug output */
  771. wpa_debug_level = 99;
  772. }
  773. scard = scard_init(SCARD_GSM_SIM_ONLY);
  774. if (scard == NULL) {
  775. printf("Failed to open smartcard connection\n");
  776. return -1;
  777. }
  778. if (scard_set_pin(scard, argv[0])) {
  779. wpa_printf(MSG_WARNING, "PIN validation failed");
  780. scard_deinit(scard);
  781. return -1;
  782. }
  783. len = sizeof(imsi);
  784. if (scard_get_imsi(scard, imsi, &len)) {
  785. scard_deinit(scard);
  786. return -1;
  787. }
  788. for (i = 0; i < num_triplets; i++) {
  789. os_memset(_rand, i, sizeof(_rand));
  790. if (scard_gsm_auth(scard, _rand, sres, kc))
  791. break;
  792. /* IMSI:Kc:SRES:RAND */
  793. for (j = 0; j < len; j++)
  794. printf("%c", imsi[j]);
  795. printf(":");
  796. for (j = 0; j < 8; j++)
  797. printf("%02X", kc[j]);
  798. printf(":");
  799. for (j = 0; j < 4; j++)
  800. printf("%02X", sres[j]);
  801. printf(":");
  802. for (j = 0; j < 16; j++)
  803. printf("%02X", _rand[j]);
  804. printf("\n");
  805. }
  806. scard_deinit(scard);
  807. return 0;
  808. }
  809. static void eapol_test_terminate(int sig, void *eloop_ctx,
  810. void *signal_ctx)
  811. {
  812. struct wpa_supplicant *wpa_s = eloop_ctx;
  813. wpa_msg(wpa_s, MSG_INFO, "Signal %d received - terminating", sig);
  814. eloop_terminate();
  815. }
  816. static void usage(void)
  817. {
  818. printf("usage:\n"
  819. "eapol_test [-nWS] -c<conf> [-a<AS IP>] [-p<AS port>] "
  820. "[-s<AS secret>]\\\n"
  821. " [-r<count>] [-t<timeout>] [-C<Connect-Info>] \\\n"
  822. " [-M<client MAC address>] \\\n"
  823. " [-N<attr spec>] \\\n"
  824. " [-A<client IP>]\n"
  825. "eapol_test scard\n"
  826. "eapol_test sim <PIN> <num triplets> [debug]\n"
  827. "\n");
  828. printf("options:\n"
  829. " -c<conf> = configuration file\n"
  830. " -a<AS IP> = IP address of the authentication server, "
  831. "default 127.0.0.1\n"
  832. " -p<AS port> = UDP port of the authentication server, "
  833. "default 1812\n"
  834. " -s<AS secret> = shared secret with the authentication "
  835. "server, default 'radius'\n"
  836. " -A<client IP> = IP address of the client, default: select "
  837. "automatically\n"
  838. " -r<count> = number of re-authentications\n"
  839. " -W = wait for a control interface monitor before starting\n"
  840. " -S = save configuration after authentication\n"
  841. " -n = no MPPE keys expected\n"
  842. " -t<timeout> = sets timeout in seconds (default: 30 s)\n"
  843. " -C<Connect-Info> = RADIUS Connect-Info (default: "
  844. "CONNECT 11Mbps 802.11b)\n"
  845. " -M<client MAC address> = Set own MAC address "
  846. "(Calling-Station-Id,\n"
  847. " default: 02:00:00:00:00:01)\n"
  848. " -N<attr spec> = send arbitrary attribute specified by:\n"
  849. " attr_id:syntax:value or attr_id\n"
  850. " attr_id - number id of the attribute\n"
  851. " syntax - one of: s, d, x\n"
  852. " s = string\n"
  853. " d = integer\n"
  854. " x = octet string\n"
  855. " value - attribute value.\n"
  856. " When only attr_id is specified, NULL will be used as "
  857. "value.\n"
  858. " Multiple attributes can be specified by using the "
  859. "option several times.\n");
  860. }
  861. int main(int argc, char *argv[])
  862. {
  863. struct wpa_supplicant wpa_s;
  864. int c, ret = 1, wait_for_monitor = 0, save_config = 0;
  865. char *as_addr = "127.0.0.1";
  866. int as_port = 1812;
  867. char *as_secret = "radius";
  868. char *cli_addr = NULL;
  869. char *conf = NULL;
  870. int timeout = 30;
  871. char *pos;
  872. struct extra_radius_attr *p = NULL, *p1;
  873. if (os_program_init())
  874. return -1;
  875. hostapd_logger_register_cb(hostapd_logger_cb);
  876. os_memset(&eapol_test, 0, sizeof(eapol_test));
  877. eapol_test.connect_info = "CONNECT 11Mbps 802.11b";
  878. os_memcpy(eapol_test.own_addr, "\x02\x00\x00\x00\x00\x01", ETH_ALEN);
  879. wpa_debug_level = 0;
  880. wpa_debug_show_keys = 1;
  881. for (;;) {
  882. c = getopt(argc, argv, "a:A:c:C:M:nN:p:r:s:St:W");
  883. if (c < 0)
  884. break;
  885. switch (c) {
  886. case 'a':
  887. as_addr = optarg;
  888. break;
  889. case 'A':
  890. cli_addr = optarg;
  891. break;
  892. case 'c':
  893. conf = optarg;
  894. break;
  895. case 'C':
  896. eapol_test.connect_info = optarg;
  897. break;
  898. case 'M':
  899. if (hwaddr_aton(optarg, eapol_test.own_addr)) {
  900. usage();
  901. return -1;
  902. }
  903. break;
  904. case 'n':
  905. eapol_test.no_mppe_keys++;
  906. break;
  907. case 'p':
  908. as_port = atoi(optarg);
  909. break;
  910. case 'r':
  911. eapol_test.eapol_test_num_reauths = atoi(optarg);
  912. break;
  913. case 's':
  914. as_secret = optarg;
  915. break;
  916. case 'S':
  917. save_config++;
  918. break;
  919. case 't':
  920. timeout = atoi(optarg);
  921. break;
  922. case 'W':
  923. wait_for_monitor++;
  924. break;
  925. case 'N':
  926. p1 = os_zalloc(sizeof(p1));
  927. if (p1 == NULL)
  928. break;
  929. if (!p)
  930. eapol_test.extra_attrs = p1;
  931. else
  932. p->next = p1;
  933. p = p1;
  934. p->type = atoi(optarg);
  935. pos = os_strchr(optarg, ':');
  936. if (pos == NULL) {
  937. p->syntax = 'n';
  938. p->data = NULL;
  939. break;
  940. }
  941. pos++;
  942. if (pos[0] == '\0' || pos[1] != ':') {
  943. printf("Incorrect format of attribute "
  944. "specification\n");
  945. break;
  946. }
  947. p->syntax = pos[0];
  948. p->data = pos + 2;
  949. break;
  950. default:
  951. usage();
  952. return -1;
  953. }
  954. }
  955. if (argc > optind && os_strcmp(argv[optind], "scard") == 0) {
  956. return scard_test();
  957. }
  958. if (argc > optind && os_strcmp(argv[optind], "sim") == 0) {
  959. return scard_get_triplets(argc - optind - 1,
  960. &argv[optind + 1]);
  961. }
  962. if (conf == NULL) {
  963. usage();
  964. printf("Configuration file is required.\n");
  965. return -1;
  966. }
  967. if (eap_register_methods()) {
  968. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  969. return -1;
  970. }
  971. if (eloop_init(&wpa_s)) {
  972. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  973. return -1;
  974. }
  975. os_memset(&wpa_s, 0, sizeof(wpa_s));
  976. eapol_test.wpa_s = &wpa_s;
  977. wpa_s.conf = wpa_config_read(conf);
  978. if (wpa_s.conf == NULL) {
  979. printf("Failed to parse configuration file '%s'.\n", conf);
  980. return -1;
  981. }
  982. if (wpa_s.conf->ssid == NULL) {
  983. printf("No networks defined.\n");
  984. return -1;
  985. }
  986. wpa_init_conf(&eapol_test, &wpa_s, as_addr, as_port, as_secret,
  987. cli_addr);
  988. wpa_s.ctrl_iface = wpa_supplicant_ctrl_iface_init(&wpa_s);
  989. if (wpa_s.ctrl_iface == NULL) {
  990. printf("Failed to initialize control interface '%s'.\n"
  991. "You may have another eapol_test process already "
  992. "running or the file was\n"
  993. "left by an unclean termination of eapol_test in "
  994. "which case you will need\n"
  995. "to manually remove this file before starting "
  996. "eapol_test again.\n",
  997. wpa_s.conf->ctrl_interface);
  998. return -1;
  999. }
  1000. if (wpa_supplicant_scard_init(&wpa_s, wpa_s.conf->ssid))
  1001. return -1;
  1002. if (test_eapol(&eapol_test, &wpa_s, wpa_s.conf->ssid))
  1003. return -1;
  1004. if (wait_for_monitor)
  1005. wpa_supplicant_ctrl_iface_wait(wpa_s.ctrl_iface);
  1006. eloop_register_timeout(timeout, 0, eapol_test_timeout, &eapol_test,
  1007. NULL);
  1008. eloop_register_timeout(0, 0, send_eap_request_identity, &wpa_s, NULL);
  1009. eloop_register_signal_terminate(eapol_test_terminate, NULL);
  1010. eloop_register_signal_reconfig(eapol_test_terminate, NULL);
  1011. eloop_run();
  1012. eloop_cancel_timeout(eapol_test_timeout, &eapol_test, NULL);
  1013. eloop_cancel_timeout(eapol_sm_reauth, &eapol_test, NULL);
  1014. if (eapol_test_compare_pmk(&eapol_test) == 0 ||
  1015. eapol_test.no_mppe_keys)
  1016. ret = 0;
  1017. if (eapol_test.auth_timed_out)
  1018. ret = -2;
  1019. if (eapol_test.radius_access_reject_received)
  1020. ret = -3;
  1021. if (save_config)
  1022. wpa_config_write(conf, wpa_s.conf);
  1023. test_eapol_clean(&eapol_test, &wpa_s);
  1024. eap_peer_unregister_methods();
  1025. eloop_destroy();
  1026. printf("MPPE keys OK: %d mismatch: %d\n",
  1027. eapol_test.num_mppe_ok, eapol_test.num_mppe_mismatch);
  1028. if (eapol_test.num_mppe_mismatch)
  1029. ret = -4;
  1030. if (ret)
  1031. printf("FAILURE\n");
  1032. else
  1033. printf("SUCCESS\n");
  1034. os_program_deinit();
  1035. return ret;
  1036. }