interworking.c 77 KB

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