interworking.c 74 KB

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