interworking.c 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348
  1. /*
  2. * Interworking (IEEE 802.11u)
  3. * Copyright (c) 2011-2012, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "common/ieee802_11_defs.h"
  11. #include "common/gas.h"
  12. #include "common/wpa_ctrl.h"
  13. #include "drivers/driver.h"
  14. #include "eap_common/eap_defs.h"
  15. #include "eap_peer/eap_methods.h"
  16. #include "wpa_supplicant_i.h"
  17. #include "config.h"
  18. #include "config_ssid.h"
  19. #include "bss.h"
  20. #include "scan.h"
  21. #include "notify.h"
  22. #include "gas_query.h"
  23. #include "interworking.h"
  24. #if defined(EAP_SIM) | defined(EAP_SIM_DYNAMIC)
  25. #define INTERWORKING_3GPP
  26. #else
  27. #if defined(EAP_AKA) | defined(EAP_AKA_DYNAMIC)
  28. #define INTERWORKING_3GPP
  29. #else
  30. #if defined(EAP_AKA_PRIME) | defined(EAP_AKA_PRIME_DYNAMIC)
  31. #define INTERWORKING_3GPP
  32. #endif
  33. #endif
  34. #endif
  35. static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s);
  36. static struct wpabuf * anqp_build_req(u16 info_ids[], size_t num_ids,
  37. struct wpabuf *extra)
  38. {
  39. struct wpabuf *buf;
  40. size_t i;
  41. u8 *len_pos;
  42. buf = gas_anqp_build_initial_req(0, 4 + num_ids * 2 +
  43. (extra ? wpabuf_len(extra) : 0));
  44. if (buf == NULL)
  45. return NULL;
  46. len_pos = gas_anqp_add_element(buf, ANQP_QUERY_LIST);
  47. for (i = 0; i < num_ids; i++)
  48. wpabuf_put_le16(buf, info_ids[i]);
  49. gas_anqp_set_element_len(buf, len_pos);
  50. if (extra)
  51. wpabuf_put_buf(buf, extra);
  52. gas_anqp_set_len(buf);
  53. return buf;
  54. }
  55. static void interworking_anqp_resp_cb(void *ctx, const u8 *dst,
  56. u8 dialog_token,
  57. enum gas_query_result result,
  58. const struct wpabuf *adv_proto,
  59. const struct wpabuf *resp,
  60. u16 status_code)
  61. {
  62. struct wpa_supplicant *wpa_s = ctx;
  63. anqp_resp_cb(wpa_s, dst, dialog_token, result, adv_proto, resp,
  64. status_code);
  65. interworking_next_anqp_fetch(wpa_s);
  66. }
  67. static int interworking_anqp_send_req(struct wpa_supplicant *wpa_s,
  68. struct wpa_bss *bss)
  69. {
  70. struct wpabuf *buf;
  71. int ret = 0;
  72. int res;
  73. u16 info_ids[] = {
  74. ANQP_CAPABILITY_LIST,
  75. ANQP_VENUE_NAME,
  76. ANQP_NETWORK_AUTH_TYPE,
  77. ANQP_ROAMING_CONSORTIUM,
  78. ANQP_IP_ADDR_TYPE_AVAILABILITY,
  79. ANQP_NAI_REALM,
  80. ANQP_3GPP_CELLULAR_NETWORK,
  81. ANQP_DOMAIN_NAME
  82. };
  83. struct wpabuf *extra = NULL;
  84. wpa_printf(MSG_DEBUG, "Interworking: ANQP Query Request to " MACSTR,
  85. MAC2STR(bss->bssid));
  86. buf = anqp_build_req(info_ids, sizeof(info_ids) / sizeof(info_ids[0]),
  87. extra);
  88. wpabuf_free(extra);
  89. if (buf == NULL)
  90. return -1;
  91. res = gas_query_req(wpa_s->gas, bss->bssid, bss->freq, buf,
  92. interworking_anqp_resp_cb, wpa_s);
  93. if (res < 0) {
  94. wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
  95. ret = -1;
  96. } else
  97. wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
  98. "%u", res);
  99. wpabuf_free(buf);
  100. return ret;
  101. }
  102. struct nai_realm_eap {
  103. u8 method;
  104. u8 inner_method;
  105. enum nai_realm_eap_auth_inner_non_eap inner_non_eap;
  106. u8 cred_type;
  107. u8 tunneled_cred_type;
  108. };
  109. struct nai_realm {
  110. u8 encoding;
  111. char *realm;
  112. u8 eap_count;
  113. struct nai_realm_eap *eap;
  114. };
  115. static void nai_realm_free(struct nai_realm *realms, u16 count)
  116. {
  117. u16 i;
  118. if (realms == NULL)
  119. return;
  120. for (i = 0; i < count; i++) {
  121. os_free(realms[i].eap);
  122. os_free(realms[i].realm);
  123. }
  124. os_free(realms);
  125. }
  126. static const u8 * nai_realm_parse_eap(struct nai_realm_eap *e, const u8 *pos,
  127. const u8 *end)
  128. {
  129. u8 elen, auth_count, a;
  130. const u8 *e_end;
  131. if (pos + 3 > end) {
  132. wpa_printf(MSG_DEBUG, "No room for EAP Method fixed fields");
  133. return NULL;
  134. }
  135. elen = *pos++;
  136. if (pos + elen > end || elen < 2) {
  137. wpa_printf(MSG_DEBUG, "No room for EAP Method subfield");
  138. return NULL;
  139. }
  140. e_end = pos + elen;
  141. e->method = *pos++;
  142. auth_count = *pos++;
  143. wpa_printf(MSG_DEBUG, "EAP Method: len=%u method=%u auth_count=%u",
  144. elen, e->method, auth_count);
  145. for (a = 0; a < auth_count; a++) {
  146. u8 id, len;
  147. if (pos + 2 > end || pos + 2 + pos[1] > end) {
  148. wpa_printf(MSG_DEBUG, "No room for Authentication "
  149. "Parameter subfield");
  150. return NULL;
  151. }
  152. id = *pos++;
  153. len = *pos++;
  154. switch (id) {
  155. case NAI_REALM_EAP_AUTH_NON_EAP_INNER_AUTH:
  156. if (len < 1)
  157. break;
  158. e->inner_non_eap = *pos;
  159. if (e->method != EAP_TYPE_TTLS)
  160. break;
  161. switch (*pos) {
  162. case NAI_REALM_INNER_NON_EAP_PAP:
  163. wpa_printf(MSG_DEBUG, "EAP-TTLS/PAP");
  164. break;
  165. case NAI_REALM_INNER_NON_EAP_CHAP:
  166. wpa_printf(MSG_DEBUG, "EAP-TTLS/CHAP");
  167. break;
  168. case NAI_REALM_INNER_NON_EAP_MSCHAP:
  169. wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAP");
  170. break;
  171. case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
  172. wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAPV2");
  173. break;
  174. }
  175. break;
  176. case NAI_REALM_EAP_AUTH_INNER_AUTH_EAP_METHOD:
  177. if (len < 1)
  178. break;
  179. e->inner_method = *pos;
  180. wpa_printf(MSG_DEBUG, "Inner EAP method: %u",
  181. e->inner_method);
  182. break;
  183. case NAI_REALM_EAP_AUTH_CRED_TYPE:
  184. if (len < 1)
  185. break;
  186. e->cred_type = *pos;
  187. wpa_printf(MSG_DEBUG, "Credential Type: %u",
  188. e->cred_type);
  189. break;
  190. case NAI_REALM_EAP_AUTH_TUNNELED_CRED_TYPE:
  191. if (len < 1)
  192. break;
  193. e->tunneled_cred_type = *pos;
  194. wpa_printf(MSG_DEBUG, "Tunneled EAP Method Credential "
  195. "Type: %u", e->tunneled_cred_type);
  196. break;
  197. default:
  198. wpa_printf(MSG_DEBUG, "Unsupported Authentication "
  199. "Parameter: id=%u len=%u", id, len);
  200. wpa_hexdump(MSG_DEBUG, "Authentication Parameter "
  201. "Value", pos, len);
  202. break;
  203. }
  204. pos += len;
  205. }
  206. return e_end;
  207. }
  208. static const u8 * nai_realm_parse_realm(struct nai_realm *r, const u8 *pos,
  209. const u8 *end)
  210. {
  211. u16 len;
  212. const u8 *f_end;
  213. u8 realm_len, e;
  214. if (end - pos < 4) {
  215. wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
  216. "fixed fields");
  217. return NULL;
  218. }
  219. len = WPA_GET_LE16(pos); /* NAI Realm Data field Length */
  220. pos += 2;
  221. if (pos + len > end || len < 3) {
  222. wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
  223. "(len=%u; left=%u)",
  224. len, (unsigned int) (end - pos));
  225. return NULL;
  226. }
  227. f_end = pos + len;
  228. r->encoding = *pos++;
  229. realm_len = *pos++;
  230. if (pos + realm_len > f_end) {
  231. wpa_printf(MSG_DEBUG, "No room for NAI Realm "
  232. "(len=%u; left=%u)",
  233. realm_len, (unsigned int) (f_end - pos));
  234. return NULL;
  235. }
  236. wpa_hexdump_ascii(MSG_DEBUG, "NAI Realm", pos, realm_len);
  237. r->realm = os_malloc(realm_len + 1);
  238. if (r->realm == NULL)
  239. return NULL;
  240. os_memcpy(r->realm, pos, realm_len);
  241. r->realm[realm_len] = '\0';
  242. pos += realm_len;
  243. if (pos + 1 > f_end) {
  244. wpa_printf(MSG_DEBUG, "No room for EAP Method Count");
  245. return NULL;
  246. }
  247. r->eap_count = *pos++;
  248. wpa_printf(MSG_DEBUG, "EAP Count: %u", r->eap_count);
  249. if (pos + r->eap_count * 3 > f_end) {
  250. wpa_printf(MSG_DEBUG, "No room for EAP Methods");
  251. return NULL;
  252. }
  253. r->eap = os_zalloc(r->eap_count * sizeof(struct nai_realm_eap));
  254. if (r->eap == NULL)
  255. return NULL;
  256. for (e = 0; e < r->eap_count; e++) {
  257. pos = nai_realm_parse_eap(&r->eap[e], pos, f_end);
  258. if (pos == NULL)
  259. return NULL;
  260. }
  261. return f_end;
  262. }
  263. static struct nai_realm * nai_realm_parse(struct wpabuf *anqp, u16 *count)
  264. {
  265. struct nai_realm *realm;
  266. const u8 *pos, *end;
  267. u16 i, num;
  268. if (anqp == NULL || wpabuf_len(anqp) < 2)
  269. return NULL;
  270. pos = wpabuf_head_u8(anqp);
  271. end = pos + wpabuf_len(anqp);
  272. num = WPA_GET_LE16(pos);
  273. wpa_printf(MSG_DEBUG, "NAI Realm Count: %u", num);
  274. pos += 2;
  275. if (num * 5 > end - pos) {
  276. wpa_printf(MSG_DEBUG, "Invalid NAI Realm Count %u - not "
  277. "enough data (%u octets) for that many realms",
  278. num, (unsigned int) (end - pos));
  279. return NULL;
  280. }
  281. realm = os_zalloc(num * sizeof(struct nai_realm));
  282. if (realm == NULL)
  283. return NULL;
  284. for (i = 0; i < num; i++) {
  285. pos = nai_realm_parse_realm(&realm[i], pos, end);
  286. if (pos == NULL) {
  287. nai_realm_free(realm, num);
  288. return NULL;
  289. }
  290. }
  291. *count = num;
  292. return realm;
  293. }
  294. static int nai_realm_match(struct nai_realm *realm, const char *home_realm)
  295. {
  296. char *tmp, *pos, *end;
  297. int match = 0;
  298. if (realm->realm == NULL || home_realm == NULL)
  299. return 0;
  300. if (os_strchr(realm->realm, ';') == NULL)
  301. return os_strcasecmp(realm->realm, home_realm) == 0;
  302. tmp = os_strdup(realm->realm);
  303. if (tmp == NULL)
  304. return 0;
  305. pos = tmp;
  306. while (*pos) {
  307. end = os_strchr(pos, ';');
  308. if (end)
  309. *end = '\0';
  310. if (os_strcasecmp(pos, home_realm) == 0) {
  311. match = 1;
  312. break;
  313. }
  314. if (end == NULL)
  315. break;
  316. pos = end + 1;
  317. }
  318. os_free(tmp);
  319. return match;
  320. }
  321. static int nai_realm_cred_username(struct nai_realm_eap *eap)
  322. {
  323. if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL)
  324. return 0; /* method not supported */
  325. if (eap->method != EAP_TYPE_TTLS && eap->method != EAP_TYPE_PEAP) {
  326. /* Only tunneled methods with username/password supported */
  327. return 0;
  328. }
  329. if (eap->method == EAP_TYPE_PEAP &&
  330. eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
  331. return 0;
  332. if (eap->method == EAP_TYPE_TTLS) {
  333. if (eap->inner_method == 0 && eap->inner_non_eap == 0)
  334. return 0;
  335. if (eap->inner_method &&
  336. eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
  337. return 0;
  338. if (eap->inner_non_eap &&
  339. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_PAP &&
  340. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_CHAP &&
  341. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAP &&
  342. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAPV2)
  343. return 0;
  344. }
  345. if (eap->inner_method &&
  346. eap->inner_method != EAP_TYPE_GTC &&
  347. eap->inner_method != EAP_TYPE_MSCHAPV2)
  348. return 0;
  349. return 1;
  350. }
  351. static struct nai_realm_eap * nai_realm_find_eap(struct wpa_cred *cred,
  352. struct nai_realm *realm)
  353. {
  354. u8 e;
  355. if (cred == NULL ||
  356. cred->username == NULL ||
  357. cred->username[0] == '\0' ||
  358. cred->password == NULL ||
  359. cred->password[0] == '\0')
  360. return NULL;
  361. for (e = 0; e < realm->eap_count; e++) {
  362. struct nai_realm_eap *eap = &realm->eap[e];
  363. if (nai_realm_cred_username(eap))
  364. return eap;
  365. }
  366. return NULL;
  367. }
  368. #ifdef INTERWORKING_3GPP
  369. static int plmn_id_match(struct wpabuf *anqp, const char *imsi)
  370. {
  371. const char *sep;
  372. u8 plmn[3];
  373. const u8 *pos, *end;
  374. u8 udhl;
  375. sep = os_strchr(imsi, '-');
  376. if (sep == NULL || (sep - imsi != 5 && sep - imsi != 6))
  377. return 0;
  378. /* See Annex A of 3GPP TS 24.234 v8.1.0 for description */
  379. plmn[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
  380. plmn[1] = imsi[2] - '0';
  381. if (sep - imsi == 6)
  382. plmn[1] |= (imsi[5] - '0') << 4;
  383. else
  384. plmn[1] |= 0xf0;
  385. plmn[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
  386. if (anqp == NULL)
  387. return 0;
  388. pos = wpabuf_head_u8(anqp);
  389. end = pos + wpabuf_len(anqp);
  390. if (pos + 2 > end)
  391. return 0;
  392. if (*pos != 0) {
  393. wpa_printf(MSG_DEBUG, "Unsupported GUD version 0x%x", *pos);
  394. return 0;
  395. }
  396. pos++;
  397. udhl = *pos++;
  398. if (pos + udhl > end) {
  399. wpa_printf(MSG_DEBUG, "Invalid UDHL");
  400. return 0;
  401. }
  402. end = pos + udhl;
  403. while (pos + 2 <= end) {
  404. u8 iei, len;
  405. const u8 *l_end;
  406. iei = *pos++;
  407. len = *pos++ & 0x7f;
  408. if (pos + len > end)
  409. break;
  410. l_end = pos + len;
  411. if (iei == 0 && len > 0) {
  412. /* PLMN List */
  413. u8 num, i;
  414. num = *pos++;
  415. for (i = 0; i < num; i++) {
  416. if (pos + 3 > end)
  417. break;
  418. if (os_memcmp(pos, plmn, 3) == 0)
  419. return 1; /* Found matching PLMN */
  420. }
  421. }
  422. pos = l_end;
  423. }
  424. return 0;
  425. }
  426. static int build_root_nai(char *nai, const char *imsi, char prefix)
  427. {
  428. const char *sep, *msin;
  429. char *end, *pos;
  430. size_t msin_len, plmn_len;
  431. /*
  432. * TS 23.003, Clause 14 (3GPP to WLAN Interworking)
  433. * Root NAI:
  434. * <aka:0|sim:1><IMSI>@wlan.mnc<MNC>.mcc<MCC>.3gppnetwork.org
  435. * <MNC> is zero-padded to three digits in case two-digit MNC is used
  436. */
  437. if (imsi == NULL || os_strlen(imsi) > 16) {
  438. wpa_printf(MSG_DEBUG, "No valid IMSI available");
  439. return -1;
  440. }
  441. sep = os_strchr(imsi, '-');
  442. if (sep == NULL)
  443. return -1;
  444. plmn_len = sep - imsi;
  445. if (plmn_len != 5 && plmn_len != 6)
  446. return -1;
  447. msin = sep + 1;
  448. msin_len = os_strlen(msin);
  449. pos = nai;
  450. end = pos + sizeof(nai);
  451. if (prefix)
  452. *pos++ = prefix;
  453. os_memcpy(pos, imsi, plmn_len);
  454. pos += plmn_len;
  455. os_memcpy(pos, msin, msin_len);
  456. pos += msin_len;
  457. pos += os_snprintf(pos, end - pos, "@wlan.mnc");
  458. if (plmn_len == 5) {
  459. *pos++ = '0';
  460. *pos++ = imsi[3];
  461. *pos++ = imsi[4];
  462. } else {
  463. *pos++ = imsi[3];
  464. *pos++ = imsi[4];
  465. *pos++ = imsi[5];
  466. }
  467. pos += os_snprintf(pos, end - pos, ".mcc%c%c%c.3gppnetwork.org",
  468. imsi[0], imsi[1], imsi[2]);
  469. return 0;
  470. }
  471. static int set_root_nai(struct wpa_ssid *ssid, const char *imsi, char prefix)
  472. {
  473. char nai[100];
  474. if (build_root_nai(nai, imsi, prefix) < 0)
  475. return -1;
  476. return wpa_config_set_quoted(ssid, "identity", nai);
  477. }
  478. #endif /* INTERWORKING_3GPP */
  479. static int interworking_connect_3gpp(struct wpa_supplicant *wpa_s,
  480. struct wpa_bss *bss)
  481. {
  482. #ifdef INTERWORKING_3GPP
  483. struct wpa_cred *cred;
  484. struct wpa_ssid *ssid;
  485. const u8 *ie;
  486. if (bss->anqp_3gpp == NULL)
  487. return -1;
  488. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  489. if (cred->imsi == NULL || !cred->imsi[0] ||
  490. cred->milenage == NULL || !cred->milenage[0])
  491. continue;
  492. if (plmn_id_match(bss->anqp_3gpp, cred->imsi))
  493. break;
  494. }
  495. if (cred == NULL)
  496. return -1;
  497. ie = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  498. if (ie == NULL)
  499. return -1;
  500. wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR " (3GPP)",
  501. MAC2STR(bss->bssid));
  502. ssid = wpa_config_add_network(wpa_s->conf);
  503. if (ssid == NULL)
  504. return -1;
  505. wpas_notify_network_added(wpa_s, ssid);
  506. wpa_config_set_network_defaults(ssid);
  507. ssid->priority = cred->priority;
  508. ssid->temporary = 1;
  509. ssid->ssid = os_zalloc(ie[1] + 1);
  510. if (ssid->ssid == NULL)
  511. goto fail;
  512. os_memcpy(ssid->ssid, ie + 2, ie[1]);
  513. ssid->ssid_len = ie[1];
  514. /* TODO: figure out whether to use EAP-SIM, EAP-AKA, or EAP-AKA' */
  515. if (wpa_config_set(ssid, "eap", "SIM", 0) < 0) {
  516. wpa_printf(MSG_DEBUG, "EAP-SIM not supported");
  517. goto fail;
  518. }
  519. if (set_root_nai(ssid, cred->imsi, '1') < 0) {
  520. wpa_printf(MSG_DEBUG, "Failed to set Root NAI");
  521. goto fail;
  522. }
  523. if (cred->milenage && cred->milenage[0]) {
  524. if (wpa_config_set_quoted(ssid, "password",
  525. cred->milenage) < 0)
  526. goto fail;
  527. } else {
  528. /* TODO: PIN */
  529. if (wpa_config_set_quoted(ssid, "pcsc", "") < 0)
  530. goto fail;
  531. }
  532. if (cred->password && cred->password[0] &&
  533. wpa_config_set_quoted(ssid, "password", cred->password) < 0)
  534. goto fail;
  535. wpa_config_update_prio_list(wpa_s->conf);
  536. wpa_s->disconnected = 0;
  537. wpa_s->reassociate = 1;
  538. wpa_supplicant_req_scan(wpa_s, 0, 0);
  539. return 0;
  540. fail:
  541. wpas_notify_network_removed(wpa_s, ssid);
  542. wpa_config_remove_network(wpa_s->conf, ssid->id);
  543. #endif /* INTERWORKING_3GPP */
  544. return -1;
  545. }
  546. int interworking_connect(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  547. {
  548. struct wpa_cred *cred;
  549. struct wpa_ssid *ssid;
  550. struct nai_realm *realm;
  551. struct nai_realm_eap *eap = NULL;
  552. u16 count, i;
  553. char buf[100];
  554. const u8 *ie;
  555. if (wpa_s->conf->cred == NULL || bss == NULL)
  556. return -1;
  557. ie = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  558. if (ie == NULL || ie[1] == 0) {
  559. wpa_printf(MSG_DEBUG, "Interworking: No SSID known for "
  560. MACSTR, MAC2STR(bss->bssid));
  561. return -1;
  562. }
  563. realm = nai_realm_parse(bss->anqp_nai_realm, &count);
  564. if (realm == NULL) {
  565. wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
  566. "Realm list from " MACSTR, MAC2STR(bss->bssid));
  567. count = 0;
  568. }
  569. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  570. for (i = 0; i < count; i++) {
  571. if (!nai_realm_match(&realm[i], cred->realm))
  572. continue;
  573. eap = nai_realm_find_eap(cred, &realm[i]);
  574. if (eap)
  575. break;
  576. }
  577. if (eap)
  578. break;
  579. }
  580. if (!eap) {
  581. if (interworking_connect_3gpp(wpa_s, bss) == 0) {
  582. if (realm)
  583. nai_realm_free(realm, count);
  584. return 0;
  585. }
  586. wpa_printf(MSG_DEBUG, "Interworking: No matching credentials "
  587. "and EAP method found for " MACSTR,
  588. MAC2STR(bss->bssid));
  589. nai_realm_free(realm, count);
  590. return -1;
  591. }
  592. wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR,
  593. MAC2STR(bss->bssid));
  594. ssid = wpa_config_add_network(wpa_s->conf);
  595. if (ssid == NULL) {
  596. nai_realm_free(realm, count);
  597. return -1;
  598. }
  599. wpas_notify_network_added(wpa_s, ssid);
  600. wpa_config_set_network_defaults(ssid);
  601. ssid->priority = cred->priority;
  602. ssid->temporary = 1;
  603. ssid->ssid = os_zalloc(ie[1] + 1);
  604. if (ssid->ssid == NULL)
  605. goto fail;
  606. os_memcpy(ssid->ssid, ie + 2, ie[1]);
  607. ssid->ssid_len = ie[1];
  608. if (wpa_config_set(ssid, "eap", eap_get_name(EAP_VENDOR_IETF,
  609. eap->method), 0) < 0)
  610. goto fail;
  611. if (eap->method == EAP_TYPE_TTLS &&
  612. cred->username && cred->username[0]) {
  613. const char *pos;
  614. char *anon;
  615. /* Use anonymous NAI in Phase 1 */
  616. pos = os_strchr(cred->username, '@');
  617. if (pos) {
  618. size_t buflen = 9 + os_strlen(pos) + 1;
  619. anon = os_malloc(buflen);
  620. if (anon == NULL)
  621. goto fail;
  622. os_snprintf(anon, buflen, "anonymous%s", pos);
  623. } else {
  624. anon = os_strdup("anonymous");
  625. if (anon == NULL)
  626. goto fail;
  627. }
  628. if (wpa_config_set_quoted(ssid, "anonymous_identity", anon) <
  629. 0) {
  630. os_free(anon);
  631. goto fail;
  632. }
  633. os_free(anon);
  634. }
  635. if (cred->username && cred->username[0] &&
  636. wpa_config_set_quoted(ssid, "identity", cred->username) < 0)
  637. goto fail;
  638. if (cred->password && cred->password[0] &&
  639. wpa_config_set_quoted(ssid, "password", cred->password) < 0)
  640. goto fail;
  641. switch (eap->method) {
  642. case EAP_TYPE_TTLS:
  643. if (eap->inner_method) {
  644. os_snprintf(buf, sizeof(buf), "\"autheap=%s\"",
  645. eap_get_name(EAP_VENDOR_IETF,
  646. eap->inner_method));
  647. if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
  648. goto fail;
  649. break;
  650. }
  651. switch (eap->inner_non_eap) {
  652. case NAI_REALM_INNER_NON_EAP_PAP:
  653. if (wpa_config_set(ssid, "phase2", "\"auth=PAP\"", 0) <
  654. 0)
  655. goto fail;
  656. break;
  657. case NAI_REALM_INNER_NON_EAP_CHAP:
  658. if (wpa_config_set(ssid, "phase2", "\"auth=CHAP\"", 0)
  659. < 0)
  660. goto fail;
  661. break;
  662. case NAI_REALM_INNER_NON_EAP_MSCHAP:
  663. if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAP\"",
  664. 0) < 0)
  665. goto fail;
  666. break;
  667. case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
  668. if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
  669. 0) < 0)
  670. goto fail;
  671. break;
  672. }
  673. break;
  674. case EAP_TYPE_PEAP:
  675. os_snprintf(buf, sizeof(buf), "\"auth=%s\"",
  676. eap_get_name(EAP_VENDOR_IETF, eap->inner_method));
  677. if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
  678. goto fail;
  679. break;
  680. }
  681. if (cred->ca_cert && cred->ca_cert[0] &&
  682. wpa_config_set_quoted(ssid, "ca_cert", cred->ca_cert) < 0)
  683. goto fail;
  684. nai_realm_free(realm, count);
  685. wpa_config_update_prio_list(wpa_s->conf);
  686. wpa_s->disconnected = 0;
  687. wpa_s->reassociate = 1;
  688. wpa_supplicant_req_scan(wpa_s, 0, 0);
  689. return 0;
  690. fail:
  691. wpas_notify_network_removed(wpa_s, ssid);
  692. wpa_config_remove_network(wpa_s->conf, ssid->id);
  693. nai_realm_free(realm, count);
  694. return -1;
  695. }
  696. static struct wpa_cred * interworking_credentials_available_3gpp(
  697. struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  698. {
  699. struct wpa_cred *cred, *selected = NULL;
  700. int ret;
  701. #ifdef INTERWORKING_3GPP
  702. if (bss->anqp_3gpp == NULL)
  703. return NULL;
  704. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  705. if (cred->imsi == NULL || !cred->imsi[0] ||
  706. cred->milenage == NULL || !cred->milenage[0])
  707. continue;
  708. wpa_printf(MSG_DEBUG, "Interworking: Parsing 3GPP info from "
  709. MACSTR, MAC2STR(bss->bssid));
  710. ret = plmn_id_match(bss->anqp_3gpp, cred->imsi);
  711. wpa_printf(MSG_DEBUG, "PLMN match %sfound", ret ? "" : "not ");
  712. if (ret) {
  713. if (selected == NULL ||
  714. selected->priority < cred->priority)
  715. selected = cred;
  716. }
  717. }
  718. #endif /* INTERWORKING_3GPP */
  719. return selected;
  720. }
  721. static struct wpa_cred * interworking_credentials_available_realm(
  722. struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  723. {
  724. struct wpa_cred *cred, *selected = NULL;
  725. struct nai_realm *realm;
  726. u16 count, i;
  727. if (bss->anqp_nai_realm == NULL)
  728. return NULL;
  729. if (wpa_s->conf->cred == NULL)
  730. return NULL;
  731. wpa_printf(MSG_DEBUG, "Interworking: Parsing NAI Realm list from "
  732. MACSTR, MAC2STR(bss->bssid));
  733. realm = nai_realm_parse(bss->anqp_nai_realm, &count);
  734. if (realm == NULL) {
  735. wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
  736. "Realm list from " MACSTR, MAC2STR(bss->bssid));
  737. return NULL;
  738. }
  739. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  740. if (cred->realm == NULL)
  741. continue;
  742. for (i = 0; i < count; i++) {
  743. if (!nai_realm_match(&realm[i], cred->realm))
  744. continue;
  745. if (nai_realm_find_eap(cred, &realm[i])) {
  746. if (selected == NULL ||
  747. selected->priority < cred->priority)
  748. selected = cred;
  749. break;
  750. }
  751. }
  752. }
  753. nai_realm_free(realm, count);
  754. return selected;
  755. }
  756. static struct wpa_cred * interworking_credentials_available(
  757. struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  758. {
  759. struct wpa_cred *cred, *cred2;
  760. cred = interworking_credentials_available_realm(wpa_s, bss);
  761. cred2 = interworking_credentials_available_3gpp(wpa_s, bss);
  762. if (cred && cred2 && cred2->priority >= cred->priority)
  763. cred = cred2;
  764. if (!cred)
  765. cred = cred2;
  766. return cred;
  767. }
  768. static int domain_name_list_contains(struct wpabuf *domain_names,
  769. const char *domain)
  770. {
  771. const u8 *pos, *end;
  772. size_t len;
  773. len = os_strlen(domain);
  774. pos = wpabuf_head(domain_names);
  775. end = pos + wpabuf_len(domain_names);
  776. while (pos + 1 < end) {
  777. if (pos + 1 + pos[0] > end)
  778. break;
  779. wpa_hexdump_ascii(MSG_DEBUG, "Interworking: AP domain name",
  780. pos + 1, pos[0]);
  781. if (pos[0] == len &&
  782. os_strncasecmp(domain, (const char *) (pos + 1), len) == 0)
  783. return 1;
  784. pos += 1 + pos[0];
  785. }
  786. return 0;
  787. }
  788. static int interworking_home_sp(struct wpa_supplicant *wpa_s,
  789. struct wpabuf *domain_names)
  790. {
  791. struct wpa_cred *cred;
  792. #ifdef INTERWORKING_3GPP
  793. char nai[100], *realm;
  794. #endif /* INTERWORKING_3GPP */
  795. if (domain_names == NULL || wpa_s->conf->cred == NULL)
  796. return -1;
  797. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  798. #ifdef INTERWORKING_3GPP
  799. if (cred->imsi &&
  800. build_root_nai(nai, cred->imsi, 0) == 0) {
  801. realm = os_strchr(nai, '@');
  802. if (realm)
  803. realm++;
  804. wpa_printf(MSG_DEBUG, "Interworking: Search for match "
  805. "with SIM/USIM domain %s", realm);
  806. if (realm &&
  807. domain_name_list_contains(domain_names, realm))
  808. return 1;
  809. }
  810. #endif /* INTERWORKING_3GPP */
  811. if (cred->domain == NULL)
  812. continue;
  813. wpa_printf(MSG_DEBUG, "Interworking: Search for match with "
  814. "home SP FQDN %s", cred->domain);
  815. if (domain_name_list_contains(domain_names, cred->domain))
  816. return 1;
  817. }
  818. return 0;
  819. }
  820. static int interworking_find_network_match(struct wpa_supplicant *wpa_s)
  821. {
  822. struct wpa_bss *bss;
  823. struct wpa_ssid *ssid;
  824. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  825. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  826. if (ssid->disabled || ssid->mode != WPAS_MODE_INFRA)
  827. continue;
  828. if (ssid->ssid_len != bss->ssid_len ||
  829. os_memcmp(ssid->ssid, bss->ssid, ssid->ssid_len) !=
  830. 0)
  831. continue;
  832. /*
  833. * TODO: Consider more accurate matching of security
  834. * configuration similarly to what is done in events.c
  835. */
  836. return 1;
  837. }
  838. }
  839. return 0;
  840. }
  841. static void interworking_select_network(struct wpa_supplicant *wpa_s)
  842. {
  843. struct wpa_bss *bss, *selected = NULL, *selected_home = NULL;
  844. int selected_prio = -999999, selected_home_prio = -999999;
  845. unsigned int count = 0;
  846. const char *type;
  847. int res;
  848. struct wpa_cred *cred;
  849. wpa_s->network_select = 0;
  850. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  851. cred = interworking_credentials_available(wpa_s, bss);
  852. if (!cred)
  853. continue;
  854. count++;
  855. res = interworking_home_sp(wpa_s, bss->anqp_domain_name);
  856. if (res > 0)
  857. type = "home";
  858. else if (res == 0)
  859. type = "roaming";
  860. else
  861. type = "unknown";
  862. wpa_msg(wpa_s, MSG_INFO, INTERWORKING_AP MACSTR " type=%s",
  863. MAC2STR(bss->bssid), type);
  864. if (wpa_s->auto_select) {
  865. if (selected == NULL ||
  866. cred->priority > selected_prio) {
  867. selected = bss;
  868. selected_prio = cred->priority;
  869. }
  870. if (res > 0 &&
  871. (selected_home == NULL ||
  872. cred->priority > selected_home_prio)) {
  873. selected_home = bss;
  874. selected_home_prio = cred->priority;
  875. }
  876. }
  877. }
  878. if (selected_home && selected_home != selected &&
  879. selected_home_prio >= selected_prio) {
  880. /* Prefer network operated by the Home SP */
  881. selected = selected_home;
  882. }
  883. if (count == 0) {
  884. /*
  885. * No matching network was found based on configured
  886. * credentials. Check whether any of the enabled network blocks
  887. * have matching APs.
  888. */
  889. if (interworking_find_network_match(wpa_s)) {
  890. wpa_printf(MSG_DEBUG, "Interworking: Possible BSS "
  891. "match for enabled network configurations");
  892. wpa_s->disconnected = 0;
  893. wpa_s->reassociate = 1;
  894. wpa_supplicant_req_scan(wpa_s, 0, 0);
  895. return;
  896. }
  897. wpa_msg(wpa_s, MSG_INFO, INTERWORKING_NO_MATCH "No network "
  898. "with matching credentials found");
  899. }
  900. if (selected)
  901. interworking_connect(wpa_s, selected);
  902. }
  903. static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s)
  904. {
  905. struct wpa_bss *bss;
  906. int found = 0;
  907. const u8 *ie;
  908. if (!wpa_s->fetch_anqp_in_progress)
  909. return;
  910. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  911. if (!(bss->caps & IEEE80211_CAP_ESS))
  912. continue;
  913. ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_CAPAB);
  914. if (ie == NULL || ie[1] < 4 || !(ie[5] & 0x80))
  915. continue; /* AP does not support Interworking */
  916. if (!(bss->flags & WPA_BSS_ANQP_FETCH_TRIED)) {
  917. found++;
  918. bss->flags |= WPA_BSS_ANQP_FETCH_TRIED;
  919. wpa_msg(wpa_s, MSG_INFO, "Starting ANQP fetch for "
  920. MACSTR, MAC2STR(bss->bssid));
  921. interworking_anqp_send_req(wpa_s, bss);
  922. break;
  923. }
  924. }
  925. if (found == 0) {
  926. wpa_msg(wpa_s, MSG_INFO, "ANQP fetch completed");
  927. wpa_s->fetch_anqp_in_progress = 0;
  928. if (wpa_s->network_select)
  929. interworking_select_network(wpa_s);
  930. }
  931. }
  932. static void interworking_start_fetch_anqp(struct wpa_supplicant *wpa_s)
  933. {
  934. struct wpa_bss *bss;
  935. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list)
  936. bss->flags &= ~WPA_BSS_ANQP_FETCH_TRIED;
  937. wpa_s->fetch_anqp_in_progress = 1;
  938. interworking_next_anqp_fetch(wpa_s);
  939. }
  940. int interworking_fetch_anqp(struct wpa_supplicant *wpa_s)
  941. {
  942. if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select)
  943. return 0;
  944. wpa_s->network_select = 0;
  945. interworking_start_fetch_anqp(wpa_s);
  946. return 0;
  947. }
  948. void interworking_stop_fetch_anqp(struct wpa_supplicant *wpa_s)
  949. {
  950. if (!wpa_s->fetch_anqp_in_progress)
  951. return;
  952. wpa_s->fetch_anqp_in_progress = 0;
  953. }
  954. int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst,
  955. u16 info_ids[], size_t num_ids)
  956. {
  957. struct wpabuf *buf;
  958. int ret = 0;
  959. int freq;
  960. struct wpa_bss *bss;
  961. int res;
  962. freq = wpa_s->assoc_freq;
  963. bss = wpa_bss_get_bssid(wpa_s, dst);
  964. if (bss)
  965. freq = bss->freq;
  966. if (freq <= 0)
  967. return -1;
  968. wpa_printf(MSG_DEBUG, "ANQP: Query Request to " MACSTR " for %u id(s)",
  969. MAC2STR(dst), (unsigned int) num_ids);
  970. buf = anqp_build_req(info_ids, num_ids, NULL);
  971. if (buf == NULL)
  972. return -1;
  973. res = gas_query_req(wpa_s->gas, dst, freq, buf, anqp_resp_cb, wpa_s);
  974. if (res < 0) {
  975. wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
  976. ret = -1;
  977. } else
  978. wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
  979. "%u", res);
  980. wpabuf_free(buf);
  981. return ret;
  982. }
  983. static void interworking_parse_rx_anqp_resp(struct wpa_supplicant *wpa_s,
  984. const u8 *sa, u16 info_id,
  985. const u8 *data, size_t slen)
  986. {
  987. const u8 *pos = data;
  988. struct wpa_bss *bss = wpa_bss_get_bssid(wpa_s, sa);
  989. switch (info_id) {
  990. case ANQP_CAPABILITY_LIST:
  991. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  992. " ANQP Capability list", MAC2STR(sa));
  993. break;
  994. case ANQP_VENUE_NAME:
  995. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  996. " Venue Name", MAC2STR(sa));
  997. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Venue Name", pos, slen);
  998. if (bss) {
  999. wpabuf_free(bss->anqp_venue_name);
  1000. bss->anqp_venue_name = wpabuf_alloc_copy(pos, slen);
  1001. }
  1002. break;
  1003. case ANQP_NETWORK_AUTH_TYPE:
  1004. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1005. " Network Authentication Type information",
  1006. MAC2STR(sa));
  1007. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Network Authentication "
  1008. "Type", pos, slen);
  1009. if (bss) {
  1010. wpabuf_free(bss->anqp_network_auth_type);
  1011. bss->anqp_network_auth_type =
  1012. wpabuf_alloc_copy(pos, slen);
  1013. }
  1014. break;
  1015. case ANQP_ROAMING_CONSORTIUM:
  1016. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1017. " Roaming Consortium list", MAC2STR(sa));
  1018. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Roaming Consortium",
  1019. pos, slen);
  1020. if (bss) {
  1021. wpabuf_free(bss->anqp_roaming_consortium);
  1022. bss->anqp_roaming_consortium =
  1023. wpabuf_alloc_copy(pos, slen);
  1024. }
  1025. break;
  1026. case ANQP_IP_ADDR_TYPE_AVAILABILITY:
  1027. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1028. " IP Address Type Availability information",
  1029. MAC2STR(sa));
  1030. wpa_hexdump(MSG_MSGDUMP, "ANQP: IP Address Availability",
  1031. pos, slen);
  1032. if (bss) {
  1033. wpabuf_free(bss->anqp_ip_addr_type_availability);
  1034. bss->anqp_ip_addr_type_availability =
  1035. wpabuf_alloc_copy(pos, slen);
  1036. }
  1037. break;
  1038. case ANQP_NAI_REALM:
  1039. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1040. " NAI Realm list", MAC2STR(sa));
  1041. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: NAI Realm", pos, slen);
  1042. if (bss) {
  1043. wpabuf_free(bss->anqp_nai_realm);
  1044. bss->anqp_nai_realm = wpabuf_alloc_copy(pos, slen);
  1045. }
  1046. break;
  1047. case ANQP_3GPP_CELLULAR_NETWORK:
  1048. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1049. " 3GPP Cellular Network information", MAC2STR(sa));
  1050. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: 3GPP Cellular Network",
  1051. pos, slen);
  1052. if (bss) {
  1053. wpabuf_free(bss->anqp_3gpp);
  1054. bss->anqp_3gpp = wpabuf_alloc_copy(pos, slen);
  1055. }
  1056. break;
  1057. case ANQP_DOMAIN_NAME:
  1058. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1059. " Domain Name list", MAC2STR(sa));
  1060. wpa_hexdump_ascii(MSG_MSGDUMP, "ANQP: Domain Name", pos, slen);
  1061. if (bss) {
  1062. wpabuf_free(bss->anqp_domain_name);
  1063. bss->anqp_domain_name = wpabuf_alloc_copy(pos, slen);
  1064. }
  1065. break;
  1066. case ANQP_VENDOR_SPECIFIC:
  1067. if (slen < 3)
  1068. return;
  1069. switch (WPA_GET_BE24(pos)) {
  1070. default:
  1071. wpa_printf(MSG_DEBUG, "Interworking: Unsupported "
  1072. "vendor-specific ANQP OUI %06x",
  1073. WPA_GET_BE24(pos));
  1074. return;
  1075. }
  1076. break;
  1077. default:
  1078. wpa_printf(MSG_DEBUG, "Interworking: Unsupported ANQP Info ID "
  1079. "%u", info_id);
  1080. break;
  1081. }
  1082. }
  1083. void anqp_resp_cb(void *ctx, const u8 *dst, u8 dialog_token,
  1084. enum gas_query_result result,
  1085. const struct wpabuf *adv_proto,
  1086. const struct wpabuf *resp, u16 status_code)
  1087. {
  1088. struct wpa_supplicant *wpa_s = ctx;
  1089. const u8 *pos;
  1090. const u8 *end;
  1091. u16 info_id;
  1092. u16 slen;
  1093. if (result != GAS_QUERY_SUCCESS)
  1094. return;
  1095. pos = wpabuf_head(adv_proto);
  1096. if (wpabuf_len(adv_proto) < 4 || pos[0] != WLAN_EID_ADV_PROTO ||
  1097. pos[1] < 2 || pos[3] != ACCESS_NETWORK_QUERY_PROTOCOL) {
  1098. wpa_printf(MSG_DEBUG, "ANQP: Unexpected Advertisement "
  1099. "Protocol in response");
  1100. return;
  1101. }
  1102. pos = wpabuf_head(resp);
  1103. end = pos + wpabuf_len(resp);
  1104. while (pos < end) {
  1105. if (pos + 4 > end) {
  1106. wpa_printf(MSG_DEBUG, "ANQP: Invalid element");
  1107. break;
  1108. }
  1109. info_id = WPA_GET_LE16(pos);
  1110. pos += 2;
  1111. slen = WPA_GET_LE16(pos);
  1112. pos += 2;
  1113. if (pos + slen > end) {
  1114. wpa_printf(MSG_DEBUG, "ANQP: Invalid element length "
  1115. "for Info ID %u", info_id);
  1116. break;
  1117. }
  1118. interworking_parse_rx_anqp_resp(wpa_s, dst, info_id, pos,
  1119. slen);
  1120. pos += slen;
  1121. }
  1122. }
  1123. static void interworking_scan_res_handler(struct wpa_supplicant *wpa_s,
  1124. struct wpa_scan_results *scan_res)
  1125. {
  1126. wpa_printf(MSG_DEBUG, "Interworking: Scan results available - start "
  1127. "ANQP fetch");
  1128. interworking_start_fetch_anqp(wpa_s);
  1129. }
  1130. int interworking_select(struct wpa_supplicant *wpa_s, int auto_select)
  1131. {
  1132. interworking_stop_fetch_anqp(wpa_s);
  1133. wpa_s->network_select = 1;
  1134. wpa_s->auto_select = !!auto_select;
  1135. wpa_printf(MSG_DEBUG, "Interworking: Start scan for network "
  1136. "selection");
  1137. wpa_s->scan_res_handler = interworking_scan_res_handler;
  1138. wpa_s->scan_req = 2;
  1139. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1140. return 0;
  1141. }