hlr_auc_gw.c 15 KB

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