interworking.c 56 KB

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