interworking.c 52 KB

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