interworking.c 72 KB

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