interworking.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  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 "utils/pcsc_funcs.h"
  14. #include "utils/eloop.h"
  15. #include "drivers/driver.h"
  16. #include "eap_common/eap_defs.h"
  17. #include "eap_peer/eap.h"
  18. #include "eap_peer/eap_methods.h"
  19. #include "wpa_supplicant_i.h"
  20. #include "config.h"
  21. #include "config_ssid.h"
  22. #include "bss.h"
  23. #include "scan.h"
  24. #include "notify.h"
  25. #include "gas_query.h"
  26. #include "hs20_supplicant.h"
  27. #include "interworking.h"
  28. #if defined(EAP_SIM) | defined(EAP_SIM_DYNAMIC)
  29. #define INTERWORKING_3GPP
  30. #else
  31. #if defined(EAP_AKA) | defined(EAP_AKA_DYNAMIC)
  32. #define INTERWORKING_3GPP
  33. #else
  34. #if defined(EAP_AKA_PRIME) | defined(EAP_AKA_PRIME_DYNAMIC)
  35. #define INTERWORKING_3GPP
  36. #endif
  37. #endif
  38. #endif
  39. static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s);
  40. static struct wpa_cred * interworking_credentials_available_realm(
  41. struct wpa_supplicant *wpa_s, struct wpa_bss *bss);
  42. static struct wpa_cred * interworking_credentials_available_3gpp(
  43. struct wpa_supplicant *wpa_s, struct wpa_bss *bss);
  44. static void interworking_reconnect(struct wpa_supplicant *wpa_s)
  45. {
  46. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  47. wpa_supplicant_cancel_sched_scan(wpa_s);
  48. wpa_supplicant_deauthenticate(wpa_s,
  49. WLAN_REASON_DEAUTH_LEAVING);
  50. }
  51. wpa_s->disconnected = 0;
  52. wpa_s->reassociate = 1;
  53. if (wpa_supplicant_fast_associate(wpa_s) >= 0)
  54. return;
  55. wpa_supplicant_req_scan(wpa_s, 0, 0);
  56. }
  57. static struct wpabuf * anqp_build_req(u16 info_ids[], size_t num_ids,
  58. struct wpabuf *extra)
  59. {
  60. struct wpabuf *buf;
  61. size_t i;
  62. u8 *len_pos;
  63. buf = gas_anqp_build_initial_req(0, 4 + num_ids * 2 +
  64. (extra ? wpabuf_len(extra) : 0));
  65. if (buf == NULL)
  66. return NULL;
  67. len_pos = gas_anqp_add_element(buf, ANQP_QUERY_LIST);
  68. for (i = 0; i < num_ids; i++)
  69. wpabuf_put_le16(buf, info_ids[i]);
  70. gas_anqp_set_element_len(buf, len_pos);
  71. if (extra)
  72. wpabuf_put_buf(buf, extra);
  73. gas_anqp_set_len(buf);
  74. return buf;
  75. }
  76. static void interworking_anqp_resp_cb(void *ctx, const u8 *dst,
  77. u8 dialog_token,
  78. enum gas_query_result result,
  79. const struct wpabuf *adv_proto,
  80. const struct wpabuf *resp,
  81. u16 status_code)
  82. {
  83. struct wpa_supplicant *wpa_s = ctx;
  84. anqp_resp_cb(wpa_s, dst, dialog_token, result, adv_proto, resp,
  85. status_code);
  86. interworking_next_anqp_fetch(wpa_s);
  87. }
  88. static int cred_with_roaming_consortium(struct wpa_supplicant *wpa_s)
  89. {
  90. struct wpa_cred *cred;
  91. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  92. if (cred->roaming_consortium_len)
  93. return 1;
  94. if (cred->required_roaming_consortium_len)
  95. return 1;
  96. }
  97. return 0;
  98. }
  99. static int cred_with_3gpp(struct wpa_supplicant *wpa_s)
  100. {
  101. struct wpa_cred *cred;
  102. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  103. if (cred->pcsc || cred->imsi)
  104. return 1;
  105. }
  106. return 0;
  107. }
  108. static int cred_with_nai_realm(struct wpa_supplicant *wpa_s)
  109. {
  110. struct wpa_cred *cred;
  111. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  112. if (cred->pcsc || cred->imsi)
  113. continue;
  114. if (!cred->eap_method)
  115. return 1;
  116. if (cred->realm && cred->roaming_consortium_len == 0)
  117. return 1;
  118. }
  119. return 0;
  120. }
  121. static int cred_with_domain(struct wpa_supplicant *wpa_s)
  122. {
  123. struct wpa_cred *cred;
  124. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  125. if (cred->domain || cred->pcsc || cred->imsi)
  126. return 1;
  127. }
  128. return 0;
  129. }
  130. static int additional_roaming_consortiums(struct wpa_bss *bss)
  131. {
  132. const u8 *ie;
  133. ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
  134. if (ie == NULL || ie[1] == 0)
  135. return 0;
  136. return ie[2]; /* Number of ANQP OIs */
  137. }
  138. static void interworking_continue_anqp(void *eloop_ctx, void *sock_ctx)
  139. {
  140. struct wpa_supplicant *wpa_s = eloop_ctx;
  141. interworking_next_anqp_fetch(wpa_s);
  142. }
  143. static int interworking_anqp_send_req(struct wpa_supplicant *wpa_s,
  144. struct wpa_bss *bss)
  145. {
  146. struct wpabuf *buf;
  147. int ret = 0;
  148. int res;
  149. u16 info_ids[8];
  150. size_t num_info_ids = 0;
  151. struct wpabuf *extra = NULL;
  152. int all = wpa_s->fetch_all_anqp;
  153. wpa_printf(MSG_DEBUG, "Interworking: ANQP Query Request to " MACSTR,
  154. MAC2STR(bss->bssid));
  155. wpa_s->interworking_gas_bss = bss;
  156. info_ids[num_info_ids++] = ANQP_CAPABILITY_LIST;
  157. if (all) {
  158. info_ids[num_info_ids++] = ANQP_VENUE_NAME;
  159. info_ids[num_info_ids++] = ANQP_NETWORK_AUTH_TYPE;
  160. }
  161. if (all || (cred_with_roaming_consortium(wpa_s) &&
  162. additional_roaming_consortiums(bss)))
  163. info_ids[num_info_ids++] = ANQP_ROAMING_CONSORTIUM;
  164. if (all)
  165. info_ids[num_info_ids++] = ANQP_IP_ADDR_TYPE_AVAILABILITY;
  166. if (all || cred_with_nai_realm(wpa_s))
  167. info_ids[num_info_ids++] = ANQP_NAI_REALM;
  168. if (all || cred_with_3gpp(wpa_s))
  169. info_ids[num_info_ids++] = ANQP_3GPP_CELLULAR_NETWORK;
  170. if (all || cred_with_domain(wpa_s))
  171. info_ids[num_info_ids++] = ANQP_DOMAIN_NAME;
  172. wpa_hexdump(MSG_DEBUG, "Interworking: ANQP Query info",
  173. (u8 *) info_ids, num_info_ids * 2);
  174. #ifdef CONFIG_HS20
  175. if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
  176. u8 *len_pos;
  177. extra = wpabuf_alloc(100);
  178. if (!extra)
  179. return -1;
  180. len_pos = gas_anqp_add_element(extra, ANQP_VENDOR_SPECIFIC);
  181. wpabuf_put_be24(extra, OUI_WFA);
  182. wpabuf_put_u8(extra, HS20_ANQP_OUI_TYPE);
  183. wpabuf_put_u8(extra, HS20_STYPE_QUERY_LIST);
  184. wpabuf_put_u8(extra, 0); /* Reserved */
  185. wpabuf_put_u8(extra, HS20_STYPE_CAPABILITY_LIST);
  186. if (all) {
  187. wpabuf_put_u8(extra,
  188. HS20_STYPE_OPERATOR_FRIENDLY_NAME);
  189. wpabuf_put_u8(extra, HS20_STYPE_WAN_METRICS);
  190. wpabuf_put_u8(extra, HS20_STYPE_CONNECTION_CAPABILITY);
  191. wpabuf_put_u8(extra, HS20_STYPE_OPERATING_CLASS);
  192. }
  193. gas_anqp_set_element_len(extra, len_pos);
  194. }
  195. #endif /* CONFIG_HS20 */
  196. buf = anqp_build_req(info_ids, num_info_ids, extra);
  197. wpabuf_free(extra);
  198. if (buf == NULL)
  199. return -1;
  200. res = gas_query_req(wpa_s->gas, bss->bssid, bss->freq, buf,
  201. interworking_anqp_resp_cb, wpa_s);
  202. if (res < 0) {
  203. wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
  204. ret = -1;
  205. eloop_register_timeout(0, 0, interworking_continue_anqp, wpa_s,
  206. NULL);
  207. } else
  208. wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
  209. "%u", res);
  210. wpabuf_free(buf);
  211. return ret;
  212. }
  213. struct nai_realm_eap {
  214. u8 method;
  215. u8 inner_method;
  216. enum nai_realm_eap_auth_inner_non_eap inner_non_eap;
  217. u8 cred_type;
  218. u8 tunneled_cred_type;
  219. };
  220. struct nai_realm {
  221. u8 encoding;
  222. char *realm;
  223. u8 eap_count;
  224. struct nai_realm_eap *eap;
  225. };
  226. static void nai_realm_free(struct nai_realm *realms, u16 count)
  227. {
  228. u16 i;
  229. if (realms == NULL)
  230. return;
  231. for (i = 0; i < count; i++) {
  232. os_free(realms[i].eap);
  233. os_free(realms[i].realm);
  234. }
  235. os_free(realms);
  236. }
  237. static const u8 * nai_realm_parse_eap(struct nai_realm_eap *e, const u8 *pos,
  238. const u8 *end)
  239. {
  240. u8 elen, auth_count, a;
  241. const u8 *e_end;
  242. if (pos + 3 > end) {
  243. wpa_printf(MSG_DEBUG, "No room for EAP Method fixed fields");
  244. return NULL;
  245. }
  246. elen = *pos++;
  247. if (pos + elen > end || elen < 2) {
  248. wpa_printf(MSG_DEBUG, "No room for EAP Method subfield");
  249. return NULL;
  250. }
  251. e_end = pos + elen;
  252. e->method = *pos++;
  253. auth_count = *pos++;
  254. wpa_printf(MSG_DEBUG, "EAP Method: len=%u method=%u auth_count=%u",
  255. elen, e->method, auth_count);
  256. for (a = 0; a < auth_count; a++) {
  257. u8 id, len;
  258. if (pos + 2 > end || pos + 2 + pos[1] > end) {
  259. wpa_printf(MSG_DEBUG, "No room for Authentication "
  260. "Parameter subfield");
  261. return NULL;
  262. }
  263. id = *pos++;
  264. len = *pos++;
  265. switch (id) {
  266. case NAI_REALM_EAP_AUTH_NON_EAP_INNER_AUTH:
  267. if (len < 1)
  268. break;
  269. e->inner_non_eap = *pos;
  270. if (e->method != EAP_TYPE_TTLS)
  271. break;
  272. switch (*pos) {
  273. case NAI_REALM_INNER_NON_EAP_PAP:
  274. wpa_printf(MSG_DEBUG, "EAP-TTLS/PAP");
  275. break;
  276. case NAI_REALM_INNER_NON_EAP_CHAP:
  277. wpa_printf(MSG_DEBUG, "EAP-TTLS/CHAP");
  278. break;
  279. case NAI_REALM_INNER_NON_EAP_MSCHAP:
  280. wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAP");
  281. break;
  282. case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
  283. wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAPV2");
  284. break;
  285. }
  286. break;
  287. case NAI_REALM_EAP_AUTH_INNER_AUTH_EAP_METHOD:
  288. if (len < 1)
  289. break;
  290. e->inner_method = *pos;
  291. wpa_printf(MSG_DEBUG, "Inner EAP method: %u",
  292. e->inner_method);
  293. break;
  294. case NAI_REALM_EAP_AUTH_CRED_TYPE:
  295. if (len < 1)
  296. break;
  297. e->cred_type = *pos;
  298. wpa_printf(MSG_DEBUG, "Credential Type: %u",
  299. e->cred_type);
  300. break;
  301. case NAI_REALM_EAP_AUTH_TUNNELED_CRED_TYPE:
  302. if (len < 1)
  303. break;
  304. e->tunneled_cred_type = *pos;
  305. wpa_printf(MSG_DEBUG, "Tunneled EAP Method Credential "
  306. "Type: %u", e->tunneled_cred_type);
  307. break;
  308. default:
  309. wpa_printf(MSG_DEBUG, "Unsupported Authentication "
  310. "Parameter: id=%u len=%u", id, len);
  311. wpa_hexdump(MSG_DEBUG, "Authentication Parameter "
  312. "Value", pos, len);
  313. break;
  314. }
  315. pos += len;
  316. }
  317. return e_end;
  318. }
  319. static const u8 * nai_realm_parse_realm(struct nai_realm *r, const u8 *pos,
  320. const u8 *end)
  321. {
  322. u16 len;
  323. const u8 *f_end;
  324. u8 realm_len, e;
  325. if (end - pos < 4) {
  326. wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
  327. "fixed fields");
  328. return NULL;
  329. }
  330. len = WPA_GET_LE16(pos); /* NAI Realm Data field Length */
  331. pos += 2;
  332. if (pos + len > end || len < 3) {
  333. wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
  334. "(len=%u; left=%u)",
  335. len, (unsigned int) (end - pos));
  336. return NULL;
  337. }
  338. f_end = pos + len;
  339. r->encoding = *pos++;
  340. realm_len = *pos++;
  341. if (pos + realm_len > f_end) {
  342. wpa_printf(MSG_DEBUG, "No room for NAI Realm "
  343. "(len=%u; left=%u)",
  344. realm_len, (unsigned int) (f_end - pos));
  345. return NULL;
  346. }
  347. wpa_hexdump_ascii(MSG_DEBUG, "NAI Realm", pos, realm_len);
  348. r->realm = dup_binstr(pos, realm_len);
  349. if (r->realm == NULL)
  350. return NULL;
  351. pos += realm_len;
  352. if (pos + 1 > f_end) {
  353. wpa_printf(MSG_DEBUG, "No room for EAP Method Count");
  354. return NULL;
  355. }
  356. r->eap_count = *pos++;
  357. wpa_printf(MSG_DEBUG, "EAP Count: %u", r->eap_count);
  358. if (pos + r->eap_count * 3 > f_end) {
  359. wpa_printf(MSG_DEBUG, "No room for EAP Methods");
  360. return NULL;
  361. }
  362. r->eap = os_calloc(r->eap_count, sizeof(struct nai_realm_eap));
  363. if (r->eap == NULL)
  364. return NULL;
  365. for (e = 0; e < r->eap_count; e++) {
  366. pos = nai_realm_parse_eap(&r->eap[e], pos, f_end);
  367. if (pos == NULL)
  368. return NULL;
  369. }
  370. return f_end;
  371. }
  372. static struct nai_realm * nai_realm_parse(struct wpabuf *anqp, u16 *count)
  373. {
  374. struct nai_realm *realm;
  375. const u8 *pos, *end;
  376. u16 i, num;
  377. if (anqp == NULL || wpabuf_len(anqp) < 2)
  378. return NULL;
  379. pos = wpabuf_head_u8(anqp);
  380. end = pos + wpabuf_len(anqp);
  381. num = WPA_GET_LE16(pos);
  382. wpa_printf(MSG_DEBUG, "NAI Realm Count: %u", num);
  383. pos += 2;
  384. if (num * 5 > end - pos) {
  385. wpa_printf(MSG_DEBUG, "Invalid NAI Realm Count %u - not "
  386. "enough data (%u octets) for that many realms",
  387. num, (unsigned int) (end - pos));
  388. return NULL;
  389. }
  390. realm = os_calloc(num, sizeof(struct nai_realm));
  391. if (realm == NULL)
  392. return NULL;
  393. for (i = 0; i < num; i++) {
  394. pos = nai_realm_parse_realm(&realm[i], pos, end);
  395. if (pos == NULL) {
  396. nai_realm_free(realm, num);
  397. return NULL;
  398. }
  399. }
  400. *count = num;
  401. return realm;
  402. }
  403. static int nai_realm_match(struct nai_realm *realm, const char *home_realm)
  404. {
  405. char *tmp, *pos, *end;
  406. int match = 0;
  407. if (realm->realm == NULL || home_realm == NULL)
  408. return 0;
  409. if (os_strchr(realm->realm, ';') == NULL)
  410. return os_strcasecmp(realm->realm, home_realm) == 0;
  411. tmp = os_strdup(realm->realm);
  412. if (tmp == NULL)
  413. return 0;
  414. pos = tmp;
  415. while (*pos) {
  416. end = os_strchr(pos, ';');
  417. if (end)
  418. *end = '\0';
  419. if (os_strcasecmp(pos, home_realm) == 0) {
  420. match = 1;
  421. break;
  422. }
  423. if (end == NULL)
  424. break;
  425. pos = end + 1;
  426. }
  427. os_free(tmp);
  428. return match;
  429. }
  430. static int nai_realm_cred_username(struct nai_realm_eap *eap)
  431. {
  432. if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL)
  433. return 0; /* method not supported */
  434. if (eap->method != EAP_TYPE_TTLS && eap->method != EAP_TYPE_PEAP) {
  435. /* Only tunneled methods with username/password supported */
  436. return 0;
  437. }
  438. if (eap->method == EAP_TYPE_PEAP) {
  439. if (eap->inner_method &&
  440. eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
  441. return 0;
  442. if (!eap->inner_method &&
  443. eap_get_name(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2) == NULL)
  444. return 0;
  445. }
  446. if (eap->method == EAP_TYPE_TTLS) {
  447. if (eap->inner_method == 0 && eap->inner_non_eap == 0)
  448. return 1; /* Assume TTLS/MSCHAPv2 is used */
  449. if (eap->inner_method &&
  450. eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
  451. return 0;
  452. if (eap->inner_non_eap &&
  453. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_PAP &&
  454. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_CHAP &&
  455. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAP &&
  456. eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAPV2)
  457. return 0;
  458. }
  459. if (eap->inner_method &&
  460. eap->inner_method != EAP_TYPE_GTC &&
  461. eap->inner_method != EAP_TYPE_MSCHAPV2)
  462. return 0;
  463. return 1;
  464. }
  465. static int nai_realm_cred_cert(struct nai_realm_eap *eap)
  466. {
  467. if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL)
  468. return 0; /* method not supported */
  469. if (eap->method != EAP_TYPE_TLS) {
  470. /* Only EAP-TLS supported for credential authentication */
  471. return 0;
  472. }
  473. return 1;
  474. }
  475. static struct nai_realm_eap * nai_realm_find_eap(struct wpa_cred *cred,
  476. struct nai_realm *realm)
  477. {
  478. u8 e;
  479. if (cred == NULL ||
  480. cred->username == NULL ||
  481. cred->username[0] == '\0' ||
  482. ((cred->password == NULL ||
  483. cred->password[0] == '\0') &&
  484. (cred->private_key == NULL ||
  485. cred->private_key[0] == '\0')))
  486. return NULL;
  487. for (e = 0; e < realm->eap_count; e++) {
  488. struct nai_realm_eap *eap = &realm->eap[e];
  489. if (cred->password && cred->password[0] &&
  490. nai_realm_cred_username(eap))
  491. return eap;
  492. if (cred->private_key && cred->private_key[0] &&
  493. nai_realm_cred_cert(eap))
  494. return eap;
  495. }
  496. return NULL;
  497. }
  498. #ifdef INTERWORKING_3GPP
  499. static int plmn_id_match(struct wpabuf *anqp, const char *imsi, int mnc_len)
  500. {
  501. u8 plmn[3], plmn2[3];
  502. const u8 *pos, *end;
  503. u8 udhl;
  504. /*
  505. * See Annex A of 3GPP TS 24.234 v8.1.0 for description. The network
  506. * operator is allowed to include only two digits of the MNC, so allow
  507. * matches based on both two and three digit MNC assumptions. Since some
  508. * SIM/USIM cards may not expose MNC length conveniently, we may be
  509. * provided the default MNC length 3 here and as such, checking with MNC
  510. * length 2 is justifiable even though 3GPP TS 24.234 does not mention
  511. * that case. Anyway, MCC/MNC pair where both 2 and 3 digit MNC is used
  512. * with otherwise matching values would not be good idea in general, so
  513. * this should not result in selecting incorrect networks.
  514. */
  515. /* Match with 3 digit MNC */
  516. plmn[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
  517. plmn[1] = (imsi[2] - '0') | ((imsi[5] - '0') << 4);
  518. plmn[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
  519. /* Match with 2 digit MNC */
  520. plmn2[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
  521. plmn2[1] = (imsi[2] - '0') | 0xf0;
  522. plmn2[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
  523. if (anqp == NULL)
  524. return 0;
  525. pos = wpabuf_head_u8(anqp);
  526. end = pos + wpabuf_len(anqp);
  527. if (pos + 2 > end)
  528. return 0;
  529. if (*pos != 0) {
  530. wpa_printf(MSG_DEBUG, "Unsupported GUD version 0x%x", *pos);
  531. return 0;
  532. }
  533. pos++;
  534. udhl = *pos++;
  535. if (pos + udhl > end) {
  536. wpa_printf(MSG_DEBUG, "Invalid UDHL");
  537. return 0;
  538. }
  539. end = pos + udhl;
  540. wpa_printf(MSG_DEBUG, "Interworking: Matching against MCC/MNC alternatives: %02x:%02x:%02x or %02x:%02x:%02x (IMSI %s, MNC length %d)",
  541. plmn[0], plmn[1], plmn[2], plmn2[0], plmn2[1], plmn2[2],
  542. imsi, mnc_len);
  543. while (pos + 2 <= end) {
  544. u8 iei, len;
  545. const u8 *l_end;
  546. iei = *pos++;
  547. len = *pos++ & 0x7f;
  548. if (pos + len > end)
  549. break;
  550. l_end = pos + len;
  551. if (iei == 0 && len > 0) {
  552. /* PLMN List */
  553. u8 num, i;
  554. wpa_hexdump(MSG_DEBUG, "Interworking: PLMN List information element",
  555. pos, len);
  556. num = *pos++;
  557. for (i = 0; i < num; i++) {
  558. if (pos + 3 > l_end)
  559. break;
  560. if (os_memcmp(pos, plmn, 3) == 0 ||
  561. os_memcmp(pos, plmn2, 3) == 0)
  562. return 1; /* Found matching PLMN */
  563. pos += 3;
  564. }
  565. } else {
  566. wpa_hexdump(MSG_DEBUG, "Interworking: Unrecognized 3GPP information element",
  567. pos, len);
  568. }
  569. pos = l_end;
  570. }
  571. return 0;
  572. }
  573. static int build_root_nai(char *nai, size_t nai_len, const char *imsi,
  574. size_t mnc_len, char prefix)
  575. {
  576. const char *sep, *msin;
  577. char *end, *pos;
  578. size_t msin_len, plmn_len;
  579. /*
  580. * TS 23.003, Clause 14 (3GPP to WLAN Interworking)
  581. * Root NAI:
  582. * <aka:0|sim:1><IMSI>@wlan.mnc<MNC>.mcc<MCC>.3gppnetwork.org
  583. * <MNC> is zero-padded to three digits in case two-digit MNC is used
  584. */
  585. if (imsi == NULL || os_strlen(imsi) > 16) {
  586. wpa_printf(MSG_DEBUG, "No valid IMSI available");
  587. return -1;
  588. }
  589. sep = os_strchr(imsi, '-');
  590. if (sep) {
  591. plmn_len = sep - imsi;
  592. msin = sep + 1;
  593. } else if (mnc_len && os_strlen(imsi) >= 3 + mnc_len) {
  594. plmn_len = 3 + mnc_len;
  595. msin = imsi + plmn_len;
  596. } else
  597. return -1;
  598. if (plmn_len != 5 && plmn_len != 6)
  599. return -1;
  600. msin_len = os_strlen(msin);
  601. pos = nai;
  602. end = nai + nai_len;
  603. if (prefix)
  604. *pos++ = prefix;
  605. os_memcpy(pos, imsi, plmn_len);
  606. pos += plmn_len;
  607. os_memcpy(pos, msin, msin_len);
  608. pos += msin_len;
  609. pos += os_snprintf(pos, end - pos, "@wlan.mnc");
  610. if (plmn_len == 5) {
  611. *pos++ = '0';
  612. *pos++ = imsi[3];
  613. *pos++ = imsi[4];
  614. } else {
  615. *pos++ = imsi[3];
  616. *pos++ = imsi[4];
  617. *pos++ = imsi[5];
  618. }
  619. pos += os_snprintf(pos, end - pos, ".mcc%c%c%c.3gppnetwork.org",
  620. imsi[0], imsi[1], imsi[2]);
  621. return 0;
  622. }
  623. static int set_root_nai(struct wpa_ssid *ssid, const char *imsi, char prefix)
  624. {
  625. char nai[100];
  626. if (build_root_nai(nai, sizeof(nai), imsi, 0, prefix) < 0)
  627. return -1;
  628. return wpa_config_set_quoted(ssid, "identity", nai);
  629. }
  630. #endif /* INTERWORKING_3GPP */
  631. static int interworking_set_hs20_params(struct wpa_supplicant *wpa_s,
  632. struct wpa_ssid *ssid)
  633. {
  634. if (wpa_config_set(ssid, "key_mgmt",
  635. wpa_s->conf->pmf != NO_MGMT_FRAME_PROTECTION ?
  636. "WPA-EAP WPA-EAP-SHA256" : "WPA-EAP", 0) < 0)
  637. return -1;
  638. if (wpa_config_set(ssid, "proto", "RSN", 0) < 0)
  639. return -1;
  640. if (wpa_config_set(ssid, "pairwise", "CCMP", 0) < 0)
  641. return -1;
  642. return 0;
  643. }
  644. static int interworking_connect_3gpp(struct wpa_supplicant *wpa_s,
  645. struct wpa_cred *cred,
  646. struct wpa_bss *bss)
  647. {
  648. #ifdef INTERWORKING_3GPP
  649. struct wpa_ssid *ssid;
  650. const u8 *ie;
  651. int eap_type;
  652. int res;
  653. char prefix;
  654. if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL)
  655. return -1;
  656. ie = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  657. if (ie == NULL)
  658. return -1;
  659. wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR " (3GPP)",
  660. MAC2STR(bss->bssid));
  661. ssid = wpa_config_add_network(wpa_s->conf);
  662. if (ssid == NULL)
  663. return -1;
  664. ssid->parent_cred = cred;
  665. wpas_notify_network_added(wpa_s, ssid);
  666. wpa_config_set_network_defaults(ssid);
  667. ssid->priority = cred->priority;
  668. ssid->temporary = 1;
  669. ssid->ssid = os_zalloc(ie[1] + 1);
  670. if (ssid->ssid == NULL)
  671. goto fail;
  672. os_memcpy(ssid->ssid, ie + 2, ie[1]);
  673. ssid->ssid_len = ie[1];
  674. if (interworking_set_hs20_params(wpa_s, ssid) < 0)
  675. goto fail;
  676. eap_type = EAP_TYPE_SIM;
  677. if (cred->pcsc && wpa_s->scard && scard_supports_umts(wpa_s->scard))
  678. eap_type = EAP_TYPE_AKA;
  679. if (cred->eap_method && cred->eap_method[0].vendor == EAP_VENDOR_IETF) {
  680. if (cred->eap_method[0].method == EAP_TYPE_SIM ||
  681. cred->eap_method[0].method == EAP_TYPE_AKA ||
  682. cred->eap_method[0].method == EAP_TYPE_AKA_PRIME)
  683. eap_type = cred->eap_method[0].method;
  684. }
  685. switch (eap_type) {
  686. case EAP_TYPE_SIM:
  687. prefix = '1';
  688. res = wpa_config_set(ssid, "eap", "SIM", 0);
  689. break;
  690. case EAP_TYPE_AKA:
  691. prefix = '0';
  692. res = wpa_config_set(ssid, "eap", "AKA", 0);
  693. break;
  694. case EAP_TYPE_AKA_PRIME:
  695. prefix = '6';
  696. res = wpa_config_set(ssid, "eap", "AKA'", 0);
  697. break;
  698. default:
  699. res = -1;
  700. break;
  701. }
  702. if (res < 0) {
  703. wpa_printf(MSG_DEBUG, "Selected EAP method (%d) not supported",
  704. eap_type);
  705. goto fail;
  706. }
  707. if (!cred->pcsc && set_root_nai(ssid, cred->imsi, prefix) < 0) {
  708. wpa_printf(MSG_DEBUG, "Failed to set Root NAI");
  709. goto fail;
  710. }
  711. if (cred->milenage && cred->milenage[0]) {
  712. if (wpa_config_set_quoted(ssid, "password",
  713. cred->milenage) < 0)
  714. goto fail;
  715. } else if (cred->pcsc) {
  716. if (wpa_config_set_quoted(ssid, "pcsc", "") < 0)
  717. goto fail;
  718. if (wpa_s->conf->pcsc_pin &&
  719. wpa_config_set_quoted(ssid, "pin", wpa_s->conf->pcsc_pin)
  720. < 0)
  721. goto fail;
  722. }
  723. if (cred->password && cred->password[0] &&
  724. wpa_config_set_quoted(ssid, "password", cred->password) < 0)
  725. goto fail;
  726. wpa_config_update_prio_list(wpa_s->conf);
  727. interworking_reconnect(wpa_s);
  728. return 0;
  729. fail:
  730. wpas_notify_network_removed(wpa_s, ssid);
  731. wpa_config_remove_network(wpa_s->conf, ssid->id);
  732. #endif /* INTERWORKING_3GPP */
  733. return -1;
  734. }
  735. static int roaming_consortium_element_match(const u8 *ie, const u8 *rc_id,
  736. size_t rc_len)
  737. {
  738. const u8 *pos, *end;
  739. u8 lens;
  740. if (ie == NULL)
  741. return 0;
  742. pos = ie + 2;
  743. end = ie + 2 + ie[1];
  744. /* Roaming Consortium element:
  745. * Number of ANQP OIs
  746. * OI #1 and #2 lengths
  747. * OI #1, [OI #2], [OI #3]
  748. */
  749. if (pos + 2 > end)
  750. return 0;
  751. pos++; /* skip Number of ANQP OIs */
  752. lens = *pos++;
  753. if (pos + (lens & 0x0f) + (lens >> 4) > end)
  754. return 0;
  755. if ((lens & 0x0f) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
  756. return 1;
  757. pos += lens & 0x0f;
  758. if ((lens >> 4) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
  759. return 1;
  760. pos += lens >> 4;
  761. if (pos < end && (size_t) (end - pos) == rc_len &&
  762. os_memcmp(pos, rc_id, rc_len) == 0)
  763. return 1;
  764. return 0;
  765. }
  766. static int roaming_consortium_anqp_match(const struct wpabuf *anqp,
  767. const u8 *rc_id, size_t rc_len)
  768. {
  769. const u8 *pos, *end;
  770. u8 len;
  771. if (anqp == NULL)
  772. return 0;
  773. pos = wpabuf_head(anqp);
  774. end = pos + wpabuf_len(anqp);
  775. /* Set of <OI Length, OI> duples */
  776. while (pos < end) {
  777. len = *pos++;
  778. if (pos + len > end)
  779. break;
  780. if (len == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
  781. return 1;
  782. pos += len;
  783. }
  784. return 0;
  785. }
  786. static int roaming_consortium_match(const u8 *ie, const struct wpabuf *anqp,
  787. const u8 *rc_id, size_t rc_len)
  788. {
  789. return roaming_consortium_element_match(ie, rc_id, rc_len) ||
  790. roaming_consortium_anqp_match(anqp, rc_id, rc_len);
  791. }
  792. static int cred_no_required_oi_match(struct wpa_cred *cred, struct wpa_bss *bss)
  793. {
  794. const u8 *ie;
  795. if (cred->required_roaming_consortium_len == 0)
  796. return 0;
  797. ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
  798. if (ie == NULL &&
  799. (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
  800. return 1;
  801. return !roaming_consortium_match(ie,
  802. bss->anqp ?
  803. bss->anqp->roaming_consortium : NULL,
  804. cred->required_roaming_consortium,
  805. cred->required_roaming_consortium_len);
  806. }
  807. static int cred_excluded_ssid(struct wpa_cred *cred, struct wpa_bss *bss)
  808. {
  809. size_t i;
  810. if (!cred->excluded_ssid)
  811. return 0;
  812. for (i = 0; i < cred->num_excluded_ssid; i++) {
  813. struct excluded_ssid *e = &cred->excluded_ssid[i];
  814. if (bss->ssid_len == e->ssid_len &&
  815. os_memcmp(bss->ssid, e->ssid, e->ssid_len) == 0)
  816. return 1;
  817. }
  818. return 0;
  819. }
  820. static struct wpa_cred * interworking_credentials_available_roaming_consortium(
  821. struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  822. {
  823. struct wpa_cred *cred, *selected = NULL;
  824. const u8 *ie;
  825. ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
  826. if (ie == NULL &&
  827. (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
  828. return NULL;
  829. if (wpa_s->conf->cred == NULL)
  830. return NULL;
  831. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  832. if (cred->roaming_consortium_len == 0)
  833. continue;
  834. if (!roaming_consortium_match(ie,
  835. bss->anqp ?
  836. bss->anqp->roaming_consortium :
  837. NULL,
  838. cred->roaming_consortium,
  839. cred->roaming_consortium_len))
  840. continue;
  841. if (cred_excluded_ssid(cred, bss))
  842. continue;
  843. if (cred_no_required_oi_match(cred, bss))
  844. continue;
  845. if (selected == NULL ||
  846. selected->priority < cred->priority)
  847. selected = cred;
  848. }
  849. return selected;
  850. }
  851. static int interworking_set_eap_params(struct wpa_ssid *ssid,
  852. struct wpa_cred *cred, int ttls)
  853. {
  854. if (cred->eap_method) {
  855. ttls = cred->eap_method->vendor == EAP_VENDOR_IETF &&
  856. cred->eap_method->method == EAP_TYPE_TTLS;
  857. os_free(ssid->eap.eap_methods);
  858. ssid->eap.eap_methods =
  859. os_malloc(sizeof(struct eap_method_type) * 2);
  860. if (ssid->eap.eap_methods == NULL)
  861. return -1;
  862. os_memcpy(ssid->eap.eap_methods, cred->eap_method,
  863. sizeof(*cred->eap_method));
  864. ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF;
  865. ssid->eap.eap_methods[1].method = EAP_TYPE_NONE;
  866. }
  867. if (ttls && cred->username && cred->username[0]) {
  868. const char *pos;
  869. char *anon;
  870. /* Use anonymous NAI in Phase 1 */
  871. pos = os_strchr(cred->username, '@');
  872. if (pos) {
  873. size_t buflen = 9 + os_strlen(pos) + 1;
  874. anon = os_malloc(buflen);
  875. if (anon == NULL)
  876. return -1;
  877. os_snprintf(anon, buflen, "anonymous%s", pos);
  878. } else if (cred->realm) {
  879. size_t buflen = 10 + os_strlen(cred->realm) + 1;
  880. anon = os_malloc(buflen);
  881. if (anon == NULL)
  882. return -1;
  883. os_snprintf(anon, buflen, "anonymous@%s", cred->realm);
  884. } else {
  885. anon = os_strdup("anonymous");
  886. if (anon == NULL)
  887. return -1;
  888. }
  889. if (wpa_config_set_quoted(ssid, "anonymous_identity", anon) <
  890. 0) {
  891. os_free(anon);
  892. return -1;
  893. }
  894. os_free(anon);
  895. }
  896. if (cred->username && cred->username[0] &&
  897. wpa_config_set_quoted(ssid, "identity", cred->username) < 0)
  898. return -1;
  899. if (cred->password && cred->password[0]) {
  900. if (cred->ext_password &&
  901. wpa_config_set(ssid, "password", cred->password, 0) < 0)
  902. return -1;
  903. if (!cred->ext_password &&
  904. wpa_config_set_quoted(ssid, "password", cred->password) <
  905. 0)
  906. return -1;
  907. }
  908. if (cred->client_cert && cred->client_cert[0] &&
  909. wpa_config_set_quoted(ssid, "client_cert", cred->client_cert) < 0)
  910. return -1;
  911. #ifdef ANDROID
  912. if (cred->private_key &&
  913. os_strncmp(cred->private_key, "keystore://", 11) == 0) {
  914. /* Use OpenSSL engine configuration for Android keystore */
  915. if (wpa_config_set_quoted(ssid, "engine_id", "keystore") < 0 ||
  916. wpa_config_set_quoted(ssid, "key_id",
  917. cred->private_key + 11) < 0 ||
  918. wpa_config_set(ssid, "engine", "1", 0) < 0)
  919. return -1;
  920. } else
  921. #endif /* ANDROID */
  922. if (cred->private_key && cred->private_key[0] &&
  923. wpa_config_set_quoted(ssid, "private_key", cred->private_key) < 0)
  924. return -1;
  925. if (cred->private_key_passwd && cred->private_key_passwd[0] &&
  926. wpa_config_set_quoted(ssid, "private_key_passwd",
  927. cred->private_key_passwd) < 0)
  928. return -1;
  929. if (cred->phase1) {
  930. os_free(ssid->eap.phase1);
  931. ssid->eap.phase1 = os_strdup(cred->phase1);
  932. }
  933. if (cred->phase2) {
  934. os_free(ssid->eap.phase2);
  935. ssid->eap.phase2 = os_strdup(cred->phase2);
  936. }
  937. if (cred->ca_cert && cred->ca_cert[0] &&
  938. wpa_config_set_quoted(ssid, "ca_cert", cred->ca_cert) < 0)
  939. return -1;
  940. if (cred->domain_suffix_match && cred->domain_suffix_match[0] &&
  941. wpa_config_set_quoted(ssid, "domain_suffix_match",
  942. cred->domain_suffix_match) < 0)
  943. return -1;
  944. return 0;
  945. }
  946. static int interworking_connect_roaming_consortium(
  947. struct wpa_supplicant *wpa_s, struct wpa_cred *cred,
  948. struct wpa_bss *bss, const u8 *ssid_ie)
  949. {
  950. struct wpa_ssid *ssid;
  951. wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR " based on "
  952. "roaming consortium match", MAC2STR(bss->bssid));
  953. ssid = wpa_config_add_network(wpa_s->conf);
  954. if (ssid == NULL)
  955. return -1;
  956. ssid->parent_cred = cred;
  957. wpas_notify_network_added(wpa_s, ssid);
  958. wpa_config_set_network_defaults(ssid);
  959. ssid->priority = cred->priority;
  960. ssid->temporary = 1;
  961. ssid->ssid = os_zalloc(ssid_ie[1] + 1);
  962. if (ssid->ssid == NULL)
  963. goto fail;
  964. os_memcpy(ssid->ssid, ssid_ie + 2, ssid_ie[1]);
  965. ssid->ssid_len = ssid_ie[1];
  966. if (interworking_set_hs20_params(wpa_s, ssid) < 0)
  967. goto fail;
  968. if (cred->eap_method == NULL) {
  969. wpa_printf(MSG_DEBUG, "Interworking: No EAP method set for "
  970. "credential using roaming consortium");
  971. goto fail;
  972. }
  973. if (interworking_set_eap_params(
  974. ssid, cred,
  975. cred->eap_method->vendor == EAP_VENDOR_IETF &&
  976. cred->eap_method->method == EAP_TYPE_TTLS) < 0)
  977. goto fail;
  978. wpa_config_update_prio_list(wpa_s->conf);
  979. interworking_reconnect(wpa_s);
  980. return 0;
  981. fail:
  982. wpas_notify_network_removed(wpa_s, ssid);
  983. wpa_config_remove_network(wpa_s->conf, ssid->id);
  984. return -1;
  985. }
  986. int interworking_connect(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  987. {
  988. struct wpa_cred *cred, *cred_rc, *cred_3gpp;
  989. struct wpa_ssid *ssid;
  990. struct nai_realm *realm;
  991. struct nai_realm_eap *eap = NULL;
  992. u16 count, i;
  993. char buf[100];
  994. const u8 *ie;
  995. if (wpa_s->conf->cred == NULL || bss == NULL)
  996. return -1;
  997. ie = wpa_bss_get_ie(bss, WLAN_EID_SSID);
  998. if (ie == NULL || ie[1] == 0) {
  999. wpa_printf(MSG_DEBUG, "Interworking: No SSID known for "
  1000. MACSTR, MAC2STR(bss->bssid));
  1001. return -1;
  1002. }
  1003. if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
  1004. /*
  1005. * We currently support only HS 2.0 networks and those are
  1006. * required to use WPA2-Enterprise.
  1007. */
  1008. wpa_printf(MSG_DEBUG, "Interworking: Network does not use "
  1009. "RSN");
  1010. return -1;
  1011. }
  1012. cred_rc = interworking_credentials_available_roaming_consortium(wpa_s,
  1013. bss);
  1014. if (cred_rc) {
  1015. wpa_printf(MSG_DEBUG, "Interworking: Highest roaming "
  1016. "consortium matching credential priority %d",
  1017. cred_rc->priority);
  1018. }
  1019. cred = interworking_credentials_available_realm(wpa_s, bss);
  1020. if (cred) {
  1021. wpa_printf(MSG_DEBUG, "Interworking: Highest NAI Realm list "
  1022. "matching credential priority %d",
  1023. cred->priority);
  1024. }
  1025. cred_3gpp = interworking_credentials_available_3gpp(wpa_s, bss);
  1026. if (cred_3gpp) {
  1027. wpa_printf(MSG_DEBUG, "Interworking: Highest 3GPP matching "
  1028. "credential priority %d", cred_3gpp->priority);
  1029. }
  1030. if (cred_rc &&
  1031. (cred == NULL || cred_rc->priority >= cred->priority) &&
  1032. (cred_3gpp == NULL || cred_rc->priority >= cred_3gpp->priority))
  1033. return interworking_connect_roaming_consortium(wpa_s, cred_rc,
  1034. bss, ie);
  1035. if (cred_3gpp &&
  1036. (cred == NULL || cred_3gpp->priority >= cred->priority)) {
  1037. return interworking_connect_3gpp(wpa_s, cred_3gpp, bss);
  1038. }
  1039. if (cred == NULL) {
  1040. wpa_printf(MSG_DEBUG, "Interworking: No matching credentials "
  1041. "found for " MACSTR, MAC2STR(bss->bssid));
  1042. return -1;
  1043. }
  1044. realm = nai_realm_parse(bss->anqp ? bss->anqp->nai_realm : NULL,
  1045. &count);
  1046. if (realm == NULL) {
  1047. wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
  1048. "Realm list from " MACSTR, MAC2STR(bss->bssid));
  1049. return -1;
  1050. }
  1051. for (i = 0; i < count; i++) {
  1052. if (!nai_realm_match(&realm[i], cred->realm))
  1053. continue;
  1054. eap = nai_realm_find_eap(cred, &realm[i]);
  1055. if (eap)
  1056. break;
  1057. }
  1058. if (!eap) {
  1059. wpa_printf(MSG_DEBUG, "Interworking: No matching credentials "
  1060. "and EAP method found for " MACSTR,
  1061. MAC2STR(bss->bssid));
  1062. nai_realm_free(realm, count);
  1063. return -1;
  1064. }
  1065. wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR,
  1066. MAC2STR(bss->bssid));
  1067. ssid = wpa_config_add_network(wpa_s->conf);
  1068. if (ssid == NULL) {
  1069. nai_realm_free(realm, count);
  1070. return -1;
  1071. }
  1072. ssid->parent_cred = cred;
  1073. wpas_notify_network_added(wpa_s, ssid);
  1074. wpa_config_set_network_defaults(ssid);
  1075. ssid->priority = cred->priority;
  1076. ssid->temporary = 1;
  1077. ssid->ssid = os_zalloc(ie[1] + 1);
  1078. if (ssid->ssid == NULL)
  1079. goto fail;
  1080. os_memcpy(ssid->ssid, ie + 2, ie[1]);
  1081. ssid->ssid_len = ie[1];
  1082. if (interworking_set_hs20_params(wpa_s, ssid) < 0)
  1083. goto fail;
  1084. if (wpa_config_set(ssid, "eap", eap_get_name(EAP_VENDOR_IETF,
  1085. eap->method), 0) < 0)
  1086. goto fail;
  1087. switch (eap->method) {
  1088. case EAP_TYPE_TTLS:
  1089. if (eap->inner_method) {
  1090. os_snprintf(buf, sizeof(buf), "\"autheap=%s\"",
  1091. eap_get_name(EAP_VENDOR_IETF,
  1092. eap->inner_method));
  1093. if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
  1094. goto fail;
  1095. break;
  1096. }
  1097. switch (eap->inner_non_eap) {
  1098. case NAI_REALM_INNER_NON_EAP_PAP:
  1099. if (wpa_config_set(ssid, "phase2", "\"auth=PAP\"", 0) <
  1100. 0)
  1101. goto fail;
  1102. break;
  1103. case NAI_REALM_INNER_NON_EAP_CHAP:
  1104. if (wpa_config_set(ssid, "phase2", "\"auth=CHAP\"", 0)
  1105. < 0)
  1106. goto fail;
  1107. break;
  1108. case NAI_REALM_INNER_NON_EAP_MSCHAP:
  1109. if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAP\"",
  1110. 0) < 0)
  1111. goto fail;
  1112. break;
  1113. case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
  1114. if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
  1115. 0) < 0)
  1116. goto fail;
  1117. break;
  1118. default:
  1119. /* EAP params were not set - assume TTLS/MSCHAPv2 */
  1120. if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
  1121. 0) < 0)
  1122. goto fail;
  1123. break;
  1124. }
  1125. break;
  1126. case EAP_TYPE_PEAP:
  1127. os_snprintf(buf, sizeof(buf), "\"auth=%s\"",
  1128. eap_get_name(EAP_VENDOR_IETF,
  1129. eap->inner_method ?
  1130. eap->inner_method :
  1131. EAP_TYPE_MSCHAPV2));
  1132. if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
  1133. goto fail;
  1134. break;
  1135. case EAP_TYPE_TLS:
  1136. break;
  1137. }
  1138. if (interworking_set_eap_params(ssid, cred,
  1139. eap->method == EAP_TYPE_TTLS) < 0)
  1140. goto fail;
  1141. nai_realm_free(realm, count);
  1142. wpa_config_update_prio_list(wpa_s->conf);
  1143. interworking_reconnect(wpa_s);
  1144. return 0;
  1145. fail:
  1146. wpas_notify_network_removed(wpa_s, ssid);
  1147. wpa_config_remove_network(wpa_s->conf, ssid->id);
  1148. nai_realm_free(realm, count);
  1149. return -1;
  1150. }
  1151. static struct wpa_cred * interworking_credentials_available_3gpp(
  1152. struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  1153. {
  1154. struct wpa_cred *selected = NULL;
  1155. #ifdef INTERWORKING_3GPP
  1156. struct wpa_cred *cred;
  1157. int ret;
  1158. if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL)
  1159. return NULL;
  1160. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  1161. char *sep;
  1162. const char *imsi;
  1163. int mnc_len;
  1164. char imsi_buf[16];
  1165. size_t msin_len;
  1166. #ifdef PCSC_FUNCS
  1167. if (cred->pcsc && wpa_s->conf->pcsc_reader && wpa_s->scard &&
  1168. wpa_s->imsi[0]) {
  1169. imsi = wpa_s->imsi;
  1170. mnc_len = wpa_s->mnc_len;
  1171. goto compare;
  1172. }
  1173. #endif /* PCSC_FUNCS */
  1174. #ifdef CONFIG_EAP_PROXY
  1175. if (cred->pcsc && wpa_s->mnc_len > 0 && wpa_s->imsi[0]) {
  1176. imsi = wpa_s->imsi;
  1177. mnc_len = wpa_s->mnc_len;
  1178. goto compare;
  1179. }
  1180. #endif /* CONFIG_EAP_PROXY */
  1181. if (cred->imsi == NULL || !cred->imsi[0] ||
  1182. (!wpa_s->conf->external_sim &&
  1183. (cred->milenage == NULL || !cred->milenage[0])))
  1184. continue;
  1185. sep = os_strchr(cred->imsi, '-');
  1186. if (sep == NULL ||
  1187. (sep - cred->imsi != 5 && sep - cred->imsi != 6))
  1188. continue;
  1189. mnc_len = sep - cred->imsi - 3;
  1190. os_memcpy(imsi_buf, cred->imsi, 3 + mnc_len);
  1191. sep++;
  1192. msin_len = os_strlen(cred->imsi);
  1193. if (3 + mnc_len + msin_len >= sizeof(imsi_buf) - 1)
  1194. msin_len = sizeof(imsi_buf) - 3 - mnc_len - 1;
  1195. os_memcpy(&imsi_buf[3 + mnc_len], sep, msin_len);
  1196. imsi_buf[3 + mnc_len + msin_len] = '\0';
  1197. imsi = imsi_buf;
  1198. #if defined(PCSC_FUNCS) || defined(CONFIG_EAP_PROXY)
  1199. compare:
  1200. #endif /* PCSC_FUNCS || CONFIG_EAP_PROXY */
  1201. wpa_printf(MSG_DEBUG, "Interworking: Parsing 3GPP info from "
  1202. MACSTR, MAC2STR(bss->bssid));
  1203. ret = plmn_id_match(bss->anqp->anqp_3gpp, imsi, mnc_len);
  1204. wpa_printf(MSG_DEBUG, "PLMN match %sfound", ret ? "" : "not ");
  1205. if (ret) {
  1206. if (cred_excluded_ssid(cred, bss))
  1207. continue;
  1208. if (cred_no_required_oi_match(cred, bss))
  1209. continue;
  1210. if (selected == NULL ||
  1211. selected->priority < cred->priority)
  1212. selected = cred;
  1213. }
  1214. }
  1215. #endif /* INTERWORKING_3GPP */
  1216. return selected;
  1217. }
  1218. static struct wpa_cred * interworking_credentials_available_realm(
  1219. struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  1220. {
  1221. struct wpa_cred *cred, *selected = NULL;
  1222. struct nai_realm *realm;
  1223. u16 count, i;
  1224. if (bss->anqp == NULL || bss->anqp->nai_realm == NULL)
  1225. return NULL;
  1226. if (wpa_s->conf->cred == NULL)
  1227. return NULL;
  1228. wpa_printf(MSG_DEBUG, "Interworking: Parsing NAI Realm list from "
  1229. MACSTR, MAC2STR(bss->bssid));
  1230. realm = nai_realm_parse(bss->anqp->nai_realm, &count);
  1231. if (realm == NULL) {
  1232. wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
  1233. "Realm list from " MACSTR, MAC2STR(bss->bssid));
  1234. return NULL;
  1235. }
  1236. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  1237. if (cred->realm == NULL)
  1238. continue;
  1239. for (i = 0; i < count; i++) {
  1240. if (!nai_realm_match(&realm[i], cred->realm))
  1241. continue;
  1242. if (nai_realm_find_eap(cred, &realm[i])) {
  1243. if (cred_excluded_ssid(cred, bss))
  1244. continue;
  1245. if (cred_no_required_oi_match(cred, bss))
  1246. continue;
  1247. if (selected == NULL ||
  1248. selected->priority < cred->priority)
  1249. selected = cred;
  1250. break;
  1251. }
  1252. }
  1253. }
  1254. nai_realm_free(realm, count);
  1255. return selected;
  1256. }
  1257. static struct wpa_cred * interworking_credentials_available(
  1258. struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  1259. {
  1260. struct wpa_cred *cred, *cred2;
  1261. cred = interworking_credentials_available_realm(wpa_s, bss);
  1262. cred2 = interworking_credentials_available_3gpp(wpa_s, bss);
  1263. if (cred && cred2 && cred2->priority >= cred->priority)
  1264. cred = cred2;
  1265. if (!cred)
  1266. cred = cred2;
  1267. cred2 = interworking_credentials_available_roaming_consortium(wpa_s,
  1268. bss);
  1269. if (cred && cred2 && cred2->priority >= cred->priority)
  1270. cred = cred2;
  1271. if (!cred)
  1272. cred = cred2;
  1273. return cred;
  1274. }
  1275. static int domain_name_list_contains(struct wpabuf *domain_names,
  1276. const char *domain)
  1277. {
  1278. const u8 *pos, *end;
  1279. size_t len;
  1280. len = os_strlen(domain);
  1281. pos = wpabuf_head(domain_names);
  1282. end = pos + wpabuf_len(domain_names);
  1283. while (pos + 1 < end) {
  1284. if (pos + 1 + pos[0] > end)
  1285. break;
  1286. wpa_hexdump_ascii(MSG_DEBUG, "Interworking: AP domain name",
  1287. pos + 1, pos[0]);
  1288. if (pos[0] == len &&
  1289. os_strncasecmp(domain, (const char *) (pos + 1), len) == 0)
  1290. return 1;
  1291. pos += 1 + pos[0];
  1292. }
  1293. return 0;
  1294. }
  1295. int interworking_home_sp_cred(struct wpa_supplicant *wpa_s,
  1296. struct wpa_cred *cred,
  1297. struct wpabuf *domain_names)
  1298. {
  1299. size_t i;
  1300. #ifdef INTERWORKING_3GPP
  1301. char nai[100], *realm;
  1302. char *imsi = NULL;
  1303. int mnc_len = 0;
  1304. if (cred->imsi)
  1305. imsi = cred->imsi;
  1306. #ifdef CONFIG_PCSC
  1307. else if (cred->pcsc && wpa_s->conf->pcsc_reader &&
  1308. wpa_s->scard && wpa_s->imsi[0]) {
  1309. imsi = wpa_s->imsi;
  1310. mnc_len = wpa_s->mnc_len;
  1311. }
  1312. #endif /* CONFIG_PCSC */
  1313. if (domain_names &&
  1314. imsi && build_root_nai(nai, sizeof(nai), imsi, mnc_len, 0) == 0) {
  1315. realm = os_strchr(nai, '@');
  1316. if (realm)
  1317. realm++;
  1318. wpa_printf(MSG_DEBUG, "Interworking: Search for match "
  1319. "with SIM/USIM domain %s", realm);
  1320. if (realm &&
  1321. domain_name_list_contains(domain_names, realm))
  1322. return 1;
  1323. }
  1324. #endif /* INTERWORKING_3GPP */
  1325. if (domain_names == NULL || cred->domain == NULL)
  1326. return 0;
  1327. for (i = 0; i < cred->num_domain; i++) {
  1328. wpa_printf(MSG_DEBUG, "Interworking: Search for match with "
  1329. "home SP FQDN %s", cred->domain[i]);
  1330. if (domain_name_list_contains(domain_names, cred->domain[i]))
  1331. return 1;
  1332. }
  1333. return 0;
  1334. }
  1335. static int interworking_home_sp(struct wpa_supplicant *wpa_s,
  1336. struct wpabuf *domain_names)
  1337. {
  1338. struct wpa_cred *cred;
  1339. if (domain_names == NULL || wpa_s->conf->cred == NULL)
  1340. return -1;
  1341. for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
  1342. int res = interworking_home_sp_cred(wpa_s, cred, domain_names);
  1343. if (res)
  1344. return res;
  1345. }
  1346. return 0;
  1347. }
  1348. static int interworking_find_network_match(struct wpa_supplicant *wpa_s)
  1349. {
  1350. struct wpa_bss *bss;
  1351. struct wpa_ssid *ssid;
  1352. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1353. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1354. if (wpas_network_disabled(wpa_s, ssid) ||
  1355. ssid->mode != WPAS_MODE_INFRA)
  1356. continue;
  1357. if (ssid->ssid_len != bss->ssid_len ||
  1358. os_memcmp(ssid->ssid, bss->ssid, ssid->ssid_len) !=
  1359. 0)
  1360. continue;
  1361. /*
  1362. * TODO: Consider more accurate matching of security
  1363. * configuration similarly to what is done in events.c
  1364. */
  1365. return 1;
  1366. }
  1367. }
  1368. return 0;
  1369. }
  1370. static void interworking_select_network(struct wpa_supplicant *wpa_s)
  1371. {
  1372. struct wpa_bss *bss, *selected = NULL, *selected_home = NULL;
  1373. int selected_prio = -999999, selected_home_prio = -999999;
  1374. unsigned int count = 0;
  1375. const char *type;
  1376. int res;
  1377. struct wpa_cred *cred;
  1378. wpa_s->network_select = 0;
  1379. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1380. cred = interworking_credentials_available(wpa_s, bss);
  1381. if (!cred)
  1382. continue;
  1383. if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
  1384. /*
  1385. * We currently support only HS 2.0 networks and those
  1386. * are required to use WPA2-Enterprise.
  1387. */
  1388. wpa_printf(MSG_DEBUG, "Interworking: Credential match "
  1389. "with " MACSTR " but network does not use "
  1390. "RSN", MAC2STR(bss->bssid));
  1391. continue;
  1392. }
  1393. count++;
  1394. res = interworking_home_sp(wpa_s, bss->anqp ?
  1395. bss->anqp->domain_name : NULL);
  1396. if (res > 0)
  1397. type = "home";
  1398. else if (res == 0)
  1399. type = "roaming";
  1400. else
  1401. type = "unknown";
  1402. wpa_msg(wpa_s, MSG_INFO, INTERWORKING_AP MACSTR " type=%s",
  1403. MAC2STR(bss->bssid), type);
  1404. if (wpa_s->auto_select ||
  1405. (wpa_s->conf->auto_interworking &&
  1406. wpa_s->auto_network_select)) {
  1407. if (selected == NULL ||
  1408. cred->priority > selected_prio) {
  1409. selected = bss;
  1410. selected_prio = cred->priority;
  1411. }
  1412. if (res > 0 &&
  1413. (selected_home == NULL ||
  1414. cred->priority > selected_home_prio)) {
  1415. selected_home = bss;
  1416. selected_home_prio = cred->priority;
  1417. }
  1418. }
  1419. }
  1420. if (selected_home && selected_home != selected &&
  1421. selected_home_prio >= selected_prio) {
  1422. /* Prefer network operated by the Home SP */
  1423. selected = selected_home;
  1424. }
  1425. if (count == 0) {
  1426. /*
  1427. * No matching network was found based on configured
  1428. * credentials. Check whether any of the enabled network blocks
  1429. * have matching APs.
  1430. */
  1431. if (interworking_find_network_match(wpa_s)) {
  1432. wpa_printf(MSG_DEBUG, "Interworking: Possible BSS "
  1433. "match for enabled network configurations");
  1434. if (wpa_s->auto_select)
  1435. interworking_reconnect(wpa_s);
  1436. return;
  1437. }
  1438. if (wpa_s->auto_network_select) {
  1439. wpa_printf(MSG_DEBUG, "Interworking: Continue "
  1440. "scanning after ANQP fetch");
  1441. wpa_supplicant_req_scan(wpa_s, wpa_s->scan_interval,
  1442. 0);
  1443. return;
  1444. }
  1445. wpa_msg(wpa_s, MSG_INFO, INTERWORKING_NO_MATCH "No network "
  1446. "with matching credentials found");
  1447. }
  1448. if (selected)
  1449. interworking_connect(wpa_s, selected);
  1450. }
  1451. static struct wpa_bss_anqp *
  1452. interworking_match_anqp_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
  1453. {
  1454. struct wpa_bss *other;
  1455. if (is_zero_ether_addr(bss->hessid))
  1456. return NULL; /* Cannot be in the same homegenous ESS */
  1457. dl_list_for_each(other, &wpa_s->bss, struct wpa_bss, list) {
  1458. if (other == bss)
  1459. continue;
  1460. if (other->anqp == NULL)
  1461. continue;
  1462. if (other->anqp->roaming_consortium == NULL &&
  1463. other->anqp->nai_realm == NULL &&
  1464. other->anqp->anqp_3gpp == NULL &&
  1465. other->anqp->domain_name == NULL)
  1466. continue;
  1467. if (!(other->flags & WPA_BSS_ANQP_FETCH_TRIED))
  1468. continue;
  1469. if (os_memcmp(bss->hessid, other->hessid, ETH_ALEN) != 0)
  1470. continue;
  1471. if (bss->ssid_len != other->ssid_len ||
  1472. os_memcmp(bss->ssid, other->ssid, bss->ssid_len) != 0)
  1473. continue;
  1474. wpa_printf(MSG_DEBUG, "Interworking: Share ANQP data with "
  1475. "already fetched BSSID " MACSTR " and " MACSTR,
  1476. MAC2STR(other->bssid), MAC2STR(bss->bssid));
  1477. other->anqp->users++;
  1478. return other->anqp;
  1479. }
  1480. return NULL;
  1481. }
  1482. static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s)
  1483. {
  1484. struct wpa_bss *bss;
  1485. int found = 0;
  1486. const u8 *ie;
  1487. if (eloop_terminated() || !wpa_s->fetch_anqp_in_progress)
  1488. return;
  1489. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1490. if (!(bss->caps & IEEE80211_CAP_ESS))
  1491. continue;
  1492. ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_CAPAB);
  1493. if (ie == NULL || ie[1] < 4 || !(ie[5] & 0x80))
  1494. continue; /* AP does not support Interworking */
  1495. if (!(bss->flags & WPA_BSS_ANQP_FETCH_TRIED)) {
  1496. if (bss->anqp == NULL) {
  1497. bss->anqp = interworking_match_anqp_info(wpa_s,
  1498. bss);
  1499. if (bss->anqp) {
  1500. /* Shared data already fetched */
  1501. continue;
  1502. }
  1503. bss->anqp = wpa_bss_anqp_alloc();
  1504. if (bss->anqp == NULL)
  1505. break;
  1506. }
  1507. found++;
  1508. bss->flags |= WPA_BSS_ANQP_FETCH_TRIED;
  1509. wpa_msg(wpa_s, MSG_INFO, "Starting ANQP fetch for "
  1510. MACSTR, MAC2STR(bss->bssid));
  1511. interworking_anqp_send_req(wpa_s, bss);
  1512. break;
  1513. }
  1514. }
  1515. if (found == 0) {
  1516. wpa_msg(wpa_s, MSG_INFO, "ANQP fetch completed");
  1517. wpa_s->fetch_anqp_in_progress = 0;
  1518. if (wpa_s->network_select)
  1519. interworking_select_network(wpa_s);
  1520. }
  1521. }
  1522. void interworking_start_fetch_anqp(struct wpa_supplicant *wpa_s)
  1523. {
  1524. struct wpa_bss *bss;
  1525. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list)
  1526. bss->flags &= ~WPA_BSS_ANQP_FETCH_TRIED;
  1527. wpa_s->fetch_anqp_in_progress = 1;
  1528. interworking_next_anqp_fetch(wpa_s);
  1529. }
  1530. int interworking_fetch_anqp(struct wpa_supplicant *wpa_s)
  1531. {
  1532. if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select)
  1533. return 0;
  1534. wpa_s->network_select = 0;
  1535. wpa_s->fetch_all_anqp = 1;
  1536. interworking_start_fetch_anqp(wpa_s);
  1537. return 0;
  1538. }
  1539. void interworking_stop_fetch_anqp(struct wpa_supplicant *wpa_s)
  1540. {
  1541. if (!wpa_s->fetch_anqp_in_progress)
  1542. return;
  1543. wpa_s->fetch_anqp_in_progress = 0;
  1544. }
  1545. int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst,
  1546. u16 info_ids[], size_t num_ids)
  1547. {
  1548. struct wpabuf *buf;
  1549. int ret = 0;
  1550. int freq;
  1551. struct wpa_bss *bss;
  1552. int res;
  1553. freq = wpa_s->assoc_freq;
  1554. bss = wpa_bss_get_bssid(wpa_s, dst);
  1555. if (bss) {
  1556. wpa_bss_anqp_unshare_alloc(bss);
  1557. freq = bss->freq;
  1558. }
  1559. if (freq <= 0)
  1560. return -1;
  1561. wpa_printf(MSG_DEBUG, "ANQP: Query Request to " MACSTR " for %u id(s)",
  1562. MAC2STR(dst), (unsigned int) num_ids);
  1563. buf = anqp_build_req(info_ids, num_ids, NULL);
  1564. if (buf == NULL)
  1565. return -1;
  1566. res = gas_query_req(wpa_s->gas, dst, freq, buf, anqp_resp_cb, wpa_s);
  1567. if (res < 0) {
  1568. wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
  1569. ret = -1;
  1570. } else
  1571. wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
  1572. "%u", res);
  1573. wpabuf_free(buf);
  1574. return ret;
  1575. }
  1576. static void interworking_parse_rx_anqp_resp(struct wpa_supplicant *wpa_s,
  1577. struct wpa_bss *bss, const u8 *sa,
  1578. u16 info_id,
  1579. const u8 *data, size_t slen)
  1580. {
  1581. const u8 *pos = data;
  1582. struct wpa_bss_anqp *anqp = NULL;
  1583. #ifdef CONFIG_HS20
  1584. u8 type;
  1585. #endif /* CONFIG_HS20 */
  1586. if (bss)
  1587. anqp = bss->anqp;
  1588. switch (info_id) {
  1589. case ANQP_CAPABILITY_LIST:
  1590. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1591. " ANQP Capability list", MAC2STR(sa));
  1592. break;
  1593. case ANQP_VENUE_NAME:
  1594. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1595. " Venue Name", MAC2STR(sa));
  1596. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Venue Name", pos, slen);
  1597. if (anqp) {
  1598. wpabuf_free(anqp->venue_name);
  1599. anqp->venue_name = wpabuf_alloc_copy(pos, slen);
  1600. }
  1601. break;
  1602. case ANQP_NETWORK_AUTH_TYPE:
  1603. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1604. " Network Authentication Type information",
  1605. MAC2STR(sa));
  1606. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Network Authentication "
  1607. "Type", pos, slen);
  1608. if (anqp) {
  1609. wpabuf_free(anqp->network_auth_type);
  1610. anqp->network_auth_type = wpabuf_alloc_copy(pos, slen);
  1611. }
  1612. break;
  1613. case ANQP_ROAMING_CONSORTIUM:
  1614. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1615. " Roaming Consortium list", MAC2STR(sa));
  1616. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Roaming Consortium",
  1617. pos, slen);
  1618. if (anqp) {
  1619. wpabuf_free(anqp->roaming_consortium);
  1620. anqp->roaming_consortium = wpabuf_alloc_copy(pos, slen);
  1621. }
  1622. break;
  1623. case ANQP_IP_ADDR_TYPE_AVAILABILITY:
  1624. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1625. " IP Address Type Availability information",
  1626. MAC2STR(sa));
  1627. wpa_hexdump(MSG_MSGDUMP, "ANQP: IP Address Availability",
  1628. pos, slen);
  1629. if (anqp) {
  1630. wpabuf_free(anqp->ip_addr_type_availability);
  1631. anqp->ip_addr_type_availability =
  1632. wpabuf_alloc_copy(pos, slen);
  1633. }
  1634. break;
  1635. case ANQP_NAI_REALM:
  1636. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1637. " NAI Realm list", MAC2STR(sa));
  1638. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: NAI Realm", pos, slen);
  1639. if (anqp) {
  1640. wpabuf_free(anqp->nai_realm);
  1641. anqp->nai_realm = wpabuf_alloc_copy(pos, slen);
  1642. }
  1643. break;
  1644. case ANQP_3GPP_CELLULAR_NETWORK:
  1645. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1646. " 3GPP Cellular Network information", MAC2STR(sa));
  1647. wpa_hexdump_ascii(MSG_DEBUG, "ANQP: 3GPP Cellular Network",
  1648. pos, slen);
  1649. if (anqp) {
  1650. wpabuf_free(anqp->anqp_3gpp);
  1651. anqp->anqp_3gpp = wpabuf_alloc_copy(pos, slen);
  1652. }
  1653. break;
  1654. case ANQP_DOMAIN_NAME:
  1655. wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
  1656. " Domain Name list", MAC2STR(sa));
  1657. wpa_hexdump_ascii(MSG_MSGDUMP, "ANQP: Domain Name", pos, slen);
  1658. if (anqp) {
  1659. wpabuf_free(anqp->domain_name);
  1660. anqp->domain_name = wpabuf_alloc_copy(pos, slen);
  1661. }
  1662. break;
  1663. case ANQP_VENDOR_SPECIFIC:
  1664. if (slen < 3)
  1665. return;
  1666. switch (WPA_GET_BE24(pos)) {
  1667. #ifdef CONFIG_HS20
  1668. case OUI_WFA:
  1669. pos += 3;
  1670. slen -= 3;
  1671. if (slen < 1)
  1672. return;
  1673. type = *pos++;
  1674. slen--;
  1675. switch (type) {
  1676. case HS20_ANQP_OUI_TYPE:
  1677. hs20_parse_rx_hs20_anqp_resp(wpa_s, sa, pos,
  1678. slen);
  1679. break;
  1680. default:
  1681. wpa_printf(MSG_DEBUG, "HS20: Unsupported ANQP "
  1682. "vendor type %u", type);
  1683. break;
  1684. }
  1685. break;
  1686. #endif /* CONFIG_HS20 */
  1687. default:
  1688. wpa_printf(MSG_DEBUG, "Interworking: Unsupported "
  1689. "vendor-specific ANQP OUI %06x",
  1690. WPA_GET_BE24(pos));
  1691. return;
  1692. }
  1693. break;
  1694. default:
  1695. wpa_printf(MSG_DEBUG, "Interworking: Unsupported ANQP Info ID "
  1696. "%u", info_id);
  1697. break;
  1698. }
  1699. }
  1700. void anqp_resp_cb(void *ctx, const u8 *dst, u8 dialog_token,
  1701. enum gas_query_result result,
  1702. const struct wpabuf *adv_proto,
  1703. const struct wpabuf *resp, u16 status_code)
  1704. {
  1705. struct wpa_supplicant *wpa_s = ctx;
  1706. const u8 *pos;
  1707. const u8 *end;
  1708. u16 info_id;
  1709. u16 slen;
  1710. struct wpa_bss *bss = NULL, *tmp;
  1711. if (result != GAS_QUERY_SUCCESS)
  1712. return;
  1713. pos = wpabuf_head(adv_proto);
  1714. if (wpabuf_len(adv_proto) < 4 || pos[0] != WLAN_EID_ADV_PROTO ||
  1715. pos[1] < 2 || pos[3] != ACCESS_NETWORK_QUERY_PROTOCOL) {
  1716. wpa_printf(MSG_DEBUG, "ANQP: Unexpected Advertisement "
  1717. "Protocol in response");
  1718. return;
  1719. }
  1720. /*
  1721. * If possible, select the BSS entry based on which BSS entry was used
  1722. * for the request. This can help in cases where multiple BSS entries
  1723. * may exist for the same AP.
  1724. */
  1725. dl_list_for_each_reverse(tmp, &wpa_s->bss, struct wpa_bss, list) {
  1726. if (tmp == wpa_s->interworking_gas_bss &&
  1727. os_memcmp(tmp->bssid, dst, ETH_ALEN) == 0) {
  1728. bss = tmp;
  1729. break;
  1730. }
  1731. }
  1732. if (bss == NULL)
  1733. bss = wpa_bss_get_bssid(wpa_s, dst);
  1734. pos = wpabuf_head(resp);
  1735. end = pos + wpabuf_len(resp);
  1736. while (pos < end) {
  1737. if (pos + 4 > end) {
  1738. wpa_printf(MSG_DEBUG, "ANQP: Invalid element");
  1739. break;
  1740. }
  1741. info_id = WPA_GET_LE16(pos);
  1742. pos += 2;
  1743. slen = WPA_GET_LE16(pos);
  1744. pos += 2;
  1745. if (pos + slen > end) {
  1746. wpa_printf(MSG_DEBUG, "ANQP: Invalid element length "
  1747. "for Info ID %u", info_id);
  1748. break;
  1749. }
  1750. interworking_parse_rx_anqp_resp(wpa_s, bss, dst, info_id, pos,
  1751. slen);
  1752. pos += slen;
  1753. }
  1754. }
  1755. static void interworking_scan_res_handler(struct wpa_supplicant *wpa_s,
  1756. struct wpa_scan_results *scan_res)
  1757. {
  1758. wpa_printf(MSG_DEBUG, "Interworking: Scan results available - start "
  1759. "ANQP fetch");
  1760. interworking_start_fetch_anqp(wpa_s);
  1761. }
  1762. int interworking_select(struct wpa_supplicant *wpa_s, int auto_select)
  1763. {
  1764. interworking_stop_fetch_anqp(wpa_s);
  1765. wpa_s->network_select = 1;
  1766. wpa_s->auto_network_select = 0;
  1767. wpa_s->auto_select = !!auto_select;
  1768. wpa_s->fetch_all_anqp = 0;
  1769. wpa_printf(MSG_DEBUG, "Interworking: Start scan for network "
  1770. "selection");
  1771. wpa_s->scan_res_handler = interworking_scan_res_handler;
  1772. wpa_s->scan_req = MANUAL_SCAN_REQ;
  1773. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1774. return 0;
  1775. }
  1776. static void gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
  1777. enum gas_query_result result,
  1778. const struct wpabuf *adv_proto,
  1779. const struct wpabuf *resp, u16 status_code)
  1780. {
  1781. struct wpa_supplicant *wpa_s = ctx;
  1782. wpa_msg(wpa_s, MSG_INFO, GAS_RESPONSE_INFO "addr=" MACSTR
  1783. " dialog_token=%d status_code=%d resp_len=%d",
  1784. MAC2STR(addr), dialog_token, status_code,
  1785. resp ? (int) wpabuf_len(resp) : -1);
  1786. if (!resp)
  1787. return;
  1788. wpabuf_free(wpa_s->last_gas_resp);
  1789. wpa_s->last_gas_resp = wpabuf_dup(resp);
  1790. if (wpa_s->last_gas_resp == NULL)
  1791. return;
  1792. os_memcpy(wpa_s->last_gas_addr, addr, ETH_ALEN);
  1793. wpa_s->last_gas_dialog_token = dialog_token;
  1794. }
  1795. int gas_send_request(struct wpa_supplicant *wpa_s, const u8 *dst,
  1796. const struct wpabuf *adv_proto,
  1797. const struct wpabuf *query)
  1798. {
  1799. struct wpabuf *buf;
  1800. int ret = 0;
  1801. int freq;
  1802. struct wpa_bss *bss;
  1803. int res;
  1804. size_t len;
  1805. u8 query_resp_len_limit = 0, pame_bi = 0;
  1806. freq = wpa_s->assoc_freq;
  1807. bss = wpa_bss_get_bssid(wpa_s, dst);
  1808. if (bss)
  1809. freq = bss->freq;
  1810. if (freq <= 0)
  1811. return -1;
  1812. wpa_printf(MSG_DEBUG, "GAS request to " MACSTR " (freq %d MHz)",
  1813. MAC2STR(dst), freq);
  1814. wpa_hexdump_buf(MSG_DEBUG, "Advertisement Protocol ID", adv_proto);
  1815. wpa_hexdump_buf(MSG_DEBUG, "GAS Query", query);
  1816. len = 3 + wpabuf_len(adv_proto) + 2;
  1817. if (query)
  1818. len += wpabuf_len(query);
  1819. buf = gas_build_initial_req(0, len);
  1820. if (buf == NULL)
  1821. return -1;
  1822. /* Advertisement Protocol IE */
  1823. wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
  1824. wpabuf_put_u8(buf, 1 + wpabuf_len(adv_proto)); /* Length */
  1825. wpabuf_put_u8(buf, (query_resp_len_limit & 0x7f) |
  1826. (pame_bi ? 0x80 : 0));
  1827. wpabuf_put_buf(buf, adv_proto);
  1828. /* GAS Query */
  1829. if (query) {
  1830. wpabuf_put_le16(buf, wpabuf_len(query));
  1831. wpabuf_put_buf(buf, query);
  1832. } else
  1833. wpabuf_put_le16(buf, 0);
  1834. res = gas_query_req(wpa_s->gas, dst, freq, buf, gas_resp_cb, wpa_s);
  1835. if (res < 0) {
  1836. wpa_printf(MSG_DEBUG, "GAS: Failed to send Query Request");
  1837. ret = -1;
  1838. } else
  1839. wpa_printf(MSG_DEBUG, "GAS: Query started with dialog token "
  1840. "%u", res);
  1841. wpabuf_free(buf);
  1842. return ret;
  1843. }