hlr_auc_gw.c 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085
  1. /*
  2. * HLR/AuC testing gateway for hostapd EAP-SIM/AKA database/authenticator
  3. * Copyright (c) 2005-2007, 2012-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. * 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. * An 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/AKA/AKA' testing.
  38. *
  39. * For a stronger example design, Milenage and GSM-Milenage algorithms can be
  40. * used to dynamically generate authenticatipn information for EAP-AKA/AKA' and
  41. * EAP-SIM, respectively, if Ki is known.
  42. *
  43. * SQN generation follows the not time-based Profile 2 described in
  44. * 3GPP TS 33.102 Annex C.3.2. The length of IND is 5 bits by default, but this
  45. * can be changed with a command line options if needed.
  46. */
  47. #include "includes.h"
  48. #include <sys/un.h>
  49. #ifdef CONFIG_SQLITE
  50. #include <sqlite3.h>
  51. #endif /* CONFIG_SQLITE */
  52. #include "common.h"
  53. #include "crypto/milenage.h"
  54. #include "crypto/random.h"
  55. static const char *default_socket_path = "/tmp/hlr_auc_gw.sock";
  56. static const char *socket_path;
  57. static int serv_sock = -1;
  58. static char *milenage_file = NULL;
  59. static int update_milenage = 0;
  60. static int sqn_changes = 0;
  61. static int ind_len = 5;
  62. static int stdout_debug = 1;
  63. /* GSM triplets */
  64. struct gsm_triplet {
  65. struct gsm_triplet *next;
  66. char imsi[20];
  67. u8 kc[8];
  68. u8 sres[4];
  69. u8 _rand[16];
  70. };
  71. static struct gsm_triplet *gsm_db = NULL, *gsm_db_pos = NULL;
  72. /* OPc and AMF parameters for Milenage (Example algorithms for AKA). */
  73. struct milenage_parameters {
  74. struct milenage_parameters *next;
  75. char imsi[20];
  76. u8 ki[16];
  77. u8 opc[16];
  78. u8 amf[2];
  79. u8 sqn[6];
  80. int set;
  81. };
  82. static struct milenage_parameters *milenage_db = NULL;
  83. #define EAP_SIM_MAX_CHAL 3
  84. #define EAP_AKA_RAND_LEN 16
  85. #define EAP_AKA_AUTN_LEN 16
  86. #define EAP_AKA_AUTS_LEN 14
  87. #define EAP_AKA_RES_MAX_LEN 16
  88. #define EAP_AKA_IK_LEN 16
  89. #define EAP_AKA_CK_LEN 16
  90. #ifdef CONFIG_SQLITE
  91. static sqlite3 *sqlite_db = NULL;
  92. static struct milenage_parameters db_tmp_milenage;
  93. static int db_table_exists(sqlite3 *db, const char *name)
  94. {
  95. char cmd[128];
  96. os_snprintf(cmd, sizeof(cmd), "SELECT 1 FROM %s;", name);
  97. return sqlite3_exec(db, cmd, NULL, NULL, NULL) == SQLITE_OK;
  98. }
  99. static int db_table_create_milenage(sqlite3 *db)
  100. {
  101. char *err = NULL;
  102. const char *sql =
  103. "CREATE TABLE milenage("
  104. " imsi INTEGER PRIMARY KEY NOT NULL,"
  105. " ki CHAR(32) NOT NULL,"
  106. " opc CHAR(32) NOT NULL,"
  107. " amf CHAR(4) NOT NULL,"
  108. " sqn CHAR(12) NOT NULL"
  109. ");";
  110. printf("Adding database table for milenage information\n");
  111. if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) {
  112. printf("SQLite error: %s\n", err);
  113. sqlite3_free(err);
  114. return -1;
  115. }
  116. return 0;
  117. }
  118. static sqlite3 * db_open(const char *db_file)
  119. {
  120. sqlite3 *db;
  121. if (sqlite3_open(db_file, &db)) {
  122. printf("Failed to open database %s: %s\n",
  123. db_file, sqlite3_errmsg(db));
  124. sqlite3_close(db);
  125. return NULL;
  126. }
  127. if (!db_table_exists(db, "milenage") &&
  128. db_table_create_milenage(db) < 0) {
  129. sqlite3_close(db);
  130. return NULL;
  131. }
  132. return db;
  133. }
  134. static int get_milenage_cb(void *ctx, int argc, char *argv[], char *col[])
  135. {
  136. struct milenage_parameters *m = ctx;
  137. int i;
  138. m->set = 1;
  139. for (i = 0; i < argc; i++) {
  140. if (os_strcmp(col[i], "ki") == 0 && argv[i] &&
  141. hexstr2bin(argv[i], m->ki, sizeof(m->ki))) {
  142. printf("Invalid ki value in database\n");
  143. return -1;
  144. }
  145. if (os_strcmp(col[i], "opc") == 0 && argv[i] &&
  146. hexstr2bin(argv[i], m->opc, sizeof(m->opc))) {
  147. printf("Invalid opcvalue in database\n");
  148. return -1;
  149. }
  150. if (os_strcmp(col[i], "amf") == 0 && argv[i] &&
  151. hexstr2bin(argv[i], m->amf, sizeof(m->amf))) {
  152. printf("Invalid amf value in database\n");
  153. return -1;
  154. }
  155. if (os_strcmp(col[i], "sqn") == 0 && argv[i] &&
  156. hexstr2bin(argv[i], m->sqn, sizeof(m->sqn))) {
  157. printf("Invalid sqn value in database\n");
  158. return -1;
  159. }
  160. }
  161. return 0;
  162. }
  163. static struct milenage_parameters * db_get_milenage(const char *imsi_txt)
  164. {
  165. char cmd[128];
  166. unsigned long long imsi;
  167. os_memset(&db_tmp_milenage, 0, sizeof(db_tmp_milenage));
  168. imsi = atoll(imsi_txt);
  169. os_snprintf(db_tmp_milenage.imsi, sizeof(db_tmp_milenage.imsi),
  170. "%llu", imsi);
  171. os_snprintf(cmd, sizeof(cmd),
  172. "SELECT ki,opc,amf,sqn FROM milenage WHERE imsi=%llu;",
  173. imsi);
  174. if (sqlite3_exec(sqlite_db, cmd, get_milenage_cb, &db_tmp_milenage,
  175. NULL) != SQLITE_OK)
  176. return NULL;
  177. if (!db_tmp_milenage.set)
  178. return NULL;
  179. return &db_tmp_milenage;
  180. }
  181. static int db_update_milenage_sqn(struct milenage_parameters *m)
  182. {
  183. char cmd[128], val[13], *pos;
  184. if (sqlite_db == NULL)
  185. return 0;
  186. pos = val;
  187. pos += wpa_snprintf_hex(pos, sizeof(val), m->sqn, 6);
  188. *pos = '\0';
  189. os_snprintf(cmd, sizeof(cmd),
  190. "UPDATE milenage SET sqn='%s' WHERE imsi=%s;",
  191. val, m->imsi);
  192. if (sqlite3_exec(sqlite_db, cmd, NULL, NULL, NULL) != SQLITE_OK) {
  193. printf("Failed to update SQN in database for IMSI %s\n",
  194. m->imsi);
  195. return -1;
  196. }
  197. return 0;
  198. }
  199. #endif /* CONFIG_SQLITE */
  200. static int open_socket(const char *path)
  201. {
  202. struct sockaddr_un addr;
  203. int s;
  204. s = socket(PF_UNIX, SOCK_DGRAM, 0);
  205. if (s < 0) {
  206. perror("socket(PF_UNIX)");
  207. return -1;
  208. }
  209. memset(&addr, 0, sizeof(addr));
  210. addr.sun_family = AF_UNIX;
  211. os_strlcpy(addr.sun_path, path, sizeof(addr.sun_path));
  212. if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
  213. perror("hlr-auc-gw: bind(PF_UNIX)");
  214. close(s);
  215. return -1;
  216. }
  217. return s;
  218. }
  219. static int read_gsm_triplets(const char *fname)
  220. {
  221. FILE *f;
  222. char buf[200], *pos, *pos2;
  223. struct gsm_triplet *g = NULL;
  224. int line, ret = 0;
  225. if (fname == NULL)
  226. return -1;
  227. f = fopen(fname, "r");
  228. if (f == NULL) {
  229. printf("Could not open GSM tripler data file '%s'\n", fname);
  230. return -1;
  231. }
  232. line = 0;
  233. while (fgets(buf, sizeof(buf), f)) {
  234. line++;
  235. /* Parse IMSI:Kc:SRES:RAND */
  236. buf[sizeof(buf) - 1] = '\0';
  237. if (buf[0] == '#')
  238. continue;
  239. pos = buf;
  240. while (*pos != '\0' && *pos != '\n')
  241. pos++;
  242. if (*pos == '\n')
  243. *pos = '\0';
  244. pos = buf;
  245. if (*pos == '\0')
  246. continue;
  247. g = os_zalloc(sizeof(*g));
  248. if (g == NULL) {
  249. ret = -1;
  250. break;
  251. }
  252. /* IMSI */
  253. pos2 = strchr(pos, ':');
  254. if (pos2 == NULL) {
  255. printf("%s:%d - Invalid IMSI (%s)\n",
  256. fname, line, pos);
  257. ret = -1;
  258. break;
  259. }
  260. *pos2 = '\0';
  261. if (strlen(pos) >= sizeof(g->imsi)) {
  262. printf("%s:%d - Too long IMSI (%s)\n",
  263. fname, line, pos);
  264. ret = -1;
  265. break;
  266. }
  267. os_strlcpy(g->imsi, pos, sizeof(g->imsi));
  268. pos = pos2 + 1;
  269. /* Kc */
  270. pos2 = strchr(pos, ':');
  271. if (pos2 == NULL) {
  272. printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
  273. ret = -1;
  274. break;
  275. }
  276. *pos2 = '\0';
  277. if (strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) {
  278. printf("%s:%d - Invalid Kc (%s)\n", fname, line, pos);
  279. ret = -1;
  280. break;
  281. }
  282. pos = pos2 + 1;
  283. /* SRES */
  284. pos2 = strchr(pos, ':');
  285. if (pos2 == NULL) {
  286. printf("%s:%d - Invalid SRES (%s)\n", fname, line,
  287. pos);
  288. ret = -1;
  289. break;
  290. }
  291. *pos2 = '\0';
  292. if (strlen(pos) != 8 || hexstr2bin(pos, g->sres, 4)) {
  293. printf("%s:%d - Invalid SRES (%s)\n", fname, line,
  294. pos);
  295. ret = -1;
  296. break;
  297. }
  298. pos = pos2 + 1;
  299. /* RAND */
  300. pos2 = strchr(pos, ':');
  301. if (pos2)
  302. *pos2 = '\0';
  303. if (strlen(pos) != 32 || hexstr2bin(pos, g->_rand, 16)) {
  304. printf("%s:%d - Invalid RAND (%s)\n", fname, line,
  305. pos);
  306. ret = -1;
  307. break;
  308. }
  309. pos = pos2 + 1;
  310. g->next = gsm_db;
  311. gsm_db = g;
  312. g = NULL;
  313. }
  314. os_free(g);
  315. fclose(f);
  316. return ret;
  317. }
  318. static struct gsm_triplet * get_gsm_triplet(const char *imsi)
  319. {
  320. struct gsm_triplet *g = gsm_db_pos;
  321. while (g) {
  322. if (strcmp(g->imsi, imsi) == 0) {
  323. gsm_db_pos = g->next;
  324. return g;
  325. }
  326. g = g->next;
  327. }
  328. g = gsm_db;
  329. while (g && g != gsm_db_pos) {
  330. if (strcmp(g->imsi, imsi) == 0) {
  331. gsm_db_pos = g->next;
  332. return g;
  333. }
  334. g = g->next;
  335. }
  336. return NULL;
  337. }
  338. static int read_milenage(const char *fname)
  339. {
  340. FILE *f;
  341. char buf[200], *pos, *pos2;
  342. struct milenage_parameters *m = NULL;
  343. int line, ret = 0;
  344. if (fname == NULL)
  345. return -1;
  346. f = fopen(fname, "r");
  347. if (f == NULL) {
  348. printf("Could not open Milenage data file '%s'\n", fname);
  349. return -1;
  350. }
  351. line = 0;
  352. while (fgets(buf, sizeof(buf), f)) {
  353. line++;
  354. /* Parse IMSI Ki OPc AMF SQN */
  355. buf[sizeof(buf) - 1] = '\0';
  356. if (buf[0] == '#')
  357. continue;
  358. pos = buf;
  359. while (*pos != '\0' && *pos != '\n')
  360. pos++;
  361. if (*pos == '\n')
  362. *pos = '\0';
  363. pos = buf;
  364. if (*pos == '\0')
  365. continue;
  366. m = os_zalloc(sizeof(*m));
  367. if (m == NULL) {
  368. ret = -1;
  369. break;
  370. }
  371. /* IMSI */
  372. pos2 = strchr(pos, ' ');
  373. if (pos2 == NULL) {
  374. printf("%s:%d - Invalid IMSI (%s)\n",
  375. fname, line, pos);
  376. ret = -1;
  377. break;
  378. }
  379. *pos2 = '\0';
  380. if (strlen(pos) >= sizeof(m->imsi)) {
  381. printf("%s:%d - Too long IMSI (%s)\n",
  382. fname, line, pos);
  383. ret = -1;
  384. break;
  385. }
  386. os_strlcpy(m->imsi, pos, sizeof(m->imsi));
  387. pos = pos2 + 1;
  388. /* Ki */
  389. pos2 = strchr(pos, ' ');
  390. if (pos2 == NULL) {
  391. printf("%s:%d - Invalid Ki (%s)\n", fname, line, pos);
  392. ret = -1;
  393. break;
  394. }
  395. *pos2 = '\0';
  396. if (strlen(pos) != 32 || hexstr2bin(pos, m->ki, 16)) {
  397. printf("%s:%d - Invalid Ki (%s)\n", fname, line, pos);
  398. ret = -1;
  399. break;
  400. }
  401. pos = pos2 + 1;
  402. /* OPc */
  403. pos2 = strchr(pos, ' ');
  404. if (pos2 == NULL) {
  405. printf("%s:%d - Invalid OPc (%s)\n", fname, line, pos);
  406. ret = -1;
  407. break;
  408. }
  409. *pos2 = '\0';
  410. if (strlen(pos) != 32 || hexstr2bin(pos, m->opc, 16)) {
  411. printf("%s:%d - Invalid OPc (%s)\n", fname, line, pos);
  412. ret = -1;
  413. break;
  414. }
  415. pos = pos2 + 1;
  416. /* AMF */
  417. pos2 = strchr(pos, ' ');
  418. if (pos2 == NULL) {
  419. printf("%s:%d - Invalid AMF (%s)\n", fname, line, pos);
  420. ret = -1;
  421. break;
  422. }
  423. *pos2 = '\0';
  424. if (strlen(pos) != 4 || hexstr2bin(pos, m->amf, 2)) {
  425. printf("%s:%d - Invalid AMF (%s)\n", fname, line, pos);
  426. ret = -1;
  427. break;
  428. }
  429. pos = pos2 + 1;
  430. /* SQN */
  431. pos2 = strchr(pos, ' ');
  432. if (pos2)
  433. *pos2 = '\0';
  434. if (strlen(pos) != 12 || hexstr2bin(pos, m->sqn, 6)) {
  435. printf("%s:%d - Invalid SEQ (%s)\n", fname, line, pos);
  436. ret = -1;
  437. break;
  438. }
  439. pos = pos2 + 1;
  440. m->next = milenage_db;
  441. milenage_db = m;
  442. m = NULL;
  443. }
  444. os_free(m);
  445. fclose(f);
  446. return ret;
  447. }
  448. static void update_milenage_file(const char *fname)
  449. {
  450. FILE *f, *f2;
  451. char buf[500], *pos;
  452. char *end = buf + sizeof(buf);
  453. struct milenage_parameters *m;
  454. size_t imsi_len;
  455. f = fopen(fname, "r");
  456. if (f == NULL) {
  457. printf("Could not open Milenage data file '%s'\n", fname);
  458. return;
  459. }
  460. snprintf(buf, sizeof(buf), "%s.new", fname);
  461. f2 = fopen(buf, "w");
  462. if (f2 == NULL) {
  463. printf("Could not write Milenage data file '%s'\n", buf);
  464. fclose(f);
  465. return;
  466. }
  467. while (fgets(buf, sizeof(buf), f)) {
  468. /* IMSI Ki OPc AMF SQN */
  469. buf[sizeof(buf) - 1] = '\0';
  470. pos = strchr(buf, ' ');
  471. if (buf[0] == '#' || pos == NULL || pos - buf >= 20)
  472. goto no_update;
  473. imsi_len = pos - buf;
  474. for (m = milenage_db; m; m = m->next) {
  475. if (strncmp(buf, m->imsi, imsi_len) == 0 &&
  476. m->imsi[imsi_len] == '\0')
  477. break;
  478. }
  479. if (!m)
  480. goto no_update;
  481. pos = buf;
  482. pos += snprintf(pos, end - pos, "%s ", m->imsi);
  483. pos += wpa_snprintf_hex(pos, end - pos, m->ki, 16);
  484. *pos++ = ' ';
  485. pos += wpa_snprintf_hex(pos, end - pos, m->opc, 16);
  486. *pos++ = ' ';
  487. pos += wpa_snprintf_hex(pos, end - pos, m->amf, 2);
  488. *pos++ = ' ';
  489. pos += wpa_snprintf_hex(pos, end - pos, m->sqn, 6);
  490. *pos++ = '\n';
  491. no_update:
  492. fprintf(f2, "%s", buf);
  493. }
  494. fclose(f2);
  495. fclose(f);
  496. snprintf(buf, sizeof(buf), "%s.bak", fname);
  497. if (rename(fname, buf) < 0) {
  498. perror("rename");
  499. return;
  500. }
  501. snprintf(buf, sizeof(buf), "%s.new", fname);
  502. if (rename(buf, fname) < 0) {
  503. perror("rename");
  504. return;
  505. }
  506. }
  507. static struct milenage_parameters * get_milenage(const char *imsi)
  508. {
  509. struct milenage_parameters *m = milenage_db;
  510. while (m) {
  511. if (strcmp(m->imsi, imsi) == 0)
  512. break;
  513. m = m->next;
  514. }
  515. #ifdef CONFIG_SQLITE
  516. if (!m)
  517. m = db_get_milenage(imsi);
  518. #endif /* CONFIG_SQLITE */
  519. return m;
  520. }
  521. static int sim_req_auth(char *imsi, char *resp, size_t resp_len)
  522. {
  523. int count, max_chal, ret;
  524. char *pos;
  525. char *rpos, *rend;
  526. struct milenage_parameters *m;
  527. struct gsm_triplet *g;
  528. resp[0] = '\0';
  529. pos = strchr(imsi, ' ');
  530. if (pos) {
  531. *pos++ = '\0';
  532. max_chal = atoi(pos);
  533. if (max_chal < 1 || max_chal < EAP_SIM_MAX_CHAL)
  534. max_chal = EAP_SIM_MAX_CHAL;
  535. } else
  536. max_chal = EAP_SIM_MAX_CHAL;
  537. rend = resp + resp_len;
  538. rpos = resp;
  539. ret = snprintf(rpos, rend - rpos, "SIM-RESP-AUTH %s", imsi);
  540. if (ret < 0 || ret >= rend - rpos)
  541. return -1;
  542. rpos += ret;
  543. m = get_milenage(imsi);
  544. if (m) {
  545. u8 _rand[16], sres[4], kc[8];
  546. for (count = 0; count < max_chal; count++) {
  547. if (random_get_bytes(_rand, 16) < 0)
  548. return -1;
  549. gsm_milenage(m->opc, m->ki, _rand, sres, kc);
  550. *rpos++ = ' ';
  551. rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8);
  552. *rpos++ = ':';
  553. rpos += wpa_snprintf_hex(rpos, rend - rpos, sres, 4);
  554. *rpos++ = ':';
  555. rpos += wpa_snprintf_hex(rpos, rend - rpos, _rand, 16);
  556. }
  557. *rpos = '\0';
  558. return 0;
  559. }
  560. count = 0;
  561. while (count < max_chal && (g = get_gsm_triplet(imsi))) {
  562. if (strcmp(g->imsi, imsi) != 0)
  563. continue;
  564. if (rpos < rend)
  565. *rpos++ = ' ';
  566. rpos += wpa_snprintf_hex(rpos, rend - rpos, g->kc, 8);
  567. if (rpos < rend)
  568. *rpos++ = ':';
  569. rpos += wpa_snprintf_hex(rpos, rend - rpos, g->sres, 4);
  570. if (rpos < rend)
  571. *rpos++ = ':';
  572. rpos += wpa_snprintf_hex(rpos, rend - rpos, g->_rand, 16);
  573. count++;
  574. }
  575. if (count == 0) {
  576. printf("No GSM triplets found for %s\n", imsi);
  577. ret = snprintf(rpos, rend - rpos, " FAILURE");
  578. if (ret < 0 || ret >= rend - rpos)
  579. return -1;
  580. rpos += ret;
  581. }
  582. return 0;
  583. }
  584. static void inc_sqn(u8 *sqn)
  585. {
  586. u64 val, seq, ind;
  587. /*
  588. * SQN = SEQ | IND = SEQ1 | SEQ2 | IND
  589. *
  590. * The mechanism used here is not time-based, so SEQ2 is void and
  591. * SQN = SEQ1 | IND. The length of IND is ind_len bits and the length
  592. * of SEQ1 is 48 - ind_len bits.
  593. */
  594. /* Increment both SEQ and IND by one */
  595. val = ((u64) WPA_GET_BE32(sqn) << 16) | ((u64) WPA_GET_BE16(sqn + 4));
  596. seq = (val >> ind_len) + 1;
  597. ind = (val + 1) & ((1 << ind_len) - 1);
  598. val = (seq << ind_len) | ind;
  599. WPA_PUT_BE32(sqn, val >> 16);
  600. WPA_PUT_BE16(sqn + 4, val & 0xffff);
  601. }
  602. static int aka_req_auth(char *imsi, char *resp, size_t resp_len)
  603. {
  604. /* AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES> */
  605. char *pos, *end;
  606. u8 _rand[EAP_AKA_RAND_LEN];
  607. u8 autn[EAP_AKA_AUTN_LEN];
  608. u8 ik[EAP_AKA_IK_LEN];
  609. u8 ck[EAP_AKA_CK_LEN];
  610. u8 res[EAP_AKA_RES_MAX_LEN];
  611. size_t res_len;
  612. int ret;
  613. struct milenage_parameters *m;
  614. int failed = 0;
  615. m = get_milenage(imsi);
  616. if (m) {
  617. if (random_get_bytes(_rand, EAP_AKA_RAND_LEN) < 0)
  618. return -1;
  619. res_len = EAP_AKA_RES_MAX_LEN;
  620. inc_sqn(m->sqn);
  621. #ifdef CONFIG_SQLITE
  622. db_update_milenage_sqn(m);
  623. #endif /* CONFIG_SQLITE */
  624. sqn_changes = 1;
  625. if (stdout_debug) {
  626. printf("AKA: Milenage with SQN=%02x%02x%02x%02x%02x%02x\n",
  627. m->sqn[0], m->sqn[1], m->sqn[2],
  628. m->sqn[3], m->sqn[4], m->sqn[5]);
  629. }
  630. milenage_generate(m->opc, m->amf, m->ki, m->sqn, _rand,
  631. autn, ik, ck, res, &res_len);
  632. } else {
  633. printf("Unknown IMSI: %s\n", imsi);
  634. #ifdef AKA_USE_FIXED_TEST_VALUES
  635. printf("Using fixed test values for AKA\n");
  636. memset(_rand, '0', EAP_AKA_RAND_LEN);
  637. memset(autn, '1', EAP_AKA_AUTN_LEN);
  638. memset(ik, '3', EAP_AKA_IK_LEN);
  639. memset(ck, '4', EAP_AKA_CK_LEN);
  640. memset(res, '2', EAP_AKA_RES_MAX_LEN);
  641. res_len = EAP_AKA_RES_MAX_LEN;
  642. #else /* AKA_USE_FIXED_TEST_VALUES */
  643. failed = 1;
  644. #endif /* AKA_USE_FIXED_TEST_VALUES */
  645. }
  646. pos = resp;
  647. end = resp + resp_len;
  648. ret = snprintf(pos, end - pos, "AKA-RESP-AUTH %s ", imsi);
  649. if (ret < 0 || ret >= end - pos)
  650. return -1;
  651. pos += ret;
  652. if (failed) {
  653. ret = snprintf(pos, end - pos, "FAILURE");
  654. if (ret < 0 || ret >= end - pos)
  655. return -1;
  656. pos += ret;
  657. return 0;
  658. }
  659. pos += wpa_snprintf_hex(pos, end - pos, _rand, EAP_AKA_RAND_LEN);
  660. *pos++ = ' ';
  661. pos += wpa_snprintf_hex(pos, end - pos, autn, EAP_AKA_AUTN_LEN);
  662. *pos++ = ' ';
  663. pos += wpa_snprintf_hex(pos, end - pos, ik, EAP_AKA_IK_LEN);
  664. *pos++ = ' ';
  665. pos += wpa_snprintf_hex(pos, end - pos, ck, EAP_AKA_CK_LEN);
  666. *pos++ = ' ';
  667. pos += wpa_snprintf_hex(pos, end - pos, res, res_len);
  668. return 0;
  669. }
  670. static int aka_auts(char *imsi, char *resp, size_t resp_len)
  671. {
  672. char *auts, *__rand;
  673. u8 _auts[EAP_AKA_AUTS_LEN], _rand[EAP_AKA_RAND_LEN], sqn[6];
  674. struct milenage_parameters *m;
  675. resp[0] = '\0';
  676. /* AKA-AUTS <IMSI> <AUTS> <RAND> */
  677. auts = strchr(imsi, ' ');
  678. if (auts == NULL)
  679. return -1;
  680. *auts++ = '\0';
  681. __rand = strchr(auts, ' ');
  682. if (__rand == NULL)
  683. return -1;
  684. *__rand++ = '\0';
  685. if (stdout_debug) {
  686. printf("AKA-AUTS: IMSI=%s AUTS=%s RAND=%s\n",
  687. imsi, auts, __rand);
  688. }
  689. if (hexstr2bin(auts, _auts, EAP_AKA_AUTS_LEN) ||
  690. hexstr2bin(__rand, _rand, EAP_AKA_RAND_LEN)) {
  691. printf("Could not parse AUTS/RAND\n");
  692. return -1;
  693. }
  694. m = get_milenage(imsi);
  695. if (m == NULL) {
  696. printf("Unknown IMSI: %s\n", imsi);
  697. return -1;
  698. }
  699. if (milenage_auts(m->opc, m->ki, _rand, _auts, sqn)) {
  700. printf("AKA-AUTS: Incorrect MAC-S\n");
  701. } else {
  702. memcpy(m->sqn, sqn, 6);
  703. if (stdout_debug) {
  704. printf("AKA-AUTS: Re-synchronized: "
  705. "SQN=%02x%02x%02x%02x%02x%02x\n",
  706. sqn[0], sqn[1], sqn[2], sqn[3], sqn[4], sqn[5]);
  707. }
  708. #ifdef CONFIG_SQLITE
  709. db_update_milenage_sqn(m);
  710. #endif /* CONFIG_SQLITE */
  711. sqn_changes = 1;
  712. }
  713. return 0;
  714. }
  715. static int process_cmd(char *cmd, char *resp, size_t resp_len)
  716. {
  717. if (os_strncmp(cmd, "SIM-REQ-AUTH ", 13) == 0)
  718. return sim_req_auth(cmd + 13, resp, resp_len);
  719. if (os_strncmp(cmd, "AKA-REQ-AUTH ", 13) == 0)
  720. return aka_req_auth(cmd + 13, resp, resp_len);
  721. if (os_strncmp(cmd, "AKA-AUTS ", 9) == 0)
  722. return aka_auts(cmd + 9, resp, resp_len);
  723. printf("Unknown request: %s\n", cmd);
  724. return -1;
  725. }
  726. static int process(int s)
  727. {
  728. char buf[1000], resp[1000];
  729. struct sockaddr_un from;
  730. socklen_t fromlen;
  731. ssize_t res;
  732. fromlen = sizeof(from);
  733. res = recvfrom(s, buf, sizeof(buf), 0, (struct sockaddr *) &from,
  734. &fromlen);
  735. if (res < 0) {
  736. perror("recvfrom");
  737. return -1;
  738. }
  739. if (res == 0)
  740. return 0;
  741. if ((size_t) res >= sizeof(buf))
  742. res = sizeof(buf) - 1;
  743. buf[res] = '\0';
  744. printf("Received: %s\n", buf);
  745. if (process_cmd(buf, resp, sizeof(resp)) < 0) {
  746. printf("Failed to process request\n");
  747. return -1;
  748. }
  749. if (resp[0] == '\0') {
  750. printf("No response\n");
  751. return 0;
  752. }
  753. printf("Send: %s\n", resp);
  754. if (sendto(s, resp, os_strlen(resp), 0, (struct sockaddr *) &from,
  755. fromlen) < 0)
  756. perror("send");
  757. return 0;
  758. }
  759. static void cleanup(void)
  760. {
  761. struct gsm_triplet *g, *gprev;
  762. struct milenage_parameters *m, *prev;
  763. if (update_milenage && milenage_file && sqn_changes)
  764. update_milenage_file(milenage_file);
  765. g = gsm_db;
  766. while (g) {
  767. gprev = g;
  768. g = g->next;
  769. os_free(gprev);
  770. }
  771. m = milenage_db;
  772. while (m) {
  773. prev = m;
  774. m = m->next;
  775. os_free(prev);
  776. }
  777. if (serv_sock >= 0)
  778. close(serv_sock);
  779. if (socket_path)
  780. unlink(socket_path);
  781. #ifdef CONFIG_SQLITE
  782. if (sqlite_db) {
  783. sqlite3_close(sqlite_db);
  784. sqlite_db = NULL;
  785. }
  786. #endif /* CONFIG_SQLITE */
  787. }
  788. static void handle_term(int sig)
  789. {
  790. printf("Signal %d - terminate\n", sig);
  791. exit(0);
  792. }
  793. static void usage(void)
  794. {
  795. printf("HLR/AuC testing gateway for hostapd EAP-SIM/AKA "
  796. "database/authenticator\n"
  797. "Copyright (c) 2005-2007, 2012-2013, Jouni Malinen <j@w1.fi>\n"
  798. "\n"
  799. "usage:\n"
  800. "hlr_auc_gw [-hu] [-s<socket path>] [-g<triplet file>] "
  801. "[-m<milenage file>] \\\n"
  802. " [-D<DB file>] [-i<IND len in bits>] [command]\n"
  803. "\n"
  804. "options:\n"
  805. " -h = show this usage help\n"
  806. " -u = update SQN in Milenage file on exit\n"
  807. " -s<socket path> = path for UNIX domain socket\n"
  808. " (default: %s)\n"
  809. " -g<triplet file> = path for GSM authentication triplets\n"
  810. " -m<milenage file> = path for Milenage keys\n"
  811. " -D<DB file> = path to SQLite database\n"
  812. " -i<IND len in bits> = IND length for SQN (default: 5)\n"
  813. "\n"
  814. "If the optional command argument, like "
  815. "\"AKA-REQ-AUTH <IMSI>\" is used, a single\n"
  816. "command is processed with response sent to stdout. Otherwise, "
  817. "hlr_auc_gw opens\n"
  818. "a control interface and processes commands sent through it "
  819. "(e.g., by EAP server\n"
  820. "in hostapd).\n",
  821. default_socket_path);
  822. }
  823. int main(int argc, char *argv[])
  824. {
  825. int c;
  826. char *gsm_triplet_file = NULL;
  827. char *sqlite_db_file = NULL;
  828. int ret = 0;
  829. if (os_program_init())
  830. return -1;
  831. socket_path = default_socket_path;
  832. for (;;) {
  833. c = getopt(argc, argv, "D:g:hi:m:s:u");
  834. if (c < 0)
  835. break;
  836. switch (c) {
  837. case 'D':
  838. #ifdef CONFIG_SQLITE
  839. sqlite_db_file = optarg;
  840. break;
  841. #else /* CONFIG_SQLITE */
  842. printf("No SQLite support included in the build\n");
  843. return -1;
  844. #endif /* CONFIG_SQLITE */
  845. case 'g':
  846. gsm_triplet_file = optarg;
  847. break;
  848. case 'h':
  849. usage();
  850. return 0;
  851. case 'i':
  852. ind_len = atoi(optarg);
  853. if (ind_len < 0 || ind_len > 32) {
  854. printf("Invalid IND length\n");
  855. return -1;
  856. }
  857. break;
  858. case 'm':
  859. milenage_file = optarg;
  860. break;
  861. case 's':
  862. socket_path = optarg;
  863. break;
  864. case 'u':
  865. update_milenage = 1;
  866. break;
  867. default:
  868. usage();
  869. return -1;
  870. }
  871. }
  872. if (!gsm_triplet_file && !milenage_file && !sqlite_db_file) {
  873. usage();
  874. return -1;
  875. }
  876. #ifdef CONFIG_SQLITE
  877. if (sqlite_db_file && (sqlite_db = db_open(sqlite_db_file)) == NULL)
  878. return -1;
  879. #endif /* CONFIG_SQLITE */
  880. if (gsm_triplet_file && read_gsm_triplets(gsm_triplet_file) < 0)
  881. return -1;
  882. if (milenage_file && read_milenage(milenage_file) < 0)
  883. return -1;
  884. if (optind == argc) {
  885. serv_sock = open_socket(socket_path);
  886. if (serv_sock < 0)
  887. return -1;
  888. printf("Listening for requests on %s\n", socket_path);
  889. atexit(cleanup);
  890. signal(SIGTERM, handle_term);
  891. signal(SIGINT, handle_term);
  892. for (;;)
  893. process(serv_sock);
  894. } else {
  895. char buf[1000];
  896. socket_path = NULL;
  897. stdout_debug = 0;
  898. if (process_cmd(argv[optind], buf, sizeof(buf)) < 0) {
  899. printf("FAIL\n");
  900. ret = -1;
  901. } else {
  902. printf("%s\n", buf);
  903. }
  904. cleanup();
  905. }
  906. #ifdef CONFIG_SQLITE
  907. if (sqlite_db) {
  908. sqlite3_close(sqlite_db);
  909. sqlite_db = NULL;
  910. }
  911. #endif /* CONFIG_SQLITE */
  912. os_program_deinit();
  913. return ret;
  914. }