interworking.c 60 KB

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