hlr_auc_gw.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799
  1. /*
  2. * HLR/AuC testing gateway for hostapd EAP-SIM/AKA database/authenticator
  3. * Copyright (c) 2005-2007, 2012, 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. * This is an example implementation of the EAP-SIM/AKA database/authentication
  9. * gateway interface to HLR/AuC. It is expected to be replaced with an
  10. * implementation of SS7 gateway to GSM/UMTS authentication center (HLR/AuC) or
  11. * a local implementation of SIM triplet and AKA authentication data generator.
  12. *
  13. * hostapd will send SIM/AKA authentication queries over a UNIX domain socket
  14. * to and external program, e.g., this hlr_auc_gw. This interface uses simple
  15. * text-based format:
  16. *
  17. * EAP-SIM / GSM triplet query/response:
  18. * SIM-REQ-AUTH <IMSI> <max_chal>
  19. * SIM-RESP-AUTH <IMSI> Kc1:SRES1:RAND1 Kc2:SRES2:RAND2 [Kc3:SRES3:RAND3]
  20. * SIM-RESP-AUTH <IMSI> FAILURE
  21. *
  22. * EAP-AKA / UMTS query/response:
  23. * AKA-REQ-AUTH <IMSI>
  24. * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES>
  25. * AKA-RESP-AUTH <IMSI> FAILURE
  26. *
  27. * EAP-AKA / UMTS AUTS (re-synchronization):
  28. * AKA-AUTS <IMSI> <AUTS> <RAND>
  29. *
  30. * IMSI and max_chal are sent as an ASCII string,
  31. * Kc/SRES/RAND/AUTN/IK/CK/RES/AUTS as hex strings.
  32. *
  33. * The example implementation here reads GSM authentication triplets from a
  34. * text file in IMSI:Kc:SRES:RAND format, IMSI in ASCII, other fields as hex
  35. * strings. This is used to simulate an HLR/AuC. As such, it is not very useful
  36. * for real life authentication, but it is useful both as an example
  37. * implementation and for EAP-SIM testing.
  38. */
  39. #include "includes.h"
  40. #include <sys/un.h>
  41. #include "common.h"
  42. #include "crypto/milenage.h"
  43. #include "crypto/random.h"
  44. static const char *default_socket_path = "/tmp/hlr_auc_gw.sock";
  45. static const char *socket_path;
  46. static int serv_sock = -1;
  47. static char *milenage_file = NULL;
  48. static int update_milenage = 0;
  49. static int sqn_changes = 0;
  50. /* GSM triplets */
  51. struct gsm_triplet {
  52. struct gsm_triplet *next;
  53. char imsi[20];
  54. u8 kc[8];
  55. u8 sres[4];
  56. u8 _rand[16];
  57. };
  58. static struct gsm_triplet *gsm_db = NULL, *gsm_db_pos = NULL;
  59. /* OPc and AMF parameters for Milenage (Example algorithms for AKA). */
  60. struct milenage_parameters {
  61. struct milenage_parameters *next;
  62. char imsi[20];
  63. u8 ki[16];
  64. u8 opc[16];
  65. u8 amf[2];
  66. u8 sqn[6];
  67. };
  68. static struct milenage_parameters *milenage_db = NULL;
  69. #define EAP_SIM_MAX_CHAL 3
  70. #define EAP_AKA_RAND_LEN 16
  71. #define EAP_AKA_AUTN_LEN 16
  72. #define EAP_AKA_AUTS_LEN 14
  73. #define EAP_AKA_RES_MAX_LEN 16
  74. #define EAP_AKA_IK_LEN 16
  75. #define EAP_AKA_CK_LEN 16
  76. static int open_socket(const char *path)
  77. {
  78. struct sockaddr_un addr;
  79. int s;
  80. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  81. if (s < 0) {
  82. perror("socket(PF_UNIX)");
  83. return -1;
  84. }
  85. memset(&addr, 0, sizeof(addr));
  86. addr.sun_family = AF_UNIX;
  87. os_strlcpy(addr.sun_path, path, sizeof(addr.sun_path));
  88. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  89. perror("hlr-auc-gw: bind(PF_UNIX)");
  90. close(s);
  91. return -1;
  92. }
  93. return s;
  94. }
  95. static int read_gsm_triplets(const char *fname)
  96. {
  97. FILE *f;
  98. char buf[200], *pos, *pos2;
  99. struct gsm_triplet *g = NULL;
  100. int line, ret = 0;
  101. if (fname == NULL)
  102. return -1;
  103. f = fopen(fname, "r");
  104. if (f == NULL) {
  105. printf("Could not open GSM tripler data file '%s'\n", fname);
  106. return -1;
  107. }
  108. line = 0;
  109. while (fgets(buf, sizeof(buf), f)) {
  110. line++;
  111. /* Parse IMSI:Kc:SRES:RAND */
  112. buf[sizeof(buf) - 1] = '\0';
  113. if (buf[0] == '#')
  114. continue;
  115. pos = buf;
  116. while (*pos != '\0' && *pos != '\n')
  117. pos++;
  118. if (*pos == '\n')
  119. *pos = '\0';
  120. pos = buf;
  121. if (*pos == '\0')
  122. continue;
  123. g = os_zalloc(sizeof(*g));
  124. if (g == NULL) {
  125. ret = -1;
  126. break;
  127. }
  128. /* IMSI */
  129. pos2 = strchr(pos, ':');
  130. if (pos2 == NULL) {
  131. printf("%s:%d - Invalid IMSI (%s)\n",
  132. fname, line, pos);
  133. ret = -1;
  134. break;
  135. }
  136. *pos2 = '\0';
  137. if (strlen(pos) >= sizeof(g->imsi)) {
  138. printf("%s:%d - Too long IMSI (%s)\n",
  139. fname, line, pos);
  140. ret = -1;
  141. break;
  142. }
  143. os_strlcpy(g->imsi, pos, sizeof(g->imsi));
  144. pos = pos2 + 1;
  145. /* Kc */
  146. pos2 = strchr(pos, ':');
  147. if (pos2 == NULL) {
  148. printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
  149. ret = -1;
  150. break;
  151. }
  152. *pos2 = '\0';
  153. if (strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) {
  154. printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
  155. ret = -1;
  156. break;
  157. }
  158. pos = pos2 + 1;
  159. /* SRES */
  160. pos2 = strchr(pos, ':');
  161. if (pos2 == NULL) {
  162. printf("%s:%d - Invalid SRES (%s)\n", fname, line,
  163. pos);
  164. ret = -1;
  165. break;
  166. }
  167. *pos2 = '\0';
  168. if (strlen(pos) != 8 || hexstr2bin(pos, g->sres, 4)) {
  169. printf("%s:%d - Invalid SRES (%s)\n", fname, line,
  170. pos);
  171. ret = -1;
  172. break;
  173. }
  174. pos = pos2 + 1;
  175. /* RAND */
  176. pos2 = strchr(pos, ':');
  177. if (pos2)
  178. *pos2 = '\0';
  179. if (strlen(pos) != 32 || hexstr2bin(pos, g->_rand, 16)) {
  180. printf("%s:%d - Invalid RAND (%s)\n", fname, line,
  181. pos);
  182. ret = -1;
  183. break;
  184. }
  185. pos = pos2 + 1;
  186. g->next = gsm_db;
  187. gsm_db = g;
  188. g = NULL;
  189. }
  190. os_free(g);
  191. fclose(f);
  192. return ret;
  193. }
  194. static struct gsm_triplet * get_gsm_triplet(const char *imsi)
  195. {
  196. struct gsm_triplet *g = gsm_db_pos;
  197. while (g) {
  198. if (strcmp(g->imsi, imsi) == 0) {
  199. gsm_db_pos = g->next;
  200. return g;
  201. }
  202. g = g->next;
  203. }
  204. g = gsm_db;
  205. while (g && g != gsm_db_pos) {
  206. if (strcmp(g->imsi, imsi) == 0) {
  207. gsm_db_pos = g->next;
  208. return g;
  209. }
  210. g = g->next;
  211. }
  212. return NULL;
  213. }
  214. static int read_milenage(const char *fname)
  215. {
  216. FILE *f;
  217. char buf[200], *pos, *pos2;
  218. struct milenage_parameters *m = NULL;
  219. int line, ret = 0;
  220. if (fname == NULL)
  221. return -1;
  222. f = fopen(fname, "r");
  223. if (f == NULL) {
  224. printf("Could not open Milenage data file '%s'\n", fname);
  225. return -1;
  226. }
  227. line = 0;
  228. while (fgets(buf, sizeof(buf), f)) {
  229. line++;
  230. /* Parse IMSI Ki OPc AMF SQN */
  231. buf[sizeof(buf) - 1] = '\0';
  232. if (buf[0] == '#')
  233. continue;
  234. pos = buf;
  235. while (*pos != '\0' && *pos != '\n')
  236. pos++;
  237. if (*pos == '\n')
  238. *pos = '\0';
  239. pos = buf;
  240. if (*pos == '\0')
  241. continue;
  242. m = os_zalloc(sizeof(*m));
  243. if (m == NULL) {
  244. ret = -1;
  245. break;
  246. }
  247. /* IMSI */
  248. pos2 = strchr(pos, ' ');
  249. if (pos2 == NULL) {
  250. printf("%s:%d - Invalid IMSI (%s)\n",
  251. fname, line, pos);
  252. ret = -1;
  253. break;
  254. }
  255. *pos2 = '\0';
  256. if (strlen(pos) >= sizeof(m->imsi)) {
  257. printf("%s:%d - Too long IMSI (%s)\n",
  258. fname, line, pos);
  259. ret = -1;
  260. break;
  261. }
  262. os_strlcpy(m->imsi, pos, sizeof(m->imsi));
  263. pos = pos2 + 1;
  264. /* Ki */
  265. pos2 = strchr(pos, ' ');
  266. if (pos2 == NULL) {
  267. printf("%s:%d - Invalid Ki (%s)\n", fname, line, pos);
  268. ret = -1;
  269. break;
  270. }
  271. *pos2 = '\0';
  272. if (strlen(pos) != 32 || hexstr2bin(pos, m->ki, 16)) {
  273. printf("%s:%d - Invalid Ki (%s)\n", fname, line, pos);
  274. ret = -1;
  275. break;
  276. }
  277. pos = pos2 + 1;
  278. /* OPc */
  279. pos2 = strchr(pos, ' ');
  280. if (pos2 == NULL) {
  281. printf("%s:%d - Invalid OPc (%s)\n", fname, line, pos);
  282. ret = -1;
  283. break;
  284. }
  285. *pos2 = '\0';
  286. if (strlen(pos) != 32 || hexstr2bin(pos, m->opc, 16)) {
  287. printf("%s:%d - Invalid OPc (%s)\n", fname, line, pos);
  288. ret = -1;
  289. break;
  290. }
  291. pos = pos2 + 1;
  292. /* AMF */
  293. pos2 = strchr(pos, ' ');
  294. if (pos2 == NULL) {
  295. printf("%s:%d - Invalid AMF (%s)\n", fname, line, pos);
  296. ret = -1;
  297. break;
  298. }
  299. *pos2 = '\0';
  300. if (strlen(pos) != 4 || hexstr2bin(pos, m->amf, 2)) {
  301. printf("%s:%d - Invalid AMF (%s)\n", fname, line, pos);
  302. ret = -1;
  303. break;
  304. }
  305. pos = pos2 + 1;
  306. /* SQN */
  307. pos2 = strchr(pos, ' ');
  308. if (pos2)
  309. *pos2 = '\0';
  310. if (strlen(pos) != 12 || hexstr2bin(pos, m->sqn, 6)) {
  311. printf("%s:%d - Invalid SEQ (%s)\n", fname, line, pos);
  312. ret = -1;
  313. break;
  314. }
  315. pos = pos2 + 1;
  316. m->next = milenage_db;
  317. milenage_db = m;
  318. m = NULL;
  319. }
  320. os_free(m);
  321. fclose(f);
  322. return ret;
  323. }
  324. static void update_milenage_file(const char *fname)
  325. {
  326. FILE *f, *f2;
  327. char buf[500], *pos;
  328. char *end = buf + sizeof(buf);
  329. struct milenage_parameters *m;
  330. size_t imsi_len;
  331. f = fopen(fname, "r");
  332. if (f == NULL) {
  333. printf("Could not open Milenage data file '%s'\n", fname);
  334. return;
  335. }
  336. snprintf(buf, sizeof(buf), "%s.new", fname);
  337. f2 = fopen(buf, "w");
  338. if (f2 == NULL) {
  339. printf("Could not write Milenage data file '%s'\n", buf);
  340. fclose(f);
  341. return;
  342. }
  343. while (fgets(buf, sizeof(buf), f)) {
  344. /* IMSI Ki OPc AMF SQN */
  345. buf[sizeof(buf) - 1] = '\0';
  346. pos = strchr(buf, ' ');
  347. if (buf[0] == '#' || pos == NULL || pos - buf >= 20)
  348. goto no_update;
  349. imsi_len = pos - buf;
  350. for (m = milenage_db; m; m = m->next) {
  351. if (strncmp(buf, m->imsi, imsi_len) == 0 &&
  352. m->imsi[imsi_len] == '\0')
  353. break;
  354. }
  355. if (!m)
  356. goto no_update;
  357. pos = buf;
  358. pos += snprintf(pos, end - pos, "%s ", m->imsi);
  359. pos += wpa_snprintf_hex(pos, end - pos, m->ki, 16);
  360. *pos++ = ' ';
  361. pos += wpa_snprintf_hex(pos, end - pos, m->opc, 16);
  362. *pos++ = ' ';
  363. pos += wpa_snprintf_hex(pos, end - pos, m->amf, 2);
  364. *pos++ = ' ';
  365. pos += wpa_snprintf_hex(pos, end - pos, m->sqn, 6);
  366. *pos++ = '\n';
  367. no_update:
  368. fprintf(f2, "%s", buf);
  369. }
  370. fclose(f2);
  371. fclose(f);
  372. snprintf(buf, sizeof(buf), "%s.bak", fname);
  373. if (rename(fname, buf) < 0) {
  374. perror("rename");
  375. return;
  376. }
  377. snprintf(buf, sizeof(buf), "%s.new", fname);
  378. if (rename(buf, fname) < 0) {
  379. perror("rename");
  380. return;
  381. }
  382. }
  383. static struct milenage_parameters * get_milenage(const char *imsi)
  384. {
  385. struct milenage_parameters *m = milenage_db;
  386. while (m) {
  387. if (strcmp(m->imsi, imsi) == 0)
  388. break;
  389. m = m->next;
  390. }
  391. return m;
  392. }
  393. static void sim_req_auth(int s, struct sockaddr_un *from, socklen_t fromlen,
  394. char *imsi)
  395. {
  396. int count, max_chal, ret;
  397. char *pos;
  398. char reply[1000], *rpos, *rend;
  399. struct milenage_parameters *m;
  400. struct gsm_triplet *g;
  401. reply[0] = '\0';
  402. pos = strchr(imsi, ' ');
  403. if (pos) {
  404. *pos++ = '\0';
  405. max_chal = atoi(pos);
  406. if (max_chal < 1 || max_chal < EAP_SIM_MAX_CHAL)
  407. max_chal = EAP_SIM_MAX_CHAL;
  408. } else
  409. max_chal = EAP_SIM_MAX_CHAL;
  410. rend = &reply[sizeof(reply)];
  411. rpos = reply;
  412. ret = snprintf(rpos, rend - rpos, "SIM-RESP-AUTH %s", imsi);
  413. if (ret < 0 || ret >= rend - rpos)
  414. return;
  415. rpos += ret;
  416. m = get_milenage(imsi);
  417. if (m) {
  418. u8 _rand[16], sres[4], kc[8];
  419. for (count = 0; count < max_chal; count++) {
  420. if (random_get_bytes(_rand, 16) < 0)
  421. return;
  422. gsm_milenage(m->opc, m->ki, _rand, sres, kc);
  423. *rpos++ = ' ';
  424. rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8);
  425. *rpos++ = ':';
  426. rpos += wpa_snprintf_hex(rpos, rend - rpos, sres, 4);
  427. *rpos++ = ':';
  428. rpos += wpa_snprintf_hex(rpos, rend - rpos, _rand, 16);
  429. }
  430. *rpos = '\0';
  431. goto send;
  432. }
  433. count = 0;
  434. while (count < max_chal && (g = get_gsm_triplet(imsi))) {
  435. if (strcmp(g->imsi, imsi) != 0)
  436. continue;
  437. if (rpos < rend)
  438. *rpos++ = ' ';
  439. rpos += wpa_snprintf_hex(rpos, rend - rpos, g->kc, 8);
  440. if (rpos < rend)
  441. *rpos++ = ':';
  442. rpos += wpa_snprintf_hex(rpos, rend - rpos, g->sres, 4);
  443. if (rpos < rend)
  444. *rpos++ = ':';
  445. rpos += wpa_snprintf_hex(rpos, rend - rpos, g->_rand, 16);
  446. count++;
  447. }
  448. if (count == 0) {
  449. printf("No GSM triplets found for %s\n", imsi);
  450. ret = snprintf(rpos, rend - rpos, " FAILURE");
  451. if (ret < 0 || ret >= rend - rpos)
  452. return;
  453. rpos += ret;
  454. }
  455. send:
  456. printf("Send: %s\n", reply);
  457. if (sendto(s, reply, rpos - reply, 0,
  458. (struct sockaddr *) from, fromlen) < 0)
  459. perror("send");
  460. }
  461. static void aka_req_auth(int s, struct sockaddr_un *from, socklen_t fromlen,
  462. char *imsi)
  463. {
  464. /* AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES> */
  465. char reply[1000], *pos, *end;
  466. u8 _rand[EAP_AKA_RAND_LEN];
  467. u8 autn[EAP_AKA_AUTN_LEN];
  468. u8 ik[EAP_AKA_IK_LEN];
  469. u8 ck[EAP_AKA_CK_LEN];
  470. u8 res[EAP_AKA_RES_MAX_LEN];
  471. size_t res_len;
  472. int ret;
  473. struct milenage_parameters *m;
  474. m = get_milenage(imsi);
  475. if (m) {
  476. if (random_get_bytes(_rand, EAP_AKA_RAND_LEN) < 0)
  477. return;
  478. res_len = EAP_AKA_RES_MAX_LEN;
  479. inc_byte_array(m->sqn, 6);
  480. sqn_changes = 1;
  481. printf("AKA: Milenage with SQN=%02x%02x%02x%02x%02x%02x\n",
  482. m->sqn[0], m->sqn[1], m->sqn[2],
  483. m->sqn[3], m->sqn[4], m->sqn[5]);
  484. milenage_generate(m->opc, m->amf, m->ki, m->sqn, _rand,
  485. autn, ik, ck, res, &res_len);
  486. } else {
  487. printf("Unknown IMSI: %s\n", imsi);
  488. #ifdef AKA_USE_FIXED_TEST_VALUES
  489. printf("Using fixed test values for AKA\n");
  490. memset(_rand, '0', EAP_AKA_RAND_LEN);
  491. memset(autn, '1', EAP_AKA_AUTN_LEN);
  492. memset(ik, '3', EAP_AKA_IK_LEN);
  493. memset(ck, '4', EAP_AKA_CK_LEN);
  494. memset(res, '2', EAP_AKA_RES_MAX_LEN);
  495. res_len = EAP_AKA_RES_MAX_LEN;
  496. #else /* AKA_USE_FIXED_TEST_VALUES */
  497. return;
  498. #endif /* AKA_USE_FIXED_TEST_VALUES */
  499. }
  500. pos = reply;
  501. end = &reply[sizeof(reply)];
  502. ret = snprintf(pos, end - pos, "AKA-RESP-AUTH %s ", imsi);
  503. if (ret < 0 || ret >= end - pos)
  504. return;
  505. pos += ret;
  506. pos += wpa_snprintf_hex(pos, end - pos, _rand, EAP_AKA_RAND_LEN);
  507. *pos++ = ' ';
  508. pos += wpa_snprintf_hex(pos, end - pos, autn, EAP_AKA_AUTN_LEN);
  509. *pos++ = ' ';
  510. pos += wpa_snprintf_hex(pos, end - pos, ik, EAP_AKA_IK_LEN);
  511. *pos++ = ' ';
  512. pos += wpa_snprintf_hex(pos, end - pos, ck, EAP_AKA_CK_LEN);
  513. *pos++ = ' ';
  514. pos += wpa_snprintf_hex(pos, end - pos, res, res_len);
  515. printf("Send: %s\n", reply);
  516. if (sendto(s, reply, pos - reply, 0, (struct sockaddr *) from,
  517. fromlen) < 0)
  518. perror("send");
  519. }
  520. static void aka_auts(int s, struct sockaddr_un *from, socklen_t fromlen,
  521. char *imsi)
  522. {
  523. char *auts, *__rand;
  524. u8 _auts[EAP_AKA_AUTS_LEN], _rand[EAP_AKA_RAND_LEN], sqn[6];
  525. struct milenage_parameters *m;
  526. /* AKA-AUTS <IMSI> <AUTS> <RAND> */
  527. auts = strchr(imsi, ' ');
  528. if (auts == NULL)
  529. return;
  530. *auts++ = '\0';
  531. __rand = strchr(auts, ' ');
  532. if (__rand == NULL)
  533. return;
  534. *__rand++ = '\0';
  535. printf("AKA-AUTS: IMSI=%s AUTS=%s RAND=%s\n", imsi, auts, __rand);
  536. if (hexstr2bin(auts, _auts, EAP_AKA_AUTS_LEN) ||
  537. hexstr2bin(__rand, _rand, EAP_AKA_RAND_LEN)) {
  538. printf("Could not parse AUTS/RAND\n");
  539. return;
  540. }
  541. m = get_milenage(imsi);
  542. if (m == NULL) {
  543. printf("Unknown IMSI: %s\n", imsi);
  544. return;
  545. }
  546. if (milenage_auts(m->opc, m->ki, _rand, _auts, sqn)) {
  547. printf("AKA-AUTS: Incorrect MAC-S\n");
  548. } else {
  549. memcpy(m->sqn, sqn, 6);
  550. printf("AKA-AUTS: Re-synchronized: "
  551. "SQN=%02x%02x%02x%02x%02x%02x\n",
  552. sqn[0], sqn[1], sqn[2], sqn[3], sqn[4], sqn[5]);
  553. sqn_changes = 1;
  554. }
  555. }
  556. static int process(int s)
  557. {
  558. char buf[1000];
  559. struct sockaddr_un from;
  560. socklen_t fromlen;
  561. ssize_t res;
  562. fromlen = sizeof(from);
  563. res = recvfrom(s, buf, sizeof(buf), 0, (struct sockaddr *) &from,
  564. &fromlen);
  565. if (res < 0) {
  566. perror("recvfrom");
  567. return -1;
  568. }
  569. if (res == 0)
  570. return 0;
  571. if ((size_t) res >= sizeof(buf))
  572. res = sizeof(buf) - 1;
  573. buf[res] = '\0';
  574. printf("Received: %s\n", buf);
  575. if (strncmp(buf, "SIM-REQ-AUTH ", 13) == 0)
  576. sim_req_auth(s, &from, fromlen, buf + 13);
  577. else if (strncmp(buf, "AKA-REQ-AUTH ", 13) == 0)
  578. aka_req_auth(s, &from, fromlen, buf + 13);
  579. else if (strncmp(buf, "AKA-AUTS ", 9) == 0)
  580. aka_auts(s, &from, fromlen, buf + 9);
  581. else
  582. printf("Unknown request: %s\n", buf);
  583. return 0;
  584. }
  585. static void cleanup(void)
  586. {
  587. struct gsm_triplet *g, *gprev;
  588. struct milenage_parameters *m, *prev;
  589. if (update_milenage && milenage_file && sqn_changes)
  590. update_milenage_file(milenage_file);
  591. g = gsm_db;
  592. while (g) {
  593. gprev = g;
  594. g = g->next;
  595. os_free(gprev);
  596. }
  597. m = milenage_db;
  598. while (m) {
  599. prev = m;
  600. m = m->next;
  601. os_free(prev);
  602. }
  603. close(serv_sock);
  604. unlink(socket_path);
  605. }
  606. static void handle_term(int sig)
  607. {
  608. printf("Signal %d - terminate\n", sig);
  609. exit(0);
  610. }
  611. static void usage(void)
  612. {
  613. printf("HLR/AuC testing gateway for hostapd EAP-SIM/AKA "
  614. "database/authenticator\n"
  615. "Copyright (c) 2005-2007, 2012, Jouni Malinen <j@w1.fi>\n"
  616. "\n"
  617. "usage:\n"
  618. "hlr_auc_gw [-hu] [-s<socket path>] [-g<triplet file>] "
  619. "[-m<milenage file>]\n"
  620. "\n"
  621. "options:\n"
  622. " -h = show this usage help\n"
  623. " -u = update SQN in Milenage file on exit\n"
  624. " -s<socket path> = path for UNIX domain socket\n"
  625. " (default: %s)\n"
  626. " -g<triplet file> = path for GSM authentication triplets\n"
  627. " -m<milenage file> = path for Milenage keys\n",
  628. default_socket_path);
  629. }
  630. int main(int argc, char *argv[])
  631. {
  632. int c;
  633. char *gsm_triplet_file = NULL;
  634. if (os_program_init())
  635. return -1;
  636. socket_path = default_socket_path;
  637. for (;;) {
  638. c = getopt(argc, argv, "g:hm:s:u");
  639. if (c < 0)
  640. break;
  641. switch (c) {
  642. case 'g':
  643. gsm_triplet_file = optarg;
  644. break;
  645. case 'h':
  646. usage();
  647. return 0;
  648. case 'm':
  649. milenage_file = optarg;
  650. break;
  651. case 's':
  652. socket_path = optarg;
  653. break;
  654. case 'u':
  655. update_milenage = 1;
  656. break;
  657. default:
  658. usage();
  659. return -1;
  660. }
  661. }
  662. if (gsm_triplet_file && read_gsm_triplets(gsm_triplet_file) < 0)
  663. return -1;
  664. if (milenage_file && read_milenage(milenage_file) < 0)
  665. return -1;
  666. serv_sock = open_socket(socket_path);
  667. if (serv_sock < 0)
  668. return -1;
  669. printf("Listening for requests on %s\n", socket_path);
  670. atexit(cleanup);
  671. signal(SIGTERM, handle_term);
  672. signal(SIGINT, handle_term);
  673. for (;;)
  674. process(serv_sock);
  675. os_program_deinit();
  676. return 0;
  677. }