eapol_test.c 35 KB

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