interworking.c 66 KB

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