pcsc_funcs.c 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310
  1. /*
  2. * WPA Supplicant / PC/SC smartcard interface for USIM, GSM SIM
  3. * Copyright (c) 2004-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 file implements wrapper functions for accessing GSM SIM and 3GPP USIM
  9. * cards through PC/SC smartcard library. These functions are used to implement
  10. * authentication routines for EAP-SIM and EAP-AKA.
  11. */
  12. #include "includes.h"
  13. #include <winscard.h>
  14. #include "common.h"
  15. #include "pcsc_funcs.h"
  16. /* See ETSI GSM 11.11 and ETSI TS 102 221 for details.
  17. * SIM commands:
  18. * Command APDU: CLA INS P1 P2 P3 Data
  19. * CLA (class of instruction): A0 for GSM, 00 for USIM
  20. * INS (instruction)
  21. * P1 P2 P3 (parameters, P3 = length of Data)
  22. * Response APDU: Data SW1 SW2
  23. * SW1 SW2 (Status words)
  24. * Commands (INS P1 P2 P3):
  25. * SELECT: A4 00 00 02 <file_id, 2 bytes>
  26. * GET RESPONSE: C0 00 00 <len>
  27. * RUN GSM ALG: 88 00 00 00 <RAND len = 10>
  28. * RUN UMTS ALG: 88 00 81 <len=0x22> data: 0x10 | RAND | 0x10 | AUTN
  29. * P1 = ID of alg in card
  30. * P2 = ID of secret key
  31. * READ BINARY: B0 <offset high> <offset low> <len>
  32. * READ RECORD: B2 <record number> <mode> <len>
  33. * P2 (mode) = '02' (next record), '03' (previous record),
  34. * '04' (absolute mode)
  35. * VERIFY CHV: 20 00 <CHV number> 08
  36. * CHANGE CHV: 24 00 <CHV number> 10
  37. * DISABLE CHV: 26 00 01 08
  38. * ENABLE CHV: 28 00 01 08
  39. * UNBLOCK CHV: 2C 00 <00=CHV1, 02=CHV2> 10
  40. * SLEEP: FA 00 00 00
  41. */
  42. /* GSM SIM commands */
  43. #define SIM_CMD_SELECT 0xa0, 0xa4, 0x00, 0x00, 0x02
  44. #define SIM_CMD_RUN_GSM_ALG 0xa0, 0x88, 0x00, 0x00, 0x10
  45. #define SIM_CMD_GET_RESPONSE 0xa0, 0xc0, 0x00, 0x00
  46. #define SIM_CMD_READ_BIN 0xa0, 0xb0, 0x00, 0x00
  47. #define SIM_CMD_READ_RECORD 0xa0, 0xb2, 0x00, 0x00
  48. #define SIM_CMD_VERIFY_CHV1 0xa0, 0x20, 0x00, 0x01, 0x08
  49. /* USIM commands */
  50. #define USIM_CLA 0x00
  51. #define USIM_CMD_RUN_UMTS_ALG 0x00, 0x88, 0x00, 0x81, 0x22
  52. #define USIM_CMD_GET_RESPONSE 0x00, 0xc0, 0x00, 0x00
  53. #define SIM_RECORD_MODE_ABSOLUTE 0x04
  54. #define USIM_FSP_TEMPL_TAG 0x62
  55. #define USIM_TLV_FILE_DESC 0x82
  56. #define USIM_TLV_FILE_ID 0x83
  57. #define USIM_TLV_DF_NAME 0x84
  58. #define USIM_TLV_PROPR_INFO 0xA5
  59. #define USIM_TLV_LIFE_CYCLE_STATUS 0x8A
  60. #define USIM_TLV_FILE_SIZE 0x80
  61. #define USIM_TLV_TOTAL_FILE_SIZE 0x81
  62. #define USIM_TLV_PIN_STATUS_TEMPLATE 0xC6
  63. #define USIM_TLV_SHORT_FILE_ID 0x88
  64. #define USIM_PS_DO_TAG 0x90
  65. #define AKA_RAND_LEN 16
  66. #define AKA_AUTN_LEN 16
  67. #define AKA_AUTS_LEN 14
  68. #define RES_MAX_LEN 16
  69. #define IK_LEN 16
  70. #define CK_LEN 16
  71. typedef enum { SCARD_GSM_SIM, SCARD_USIM } sim_types;
  72. struct scard_data {
  73. SCARDCONTEXT ctx;
  74. SCARDHANDLE card;
  75. DWORD protocol;
  76. sim_types sim_type;
  77. int pin1_required;
  78. };
  79. #ifdef __MINGW32_VERSION
  80. /* MinGW does not yet support WinScard, so load the needed functions
  81. * dynamically from winscard.dll for now. */
  82. static HINSTANCE dll = NULL; /* winscard.dll */
  83. static const SCARD_IO_REQUEST *dll_g_rgSCardT0Pci, *dll_g_rgSCardT1Pci;
  84. #undef SCARD_PCI_T0
  85. #define SCARD_PCI_T0 (dll_g_rgSCardT0Pci)
  86. #undef SCARD_PCI_T1
  87. #define SCARD_PCI_T1 (dll_g_rgSCardT1Pci)
  88. static WINSCARDAPI LONG WINAPI
  89. (*dll_SCardEstablishContext)(IN DWORD dwScope,
  90. IN LPCVOID pvReserved1,
  91. IN LPCVOID pvReserved2,
  92. OUT LPSCARDCONTEXT phContext);
  93. #define SCardEstablishContext dll_SCardEstablishContext
  94. static long (*dll_SCardReleaseContext)(long hContext);
  95. #define SCardReleaseContext dll_SCardReleaseContext
  96. static WINSCARDAPI LONG WINAPI
  97. (*dll_SCardListReadersA)(IN SCARDCONTEXT hContext,
  98. IN LPCSTR mszGroups,
  99. OUT LPSTR mszReaders,
  100. IN OUT LPDWORD pcchReaders);
  101. #undef SCardListReaders
  102. #define SCardListReaders dll_SCardListReadersA
  103. static WINSCARDAPI LONG WINAPI
  104. (*dll_SCardConnectA)(IN SCARDCONTEXT hContext,
  105. IN LPCSTR szReader,
  106. IN DWORD dwShareMode,
  107. IN DWORD dwPreferredProtocols,
  108. OUT LPSCARDHANDLE phCard,
  109. OUT LPDWORD pdwActiveProtocol);
  110. #undef SCardConnect
  111. #define SCardConnect dll_SCardConnectA
  112. static WINSCARDAPI LONG WINAPI
  113. (*dll_SCardDisconnect)(IN SCARDHANDLE hCard,
  114. IN DWORD dwDisposition);
  115. #define SCardDisconnect dll_SCardDisconnect
  116. static WINSCARDAPI LONG WINAPI
  117. (*dll_SCardTransmit)(IN SCARDHANDLE hCard,
  118. IN LPCSCARD_IO_REQUEST pioSendPci,
  119. IN LPCBYTE pbSendBuffer,
  120. IN DWORD cbSendLength,
  121. IN OUT LPSCARD_IO_REQUEST pioRecvPci,
  122. OUT LPBYTE pbRecvBuffer,
  123. IN OUT LPDWORD pcbRecvLength);
  124. #define SCardTransmit dll_SCardTransmit
  125. static WINSCARDAPI LONG WINAPI
  126. (*dll_SCardBeginTransaction)(IN SCARDHANDLE hCard);
  127. #define SCardBeginTransaction dll_SCardBeginTransaction
  128. static WINSCARDAPI LONG WINAPI
  129. (*dll_SCardEndTransaction)(IN SCARDHANDLE hCard, IN DWORD dwDisposition);
  130. #define SCardEndTransaction dll_SCardEndTransaction
  131. static int mingw_load_symbols(void)
  132. {
  133. char *sym;
  134. if (dll)
  135. return 0;
  136. dll = LoadLibrary("winscard");
  137. if (dll == NULL) {
  138. wpa_printf(MSG_DEBUG, "WinSCard: Could not load winscard.dll "
  139. "library");
  140. return -1;
  141. }
  142. #define LOADSYM(s) \
  143. sym = #s; \
  144. dll_ ## s = (void *) GetProcAddress(dll, sym); \
  145. if (dll_ ## s == NULL) \
  146. goto fail;
  147. LOADSYM(SCardEstablishContext);
  148. LOADSYM(SCardReleaseContext);
  149. LOADSYM(SCardListReadersA);
  150. LOADSYM(SCardConnectA);
  151. LOADSYM(SCardDisconnect);
  152. LOADSYM(SCardTransmit);
  153. LOADSYM(SCardBeginTransaction);
  154. LOADSYM(SCardEndTransaction);
  155. LOADSYM(g_rgSCardT0Pci);
  156. LOADSYM(g_rgSCardT1Pci);
  157. #undef LOADSYM
  158. return 0;
  159. fail:
  160. wpa_printf(MSG_DEBUG, "WinSCard: Could not get address for %s from "
  161. "winscard.dll", sym);
  162. FreeLibrary(dll);
  163. dll = NULL;
  164. return -1;
  165. }
  166. static void mingw_unload_symbols(void)
  167. {
  168. if (dll == NULL)
  169. return;
  170. FreeLibrary(dll);
  171. dll = NULL;
  172. }
  173. #else /* __MINGW32_VERSION */
  174. #define mingw_load_symbols() 0
  175. #define mingw_unload_symbols() do { } while (0)
  176. #endif /* __MINGW32_VERSION */
  177. static int _scard_select_file(struct scard_data *scard, unsigned short file_id,
  178. unsigned char *buf, size_t *buf_len,
  179. sim_types sim_type, unsigned char *aid,
  180. size_t aidlen);
  181. static int scard_select_file(struct scard_data *scard, unsigned short file_id,
  182. unsigned char *buf, size_t *buf_len);
  183. static int scard_verify_pin(struct scard_data *scard, const char *pin);
  184. static int scard_get_record_len(struct scard_data *scard,
  185. unsigned char recnum, unsigned char mode);
  186. static int scard_read_record(struct scard_data *scard,
  187. unsigned char *data, size_t len,
  188. unsigned char recnum, unsigned char mode);
  189. static int scard_parse_fsp_templ(unsigned char *buf, size_t buf_len,
  190. int *ps_do, int *file_len)
  191. {
  192. unsigned char *pos, *end;
  193. if (ps_do)
  194. *ps_do = -1;
  195. if (file_len)
  196. *file_len = -1;
  197. pos = buf;
  198. end = pos + buf_len;
  199. if (*pos != USIM_FSP_TEMPL_TAG) {
  200. wpa_printf(MSG_DEBUG, "SCARD: file header did not "
  201. "start with FSP template tag");
  202. return -1;
  203. }
  204. pos++;
  205. if (pos >= end)
  206. return -1;
  207. if ((pos + pos[0]) < end)
  208. end = pos + 1 + pos[0];
  209. pos++;
  210. wpa_hexdump(MSG_DEBUG, "SCARD: file header FSP template",
  211. pos, end - pos);
  212. while (pos + 1 < end) {
  213. wpa_printf(MSG_MSGDUMP, "SCARD: file header TLV "
  214. "0x%02x len=%d", pos[0], pos[1]);
  215. if (pos + 2 + pos[1] > end)
  216. break;
  217. if (pos[0] == USIM_TLV_FILE_SIZE &&
  218. (pos[1] == 1 || pos[1] == 2) && file_len) {
  219. if (pos[1] == 1)
  220. *file_len = (int) pos[2];
  221. else
  222. *file_len = ((int) pos[2] << 8) |
  223. (int) pos[3];
  224. wpa_printf(MSG_DEBUG, "SCARD: file_size=%d",
  225. *file_len);
  226. }
  227. if (pos[0] == USIM_TLV_PIN_STATUS_TEMPLATE &&
  228. pos[1] >= 2 && pos[2] == USIM_PS_DO_TAG &&
  229. pos[3] >= 1 && ps_do) {
  230. wpa_printf(MSG_DEBUG, "SCARD: PS_DO=0x%02x",
  231. pos[4]);
  232. *ps_do = (int) pos[4];
  233. }
  234. pos += 2 + pos[1];
  235. if (pos == end)
  236. return 0;
  237. }
  238. return -1;
  239. }
  240. static int scard_pin_needed(struct scard_data *scard,
  241. unsigned char *hdr, size_t hlen)
  242. {
  243. if (scard->sim_type == SCARD_GSM_SIM) {
  244. if (hlen > SCARD_CHV1_OFFSET &&
  245. !(hdr[SCARD_CHV1_OFFSET] & SCARD_CHV1_FLAG))
  246. return 1;
  247. return 0;
  248. }
  249. if (scard->sim_type == SCARD_USIM) {
  250. int ps_do;
  251. if (scard_parse_fsp_templ(hdr, hlen, &ps_do, NULL))
  252. return -1;
  253. /* TODO: there could be more than one PS_DO entry because of
  254. * multiple PINs in key reference.. */
  255. if (ps_do > 0 && (ps_do & 0x80))
  256. return 1;
  257. return 0;
  258. }
  259. return -1;
  260. }
  261. static int scard_get_aid(struct scard_data *scard, unsigned char *aid,
  262. size_t maxlen)
  263. {
  264. int rlen, rec;
  265. struct efdir {
  266. unsigned char appl_template_tag; /* 0x61 */
  267. unsigned char appl_template_len;
  268. unsigned char appl_id_tag; /* 0x4f */
  269. unsigned char aid_len;
  270. unsigned char rid[5];
  271. unsigned char appl_code[2]; /* 0x1002 for 3G USIM */
  272. } *efdir;
  273. unsigned char buf[100];
  274. size_t blen;
  275. efdir = (struct efdir *) buf;
  276. blen = sizeof(buf);
  277. if (scard_select_file(scard, SCARD_FILE_EF_DIR, buf, &blen)) {
  278. wpa_printf(MSG_DEBUG, "SCARD: Failed to read EF_DIR");
  279. return -1;
  280. }
  281. wpa_hexdump(MSG_DEBUG, "SCARD: EF_DIR select", buf, blen);
  282. for (rec = 1; rec < 10; rec++) {
  283. rlen = scard_get_record_len(scard, rec,
  284. SIM_RECORD_MODE_ABSOLUTE);
  285. if (rlen < 0) {
  286. wpa_printf(MSG_DEBUG, "SCARD: Failed to get EF_DIR "
  287. "record length");
  288. return -1;
  289. }
  290. blen = sizeof(buf);
  291. if (rlen > (int) blen) {
  292. wpa_printf(MSG_DEBUG, "SCARD: Too long EF_DIR record");
  293. return -1;
  294. }
  295. if (scard_read_record(scard, buf, rlen, rec,
  296. SIM_RECORD_MODE_ABSOLUTE) < 0) {
  297. wpa_printf(MSG_DEBUG, "SCARD: Failed to read "
  298. "EF_DIR record %d", rec);
  299. return -1;
  300. }
  301. wpa_hexdump(MSG_DEBUG, "SCARD: EF_DIR record", buf, rlen);
  302. if (efdir->appl_template_tag != 0x61) {
  303. wpa_printf(MSG_DEBUG, "SCARD: Unexpected application "
  304. "template tag 0x%x",
  305. efdir->appl_template_tag);
  306. continue;
  307. }
  308. if (efdir->appl_template_len > rlen - 2) {
  309. wpa_printf(MSG_DEBUG, "SCARD: Too long application "
  310. "template (len=%d rlen=%d)",
  311. efdir->appl_template_len, rlen);
  312. continue;
  313. }
  314. if (efdir->appl_id_tag != 0x4f) {
  315. wpa_printf(MSG_DEBUG, "SCARD: Unexpected application "
  316. "identifier tag 0x%x", efdir->appl_id_tag);
  317. continue;
  318. }
  319. if (efdir->aid_len < 1 || efdir->aid_len > 16) {
  320. wpa_printf(MSG_DEBUG, "SCARD: Invalid AID length %d",
  321. efdir->aid_len);
  322. continue;
  323. }
  324. wpa_hexdump(MSG_DEBUG, "SCARD: AID from EF_DIR record",
  325. efdir->rid, efdir->aid_len);
  326. if (efdir->appl_code[0] == 0x10 &&
  327. efdir->appl_code[1] == 0x02) {
  328. wpa_printf(MSG_DEBUG, "SCARD: 3G USIM app found from "
  329. "EF_DIR record %d", rec);
  330. break;
  331. }
  332. }
  333. if (rec >= 10) {
  334. wpa_printf(MSG_DEBUG, "SCARD: 3G USIM app not found "
  335. "from EF_DIR records");
  336. return -1;
  337. }
  338. if (efdir->aid_len > maxlen) {
  339. wpa_printf(MSG_DEBUG, "SCARD: Too long AID");
  340. return -1;
  341. }
  342. os_memcpy(aid, efdir->rid, efdir->aid_len);
  343. return efdir->aid_len;
  344. }
  345. /**
  346. * scard_init - Initialize SIM/USIM connection using PC/SC
  347. * @sim_type: Allowed SIM types (SIM, USIM, or both)
  348. * @reader: Reader name prefix to search for
  349. * Returns: Pointer to private data structure, or %NULL on failure
  350. *
  351. * This function is used to initialize SIM/USIM connection. PC/SC is used to
  352. * open connection to the SIM/USIM card and the card is verified to support the
  353. * selected sim_type. In addition, local flag is set if a PIN is needed to
  354. * access some of the card functions. Once the connection is not needed
  355. * anymore, scard_deinit() can be used to close it.
  356. */
  357. struct scard_data * scard_init(scard_sim_type sim_type, const char *reader)
  358. {
  359. long ret;
  360. unsigned long len, pos;
  361. struct scard_data *scard;
  362. #ifdef CONFIG_NATIVE_WINDOWS
  363. TCHAR *readers = NULL;
  364. #else /* CONFIG_NATIVE_WINDOWS */
  365. char *readers = NULL;
  366. #endif /* CONFIG_NATIVE_WINDOWS */
  367. unsigned char buf[100];
  368. size_t blen;
  369. int transaction = 0;
  370. int pin_needed;
  371. wpa_printf(MSG_DEBUG, "SCARD: initializing smart card interface");
  372. if (mingw_load_symbols())
  373. return NULL;
  374. scard = os_zalloc(sizeof(*scard));
  375. if (scard == NULL)
  376. return NULL;
  377. ret = SCardEstablishContext(SCARD_SCOPE_SYSTEM, NULL, NULL,
  378. &scard->ctx);
  379. if (ret != SCARD_S_SUCCESS) {
  380. wpa_printf(MSG_DEBUG, "SCARD: Could not establish smart card "
  381. "context (err=%ld)", ret);
  382. goto failed;
  383. }
  384. ret = SCardListReaders(scard->ctx, NULL, NULL, &len);
  385. if (ret != SCARD_S_SUCCESS) {
  386. wpa_printf(MSG_DEBUG, "SCARD: SCardListReaders failed "
  387. "(err=%ld)", ret);
  388. goto failed;
  389. }
  390. #ifdef UNICODE
  391. len *= 2;
  392. #endif /* UNICODE */
  393. readers = os_malloc(len);
  394. if (readers == NULL) {
  395. wpa_printf(MSG_INFO, "SCARD: malloc failed\n");
  396. goto failed;
  397. }
  398. ret = SCardListReaders(scard->ctx, NULL, readers, &len);
  399. if (ret != SCARD_S_SUCCESS) {
  400. wpa_printf(MSG_DEBUG, "SCARD: SCardListReaders failed(2) "
  401. "(err=%ld)", ret);
  402. goto failed;
  403. }
  404. if (len < 3) {
  405. wpa_printf(MSG_WARNING, "SCARD: No smart card readers "
  406. "available.");
  407. goto failed;
  408. }
  409. wpa_hexdump_ascii(MSG_DEBUG, "SCARD: Readers", (u8 *) readers, len);
  410. /*
  411. * readers is a list of available readers. The last entry is terminated
  412. * with double null.
  413. */
  414. pos = 0;
  415. #ifdef UNICODE
  416. /* TODO */
  417. #else /* UNICODE */
  418. while (pos < len) {
  419. if (reader == NULL ||
  420. os_strncmp(&readers[pos], reader, os_strlen(reader)) == 0)
  421. break;
  422. while (pos < len && readers[pos])
  423. pos++;
  424. pos++; /* skip separating null */
  425. if (pos < len && readers[pos] == '\0')
  426. pos = len; /* double null terminates list */
  427. }
  428. #endif /* UNICODE */
  429. if (pos >= len) {
  430. wpa_printf(MSG_WARNING, "SCARD: No reader with prefix '%s' "
  431. "found", reader);
  432. goto failed;
  433. }
  434. #ifdef UNICODE
  435. wpa_printf(MSG_DEBUG, "SCARD: Selected reader='%S'", &readers[pos]);
  436. #else /* UNICODE */
  437. wpa_printf(MSG_DEBUG, "SCARD: Selected reader='%s'", &readers[pos]);
  438. #endif /* UNICODE */
  439. ret = SCardConnect(scard->ctx, &readers[pos], SCARD_SHARE_SHARED,
  440. SCARD_PROTOCOL_T0, &scard->card, &scard->protocol);
  441. if (ret != SCARD_S_SUCCESS) {
  442. if (ret == (long) SCARD_E_NO_SMARTCARD)
  443. wpa_printf(MSG_INFO, "No smart card inserted.");
  444. else
  445. wpa_printf(MSG_WARNING, "SCardConnect err=%lx", ret);
  446. goto failed;
  447. }
  448. os_free(readers);
  449. readers = NULL;
  450. wpa_printf(MSG_DEBUG, "SCARD: card=0x%x active_protocol=%lu (%s)",
  451. (unsigned int) scard->card, scard->protocol,
  452. scard->protocol == SCARD_PROTOCOL_T0 ? "T0" : "T1");
  453. ret = SCardBeginTransaction(scard->card);
  454. if (ret != SCARD_S_SUCCESS) {
  455. wpa_printf(MSG_DEBUG, "SCARD: Could not begin transaction: "
  456. "0x%x", (unsigned int) ret);
  457. goto failed;
  458. }
  459. transaction = 1;
  460. blen = sizeof(buf);
  461. scard->sim_type = SCARD_GSM_SIM;
  462. if (sim_type == SCARD_USIM_ONLY || sim_type == SCARD_TRY_BOTH) {
  463. wpa_printf(MSG_DEBUG, "SCARD: verifying USIM support");
  464. if (_scard_select_file(scard, SCARD_FILE_MF, buf, &blen,
  465. SCARD_USIM, NULL, 0)) {
  466. wpa_printf(MSG_DEBUG, "SCARD: USIM is not supported");
  467. if (sim_type == SCARD_USIM_ONLY)
  468. goto failed;
  469. wpa_printf(MSG_DEBUG, "SCARD: Trying to use GSM SIM");
  470. scard->sim_type = SCARD_GSM_SIM;
  471. } else {
  472. wpa_printf(MSG_DEBUG, "SCARD: USIM is supported");
  473. scard->sim_type = SCARD_USIM;
  474. }
  475. }
  476. if (scard->sim_type == SCARD_GSM_SIM) {
  477. blen = sizeof(buf);
  478. if (scard_select_file(scard, SCARD_FILE_MF, buf, &blen)) {
  479. wpa_printf(MSG_DEBUG, "SCARD: Failed to read MF");
  480. goto failed;
  481. }
  482. blen = sizeof(buf);
  483. if (scard_select_file(scard, SCARD_FILE_GSM_DF, buf, &blen)) {
  484. wpa_printf(MSG_DEBUG, "SCARD: Failed to read GSM DF");
  485. goto failed;
  486. }
  487. } else {
  488. unsigned char aid[32];
  489. int aid_len;
  490. aid_len = scard_get_aid(scard, aid, sizeof(aid));
  491. if (aid_len < 0) {
  492. wpa_printf(MSG_DEBUG, "SCARD: Failed to find AID for "
  493. "3G USIM app - try to use standard 3G RID");
  494. os_memcpy(aid, "\xa0\x00\x00\x00\x87", 5);
  495. aid_len = 5;
  496. }
  497. wpa_hexdump(MSG_DEBUG, "SCARD: 3G USIM AID", aid, aid_len);
  498. /* Select based on AID = 3G RID from EF_DIR. This is usually
  499. * starting with A0 00 00 00 87. */
  500. blen = sizeof(buf);
  501. if (_scard_select_file(scard, 0, buf, &blen, scard->sim_type,
  502. aid, aid_len)) {
  503. wpa_printf(MSG_INFO, "SCARD: Failed to read 3G USIM "
  504. "app");
  505. wpa_hexdump(MSG_INFO, "SCARD: 3G USIM AID",
  506. aid, aid_len);
  507. goto failed;
  508. }
  509. }
  510. /* Verify whether CHV1 (PIN1) is needed to access the card. */
  511. pin_needed = scard_pin_needed(scard, buf, blen);
  512. if (pin_needed < 0) {
  513. wpa_printf(MSG_DEBUG, "SCARD: Failed to determine whether PIN "
  514. "is needed");
  515. goto failed;
  516. }
  517. if (pin_needed) {
  518. scard->pin1_required = 1;
  519. wpa_printf(MSG_DEBUG, "PIN1 needed for SIM access");
  520. }
  521. ret = SCardEndTransaction(scard->card, SCARD_LEAVE_CARD);
  522. if (ret != SCARD_S_SUCCESS) {
  523. wpa_printf(MSG_DEBUG, "SCARD: Could not end transaction: "
  524. "0x%x", (unsigned int) ret);
  525. }
  526. return scard;
  527. failed:
  528. if (transaction)
  529. SCardEndTransaction(scard->card, SCARD_LEAVE_CARD);
  530. os_free(readers);
  531. scard_deinit(scard);
  532. return NULL;
  533. }
  534. /**
  535. * scard_set_pin - Set PIN (CHV1/PIN1) code for accessing SIM/USIM commands
  536. * @scard: Pointer to private data from scard_init()
  537. * @pin: PIN code as an ASCII string (e.g., "1234")
  538. * Returns: 0 on success, -1 on failure
  539. */
  540. int scard_set_pin(struct scard_data *scard, const char *pin)
  541. {
  542. if (scard == NULL)
  543. return -1;
  544. /* Verify whether CHV1 (PIN1) is needed to access the card. */
  545. if (scard->pin1_required) {
  546. if (pin == NULL) {
  547. wpa_printf(MSG_DEBUG, "No PIN configured for SIM "
  548. "access");
  549. return -1;
  550. }
  551. if (scard_verify_pin(scard, pin)) {
  552. wpa_printf(MSG_INFO, "PIN verification failed for "
  553. "SIM access");
  554. return -1;
  555. }
  556. }
  557. return 0;
  558. }
  559. /**
  560. * scard_deinit - Deinitialize SIM/USIM connection
  561. * @scard: Pointer to private data from scard_init()
  562. *
  563. * This function closes the SIM/USIM connect opened with scard_init().
  564. */
  565. void scard_deinit(struct scard_data *scard)
  566. {
  567. long ret;
  568. if (scard == NULL)
  569. return;
  570. wpa_printf(MSG_DEBUG, "SCARD: deinitializing smart card interface");
  571. if (scard->card) {
  572. ret = SCardDisconnect(scard->card, SCARD_UNPOWER_CARD);
  573. if (ret != SCARD_S_SUCCESS) {
  574. wpa_printf(MSG_DEBUG, "SCARD: Failed to disconnect "
  575. "smart card (err=%ld)", ret);
  576. }
  577. }
  578. if (scard->ctx) {
  579. ret = SCardReleaseContext(scard->ctx);
  580. if (ret != SCARD_S_SUCCESS) {
  581. wpa_printf(MSG_DEBUG, "Failed to release smart card "
  582. "context (err=%ld)", ret);
  583. }
  584. }
  585. os_free(scard);
  586. mingw_unload_symbols();
  587. }
  588. static long scard_transmit(struct scard_data *scard,
  589. unsigned char *_send, size_t send_len,
  590. unsigned char *_recv, size_t *recv_len)
  591. {
  592. long ret;
  593. unsigned long rlen;
  594. wpa_hexdump_key(MSG_DEBUG, "SCARD: scard_transmit: send",
  595. _send, send_len);
  596. rlen = *recv_len;
  597. ret = SCardTransmit(scard->card,
  598. scard->protocol == SCARD_PROTOCOL_T1 ?
  599. SCARD_PCI_T1 : SCARD_PCI_T0,
  600. _send, (unsigned long) send_len,
  601. NULL, _recv, &rlen);
  602. *recv_len = rlen;
  603. if (ret == SCARD_S_SUCCESS) {
  604. wpa_hexdump(MSG_DEBUG, "SCARD: scard_transmit: recv",
  605. _recv, rlen);
  606. } else {
  607. wpa_printf(MSG_WARNING, "SCARD: SCardTransmit failed "
  608. "(err=0x%lx)", ret);
  609. }
  610. return ret;
  611. }
  612. static int _scard_select_file(struct scard_data *scard, unsigned short file_id,
  613. unsigned char *buf, size_t *buf_len,
  614. sim_types sim_type, unsigned char *aid,
  615. size_t aidlen)
  616. {
  617. long ret;
  618. unsigned char resp[3];
  619. unsigned char cmd[50] = { SIM_CMD_SELECT };
  620. int cmdlen;
  621. unsigned char get_resp[5] = { SIM_CMD_GET_RESPONSE };
  622. size_t len, rlen;
  623. if (sim_type == SCARD_USIM) {
  624. cmd[0] = USIM_CLA;
  625. cmd[3] = 0x04;
  626. get_resp[0] = USIM_CLA;
  627. }
  628. wpa_printf(MSG_DEBUG, "SCARD: select file %04x", file_id);
  629. if (aid) {
  630. wpa_hexdump(MSG_DEBUG, "SCARD: select file by AID",
  631. aid, aidlen);
  632. if (5 + aidlen > sizeof(cmd))
  633. return -1;
  634. cmd[2] = 0x04; /* Select by AID */
  635. cmd[4] = aidlen; /* len */
  636. os_memcpy(cmd + 5, aid, aidlen);
  637. cmdlen = 5 + aidlen;
  638. } else {
  639. cmd[5] = file_id >> 8;
  640. cmd[6] = file_id & 0xff;
  641. cmdlen = 7;
  642. }
  643. len = sizeof(resp);
  644. ret = scard_transmit(scard, cmd, cmdlen, resp, &len);
  645. if (ret != SCARD_S_SUCCESS) {
  646. wpa_printf(MSG_WARNING, "SCARD: SCardTransmit failed "
  647. "(err=0x%lx)", ret);
  648. return -1;
  649. }
  650. if (len != 2) {
  651. wpa_printf(MSG_WARNING, "SCARD: unexpected resp len "
  652. "%d (expected 2)", (int) len);
  653. return -1;
  654. }
  655. if (resp[0] == 0x98 && resp[1] == 0x04) {
  656. /* Security status not satisfied (PIN_WLAN) */
  657. wpa_printf(MSG_WARNING, "SCARD: Security status not satisfied "
  658. "(PIN_WLAN)");
  659. return -1;
  660. }
  661. if (resp[0] == 0x6e) {
  662. wpa_printf(MSG_DEBUG, "SCARD: used CLA not supported");
  663. return -1;
  664. }
  665. if (resp[0] != 0x6c && resp[0] != 0x9f && resp[0] != 0x61) {
  666. wpa_printf(MSG_WARNING, "SCARD: unexpected response 0x%02x "
  667. "(expected 0x61, 0x6c, or 0x9f)", resp[0]);
  668. return -1;
  669. }
  670. /* Normal ending of command; resp[1] bytes available */
  671. get_resp[4] = resp[1];
  672. wpa_printf(MSG_DEBUG, "SCARD: trying to get response (%d bytes)",
  673. resp[1]);
  674. rlen = *buf_len;
  675. ret = scard_transmit(scard, get_resp, sizeof(get_resp), buf, &rlen);
  676. if (ret == SCARD_S_SUCCESS) {
  677. *buf_len = resp[1] < rlen ? resp[1] : rlen;
  678. return 0;
  679. }
  680. wpa_printf(MSG_WARNING, "SCARD: SCardTransmit err=0x%lx\n", ret);
  681. return -1;
  682. }
  683. static int scard_select_file(struct scard_data *scard, unsigned short file_id,
  684. unsigned char *buf, size_t *buf_len)
  685. {
  686. return _scard_select_file(scard, file_id, buf, buf_len,
  687. scard->sim_type, NULL, 0);
  688. }
  689. static int scard_get_record_len(struct scard_data *scard, unsigned char recnum,
  690. unsigned char mode)
  691. {
  692. unsigned char buf[255];
  693. unsigned char cmd[5] = { SIM_CMD_READ_RECORD /* , len */ };
  694. size_t blen;
  695. long ret;
  696. if (scard->sim_type == SCARD_USIM)
  697. cmd[0] = USIM_CLA;
  698. cmd[2] = recnum;
  699. cmd[3] = mode;
  700. cmd[4] = sizeof(buf);
  701. blen = sizeof(buf);
  702. ret = scard_transmit(scard, cmd, sizeof(cmd), buf, &blen);
  703. if (ret != SCARD_S_SUCCESS) {
  704. wpa_printf(MSG_DEBUG, "SCARD: failed to determine file "
  705. "length for record %d", recnum);
  706. return -1;
  707. }
  708. wpa_hexdump(MSG_DEBUG, "SCARD: file length determination response",
  709. buf, blen);
  710. if (blen < 2 || (buf[0] != 0x6c && buf[0] != 0x67)) {
  711. wpa_printf(MSG_DEBUG, "SCARD: unexpected response to file "
  712. "length determination");
  713. return -1;
  714. }
  715. return buf[1];
  716. }
  717. static int scard_read_record(struct scard_data *scard,
  718. unsigned char *data, size_t len,
  719. unsigned char recnum, unsigned char mode)
  720. {
  721. unsigned char cmd[5] = { SIM_CMD_READ_RECORD /* , len */ };
  722. size_t blen = len + 3;
  723. unsigned char *buf;
  724. long ret;
  725. if (scard->sim_type == SCARD_USIM)
  726. cmd[0] = USIM_CLA;
  727. cmd[2] = recnum;
  728. cmd[3] = mode;
  729. cmd[4] = len;
  730. buf = os_malloc(blen);
  731. if (buf == NULL)
  732. return -1;
  733. ret = scard_transmit(scard, cmd, sizeof(cmd), buf, &blen);
  734. if (ret != SCARD_S_SUCCESS) {
  735. os_free(buf);
  736. return -2;
  737. }
  738. if (blen != len + 2) {
  739. wpa_printf(MSG_DEBUG, "SCARD: record read returned unexpected "
  740. "length %ld (expected %ld)",
  741. (long) blen, (long) len + 2);
  742. os_free(buf);
  743. return -3;
  744. }
  745. if (buf[len] != 0x90 || buf[len + 1] != 0x00) {
  746. wpa_printf(MSG_DEBUG, "SCARD: record read returned unexpected "
  747. "status %02x %02x (expected 90 00)",
  748. buf[len], buf[len + 1]);
  749. os_free(buf);
  750. return -4;
  751. }
  752. os_memcpy(data, buf, len);
  753. os_free(buf);
  754. return 0;
  755. }
  756. static int scard_read_file(struct scard_data *scard,
  757. unsigned char *data, size_t len)
  758. {
  759. unsigned char cmd[5] = { SIM_CMD_READ_BIN /* , len */ };
  760. size_t blen = len + 3;
  761. unsigned char *buf;
  762. long ret;
  763. cmd[4] = len;
  764. buf = os_malloc(blen);
  765. if (buf == NULL)
  766. return -1;
  767. if (scard->sim_type == SCARD_USIM)
  768. cmd[0] = USIM_CLA;
  769. ret = scard_transmit(scard, cmd, sizeof(cmd), buf, &blen);
  770. if (ret != SCARD_S_SUCCESS) {
  771. os_free(buf);
  772. return -2;
  773. }
  774. if (blen != len + 2) {
  775. wpa_printf(MSG_DEBUG, "SCARD: file read returned unexpected "
  776. "length %ld (expected %ld)",
  777. (long) blen, (long) len + 2);
  778. os_free(buf);
  779. return -3;
  780. }
  781. if (buf[len] != 0x90 || buf[len + 1] != 0x00) {
  782. wpa_printf(MSG_DEBUG, "SCARD: file read returned unexpected "
  783. "status %02x %02x (expected 90 00)",
  784. buf[len], buf[len + 1]);
  785. os_free(buf);
  786. return -4;
  787. }
  788. os_memcpy(data, buf, len);
  789. os_free(buf);
  790. return 0;
  791. }
  792. static int scard_verify_pin(struct scard_data *scard, const char *pin)
  793. {
  794. long ret;
  795. unsigned char resp[3];
  796. unsigned char cmd[5 + 8] = { SIM_CMD_VERIFY_CHV1 };
  797. size_t len;
  798. wpa_printf(MSG_DEBUG, "SCARD: verifying PIN");
  799. if (pin == NULL || os_strlen(pin) > 8)
  800. return -1;
  801. if (scard->sim_type == SCARD_USIM)
  802. cmd[0] = USIM_CLA;
  803. os_memcpy(cmd + 5, pin, os_strlen(pin));
  804. os_memset(cmd + 5 + os_strlen(pin), 0xff, 8 - os_strlen(pin));
  805. len = sizeof(resp);
  806. ret = scard_transmit(scard, cmd, sizeof(cmd), resp, &len);
  807. if (ret != SCARD_S_SUCCESS)
  808. return -2;
  809. if (len != 2 || resp[0] != 0x90 || resp[1] != 0x00) {
  810. wpa_printf(MSG_WARNING, "SCARD: PIN verification failed");
  811. return -1;
  812. }
  813. wpa_printf(MSG_DEBUG, "SCARD: PIN verified successfully");
  814. return 0;
  815. }
  816. /**
  817. * scard_get_imsi - Read IMSI from SIM/USIM card
  818. * @scard: Pointer to private data from scard_init()
  819. * @imsi: Buffer for IMSI
  820. * @len: Length of imsi buffer; set to IMSI length on success
  821. * Returns: 0 on success, -1 if IMSI file cannot be selected, -2 if IMSI file
  822. * selection returns invalid result code, -3 if parsing FSP template file fails
  823. * (USIM only), -4 if IMSI does not fit in the provided imsi buffer (len is set
  824. * to needed length), -5 if reading IMSI file fails.
  825. *
  826. * This function can be used to read IMSI from the SIM/USIM card. If the IMSI
  827. * file is PIN protected, scard_set_pin() must have been used to set the
  828. * correct PIN code before calling scard_get_imsi().
  829. */
  830. int scard_get_imsi(struct scard_data *scard, char *imsi, size_t *len)
  831. {
  832. unsigned char buf[100];
  833. size_t blen, imsilen, i;
  834. char *pos;
  835. wpa_printf(MSG_DEBUG, "SCARD: reading IMSI from (GSM) EF-IMSI");
  836. blen = sizeof(buf);
  837. if (scard_select_file(scard, SCARD_FILE_GSM_EF_IMSI, buf, &blen))
  838. return -1;
  839. if (blen < 4) {
  840. wpa_printf(MSG_WARNING, "SCARD: too short (GSM) EF-IMSI "
  841. "header (len=%ld)", (long) blen);
  842. return -2;
  843. }
  844. if (scard->sim_type == SCARD_GSM_SIM) {
  845. blen = (buf[2] << 8) | buf[3];
  846. } else {
  847. int file_size;
  848. if (scard_parse_fsp_templ(buf, blen, NULL, &file_size))
  849. return -3;
  850. blen = file_size;
  851. }
  852. if (blen < 2 || blen > sizeof(buf)) {
  853. wpa_printf(MSG_DEBUG, "SCARD: invalid IMSI file length=%ld",
  854. (long) blen);
  855. return -3;
  856. }
  857. imsilen = (blen - 2) * 2 + 1;
  858. wpa_printf(MSG_DEBUG, "SCARD: IMSI file length=%ld imsilen=%ld",
  859. (long) blen, (long) imsilen);
  860. if (blen < 2 || imsilen > *len) {
  861. *len = imsilen;
  862. return -4;
  863. }
  864. if (scard_read_file(scard, buf, blen))
  865. return -5;
  866. pos = imsi;
  867. *pos++ = '0' + (buf[1] >> 4 & 0x0f);
  868. for (i = 2; i < blen; i++) {
  869. unsigned char digit;
  870. digit = buf[i] & 0x0f;
  871. if (digit < 10)
  872. *pos++ = '0' + digit;
  873. else
  874. imsilen--;
  875. digit = buf[i] >> 4 & 0x0f;
  876. if (digit < 10)
  877. *pos++ = '0' + digit;
  878. else
  879. imsilen--;
  880. }
  881. *len = imsilen;
  882. return 0;
  883. }
  884. /**
  885. * scard_get_mnc_len - Read length of MNC in the IMSI from SIM/USIM card
  886. * @scard: Pointer to private data from scard_init()
  887. * Returns: length (>0) on success, -1 if administrative data file cannot be
  888. * selected, -2 if administrative data file selection returns invalid result
  889. * code, -3 if parsing FSP template file fails (USIM only), -4 if length of
  890. * the file is unexpected, -5 if reading file fails, -6 if MNC length is not
  891. * in range (i.e. 2 or 3), -7 if MNC length is not available.
  892. *
  893. */
  894. int scard_get_mnc_len(struct scard_data *scard)
  895. {
  896. unsigned char buf[100];
  897. size_t blen;
  898. int file_size;
  899. wpa_printf(MSG_DEBUG, "SCARD: reading MNC len from (GSM) EF-AD");
  900. blen = sizeof(buf);
  901. if (scard_select_file(scard, SCARD_FILE_GSM_EF_AD, buf, &blen))
  902. return -1;
  903. if (blen < 4) {
  904. wpa_printf(MSG_WARNING, "SCARD: too short (GSM) EF-AD "
  905. "header (len=%ld)", (long) blen);
  906. return -2;
  907. }
  908. if (scard->sim_type == SCARD_GSM_SIM) {
  909. file_size = (buf[2] << 8) | buf[3];
  910. } else {
  911. if (scard_parse_fsp_templ(buf, blen, NULL, &file_size))
  912. return -3;
  913. }
  914. if (file_size == 3) {
  915. wpa_printf(MSG_DEBUG, "SCARD: MNC length not available");
  916. return -7;
  917. }
  918. if (file_size < 4 || file_size > (int) sizeof(buf)) {
  919. wpa_printf(MSG_DEBUG, "SCARD: invalid file length=%ld",
  920. (long) file_size);
  921. return -4;
  922. }
  923. if (scard_read_file(scard, buf, file_size))
  924. return -5;
  925. buf[3] = buf[3] & 0x0f; /* upper nibble reserved for future use */
  926. if (buf[3] < 2 || buf[3] > 3) {
  927. wpa_printf(MSG_DEBUG, "SCARD: invalid MNC length=%ld",
  928. (long) buf[3]);
  929. return -6;
  930. }
  931. wpa_printf(MSG_DEBUG, "SCARD: MNC length=%ld", (long) buf[3]);
  932. return buf[3];
  933. }
  934. /**
  935. * scard_gsm_auth - Run GSM authentication command on SIM card
  936. * @scard: Pointer to private data from scard_init()
  937. * @_rand: 16-byte RAND value from HLR/AuC
  938. * @sres: 4-byte buffer for SRES
  939. * @kc: 8-byte buffer for Kc
  940. * Returns: 0 on success, -1 if SIM/USIM connection has not been initialized,
  941. * -2 if authentication command execution fails, -3 if unknown response code
  942. * for authentication command is received, -4 if reading of response fails,
  943. * -5 if if response data is of unexpected length
  944. *
  945. * This function performs GSM authentication using SIM/USIM card and the
  946. * provided RAND value from HLR/AuC. If authentication command can be completed
  947. * successfully, SRES and Kc values will be written into sres and kc buffers.
  948. */
  949. int scard_gsm_auth(struct scard_data *scard, const unsigned char *_rand,
  950. unsigned char *sres, unsigned char *kc)
  951. {
  952. unsigned char cmd[5 + 1 + 16] = { SIM_CMD_RUN_GSM_ALG };
  953. int cmdlen;
  954. unsigned char get_resp[5] = { SIM_CMD_GET_RESPONSE };
  955. unsigned char resp[3], buf[12 + 3 + 2];
  956. size_t len;
  957. long ret;
  958. if (scard == NULL)
  959. return -1;
  960. wpa_hexdump(MSG_DEBUG, "SCARD: GSM auth - RAND", _rand, 16);
  961. if (scard->sim_type == SCARD_GSM_SIM) {
  962. cmdlen = 5 + 16;
  963. os_memcpy(cmd + 5, _rand, 16);
  964. } else {
  965. cmdlen = 5 + 1 + 16;
  966. cmd[0] = USIM_CLA;
  967. cmd[3] = 0x80;
  968. cmd[4] = 17;
  969. cmd[5] = 16;
  970. os_memcpy(cmd + 6, _rand, 16);
  971. }
  972. len = sizeof(resp);
  973. ret = scard_transmit(scard, cmd, cmdlen, resp, &len);
  974. if (ret != SCARD_S_SUCCESS)
  975. return -2;
  976. if ((scard->sim_type == SCARD_GSM_SIM &&
  977. (len != 2 || resp[0] != 0x9f || resp[1] != 0x0c)) ||
  978. (scard->sim_type == SCARD_USIM &&
  979. (len != 2 || resp[0] != 0x61 || resp[1] != 0x0e))) {
  980. wpa_printf(MSG_WARNING, "SCARD: unexpected response for GSM "
  981. "auth request (len=%ld resp=%02x %02x)",
  982. (long) len, resp[0], resp[1]);
  983. return -3;
  984. }
  985. get_resp[4] = resp[1];
  986. len = sizeof(buf);
  987. ret = scard_transmit(scard, get_resp, sizeof(get_resp), buf, &len);
  988. if (ret != SCARD_S_SUCCESS)
  989. return -4;
  990. if (scard->sim_type == SCARD_GSM_SIM) {
  991. if (len != 4 + 8 + 2) {
  992. wpa_printf(MSG_WARNING, "SCARD: unexpected data "
  993. "length for GSM auth (len=%ld, expected 14)",
  994. (long) len);
  995. return -5;
  996. }
  997. os_memcpy(sres, buf, 4);
  998. os_memcpy(kc, buf + 4, 8);
  999. } else {
  1000. if (len != 1 + 4 + 1 + 8 + 2) {
  1001. wpa_printf(MSG_WARNING, "SCARD: unexpected data "
  1002. "length for USIM auth (len=%ld, "
  1003. "expected 16)", (long) len);
  1004. return -5;
  1005. }
  1006. if (buf[0] != 4 || buf[5] != 8) {
  1007. wpa_printf(MSG_WARNING, "SCARD: unexpected SREC/Kc "
  1008. "length (%d %d, expected 4 8)",
  1009. buf[0], buf[5]);
  1010. }
  1011. os_memcpy(sres, buf + 1, 4);
  1012. os_memcpy(kc, buf + 6, 8);
  1013. }
  1014. wpa_hexdump(MSG_DEBUG, "SCARD: GSM auth - SRES", sres, 4);
  1015. wpa_hexdump(MSG_DEBUG, "SCARD: GSM auth - Kc", kc, 8);
  1016. return 0;
  1017. }
  1018. /**
  1019. * scard_umts_auth - Run UMTS authentication command on USIM card
  1020. * @scard: Pointer to private data from scard_init()
  1021. * @_rand: 16-byte RAND value from HLR/AuC
  1022. * @autn: 16-byte AUTN value from HLR/AuC
  1023. * @res: 16-byte buffer for RES
  1024. * @res_len: Variable that will be set to RES length
  1025. * @ik: 16-byte buffer for IK
  1026. * @ck: 16-byte buffer for CK
  1027. * @auts: 14-byte buffer for AUTS
  1028. * Returns: 0 on success, -1 on failure, or -2 if USIM reports synchronization
  1029. * failure
  1030. *
  1031. * This function performs AKA authentication using USIM card and the provided
  1032. * RAND and AUTN values from HLR/AuC. If authentication command can be
  1033. * completed successfully, RES, IK, and CK values will be written into provided
  1034. * buffers and res_len is set to length of received RES value. If USIM reports
  1035. * synchronization failure, the received AUTS value will be written into auts
  1036. * buffer. In this case, RES, IK, and CK are not valid.
  1037. */
  1038. int scard_umts_auth(struct scard_data *scard, const unsigned char *_rand,
  1039. const unsigned char *autn,
  1040. unsigned char *res, size_t *res_len,
  1041. unsigned char *ik, unsigned char *ck, unsigned char *auts)
  1042. {
  1043. unsigned char cmd[5 + 1 + AKA_RAND_LEN + 1 + AKA_AUTN_LEN] =
  1044. { USIM_CMD_RUN_UMTS_ALG };
  1045. unsigned char get_resp[5] = { USIM_CMD_GET_RESPONSE };
  1046. unsigned char resp[3], buf[64], *pos, *end;
  1047. size_t len;
  1048. long ret;
  1049. if (scard == NULL)
  1050. return -1;
  1051. if (scard->sim_type == SCARD_GSM_SIM) {
  1052. wpa_printf(MSG_ERROR, "SCARD: Non-USIM card - cannot do UMTS "
  1053. "auth");
  1054. return -1;
  1055. }
  1056. wpa_hexdump(MSG_DEBUG, "SCARD: UMTS auth - RAND", _rand, AKA_RAND_LEN);
  1057. wpa_hexdump(MSG_DEBUG, "SCARD: UMTS auth - AUTN", autn, AKA_AUTN_LEN);
  1058. cmd[5] = AKA_RAND_LEN;
  1059. os_memcpy(cmd + 6, _rand, AKA_RAND_LEN);
  1060. cmd[6 + AKA_RAND_LEN] = AKA_AUTN_LEN;
  1061. os_memcpy(cmd + 6 + AKA_RAND_LEN + 1, autn, AKA_AUTN_LEN);
  1062. len = sizeof(resp);
  1063. ret = scard_transmit(scard, cmd, sizeof(cmd), resp, &len);
  1064. if (ret != SCARD_S_SUCCESS)
  1065. return -1;
  1066. if (len <= sizeof(resp))
  1067. wpa_hexdump(MSG_DEBUG, "SCARD: UMTS alg response", resp, len);
  1068. if (len == 2 && resp[0] == 0x98 && resp[1] == 0x62) {
  1069. wpa_printf(MSG_WARNING, "SCARD: UMTS auth failed - "
  1070. "MAC != XMAC");
  1071. return -1;
  1072. } else if (len != 2 || resp[0] != 0x61) {
  1073. wpa_printf(MSG_WARNING, "SCARD: unexpected response for UMTS "
  1074. "auth request (len=%ld resp=%02x %02x)",
  1075. (long) len, resp[0], resp[1]);
  1076. return -1;
  1077. }
  1078. get_resp[4] = resp[1];
  1079. len = sizeof(buf);
  1080. ret = scard_transmit(scard, get_resp, sizeof(get_resp), buf, &len);
  1081. if (ret != SCARD_S_SUCCESS || len > sizeof(buf))
  1082. return -1;
  1083. wpa_hexdump(MSG_DEBUG, "SCARD: UMTS get response result", buf, len);
  1084. if (len >= 2 + AKA_AUTS_LEN && buf[0] == 0xdc &&
  1085. buf[1] == AKA_AUTS_LEN) {
  1086. wpa_printf(MSG_DEBUG, "SCARD: UMTS Synchronization-Failure");
  1087. os_memcpy(auts, buf + 2, AKA_AUTS_LEN);
  1088. wpa_hexdump(MSG_DEBUG, "SCARD: AUTS", auts, AKA_AUTS_LEN);
  1089. return -2;
  1090. } else if (len >= 6 + IK_LEN + CK_LEN && buf[0] == 0xdb) {
  1091. pos = buf + 1;
  1092. end = buf + len;
  1093. /* RES */
  1094. if (pos[0] > RES_MAX_LEN || pos + pos[0] > end) {
  1095. wpa_printf(MSG_DEBUG, "SCARD: Invalid RES");
  1096. return -1;
  1097. }
  1098. *res_len = *pos++;
  1099. os_memcpy(res, pos, *res_len);
  1100. pos += *res_len;
  1101. wpa_hexdump(MSG_DEBUG, "SCARD: RES", res, *res_len);
  1102. /* CK */
  1103. if (pos[0] != CK_LEN || pos + CK_LEN > end) {
  1104. wpa_printf(MSG_DEBUG, "SCARD: Invalid CK");
  1105. return -1;
  1106. }
  1107. pos++;
  1108. os_memcpy(ck, pos, CK_LEN);
  1109. pos += CK_LEN;
  1110. wpa_hexdump(MSG_DEBUG, "SCARD: CK", ck, CK_LEN);
  1111. /* IK */
  1112. if (pos[0] != IK_LEN || pos + IK_LEN > end) {
  1113. wpa_printf(MSG_DEBUG, "SCARD: Invalid IK");
  1114. return -1;
  1115. }
  1116. pos++;
  1117. os_memcpy(ik, pos, IK_LEN);
  1118. pos += IK_LEN;
  1119. wpa_hexdump(MSG_DEBUG, "SCARD: IK", ik, IK_LEN);
  1120. return 0;
  1121. }
  1122. wpa_printf(MSG_DEBUG, "SCARD: Unrecognized response");
  1123. return -1;
  1124. }