hlr_auc_gw.c 25 KB

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