interworking.c 75 KB

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