blob: 5b66211a59be03df36195e6a4c7a1449d0138928 [file] [log] [blame]
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001/*
2 * Interworking (IEEE 802.11u)
Dmitry Shmidt54605472013-11-08 11:10:19 -08003 * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08004 * Copyright (c) 2011-2014, Jouni Malinen <j@w1.fi>
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08005 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08006 * This software may be distributed under the terms of the BSD license.
7 * See README for more details.
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08008 */
9
10#include "includes.h"
11
12#include "common.h"
13#include "common/ieee802_11_defs.h"
14#include "common/gas.h"
15#include "common/wpa_ctrl.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070016#include "utils/pcsc_funcs.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080017#include "utils/eloop.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080018#include "drivers/driver.h"
19#include "eap_common/eap_defs.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070020#include "eap_peer/eap.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080021#include "eap_peer/eap_methods.h"
Dmitry Shmidtb96dad42013-11-05 10:07:29 -080022#include "eapol_supp/eapol_supp_sm.h"
Dmitry Shmidt54605472013-11-08 11:10:19 -080023#include "rsn_supp/wpa.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080024#include "wpa_supplicant_i.h"
25#include "config.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070026#include "config_ssid.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080027#include "bss.h"
28#include "scan.h"
29#include "notify.h"
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -070030#include "driver_i.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080031#include "gas_query.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070032#include "hs20_supplicant.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080033#include "interworking.h"
34
35
36#if defined(EAP_SIM) | defined(EAP_SIM_DYNAMIC)
37#define INTERWORKING_3GPP
38#else
39#if defined(EAP_AKA) | defined(EAP_AKA_DYNAMIC)
40#define INTERWORKING_3GPP
41#else
42#if defined(EAP_AKA_PRIME) | defined(EAP_AKA_PRIME_DYNAMIC)
43#define INTERWORKING_3GPP
44#endif
45#endif
46#endif
47
48static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s);
Dmitry Shmidtf8623282013-02-20 14:34:59 -080049static struct wpa_cred * interworking_credentials_available_realm(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080050 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
51 int *excluded);
Dmitry Shmidtf8623282013-02-20 14:34:59 -080052static struct wpa_cred * interworking_credentials_available_3gpp(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080053 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
54 int *excluded);
55
56
57static int cred_prio_cmp(const struct wpa_cred *a, const struct wpa_cred *b)
58{
59 if (a->priority > b->priority)
60 return 1;
61 if (a->priority < b->priority)
62 return -1;
63 if (a->provisioning_sp == NULL || b->provisioning_sp == NULL ||
64 os_strcmp(a->provisioning_sp, b->provisioning_sp) != 0)
65 return 0;
66 if (a->sp_priority < b->sp_priority)
67 return 1;
68 if (a->sp_priority > b->sp_priority)
69 return -1;
70 return 0;
71}
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080072
73
Dmitry Shmidt04949592012-07-19 12:16:46 -070074static void interworking_reconnect(struct wpa_supplicant *wpa_s)
75{
Dmitry Shmidt2f74e362015-01-21 13:19:05 -080076 unsigned int tried;
77
Dmitry Shmidt04949592012-07-19 12:16:46 -070078 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
79 wpa_supplicant_cancel_sched_scan(wpa_s);
80 wpa_supplicant_deauthenticate(wpa_s,
81 WLAN_REASON_DEAUTH_LEAVING);
82 }
83 wpa_s->disconnected = 0;
84 wpa_s->reassociate = 1;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -080085 tried = wpa_s->interworking_fast_assoc_tried;
86 wpa_s->interworking_fast_assoc_tried = 1;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070087
Dmitry Shmidt2f74e362015-01-21 13:19:05 -080088 if (!tried && wpa_supplicant_fast_associate(wpa_s) >= 0)
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -080089 return;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070090
Dmitry Shmidt2f74e362015-01-21 13:19:05 -080091 wpa_s->interworking_fast_assoc_tried = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -070092 wpa_supplicant_req_scan(wpa_s, 0, 0);
93}
94
95
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080096static struct wpabuf * anqp_build_req(u16 info_ids[], size_t num_ids,
97 struct wpabuf *extra)
98{
99 struct wpabuf *buf;
100 size_t i;
101 u8 *len_pos;
102
103 buf = gas_anqp_build_initial_req(0, 4 + num_ids * 2 +
104 (extra ? wpabuf_len(extra) : 0));
105 if (buf == NULL)
106 return NULL;
107
108 len_pos = gas_anqp_add_element(buf, ANQP_QUERY_LIST);
109 for (i = 0; i < num_ids; i++)
110 wpabuf_put_le16(buf, info_ids[i]);
111 gas_anqp_set_element_len(buf, len_pos);
112 if (extra)
113 wpabuf_put_buf(buf, extra);
114
115 gas_anqp_set_len(buf);
116
117 return buf;
118}
119
120
121static void interworking_anqp_resp_cb(void *ctx, const u8 *dst,
122 u8 dialog_token,
123 enum gas_query_result result,
124 const struct wpabuf *adv_proto,
125 const struct wpabuf *resp,
126 u16 status_code)
127{
128 struct wpa_supplicant *wpa_s = ctx;
129
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800130 wpa_printf(MSG_DEBUG, "ANQP: Response callback dst=" MACSTR
131 " dialog_token=%u result=%d status_code=%u",
132 MAC2STR(dst), dialog_token, result, status_code);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800133 anqp_resp_cb(wpa_s, dst, dialog_token, result, adv_proto, resp,
134 status_code);
135 interworking_next_anqp_fetch(wpa_s);
136}
137
138
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700139static int cred_with_roaming_consortium(struct wpa_supplicant *wpa_s)
140{
141 struct wpa_cred *cred;
142
143 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
144 if (cred->roaming_consortium_len)
145 return 1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700146 if (cred->required_roaming_consortium_len)
147 return 1;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700148 }
149 return 0;
150}
151
152
153static int cred_with_3gpp(struct wpa_supplicant *wpa_s)
154{
155 struct wpa_cred *cred;
156
157 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
158 if (cred->pcsc || cred->imsi)
159 return 1;
160 }
161 return 0;
162}
163
164
165static int cred_with_nai_realm(struct wpa_supplicant *wpa_s)
166{
167 struct wpa_cred *cred;
168
169 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
170 if (cred->pcsc || cred->imsi)
171 continue;
172 if (!cred->eap_method)
173 return 1;
174 if (cred->realm && cred->roaming_consortium_len == 0)
175 return 1;
176 }
177 return 0;
178}
179
180
181static int cred_with_domain(struct wpa_supplicant *wpa_s)
182{
183 struct wpa_cred *cred;
184
185 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800186 if (cred->domain || cred->pcsc || cred->imsi ||
187 cred->roaming_partner)
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700188 return 1;
189 }
190 return 0;
191}
192
193
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800194#ifdef CONFIG_HS20
195
196static int cred_with_min_backhaul(struct wpa_supplicant *wpa_s)
197{
198 struct wpa_cred *cred;
199
200 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
201 if (cred->min_dl_bandwidth_home ||
202 cred->min_ul_bandwidth_home ||
203 cred->min_dl_bandwidth_roaming ||
204 cred->min_ul_bandwidth_roaming)
205 return 1;
206 }
207 return 0;
208}
209
210
211static int cred_with_conn_capab(struct wpa_supplicant *wpa_s)
212{
213 struct wpa_cred *cred;
214
215 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
216 if (cred->num_req_conn_capab)
217 return 1;
218 }
219 return 0;
220}
221
222#endif /* CONFIG_HS20 */
223
224
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700225static int additional_roaming_consortiums(struct wpa_bss *bss)
226{
227 const u8 *ie;
228 ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
229 if (ie == NULL || ie[1] == 0)
230 return 0;
231 return ie[2]; /* Number of ANQP OIs */
232}
233
234
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800235static void interworking_continue_anqp(void *eloop_ctx, void *sock_ctx)
236{
237 struct wpa_supplicant *wpa_s = eloop_ctx;
238 interworking_next_anqp_fetch(wpa_s);
239}
240
241
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800242static int interworking_anqp_send_req(struct wpa_supplicant *wpa_s,
243 struct wpa_bss *bss)
244{
245 struct wpabuf *buf;
246 int ret = 0;
247 int res;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700248 u16 info_ids[8];
249 size_t num_info_ids = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800250 struct wpabuf *extra = NULL;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700251 int all = wpa_s->fetch_all_anqp;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800252
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800253 wpa_msg(wpa_s, MSG_DEBUG, "Interworking: ANQP Query Request to " MACSTR,
254 MAC2STR(bss->bssid));
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700255 wpa_s->interworking_gas_bss = bss;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800256
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700257 info_ids[num_info_ids++] = ANQP_CAPABILITY_LIST;
258 if (all) {
259 info_ids[num_info_ids++] = ANQP_VENUE_NAME;
260 info_ids[num_info_ids++] = ANQP_NETWORK_AUTH_TYPE;
261 }
262 if (all || (cred_with_roaming_consortium(wpa_s) &&
263 additional_roaming_consortiums(bss)))
264 info_ids[num_info_ids++] = ANQP_ROAMING_CONSORTIUM;
265 if (all)
266 info_ids[num_info_ids++] = ANQP_IP_ADDR_TYPE_AVAILABILITY;
267 if (all || cred_with_nai_realm(wpa_s))
268 info_ids[num_info_ids++] = ANQP_NAI_REALM;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700269 if (all || cred_with_3gpp(wpa_s)) {
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700270 info_ids[num_info_ids++] = ANQP_3GPP_CELLULAR_NETWORK;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700271 wpa_supplicant_scard_init(wpa_s, NULL);
272 }
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700273 if (all || cred_with_domain(wpa_s))
274 info_ids[num_info_ids++] = ANQP_DOMAIN_NAME;
275 wpa_hexdump(MSG_DEBUG, "Interworking: ANQP Query info",
276 (u8 *) info_ids, num_info_ids * 2);
277
Dmitry Shmidt04949592012-07-19 12:16:46 -0700278#ifdef CONFIG_HS20
279 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
280 u8 *len_pos;
281
282 extra = wpabuf_alloc(100);
283 if (!extra)
284 return -1;
285
286 len_pos = gas_anqp_add_element(extra, ANQP_VENDOR_SPECIFIC);
287 wpabuf_put_be24(extra, OUI_WFA);
288 wpabuf_put_u8(extra, HS20_ANQP_OUI_TYPE);
289 wpabuf_put_u8(extra, HS20_STYPE_QUERY_LIST);
290 wpabuf_put_u8(extra, 0); /* Reserved */
291 wpabuf_put_u8(extra, HS20_STYPE_CAPABILITY_LIST);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800292 if (all)
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700293 wpabuf_put_u8(extra,
294 HS20_STYPE_OPERATOR_FRIENDLY_NAME);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800295 if (all || cred_with_min_backhaul(wpa_s))
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700296 wpabuf_put_u8(extra, HS20_STYPE_WAN_METRICS);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800297 if (all || cred_with_conn_capab(wpa_s))
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700298 wpabuf_put_u8(extra, HS20_STYPE_CONNECTION_CAPABILITY);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800299 if (all)
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700300 wpabuf_put_u8(extra, HS20_STYPE_OPERATING_CLASS);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800301 if (all)
302 wpabuf_put_u8(extra, HS20_STYPE_OSU_PROVIDERS_LIST);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700303 gas_anqp_set_element_len(extra, len_pos);
304 }
305#endif /* CONFIG_HS20 */
306
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700307 buf = anqp_build_req(info_ids, num_info_ids, extra);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800308 wpabuf_free(extra);
309 if (buf == NULL)
310 return -1;
311
312 res = gas_query_req(wpa_s->gas, bss->bssid, bss->freq, buf,
313 interworking_anqp_resp_cb, wpa_s);
314 if (res < 0) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800315 wpa_msg(wpa_s, MSG_DEBUG, "ANQP: Failed to send Query Request");
Dmitry Shmidt051af732013-10-22 13:52:46 -0700316 wpabuf_free(buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800317 ret = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800318 eloop_register_timeout(0, 0, interworking_continue_anqp, wpa_s,
319 NULL);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800320 } else
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800321 wpa_msg(wpa_s, MSG_DEBUG,
322 "ANQP: Query started with dialog token %u", res);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800323
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800324 return ret;
325}
326
327
328struct nai_realm_eap {
329 u8 method;
330 u8 inner_method;
331 enum nai_realm_eap_auth_inner_non_eap inner_non_eap;
332 u8 cred_type;
333 u8 tunneled_cred_type;
334};
335
336struct nai_realm {
337 u8 encoding;
338 char *realm;
339 u8 eap_count;
340 struct nai_realm_eap *eap;
341};
342
343
344static void nai_realm_free(struct nai_realm *realms, u16 count)
345{
346 u16 i;
347
348 if (realms == NULL)
349 return;
350 for (i = 0; i < count; i++) {
351 os_free(realms[i].eap);
352 os_free(realms[i].realm);
353 }
354 os_free(realms);
355}
356
357
358static const u8 * nai_realm_parse_eap(struct nai_realm_eap *e, const u8 *pos,
359 const u8 *end)
360{
361 u8 elen, auth_count, a;
362 const u8 *e_end;
363
364 if (pos + 3 > end) {
365 wpa_printf(MSG_DEBUG, "No room for EAP Method fixed fields");
366 return NULL;
367 }
368
369 elen = *pos++;
370 if (pos + elen > end || elen < 2) {
371 wpa_printf(MSG_DEBUG, "No room for EAP Method subfield");
372 return NULL;
373 }
374 e_end = pos + elen;
375 e->method = *pos++;
376 auth_count = *pos++;
377 wpa_printf(MSG_DEBUG, "EAP Method: len=%u method=%u auth_count=%u",
378 elen, e->method, auth_count);
379
380 for (a = 0; a < auth_count; a++) {
381 u8 id, len;
382
383 if (pos + 2 > end || pos + 2 + pos[1] > end) {
384 wpa_printf(MSG_DEBUG, "No room for Authentication "
385 "Parameter subfield");
386 return NULL;
387 }
388
389 id = *pos++;
390 len = *pos++;
391
392 switch (id) {
393 case NAI_REALM_EAP_AUTH_NON_EAP_INNER_AUTH:
394 if (len < 1)
395 break;
396 e->inner_non_eap = *pos;
397 if (e->method != EAP_TYPE_TTLS)
398 break;
399 switch (*pos) {
400 case NAI_REALM_INNER_NON_EAP_PAP:
401 wpa_printf(MSG_DEBUG, "EAP-TTLS/PAP");
402 break;
403 case NAI_REALM_INNER_NON_EAP_CHAP:
404 wpa_printf(MSG_DEBUG, "EAP-TTLS/CHAP");
405 break;
406 case NAI_REALM_INNER_NON_EAP_MSCHAP:
407 wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAP");
408 break;
409 case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
410 wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAPV2");
411 break;
412 }
413 break;
414 case NAI_REALM_EAP_AUTH_INNER_AUTH_EAP_METHOD:
415 if (len < 1)
416 break;
417 e->inner_method = *pos;
418 wpa_printf(MSG_DEBUG, "Inner EAP method: %u",
419 e->inner_method);
420 break;
421 case NAI_REALM_EAP_AUTH_CRED_TYPE:
422 if (len < 1)
423 break;
424 e->cred_type = *pos;
425 wpa_printf(MSG_DEBUG, "Credential Type: %u",
426 e->cred_type);
427 break;
428 case NAI_REALM_EAP_AUTH_TUNNELED_CRED_TYPE:
429 if (len < 1)
430 break;
431 e->tunneled_cred_type = *pos;
432 wpa_printf(MSG_DEBUG, "Tunneled EAP Method Credential "
433 "Type: %u", e->tunneled_cred_type);
434 break;
435 default:
436 wpa_printf(MSG_DEBUG, "Unsupported Authentication "
437 "Parameter: id=%u len=%u", id, len);
438 wpa_hexdump(MSG_DEBUG, "Authentication Parameter "
439 "Value", pos, len);
440 break;
441 }
442
443 pos += len;
444 }
445
446 return e_end;
447}
448
449
450static const u8 * nai_realm_parse_realm(struct nai_realm *r, const u8 *pos,
451 const u8 *end)
452{
453 u16 len;
454 const u8 *f_end;
455 u8 realm_len, e;
456
457 if (end - pos < 4) {
458 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
459 "fixed fields");
460 return NULL;
461 }
462
463 len = WPA_GET_LE16(pos); /* NAI Realm Data field Length */
464 pos += 2;
465 if (pos + len > end || len < 3) {
466 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
467 "(len=%u; left=%u)",
468 len, (unsigned int) (end - pos));
469 return NULL;
470 }
471 f_end = pos + len;
472
473 r->encoding = *pos++;
474 realm_len = *pos++;
475 if (pos + realm_len > f_end) {
476 wpa_printf(MSG_DEBUG, "No room for NAI Realm "
477 "(len=%u; left=%u)",
478 realm_len, (unsigned int) (f_end - pos));
479 return NULL;
480 }
481 wpa_hexdump_ascii(MSG_DEBUG, "NAI Realm", pos, realm_len);
Dmitry Shmidt4b060592013-04-29 16:42:49 -0700482 r->realm = dup_binstr(pos, realm_len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800483 if (r->realm == NULL)
484 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800485 pos += realm_len;
486
487 if (pos + 1 > f_end) {
488 wpa_printf(MSG_DEBUG, "No room for EAP Method Count");
489 return NULL;
490 }
491 r->eap_count = *pos++;
492 wpa_printf(MSG_DEBUG, "EAP Count: %u", r->eap_count);
493 if (pos + r->eap_count * 3 > f_end) {
494 wpa_printf(MSG_DEBUG, "No room for EAP Methods");
495 return NULL;
496 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700497 r->eap = os_calloc(r->eap_count, sizeof(struct nai_realm_eap));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800498 if (r->eap == NULL)
499 return NULL;
500
501 for (e = 0; e < r->eap_count; e++) {
502 pos = nai_realm_parse_eap(&r->eap[e], pos, f_end);
503 if (pos == NULL)
504 return NULL;
505 }
506
507 return f_end;
508}
509
510
511static struct nai_realm * nai_realm_parse(struct wpabuf *anqp, u16 *count)
512{
513 struct nai_realm *realm;
514 const u8 *pos, *end;
515 u16 i, num;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800516 size_t left;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800517
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800518 if (anqp == NULL)
519 return NULL;
520 left = wpabuf_len(anqp);
521 if (left < 2)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800522 return NULL;
523
524 pos = wpabuf_head_u8(anqp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800525 end = pos + left;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800526 num = WPA_GET_LE16(pos);
527 wpa_printf(MSG_DEBUG, "NAI Realm Count: %u", num);
528 pos += 2;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800529 left -= 2;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800530
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800531 if (num > left / 5) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800532 wpa_printf(MSG_DEBUG, "Invalid NAI Realm Count %u - not "
533 "enough data (%u octets) for that many realms",
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800534 num, (unsigned int) left);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800535 return NULL;
536 }
537
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700538 realm = os_calloc(num, sizeof(struct nai_realm));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800539 if (realm == NULL)
540 return NULL;
541
542 for (i = 0; i < num; i++) {
543 pos = nai_realm_parse_realm(&realm[i], pos, end);
544 if (pos == NULL) {
545 nai_realm_free(realm, num);
546 return NULL;
547 }
548 }
549
550 *count = num;
551 return realm;
552}
553
554
555static int nai_realm_match(struct nai_realm *realm, const char *home_realm)
556{
557 char *tmp, *pos, *end;
558 int match = 0;
559
560 if (realm->realm == NULL || home_realm == NULL)
561 return 0;
562
563 if (os_strchr(realm->realm, ';') == NULL)
564 return os_strcasecmp(realm->realm, home_realm) == 0;
565
566 tmp = os_strdup(realm->realm);
567 if (tmp == NULL)
568 return 0;
569
570 pos = tmp;
571 while (*pos) {
572 end = os_strchr(pos, ';');
573 if (end)
574 *end = '\0';
575 if (os_strcasecmp(pos, home_realm) == 0) {
576 match = 1;
577 break;
578 }
579 if (end == NULL)
580 break;
581 pos = end + 1;
582 }
583
584 os_free(tmp);
585
586 return match;
587}
588
589
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800590static int nai_realm_cred_username(struct wpa_supplicant *wpa_s,
591 struct nai_realm_eap *eap)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800592{
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800593 if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL) {
594 wpa_msg(wpa_s, MSG_DEBUG,
595 "nai-realm-cred-username: EAP method not supported: %d",
596 eap->method);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800597 return 0; /* method not supported */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800598 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800599
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800600 if (eap->method != EAP_TYPE_TTLS && eap->method != EAP_TYPE_PEAP &&
601 eap->method != EAP_TYPE_FAST) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800602 /* Only tunneled methods with username/password supported */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800603 wpa_msg(wpa_s, MSG_DEBUG,
604 "nai-realm-cred-username: Method: %d is not TTLS, PEAP, or FAST",
605 eap->method);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800606 return 0;
607 }
608
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800609 if (eap->method == EAP_TYPE_PEAP || eap->method == EAP_TYPE_FAST) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800610 if (eap->inner_method &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800611 eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL) {
612 wpa_msg(wpa_s, MSG_DEBUG,
613 "nai-realm-cred-username: PEAP/FAST: Inner method not supported: %d",
614 eap->inner_method);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800615 return 0;
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800616 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800617 if (!eap->inner_method &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800618 eap_get_name(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2) == NULL) {
619 wpa_msg(wpa_s, MSG_DEBUG,
620 "nai-realm-cred-username: MSCHAPv2 not supported");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800621 return 0;
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800622 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800623 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800624
625 if (eap->method == EAP_TYPE_TTLS) {
626 if (eap->inner_method == 0 && eap->inner_non_eap == 0)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800627 return 1; /* Assume TTLS/MSCHAPv2 is used */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800628 if (eap->inner_method &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800629 eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL) {
630 wpa_msg(wpa_s, MSG_DEBUG,
631 "nai-realm-cred-username: TTLS, but inner not supported: %d",
632 eap->inner_method);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800633 return 0;
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800634 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800635 if (eap->inner_non_eap &&
636 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_PAP &&
637 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_CHAP &&
638 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAP &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800639 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAPV2) {
640 wpa_msg(wpa_s, MSG_DEBUG,
641 "nai-realm-cred-username: TTLS, inner-non-eap not supported: %d",
642 eap->inner_non_eap);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800643 return 0;
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800644 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800645 }
646
647 if (eap->inner_method &&
648 eap->inner_method != EAP_TYPE_GTC &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800649 eap->inner_method != EAP_TYPE_MSCHAPV2) {
650 wpa_msg(wpa_s, MSG_DEBUG,
651 "nai-realm-cred-username: inner-method not GTC or MSCHAPv2: %d",
652 eap->inner_method);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700653 return 0;
654 }
655
656 return 1;
657}
658
659
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800660static int nai_realm_cred_cert(struct wpa_supplicant *wpa_s,
661 struct nai_realm_eap *eap)
662{
663 if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL) {
664 wpa_msg(wpa_s, MSG_DEBUG,
665 "nai-realm-cred-cert: Method not supported: %d",
666 eap->method);
667 return 0; /* method not supported */
668 }
669
670 if (eap->method != EAP_TYPE_TLS) {
671 /* Only EAP-TLS supported for credential authentication */
672 wpa_msg(wpa_s, MSG_DEBUG,
673 "nai-realm-cred-cert: Method not TLS: %d",
674 eap->method);
675 return 0;
676 }
677
678 return 1;
679}
680
681
682static struct nai_realm_eap * nai_realm_find_eap(struct wpa_supplicant *wpa_s,
683 struct wpa_cred *cred,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800684 struct nai_realm *realm)
685{
686 u8 e;
687
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800688 if (cred->username == NULL ||
Dmitry Shmidt04949592012-07-19 12:16:46 -0700689 cred->username[0] == '\0' ||
690 ((cred->password == NULL ||
691 cred->password[0] == '\0') &&
692 (cred->private_key == NULL ||
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800693 cred->private_key[0] == '\0'))) {
694 wpa_msg(wpa_s, MSG_DEBUG,
695 "nai-realm-find-eap: incomplete cred info: username: %s password: %s private_key: %s",
696 cred->username ? cred->username : "NULL",
697 cred->password ? cred->password : "NULL",
698 cred->private_key ? cred->private_key : "NULL");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800699 return NULL;
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800700 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800701
702 for (e = 0; e < realm->eap_count; e++) {
703 struct nai_realm_eap *eap = &realm->eap[e];
Dmitry Shmidt04949592012-07-19 12:16:46 -0700704 if (cred->password && cred->password[0] &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800705 nai_realm_cred_username(wpa_s, eap))
Dmitry Shmidt04949592012-07-19 12:16:46 -0700706 return eap;
707 if (cred->private_key && cred->private_key[0] &&
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800708 nai_realm_cred_cert(wpa_s, eap))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800709 return eap;
710 }
711
712 return NULL;
713}
714
715
716#ifdef INTERWORKING_3GPP
717
Dmitry Shmidt04949592012-07-19 12:16:46 -0700718static int plmn_id_match(struct wpabuf *anqp, const char *imsi, int mnc_len)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800719{
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700720 u8 plmn[3], plmn2[3];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800721 const u8 *pos, *end;
722 u8 udhl;
723
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700724 /*
725 * See Annex A of 3GPP TS 24.234 v8.1.0 for description. The network
726 * operator is allowed to include only two digits of the MNC, so allow
727 * matches based on both two and three digit MNC assumptions. Since some
728 * SIM/USIM cards may not expose MNC length conveniently, we may be
729 * provided the default MNC length 3 here and as such, checking with MNC
730 * length 2 is justifiable even though 3GPP TS 24.234 does not mention
731 * that case. Anyway, MCC/MNC pair where both 2 and 3 digit MNC is used
732 * with otherwise matching values would not be good idea in general, so
733 * this should not result in selecting incorrect networks.
734 */
735 /* Match with 3 digit MNC */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800736 plmn[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700737 plmn[1] = (imsi[2] - '0') | ((imsi[5] - '0') << 4);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800738 plmn[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700739 /* Match with 2 digit MNC */
740 plmn2[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
741 plmn2[1] = (imsi[2] - '0') | 0xf0;
742 plmn2[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800743
744 if (anqp == NULL)
745 return 0;
746 pos = wpabuf_head_u8(anqp);
747 end = pos + wpabuf_len(anqp);
748 if (pos + 2 > end)
749 return 0;
750 if (*pos != 0) {
751 wpa_printf(MSG_DEBUG, "Unsupported GUD version 0x%x", *pos);
752 return 0;
753 }
754 pos++;
755 udhl = *pos++;
756 if (pos + udhl > end) {
757 wpa_printf(MSG_DEBUG, "Invalid UDHL");
758 return 0;
759 }
760 end = pos + udhl;
761
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700762 wpa_printf(MSG_DEBUG, "Interworking: Matching against MCC/MNC alternatives: %02x:%02x:%02x or %02x:%02x:%02x (IMSI %s, MNC length %d)",
763 plmn[0], plmn[1], plmn[2], plmn2[0], plmn2[1], plmn2[2],
764 imsi, mnc_len);
765
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800766 while (pos + 2 <= end) {
767 u8 iei, len;
768 const u8 *l_end;
769 iei = *pos++;
770 len = *pos++ & 0x7f;
771 if (pos + len > end)
772 break;
773 l_end = pos + len;
774
775 if (iei == 0 && len > 0) {
776 /* PLMN List */
777 u8 num, i;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700778 wpa_hexdump(MSG_DEBUG, "Interworking: PLMN List information element",
779 pos, len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800780 num = *pos++;
781 for (i = 0; i < num; i++) {
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700782 if (pos + 3 > l_end)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800783 break;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700784 if (os_memcmp(pos, plmn, 3) == 0 ||
785 os_memcmp(pos, plmn2, 3) == 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800786 return 1; /* Found matching PLMN */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700787 pos += 3;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800788 }
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700789 } else {
790 wpa_hexdump(MSG_DEBUG, "Interworking: Unrecognized 3GPP information element",
791 pos, len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800792 }
793
794 pos = l_end;
795 }
796
797 return 0;
798}
799
800
Dmitry Shmidt04949592012-07-19 12:16:46 -0700801static int build_root_nai(char *nai, size_t nai_len, const char *imsi,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700802 size_t mnc_len, char prefix)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800803{
804 const char *sep, *msin;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700805 char *end, *pos;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800806 size_t msin_len, plmn_len;
807
808 /*
809 * TS 23.003, Clause 14 (3GPP to WLAN Interworking)
810 * Root NAI:
811 * <aka:0|sim:1><IMSI>@wlan.mnc<MNC>.mcc<MCC>.3gppnetwork.org
812 * <MNC> is zero-padded to three digits in case two-digit MNC is used
813 */
814
815 if (imsi == NULL || os_strlen(imsi) > 16) {
816 wpa_printf(MSG_DEBUG, "No valid IMSI available");
817 return -1;
818 }
819 sep = os_strchr(imsi, '-');
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700820 if (sep) {
821 plmn_len = sep - imsi;
822 msin = sep + 1;
823 } else if (mnc_len && os_strlen(imsi) >= 3 + mnc_len) {
824 plmn_len = 3 + mnc_len;
825 msin = imsi + plmn_len;
826 } else
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800827 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800828 if (plmn_len != 5 && plmn_len != 6)
829 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800830 msin_len = os_strlen(msin);
831
832 pos = nai;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700833 end = nai + nai_len;
834 if (prefix)
835 *pos++ = prefix;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800836 os_memcpy(pos, imsi, plmn_len);
837 pos += plmn_len;
838 os_memcpy(pos, msin, msin_len);
839 pos += msin_len;
840 pos += os_snprintf(pos, end - pos, "@wlan.mnc");
841 if (plmn_len == 5) {
842 *pos++ = '0';
843 *pos++ = imsi[3];
844 *pos++ = imsi[4];
845 } else {
846 *pos++ = imsi[3];
847 *pos++ = imsi[4];
848 *pos++ = imsi[5];
849 }
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700850 os_snprintf(pos, end - pos, ".mcc%c%c%c.3gppnetwork.org",
851 imsi[0], imsi[1], imsi[2]);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800852
Dmitry Shmidt04949592012-07-19 12:16:46 -0700853 return 0;
854}
855
856
857static int set_root_nai(struct wpa_ssid *ssid, const char *imsi, char prefix)
858{
859 char nai[100];
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700860 if (build_root_nai(nai, sizeof(nai), imsi, 0, prefix) < 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700861 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800862 return wpa_config_set_quoted(ssid, "identity", nai);
863}
864
865#endif /* INTERWORKING_3GPP */
866
867
Dmitry Shmidt54605472013-11-08 11:10:19 -0800868static int already_connected(struct wpa_supplicant *wpa_s,
869 struct wpa_cred *cred, struct wpa_bss *bss)
870{
Dmitry Shmidt4582d2a2014-02-28 11:14:23 -0800871 struct wpa_ssid *ssid, *sel_ssid;
872 struct wpa_bss *selected;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800873
874 if (wpa_s->wpa_state < WPA_ASSOCIATED || wpa_s->current_ssid == NULL)
875 return 0;
876
877 ssid = wpa_s->current_ssid;
878 if (ssid->parent_cred != cred)
879 return 0;
880
881 if (ssid->ssid_len != bss->ssid_len ||
882 os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) != 0)
883 return 0;
884
Dmitry Shmidt4582d2a2014-02-28 11:14:23 -0800885 sel_ssid = NULL;
886 selected = wpa_supplicant_pick_network(wpa_s, &sel_ssid);
887 if (selected && sel_ssid && sel_ssid->priority > ssid->priority)
888 return 0; /* higher priority network in scan results */
889
Dmitry Shmidt54605472013-11-08 11:10:19 -0800890 return 1;
891}
892
893
894static void remove_duplicate_network(struct wpa_supplicant *wpa_s,
895 struct wpa_cred *cred,
896 struct wpa_bss *bss)
897{
898 struct wpa_ssid *ssid;
899
900 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
901 if (ssid->parent_cred != cred)
902 continue;
903 if (ssid->ssid_len != bss->ssid_len ||
904 os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) != 0)
905 continue;
906
907 break;
908 }
909
910 if (ssid == NULL)
911 return;
912
913 wpa_printf(MSG_DEBUG, "Interworking: Remove duplicate network entry for the same credential");
914
915 if (ssid == wpa_s->current_ssid) {
916 wpa_sm_set_config(wpa_s->wpa, NULL);
917 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
918 wpa_supplicant_deauthenticate(wpa_s,
919 WLAN_REASON_DEAUTH_LEAVING);
920 }
921
922 wpas_notify_network_removed(wpa_s, ssid);
923 wpa_config_remove_network(wpa_s->conf, ssid->id);
924}
925
926
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800927static int interworking_set_hs20_params(struct wpa_supplicant *wpa_s,
928 struct wpa_ssid *ssid)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700929{
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700930 const char *key_mgmt = NULL;
931#ifdef CONFIG_IEEE80211R
932 int res;
933 struct wpa_driver_capa capa;
934
935 res = wpa_drv_get_capa(wpa_s, &capa);
936 if (res == 0 && capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_FT) {
937 key_mgmt = wpa_s->conf->pmf != NO_MGMT_FRAME_PROTECTION ?
938 "WPA-EAP WPA-EAP-SHA256 FT-EAP" :
939 "WPA-EAP FT-EAP";
940 }
941#endif /* CONFIG_IEEE80211R */
942
943 if (!key_mgmt)
944 key_mgmt = wpa_s->conf->pmf != NO_MGMT_FRAME_PROTECTION ?
945 "WPA-EAP WPA-EAP-SHA256" : "WPA-EAP";
946 if (wpa_config_set(ssid, "key_mgmt", key_mgmt, 0) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700947 return -1;
948 if (wpa_config_set(ssid, "proto", "RSN", 0) < 0)
949 return -1;
950 if (wpa_config_set(ssid, "pairwise", "CCMP", 0) < 0)
951 return -1;
952 return 0;
953}
954
955
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800956static int interworking_connect_3gpp(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800957 struct wpa_cred *cred,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800958 struct wpa_bss *bss)
959{
960#ifdef INTERWORKING_3GPP
961 struct wpa_ssid *ssid;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700962 int eap_type;
963 int res;
964 char prefix;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800965
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700966 if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700967 return -1;
968
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800969 wpa_msg(wpa_s, MSG_DEBUG, "Interworking: Connect with " MACSTR
970 " (3GPP)", MAC2STR(bss->bssid));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800971
Dmitry Shmidt54605472013-11-08 11:10:19 -0800972 if (already_connected(wpa_s, cred, bss)) {
973 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
974 MAC2STR(bss->bssid));
975 return 0;
976 }
977
978 remove_duplicate_network(wpa_s, cred, bss);
979
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800980 ssid = wpa_config_add_network(wpa_s->conf);
981 if (ssid == NULL)
982 return -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800983 ssid->parent_cred = cred;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800984
985 wpas_notify_network_added(wpa_s, ssid);
986 wpa_config_set_network_defaults(ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700987 ssid->priority = cred->priority;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800988 ssid->temporary = 1;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800989 ssid->ssid = os_zalloc(bss->ssid_len + 1);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800990 if (ssid->ssid == NULL)
991 goto fail;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800992 os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
993 ssid->ssid_len = bss->ssid_len;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700994 ssid->eap.sim_num = cred->sim_num;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800995
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800996 if (interworking_set_hs20_params(wpa_s, ssid) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700997 goto fail;
998
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700999 eap_type = EAP_TYPE_SIM;
1000 if (cred->pcsc && wpa_s->scard && scard_supports_umts(wpa_s->scard))
1001 eap_type = EAP_TYPE_AKA;
1002 if (cred->eap_method && cred->eap_method[0].vendor == EAP_VENDOR_IETF) {
1003 if (cred->eap_method[0].method == EAP_TYPE_SIM ||
1004 cred->eap_method[0].method == EAP_TYPE_AKA ||
1005 cred->eap_method[0].method == EAP_TYPE_AKA_PRIME)
1006 eap_type = cred->eap_method[0].method;
1007 }
1008
1009 switch (eap_type) {
1010 case EAP_TYPE_SIM:
1011 prefix = '1';
1012 res = wpa_config_set(ssid, "eap", "SIM", 0);
1013 break;
1014 case EAP_TYPE_AKA:
1015 prefix = '0';
1016 res = wpa_config_set(ssid, "eap", "AKA", 0);
1017 break;
1018 case EAP_TYPE_AKA_PRIME:
1019 prefix = '6';
1020 res = wpa_config_set(ssid, "eap", "AKA'", 0);
1021 break;
1022 default:
1023 res = -1;
1024 break;
1025 }
1026 if (res < 0) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001027 wpa_msg(wpa_s, MSG_DEBUG,
1028 "Selected EAP method (%d) not supported", eap_type);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001029 goto fail;
1030 }
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001031
1032 if (!cred->pcsc && set_root_nai(ssid, cred->imsi, prefix) < 0) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001033 wpa_msg(wpa_s, MSG_DEBUG, "Failed to set Root NAI");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001034 goto fail;
1035 }
1036
Dmitry Shmidt04949592012-07-19 12:16:46 -07001037 if (cred->milenage && cred->milenage[0]) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001038 if (wpa_config_set_quoted(ssid, "password",
Dmitry Shmidt04949592012-07-19 12:16:46 -07001039 cred->milenage) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001040 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001041 } else if (cred->pcsc) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001042 if (wpa_config_set_quoted(ssid, "pcsc", "") < 0)
1043 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001044 if (wpa_s->conf->pcsc_pin &&
1045 wpa_config_set_quoted(ssid, "pin", wpa_s->conf->pcsc_pin)
1046 < 0)
1047 goto fail;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001048 }
1049
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001050 wpa_s->next_ssid = ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001051 wpa_config_update_prio_list(wpa_s->conf);
1052 interworking_reconnect(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001053
1054 return 0;
1055
1056fail:
1057 wpas_notify_network_removed(wpa_s, ssid);
1058 wpa_config_remove_network(wpa_s->conf, ssid->id);
1059#endif /* INTERWORKING_3GPP */
1060 return -1;
1061}
1062
1063
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001064static int roaming_consortium_element_match(const u8 *ie, const u8 *rc_id,
1065 size_t rc_len)
1066{
1067 const u8 *pos, *end;
1068 u8 lens;
1069
1070 if (ie == NULL)
1071 return 0;
1072
1073 pos = ie + 2;
1074 end = ie + 2 + ie[1];
1075
1076 /* Roaming Consortium element:
1077 * Number of ANQP OIs
1078 * OI #1 and #2 lengths
1079 * OI #1, [OI #2], [OI #3]
1080 */
1081
1082 if (pos + 2 > end)
1083 return 0;
1084
1085 pos++; /* skip Number of ANQP OIs */
1086 lens = *pos++;
1087 if (pos + (lens & 0x0f) + (lens >> 4) > end)
1088 return 0;
1089
1090 if ((lens & 0x0f) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
1091 return 1;
1092 pos += lens & 0x0f;
1093
1094 if ((lens >> 4) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
1095 return 1;
1096 pos += lens >> 4;
1097
1098 if (pos < end && (size_t) (end - pos) == rc_len &&
1099 os_memcmp(pos, rc_id, rc_len) == 0)
1100 return 1;
1101
1102 return 0;
1103}
1104
1105
1106static int roaming_consortium_anqp_match(const struct wpabuf *anqp,
1107 const u8 *rc_id, size_t rc_len)
1108{
1109 const u8 *pos, *end;
1110 u8 len;
1111
1112 if (anqp == NULL)
1113 return 0;
1114
1115 pos = wpabuf_head(anqp);
1116 end = pos + wpabuf_len(anqp);
1117
1118 /* Set of <OI Length, OI> duples */
1119 while (pos < end) {
1120 len = *pos++;
1121 if (pos + len > end)
1122 break;
1123 if (len == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
1124 return 1;
1125 pos += len;
1126 }
1127
1128 return 0;
1129}
1130
1131
1132static int roaming_consortium_match(const u8 *ie, const struct wpabuf *anqp,
1133 const u8 *rc_id, size_t rc_len)
1134{
1135 return roaming_consortium_element_match(ie, rc_id, rc_len) ||
1136 roaming_consortium_anqp_match(anqp, rc_id, rc_len);
1137}
1138
1139
Dmitry Shmidt051af732013-10-22 13:52:46 -07001140static int cred_no_required_oi_match(struct wpa_cred *cred, struct wpa_bss *bss)
1141{
1142 const u8 *ie;
1143
1144 if (cred->required_roaming_consortium_len == 0)
1145 return 0;
1146
1147 ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
1148
1149 if (ie == NULL &&
1150 (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
1151 return 1;
1152
1153 return !roaming_consortium_match(ie,
1154 bss->anqp ?
1155 bss->anqp->roaming_consortium : NULL,
1156 cred->required_roaming_consortium,
1157 cred->required_roaming_consortium_len);
1158}
1159
1160
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001161static int cred_excluded_ssid(struct wpa_cred *cred, struct wpa_bss *bss)
1162{
1163 size_t i;
1164
1165 if (!cred->excluded_ssid)
1166 return 0;
1167
1168 for (i = 0; i < cred->num_excluded_ssid; i++) {
1169 struct excluded_ssid *e = &cred->excluded_ssid[i];
1170 if (bss->ssid_len == e->ssid_len &&
1171 os_memcmp(bss->ssid, e->ssid, e->ssid_len) == 0)
1172 return 1;
1173 }
1174
1175 return 0;
1176}
1177
1178
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001179static int cred_below_min_backhaul(struct wpa_supplicant *wpa_s,
1180 struct wpa_cred *cred, struct wpa_bss *bss)
1181{
1182 int res;
1183 unsigned int dl_bandwidth, ul_bandwidth;
1184 const u8 *wan;
1185 u8 wan_info, dl_load, ul_load;
1186 u16 lmd;
1187 u32 ul_speed, dl_speed;
1188
1189 if (!cred->min_dl_bandwidth_home &&
1190 !cred->min_ul_bandwidth_home &&
1191 !cred->min_dl_bandwidth_roaming &&
1192 !cred->min_ul_bandwidth_roaming)
1193 return 0; /* No bandwidth constraint specified */
1194
1195 if (bss->anqp == NULL || bss->anqp->hs20_wan_metrics == NULL)
1196 return 0; /* No WAN Metrics known - ignore constraint */
1197
1198 wan = wpabuf_head(bss->anqp->hs20_wan_metrics);
1199 wan_info = wan[0];
1200 if (wan_info & BIT(3))
1201 return 1; /* WAN link at capacity */
1202 lmd = WPA_GET_LE16(wan + 11);
1203 if (lmd == 0)
1204 return 0; /* Downlink/Uplink Load was not measured */
1205 dl_speed = WPA_GET_LE32(wan + 1);
1206 ul_speed = WPA_GET_LE32(wan + 5);
1207 dl_load = wan[9];
1208 ul_load = wan[10];
1209
1210 if (dl_speed >= 0xffffff)
1211 dl_bandwidth = dl_speed / 255 * (255 - dl_load);
1212 else
1213 dl_bandwidth = dl_speed * (255 - dl_load) / 255;
1214
1215 if (ul_speed >= 0xffffff)
1216 ul_bandwidth = ul_speed / 255 * (255 - ul_load);
1217 else
1218 ul_bandwidth = ul_speed * (255 - ul_load) / 255;
1219
1220 res = interworking_home_sp_cred(wpa_s, cred, bss->anqp ?
1221 bss->anqp->domain_name : NULL);
1222 if (res > 0) {
1223 if (cred->min_dl_bandwidth_home > dl_bandwidth)
1224 return 1;
1225 if (cred->min_ul_bandwidth_home > ul_bandwidth)
1226 return 1;
1227 } else {
1228 if (cred->min_dl_bandwidth_roaming > dl_bandwidth)
1229 return 1;
1230 if (cred->min_ul_bandwidth_roaming > ul_bandwidth)
1231 return 1;
1232 }
1233
1234 return 0;
1235}
1236
1237
1238static int cred_over_max_bss_load(struct wpa_supplicant *wpa_s,
1239 struct wpa_cred *cred, struct wpa_bss *bss)
1240{
1241 const u8 *ie;
1242 int res;
1243
1244 if (!cred->max_bss_load)
1245 return 0; /* No BSS Load constraint specified */
1246
1247 ie = wpa_bss_get_ie(bss, WLAN_EID_BSS_LOAD);
1248 if (ie == NULL || ie[1] < 3)
1249 return 0; /* No BSS Load advertised */
1250
1251 res = interworking_home_sp_cred(wpa_s, cred, bss->anqp ?
1252 bss->anqp->domain_name : NULL);
1253 if (res <= 0)
1254 return 0; /* Not a home network */
1255
1256 return ie[4] > cred->max_bss_load;
1257}
1258
1259
1260static int has_proto_match(const u8 *pos, const u8 *end, u8 proto)
1261{
1262 while (pos + 4 <= end) {
1263 if (pos[0] == proto && pos[3] == 1 /* Open */)
1264 return 1;
1265 pos += 4;
1266 }
1267
1268 return 0;
1269}
1270
1271
1272static int has_proto_port_match(const u8 *pos, const u8 *end, u8 proto,
1273 u16 port)
1274{
1275 while (pos + 4 <= end) {
1276 if (pos[0] == proto && WPA_GET_LE16(&pos[1]) == port &&
1277 pos[3] == 1 /* Open */)
1278 return 1;
1279 pos += 4;
1280 }
1281
1282 return 0;
1283}
1284
1285
1286static int cred_conn_capab_missing(struct wpa_supplicant *wpa_s,
1287 struct wpa_cred *cred, struct wpa_bss *bss)
1288{
1289 int res;
1290 const u8 *capab, *end;
1291 unsigned int i, j;
1292 int *ports;
1293
1294 if (!cred->num_req_conn_capab)
1295 return 0; /* No connection capability constraint specified */
1296
1297 if (bss->anqp == NULL || bss->anqp->hs20_connection_capability == NULL)
1298 return 0; /* No Connection Capability known - ignore constraint
1299 */
1300
1301 res = interworking_home_sp_cred(wpa_s, cred, bss->anqp ?
1302 bss->anqp->domain_name : NULL);
1303 if (res > 0)
1304 return 0; /* No constraint in home network */
1305
1306 capab = wpabuf_head(bss->anqp->hs20_connection_capability);
1307 end = capab + wpabuf_len(bss->anqp->hs20_connection_capability);
1308
1309 for (i = 0; i < cred->num_req_conn_capab; i++) {
1310 ports = cred->req_conn_capab_port[i];
1311 if (!ports) {
1312 if (!has_proto_match(capab, end,
1313 cred->req_conn_capab_proto[i]))
1314 return 1;
1315 } else {
1316 for (j = 0; ports[j] > -1; j++) {
1317 if (!has_proto_port_match(
1318 capab, end,
1319 cred->req_conn_capab_proto[i],
1320 ports[j]))
1321 return 1;
1322 }
1323 }
1324 }
1325
1326 return 0;
1327}
1328
1329
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001330static struct wpa_cred * interworking_credentials_available_roaming_consortium(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001331 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
1332 int *excluded)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001333{
1334 struct wpa_cred *cred, *selected = NULL;
1335 const u8 *ie;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001336 int is_excluded = 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001337
1338 ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
1339
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001340 if (ie == NULL &&
1341 (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001342 return NULL;
1343
1344 if (wpa_s->conf->cred == NULL)
1345 return NULL;
1346
1347 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1348 if (cred->roaming_consortium_len == 0)
1349 continue;
1350
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001351 if (!roaming_consortium_match(ie,
1352 bss->anqp ?
1353 bss->anqp->roaming_consortium :
1354 NULL,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001355 cred->roaming_consortium,
1356 cred->roaming_consortium_len))
1357 continue;
1358
Dmitry Shmidt051af732013-10-22 13:52:46 -07001359 if (cred_no_required_oi_match(cred, bss))
1360 continue;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001361 if (!ignore_bw && cred_below_min_backhaul(wpa_s, cred, bss))
1362 continue;
1363 if (!ignore_bw && cred_over_max_bss_load(wpa_s, cred, bss))
1364 continue;
1365 if (!ignore_bw && cred_conn_capab_missing(wpa_s, cred, bss))
1366 continue;
1367 if (cred_excluded_ssid(cred, bss)) {
1368 if (excluded == NULL)
1369 continue;
1370 if (selected == NULL) {
1371 selected = cred;
1372 is_excluded = 1;
1373 }
1374 } else {
1375 if (selected == NULL || is_excluded ||
1376 cred_prio_cmp(selected, cred) < 0) {
1377 selected = cred;
1378 is_excluded = 0;
1379 }
1380 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001381 }
1382
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001383 if (excluded)
1384 *excluded = is_excluded;
1385
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001386 return selected;
1387}
1388
1389
1390static int interworking_set_eap_params(struct wpa_ssid *ssid,
1391 struct wpa_cred *cred, int ttls)
1392{
1393 if (cred->eap_method) {
1394 ttls = cred->eap_method->vendor == EAP_VENDOR_IETF &&
1395 cred->eap_method->method == EAP_TYPE_TTLS;
1396
1397 os_free(ssid->eap.eap_methods);
1398 ssid->eap.eap_methods =
1399 os_malloc(sizeof(struct eap_method_type) * 2);
1400 if (ssid->eap.eap_methods == NULL)
1401 return -1;
1402 os_memcpy(ssid->eap.eap_methods, cred->eap_method,
1403 sizeof(*cred->eap_method));
1404 ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF;
1405 ssid->eap.eap_methods[1].method = EAP_TYPE_NONE;
1406 }
1407
1408 if (ttls && cred->username && cred->username[0]) {
1409 const char *pos;
1410 char *anon;
1411 /* Use anonymous NAI in Phase 1 */
1412 pos = os_strchr(cred->username, '@');
1413 if (pos) {
1414 size_t buflen = 9 + os_strlen(pos) + 1;
1415 anon = os_malloc(buflen);
1416 if (anon == NULL)
1417 return -1;
1418 os_snprintf(anon, buflen, "anonymous%s", pos);
1419 } else if (cred->realm) {
1420 size_t buflen = 10 + os_strlen(cred->realm) + 1;
1421 anon = os_malloc(buflen);
1422 if (anon == NULL)
1423 return -1;
1424 os_snprintf(anon, buflen, "anonymous@%s", cred->realm);
1425 } else {
1426 anon = os_strdup("anonymous");
1427 if (anon == NULL)
1428 return -1;
1429 }
1430 if (wpa_config_set_quoted(ssid, "anonymous_identity", anon) <
1431 0) {
1432 os_free(anon);
1433 return -1;
1434 }
1435 os_free(anon);
1436 }
1437
1438 if (cred->username && cred->username[0] &&
1439 wpa_config_set_quoted(ssid, "identity", cred->username) < 0)
1440 return -1;
1441
1442 if (cred->password && cred->password[0]) {
1443 if (cred->ext_password &&
1444 wpa_config_set(ssid, "password", cred->password, 0) < 0)
1445 return -1;
1446 if (!cred->ext_password &&
1447 wpa_config_set_quoted(ssid, "password", cred->password) <
1448 0)
1449 return -1;
1450 }
1451
1452 if (cred->client_cert && cred->client_cert[0] &&
1453 wpa_config_set_quoted(ssid, "client_cert", cred->client_cert) < 0)
1454 return -1;
1455
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001456#ifdef ANDROID
1457 if (cred->private_key &&
1458 os_strncmp(cred->private_key, "keystore://", 11) == 0) {
1459 /* Use OpenSSL engine configuration for Android keystore */
1460 if (wpa_config_set_quoted(ssid, "engine_id", "keystore") < 0 ||
1461 wpa_config_set_quoted(ssid, "key_id",
1462 cred->private_key + 11) < 0 ||
1463 wpa_config_set(ssid, "engine", "1", 0) < 0)
1464 return -1;
1465 } else
1466#endif /* ANDROID */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001467 if (cred->private_key && cred->private_key[0] &&
1468 wpa_config_set_quoted(ssid, "private_key", cred->private_key) < 0)
1469 return -1;
1470
1471 if (cred->private_key_passwd && cred->private_key_passwd[0] &&
1472 wpa_config_set_quoted(ssid, "private_key_passwd",
1473 cred->private_key_passwd) < 0)
1474 return -1;
1475
1476 if (cred->phase1) {
1477 os_free(ssid->eap.phase1);
1478 ssid->eap.phase1 = os_strdup(cred->phase1);
1479 }
1480 if (cred->phase2) {
1481 os_free(ssid->eap.phase2);
1482 ssid->eap.phase2 = os_strdup(cred->phase2);
1483 }
1484
1485 if (cred->ca_cert && cred->ca_cert[0] &&
1486 wpa_config_set_quoted(ssid, "ca_cert", cred->ca_cert) < 0)
1487 return -1;
1488
Dmitry Shmidt051af732013-10-22 13:52:46 -07001489 if (cred->domain_suffix_match && cred->domain_suffix_match[0] &&
1490 wpa_config_set_quoted(ssid, "domain_suffix_match",
1491 cred->domain_suffix_match) < 0)
1492 return -1;
1493
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001494 ssid->eap.ocsp = cred->ocsp;
1495
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001496 return 0;
1497}
1498
1499
1500static int interworking_connect_roaming_consortium(
1501 struct wpa_supplicant *wpa_s, struct wpa_cred *cred,
Dmitry Shmidt54605472013-11-08 11:10:19 -08001502 struct wpa_bss *bss)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001503{
1504 struct wpa_ssid *ssid;
1505
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001506 wpa_msg(wpa_s, MSG_DEBUG, "Interworking: Connect with " MACSTR
1507 " based on roaming consortium match", MAC2STR(bss->bssid));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001508
Dmitry Shmidt54605472013-11-08 11:10:19 -08001509 if (already_connected(wpa_s, cred, bss)) {
1510 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
1511 MAC2STR(bss->bssid));
1512 return 0;
1513 }
1514
1515 remove_duplicate_network(wpa_s, cred, bss);
1516
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001517 ssid = wpa_config_add_network(wpa_s->conf);
1518 if (ssid == NULL)
1519 return -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001520 ssid->parent_cred = cred;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001521 wpas_notify_network_added(wpa_s, ssid);
1522 wpa_config_set_network_defaults(ssid);
1523 ssid->priority = cred->priority;
1524 ssid->temporary = 1;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001525 ssid->ssid = os_zalloc(bss->ssid_len + 1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001526 if (ssid->ssid == NULL)
1527 goto fail;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001528 os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
1529 ssid->ssid_len = bss->ssid_len;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001530
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001531 if (interworking_set_hs20_params(wpa_s, ssid) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001532 goto fail;
1533
1534 if (cred->eap_method == NULL) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001535 wpa_msg(wpa_s, MSG_DEBUG,
1536 "Interworking: No EAP method set for credential using roaming consortium");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001537 goto fail;
1538 }
1539
1540 if (interworking_set_eap_params(
1541 ssid, cred,
1542 cred->eap_method->vendor == EAP_VENDOR_IETF &&
1543 cred->eap_method->method == EAP_TYPE_TTLS) < 0)
1544 goto fail;
1545
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001546 wpa_s->next_ssid = ssid;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001547 wpa_config_update_prio_list(wpa_s->conf);
1548 interworking_reconnect(wpa_s);
1549
1550 return 0;
1551
1552fail:
1553 wpas_notify_network_removed(wpa_s, ssid);
1554 wpa_config_remove_network(wpa_s->conf, ssid->id);
1555 return -1;
1556}
1557
1558
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001559static int interworking_connect_helper(struct wpa_supplicant *wpa_s,
1560 struct wpa_bss *bss, int allow_excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001561{
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001562 struct wpa_cred *cred, *cred_rc, *cred_3gpp;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001563 struct wpa_ssid *ssid;
1564 struct nai_realm *realm;
1565 struct nai_realm_eap *eap = NULL;
1566 u16 count, i;
1567 char buf[100];
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001568 int excluded = 0, *excl = allow_excluded ? &excluded : NULL;
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001569 const char *name;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001570
Dmitry Shmidt04949592012-07-19 12:16:46 -07001571 if (wpa_s->conf->cred == NULL || bss == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001572 return -1;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001573 if (disallowed_bssid(wpa_s, bss->bssid) ||
1574 disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001575 wpa_msg(wpa_s, MSG_DEBUG,
1576 "Interworking: Reject connection to disallowed BSS "
1577 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001578 return -1;
1579 }
1580
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001581 wpa_printf(MSG_DEBUG, "Interworking: Considering BSS " MACSTR
1582 " for connection (allow_excluded=%d)",
1583 MAC2STR(bss->bssid), allow_excluded);
1584
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001585 if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
1586 /*
1587 * We currently support only HS 2.0 networks and those are
1588 * required to use WPA2-Enterprise.
1589 */
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001590 wpa_msg(wpa_s, MSG_DEBUG,
1591 "Interworking: Network does not use RSN");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001592 return -1;
1593 }
1594
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001595 cred_rc = interworking_credentials_available_roaming_consortium(
1596 wpa_s, bss, 0, excl);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001597 if (cred_rc) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001598 wpa_msg(wpa_s, MSG_DEBUG,
1599 "Interworking: Highest roaming consortium matching credential priority %d sp_priority %d",
1600 cred_rc->priority, cred_rc->sp_priority);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001601 if (allow_excluded && excl && !(*excl))
1602 excl = NULL;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001603 }
1604
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001605 cred = interworking_credentials_available_realm(wpa_s, bss, 0, excl);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001606 if (cred) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001607 wpa_msg(wpa_s, MSG_DEBUG,
1608 "Interworking: Highest NAI Realm list matching credential priority %d sp_priority %d",
1609 cred->priority, cred->sp_priority);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001610 if (allow_excluded && excl && !(*excl))
1611 excl = NULL;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001612 }
1613
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001614 cred_3gpp = interworking_credentials_available_3gpp(wpa_s, bss, 0,
1615 excl);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001616 if (cred_3gpp) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001617 wpa_msg(wpa_s, MSG_DEBUG,
1618 "Interworking: Highest 3GPP matching credential priority %d sp_priority %d",
1619 cred_3gpp->priority, cred_3gpp->sp_priority);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001620 if (allow_excluded && excl && !(*excl))
1621 excl = NULL;
1622 }
1623
1624 if (!cred_rc && !cred && !cred_3gpp) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001625 wpa_msg(wpa_s, MSG_DEBUG,
1626 "Interworking: No full credential matches - consider options without BW(etc.) limits");
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001627 cred_rc = interworking_credentials_available_roaming_consortium(
1628 wpa_s, bss, 1, excl);
1629 if (cred_rc) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001630 wpa_msg(wpa_s, MSG_DEBUG,
1631 "Interworking: Highest roaming consortium matching credential priority %d sp_priority %d (ignore BW)",
1632 cred_rc->priority, cred_rc->sp_priority);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001633 if (allow_excluded && excl && !(*excl))
1634 excl = NULL;
1635 }
1636
1637 cred = interworking_credentials_available_realm(wpa_s, bss, 1,
1638 excl);
1639 if (cred) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001640 wpa_msg(wpa_s, MSG_DEBUG,
1641 "Interworking: Highest NAI Realm list matching credential priority %d sp_priority %d (ignore BW)",
1642 cred->priority, cred->sp_priority);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001643 if (allow_excluded && excl && !(*excl))
1644 excl = NULL;
1645 }
1646
1647 cred_3gpp = interworking_credentials_available_3gpp(wpa_s, bss,
1648 1, excl);
1649 if (cred_3gpp) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001650 wpa_msg(wpa_s, MSG_DEBUG,
1651 "Interworking: Highest 3GPP matching credential priority %d sp_priority %d (ignore BW)",
1652 cred_3gpp->priority, cred_3gpp->sp_priority);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001653 if (allow_excluded && excl && !(*excl))
1654 excl = NULL;
1655 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001656 }
1657
1658 if (cred_rc &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001659 (cred == NULL || cred_prio_cmp(cred_rc, cred) >= 0) &&
1660 (cred_3gpp == NULL || cred_prio_cmp(cred_rc, cred_3gpp) >= 0))
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001661 return interworking_connect_roaming_consortium(wpa_s, cred_rc,
Dmitry Shmidt54605472013-11-08 11:10:19 -08001662 bss);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001663
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001664 if (cred_3gpp &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001665 (cred == NULL || cred_prio_cmp(cred_3gpp, cred) >= 0)) {
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001666 return interworking_connect_3gpp(wpa_s, cred_3gpp, bss);
1667 }
1668
1669 if (cred == NULL) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001670 wpa_msg(wpa_s, MSG_DEBUG,
1671 "Interworking: No matching credentials found for "
1672 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001673 return -1;
1674 }
1675
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001676 realm = nai_realm_parse(bss->anqp ? bss->anqp->nai_realm : NULL,
1677 &count);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001678 if (realm == NULL) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001679 wpa_msg(wpa_s, MSG_DEBUG,
1680 "Interworking: Could not parse NAI Realm list from "
1681 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001682 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001683 }
1684
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001685 for (i = 0; i < count; i++) {
1686 if (!nai_realm_match(&realm[i], cred->realm))
1687 continue;
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001688 eap = nai_realm_find_eap(wpa_s, cred, &realm[i]);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001689 if (eap)
1690 break;
1691 }
1692
1693 if (!eap) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001694 wpa_msg(wpa_s, MSG_DEBUG,
1695 "Interworking: No matching credentials and EAP method found for "
1696 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001697 nai_realm_free(realm, count);
1698 return -1;
1699 }
1700
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001701 wpa_msg(wpa_s, MSG_DEBUG, "Interworking: Connect with " MACSTR,
1702 MAC2STR(bss->bssid));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001703
Dmitry Shmidt54605472013-11-08 11:10:19 -08001704 if (already_connected(wpa_s, cred, bss)) {
1705 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
1706 MAC2STR(bss->bssid));
1707 nai_realm_free(realm, count);
1708 return 0;
1709 }
1710
1711 remove_duplicate_network(wpa_s, cred, bss);
1712
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001713 ssid = wpa_config_add_network(wpa_s->conf);
1714 if (ssid == NULL) {
1715 nai_realm_free(realm, count);
1716 return -1;
1717 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001718 ssid->parent_cred = cred;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001719 wpas_notify_network_added(wpa_s, ssid);
1720 wpa_config_set_network_defaults(ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001721 ssid->priority = cred->priority;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001722 ssid->temporary = 1;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001723 ssid->ssid = os_zalloc(bss->ssid_len + 1);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001724 if (ssid->ssid == NULL)
1725 goto fail;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001726 os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
1727 ssid->ssid_len = bss->ssid_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001728
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001729 if (interworking_set_hs20_params(wpa_s, ssid) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001730 goto fail;
1731
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001732 if (wpa_config_set(ssid, "eap", eap_get_name(EAP_VENDOR_IETF,
1733 eap->method), 0) < 0)
1734 goto fail;
1735
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001736 switch (eap->method) {
1737 case EAP_TYPE_TTLS:
1738 if (eap->inner_method) {
1739 os_snprintf(buf, sizeof(buf), "\"autheap=%s\"",
1740 eap_get_name(EAP_VENDOR_IETF,
1741 eap->inner_method));
1742 if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
1743 goto fail;
1744 break;
1745 }
1746 switch (eap->inner_non_eap) {
1747 case NAI_REALM_INNER_NON_EAP_PAP:
1748 if (wpa_config_set(ssid, "phase2", "\"auth=PAP\"", 0) <
1749 0)
1750 goto fail;
1751 break;
1752 case NAI_REALM_INNER_NON_EAP_CHAP:
1753 if (wpa_config_set(ssid, "phase2", "\"auth=CHAP\"", 0)
1754 < 0)
1755 goto fail;
1756 break;
1757 case NAI_REALM_INNER_NON_EAP_MSCHAP:
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08001758 if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAP\"",
1759 0) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001760 goto fail;
1761 break;
1762 case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
1763 if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
1764 0) < 0)
1765 goto fail;
1766 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001767 default:
1768 /* EAP params were not set - assume TTLS/MSCHAPv2 */
1769 if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
1770 0) < 0)
1771 goto fail;
1772 break;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001773 }
1774 break;
1775 case EAP_TYPE_PEAP:
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001776 case EAP_TYPE_FAST:
1777 if (wpa_config_set(ssid, "phase1", "\"fast_provisioning=2\"",
1778 0) < 0)
1779 goto fail;
1780 if (wpa_config_set(ssid, "pac_file",
1781 "\"blob://pac_interworking\"", 0) < 0)
1782 goto fail;
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001783 name = eap_get_name(EAP_VENDOR_IETF,
1784 eap->inner_method ? eap->inner_method :
1785 EAP_TYPE_MSCHAPV2);
1786 if (name == NULL)
1787 goto fail;
1788 os_snprintf(buf, sizeof(buf), "\"auth=%s\"", name);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001789 if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
1790 goto fail;
1791 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001792 case EAP_TYPE_TLS:
1793 break;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001794 }
1795
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001796 if (interworking_set_eap_params(ssid, cred,
1797 eap->method == EAP_TYPE_TTLS) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001798 goto fail;
1799
1800 nai_realm_free(realm, count);
1801
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001802 wpa_s->next_ssid = ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001803 wpa_config_update_prio_list(wpa_s->conf);
1804 interworking_reconnect(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001805
1806 return 0;
1807
1808fail:
1809 wpas_notify_network_removed(wpa_s, ssid);
1810 wpa_config_remove_network(wpa_s->conf, ssid->id);
1811 nai_realm_free(realm, count);
1812 return -1;
1813}
1814
1815
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001816int interworking_connect(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
1817{
1818 return interworking_connect_helper(wpa_s, bss, 1);
1819}
1820
1821
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001822#ifdef PCSC_FUNCS
1823static int interworking_pcsc_read_imsi(struct wpa_supplicant *wpa_s)
1824{
1825 size_t len;
1826
1827 if (wpa_s->imsi[0] && wpa_s->mnc_len)
1828 return 0;
1829
1830 len = sizeof(wpa_s->imsi) - 1;
1831 if (scard_get_imsi(wpa_s->scard, wpa_s->imsi, &len)) {
1832 scard_deinit(wpa_s->scard);
1833 wpa_s->scard = NULL;
1834 wpa_msg(wpa_s, MSG_ERROR, "Could not read IMSI");
1835 return -1;
1836 }
1837 wpa_s->imsi[len] = '\0';
1838 wpa_s->mnc_len = scard_get_mnc_len(wpa_s->scard);
1839 wpa_printf(MSG_DEBUG, "SCARD: IMSI %s (MNC length %d)",
1840 wpa_s->imsi, wpa_s->mnc_len);
1841
1842 return 0;
1843}
1844#endif /* PCSC_FUNCS */
1845
1846
Dmitry Shmidt04949592012-07-19 12:16:46 -07001847static struct wpa_cred * interworking_credentials_available_3gpp(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001848 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
1849 int *excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001850{
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08001851 struct wpa_cred *selected = NULL;
1852#ifdef INTERWORKING_3GPP
1853 struct wpa_cred *cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001854 int ret;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001855 int is_excluded = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001856
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001857 if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL) {
1858 wpa_msg(wpa_s, MSG_DEBUG,
1859 "interworking-avail-3gpp: not avail, anqp: %p anqp_3gpp: %p",
1860 bss->anqp, bss->anqp ? bss->anqp->anqp_3gpp : NULL);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001861 return NULL;
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001862 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001863
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08001864#ifdef CONFIG_EAP_PROXY
1865 if (!wpa_s->imsi[0]) {
1866 size_t len;
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001867 wpa_msg(wpa_s, MSG_DEBUG,
1868 "Interworking: IMSI not available - try to read again through eap_proxy");
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08001869 wpa_s->mnc_len = eapol_sm_get_eap_proxy_imsi(wpa_s->eapol,
1870 wpa_s->imsi,
1871 &len);
1872 if (wpa_s->mnc_len > 0) {
1873 wpa_s->imsi[len] = '\0';
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001874 wpa_msg(wpa_s, MSG_DEBUG,
1875 "eap_proxy: IMSI %s (MNC length %d)",
1876 wpa_s->imsi, wpa_s->mnc_len);
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08001877 } else {
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001878 wpa_msg(wpa_s, MSG_DEBUG,
1879 "eap_proxy: IMSI not available");
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08001880 }
1881 }
1882#endif /* CONFIG_EAP_PROXY */
1883
Dmitry Shmidt04949592012-07-19 12:16:46 -07001884 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1885 char *sep;
1886 const char *imsi;
1887 int mnc_len;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001888 char imsi_buf[16];
1889 size_t msin_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001890
Dmitry Shmidt04949592012-07-19 12:16:46 -07001891#ifdef PCSC_FUNCS
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001892 if (cred->pcsc && wpa_s->scard) {
1893 if (interworking_pcsc_read_imsi(wpa_s) < 0)
1894 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001895 imsi = wpa_s->imsi;
1896 mnc_len = wpa_s->mnc_len;
1897 goto compare;
1898 }
1899#endif /* PCSC_FUNCS */
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001900#ifdef CONFIG_EAP_PROXY
1901 if (cred->pcsc && wpa_s->mnc_len > 0 && wpa_s->imsi[0]) {
1902 imsi = wpa_s->imsi;
1903 mnc_len = wpa_s->mnc_len;
1904 goto compare;
1905 }
1906#endif /* CONFIG_EAP_PROXY */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001907
1908 if (cred->imsi == NULL || !cred->imsi[0] ||
Dmitry Shmidt051af732013-10-22 13:52:46 -07001909 (!wpa_s->conf->external_sim &&
1910 (cred->milenage == NULL || !cred->milenage[0])))
Dmitry Shmidt04949592012-07-19 12:16:46 -07001911 continue;
1912
1913 sep = os_strchr(cred->imsi, '-');
1914 if (sep == NULL ||
1915 (sep - cred->imsi != 5 && sep - cred->imsi != 6))
1916 continue;
1917 mnc_len = sep - cred->imsi - 3;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001918 os_memcpy(imsi_buf, cred->imsi, 3 + mnc_len);
1919 sep++;
1920 msin_len = os_strlen(cred->imsi);
1921 if (3 + mnc_len + msin_len >= sizeof(imsi_buf) - 1)
1922 msin_len = sizeof(imsi_buf) - 3 - mnc_len - 1;
1923 os_memcpy(&imsi_buf[3 + mnc_len], sep, msin_len);
1924 imsi_buf[3 + mnc_len + msin_len] = '\0';
1925 imsi = imsi_buf;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001926
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001927#if defined(PCSC_FUNCS) || defined(CONFIG_EAP_PROXY)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001928 compare:
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001929#endif /* PCSC_FUNCS || CONFIG_EAP_PROXY */
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001930 wpa_msg(wpa_s, MSG_DEBUG,
1931 "Interworking: Parsing 3GPP info from " MACSTR,
1932 MAC2STR(bss->bssid));
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001933 ret = plmn_id_match(bss->anqp->anqp_3gpp, imsi, mnc_len);
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001934 wpa_msg(wpa_s, MSG_DEBUG, "PLMN match %sfound",
1935 ret ? "" : "not ");
Dmitry Shmidt04949592012-07-19 12:16:46 -07001936 if (ret) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001937 if (cred_no_required_oi_match(cred, bss))
1938 continue;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001939 if (!ignore_bw &&
1940 cred_below_min_backhaul(wpa_s, cred, bss))
1941 continue;
1942 if (!ignore_bw &&
1943 cred_over_max_bss_load(wpa_s, cred, bss))
1944 continue;
1945 if (!ignore_bw &&
1946 cred_conn_capab_missing(wpa_s, cred, bss))
1947 continue;
1948 if (cred_excluded_ssid(cred, bss)) {
1949 if (excluded == NULL)
1950 continue;
1951 if (selected == NULL) {
1952 selected = cred;
1953 is_excluded = 1;
1954 }
1955 } else {
1956 if (selected == NULL || is_excluded ||
1957 cred_prio_cmp(selected, cred) < 0) {
1958 selected = cred;
1959 is_excluded = 0;
1960 }
1961 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001962 }
1963 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001964
1965 if (excluded)
1966 *excluded = is_excluded;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001967#endif /* INTERWORKING_3GPP */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001968 return selected;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001969}
1970
1971
Dmitry Shmidt04949592012-07-19 12:16:46 -07001972static struct wpa_cred * interworking_credentials_available_realm(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001973 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
1974 int *excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001975{
Dmitry Shmidt04949592012-07-19 12:16:46 -07001976 struct wpa_cred *cred, *selected = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001977 struct nai_realm *realm;
1978 u16 count, i;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001979 int is_excluded = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001980
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001981 if (bss->anqp == NULL || bss->anqp->nai_realm == NULL)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001982 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001983
Dmitry Shmidt04949592012-07-19 12:16:46 -07001984 if (wpa_s->conf->cred == NULL)
1985 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001986
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001987 wpa_msg(wpa_s, MSG_DEBUG, "Interworking: Parsing NAI Realm list from "
1988 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001989 realm = nai_realm_parse(bss->anqp->nai_realm, &count);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001990 if (realm == NULL) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08001991 wpa_msg(wpa_s, MSG_DEBUG,
1992 "Interworking: Could not parse NAI Realm list from "
1993 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidt04949592012-07-19 12:16:46 -07001994 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001995 }
1996
Dmitry Shmidt04949592012-07-19 12:16:46 -07001997 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1998 if (cred->realm == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001999 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002000
2001 for (i = 0; i < count; i++) {
2002 if (!nai_realm_match(&realm[i], cred->realm))
2003 continue;
Dmitry Shmidt807291d2015-01-27 13:40:23 -08002004 if (nai_realm_find_eap(wpa_s, cred, &realm[i])) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07002005 if (cred_no_required_oi_match(cred, bss))
2006 continue;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002007 if (!ignore_bw &&
2008 cred_below_min_backhaul(wpa_s, cred, bss))
2009 continue;
2010 if (!ignore_bw &&
2011 cred_over_max_bss_load(wpa_s, cred, bss))
2012 continue;
2013 if (!ignore_bw &&
2014 cred_conn_capab_missing(wpa_s, cred, bss))
2015 continue;
2016 if (cred_excluded_ssid(cred, bss)) {
2017 if (excluded == NULL)
2018 continue;
2019 if (selected == NULL) {
2020 selected = cred;
2021 is_excluded = 1;
2022 }
2023 } else {
2024 if (selected == NULL || is_excluded ||
2025 cred_prio_cmp(selected, cred) < 0)
2026 {
2027 selected = cred;
2028 is_excluded = 0;
2029 }
2030 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002031 break;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002032 } else {
2033 wpa_msg(wpa_s, MSG_DEBUG,
2034 "Interworking: realm-find-eap returned false");
Dmitry Shmidt04949592012-07-19 12:16:46 -07002035 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002036 }
2037 }
2038
2039 nai_realm_free(realm, count);
2040
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002041 if (excluded)
2042 *excluded = is_excluded;
2043
Dmitry Shmidt04949592012-07-19 12:16:46 -07002044 return selected;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002045}
2046
2047
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002048static struct wpa_cred * interworking_credentials_available_helper(
2049 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
2050 int *excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002051{
Dmitry Shmidt04949592012-07-19 12:16:46 -07002052 struct wpa_cred *cred, *cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002053 int excluded1, excluded2;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002054
Dmitry Shmidt54605472013-11-08 11:10:19 -08002055 if (disallowed_bssid(wpa_s, bss->bssid) ||
2056 disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
2057 wpa_printf(MSG_DEBUG, "Interworking: Ignore disallowed BSS "
2058 MACSTR, MAC2STR(bss->bssid));
2059 return NULL;
2060 }
2061
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002062 cred = interworking_credentials_available_realm(wpa_s, bss, ignore_bw,
2063 &excluded1);
2064 cred2 = interworking_credentials_available_3gpp(wpa_s, bss, ignore_bw,
2065 &excluded2);
2066 if (cred && cred2 &&
2067 (cred_prio_cmp(cred2, cred) >= 0 || (!excluded2 && excluded1))) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002068 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002069 excluded1 = excluded2;
2070 }
2071 if (!cred) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002072 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002073 excluded1 = excluded2;
2074 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002075
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002076 cred2 = interworking_credentials_available_roaming_consortium(
2077 wpa_s, bss, ignore_bw, &excluded2);
2078 if (cred && cred2 &&
2079 (cred_prio_cmp(cred2, cred) >= 0 || (!excluded2 && excluded1))) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002080 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002081 excluded1 = excluded2;
2082 }
2083 if (!cred) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002084 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002085 excluded1 = excluded2;
2086 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002087
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002088 if (excluded)
2089 *excluded = excluded1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002090 return cred;
2091}
2092
2093
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002094static struct wpa_cred * interworking_credentials_available(
2095 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int *excluded)
2096{
2097 struct wpa_cred *cred;
2098
2099 if (excluded)
2100 *excluded = 0;
2101 cred = interworking_credentials_available_helper(wpa_s, bss, 0,
2102 excluded);
2103 if (cred)
2104 return cred;
2105 return interworking_credentials_available_helper(wpa_s, bss, 1,
2106 excluded);
2107}
2108
2109
2110int domain_name_list_contains(struct wpabuf *domain_names,
2111 const char *domain, int exact_match)
Dmitry Shmidt04949592012-07-19 12:16:46 -07002112{
2113 const u8 *pos, *end;
2114 size_t len;
2115
2116 len = os_strlen(domain);
2117 pos = wpabuf_head(domain_names);
2118 end = pos + wpabuf_len(domain_names);
2119
2120 while (pos + 1 < end) {
2121 if (pos + 1 + pos[0] > end)
2122 break;
2123
2124 wpa_hexdump_ascii(MSG_DEBUG, "Interworking: AP domain name",
2125 pos + 1, pos[0]);
2126 if (pos[0] == len &&
2127 os_strncasecmp(domain, (const char *) (pos + 1), len) == 0)
2128 return 1;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002129 if (!exact_match && pos[0] > len && pos[pos[0] - len] == '.') {
2130 const char *ap = (const char *) (pos + 1);
2131 int offset = pos[0] - len;
2132 if (os_strncasecmp(domain, ap + offset, len) == 0)
2133 return 1;
2134 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002135
2136 pos += 1 + pos[0];
2137 }
2138
2139 return 0;
2140}
2141
2142
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002143int interworking_home_sp_cred(struct wpa_supplicant *wpa_s,
2144 struct wpa_cred *cred,
2145 struct wpabuf *domain_names)
2146{
Dmitry Shmidt051af732013-10-22 13:52:46 -07002147 size_t i;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002148 int ret = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002149#ifdef INTERWORKING_3GPP
2150 char nai[100], *realm;
2151
2152 char *imsi = NULL;
2153 int mnc_len = 0;
2154 if (cred->imsi)
2155 imsi = cred->imsi;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002156#ifdef PCSC_FUNCS
2157 else if (cred->pcsc && wpa_s->scard) {
2158 if (interworking_pcsc_read_imsi(wpa_s) < 0)
2159 return -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002160 imsi = wpa_s->imsi;
2161 mnc_len = wpa_s->mnc_len;
2162 }
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002163#endif /* PCSC_FUNCS */
Dmitry Shmidt051af732013-10-22 13:52:46 -07002164#ifdef CONFIG_EAP_PROXY
2165 else if (cred->pcsc && wpa_s->mnc_len > 0 && wpa_s->imsi[0]) {
2166 imsi = wpa_s->imsi;
2167 mnc_len = wpa_s->mnc_len;
2168 }
2169#endif /* CONFIG_EAP_PROXY */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002170 if (domain_names &&
2171 imsi && build_root_nai(nai, sizeof(nai), imsi, mnc_len, 0) == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002172 realm = os_strchr(nai, '@');
2173 if (realm)
2174 realm++;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002175 wpa_msg(wpa_s, MSG_DEBUG,
2176 "Interworking: Search for match with SIM/USIM domain %s",
2177 realm);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002178 if (realm &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002179 domain_name_list_contains(domain_names, realm, 1))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002180 return 1;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002181 if (realm)
2182 ret = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002183 }
2184#endif /* INTERWORKING_3GPP */
2185
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002186 if (domain_names == NULL || cred->domain == NULL)
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002187 return ret;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002188
Dmitry Shmidt051af732013-10-22 13:52:46 -07002189 for (i = 0; i < cred->num_domain; i++) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002190 wpa_msg(wpa_s, MSG_DEBUG,
2191 "Interworking: Search for match with home SP FQDN %s",
2192 cred->domain[i]);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002193 if (domain_name_list_contains(domain_names, cred->domain[i], 1))
Dmitry Shmidt051af732013-10-22 13:52:46 -07002194 return 1;
2195 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002196
2197 return 0;
2198}
2199
2200
Dmitry Shmidt04949592012-07-19 12:16:46 -07002201static int interworking_home_sp(struct wpa_supplicant *wpa_s,
2202 struct wpabuf *domain_names)
2203{
2204 struct wpa_cred *cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002205
2206 if (domain_names == NULL || wpa_s->conf->cred == NULL)
2207 return -1;
2208
2209 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002210 int res = interworking_home_sp_cred(wpa_s, cred, domain_names);
2211 if (res)
2212 return res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002213 }
2214
2215 return 0;
2216}
2217
2218
2219static int interworking_find_network_match(struct wpa_supplicant *wpa_s)
2220{
2221 struct wpa_bss *bss;
2222 struct wpa_ssid *ssid;
2223
2224 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
2225 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
2226 if (wpas_network_disabled(wpa_s, ssid) ||
2227 ssid->mode != WPAS_MODE_INFRA)
2228 continue;
2229 if (ssid->ssid_len != bss->ssid_len ||
2230 os_memcmp(ssid->ssid, bss->ssid, ssid->ssid_len) !=
2231 0)
2232 continue;
2233 /*
2234 * TODO: Consider more accurate matching of security
2235 * configuration similarly to what is done in events.c
2236 */
2237 return 1;
2238 }
2239 }
2240
2241 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002242}
2243
2244
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002245static int roaming_partner_match(struct wpa_supplicant *wpa_s,
2246 struct roaming_partner *partner,
2247 struct wpabuf *domain_names)
2248{
2249 wpa_printf(MSG_DEBUG, "Interworking: Comparing roaming_partner info fqdn='%s' exact_match=%d priority=%u country='%s'",
2250 partner->fqdn, partner->exact_match, partner->priority,
2251 partner->country);
2252 wpa_hexdump_ascii(MSG_DEBUG, "Interworking: Domain names",
2253 wpabuf_head(domain_names),
2254 wpabuf_len(domain_names));
2255 if (!domain_name_list_contains(domain_names, partner->fqdn,
2256 partner->exact_match))
2257 return 0;
2258 /* TODO: match Country */
2259 return 1;
2260}
2261
2262
2263static u8 roaming_prio(struct wpa_supplicant *wpa_s, struct wpa_cred *cred,
2264 struct wpa_bss *bss)
2265{
2266 size_t i;
2267
2268 if (bss->anqp == NULL || bss->anqp->domain_name == NULL) {
2269 wpa_printf(MSG_DEBUG, "Interworking: No ANQP domain name info -> use default roaming partner priority 128");
2270 return 128; /* cannot check preference with domain name */
2271 }
2272
2273 if (interworking_home_sp_cred(wpa_s, cred, bss->anqp->domain_name) > 0)
2274 {
2275 wpa_printf(MSG_DEBUG, "Interworking: Determined to be home SP -> use maximum preference 0 as roaming partner priority");
2276 return 0; /* max preference for home SP network */
2277 }
2278
2279 for (i = 0; i < cred->num_roaming_partner; i++) {
2280 if (roaming_partner_match(wpa_s, &cred->roaming_partner[i],
2281 bss->anqp->domain_name)) {
2282 wpa_printf(MSG_DEBUG, "Interworking: Roaming partner preference match - priority %u",
2283 cred->roaming_partner[i].priority);
2284 return cred->roaming_partner[i].priority;
2285 }
2286 }
2287
2288 wpa_printf(MSG_DEBUG, "Interworking: No roaming partner preference match - use default roaming partner priority 128");
2289 return 128;
2290}
2291
2292
2293static struct wpa_bss * pick_best_roaming_partner(struct wpa_supplicant *wpa_s,
2294 struct wpa_bss *selected,
2295 struct wpa_cred *cred)
2296{
2297 struct wpa_bss *bss;
2298 u8 best_prio, prio;
2299 struct wpa_cred *cred2;
2300
2301 /*
2302 * Check if any other BSS is operated by a more preferred roaming
2303 * partner.
2304 */
2305
2306 best_prio = roaming_prio(wpa_s, cred, selected);
2307 wpa_printf(MSG_DEBUG, "Interworking: roaming_prio=%u for selected BSS "
2308 MACSTR " (cred=%d)", best_prio, MAC2STR(selected->bssid),
2309 cred->id);
2310
2311 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
2312 if (bss == selected)
2313 continue;
2314 cred2 = interworking_credentials_available(wpa_s, bss, NULL);
2315 if (!cred2)
2316 continue;
2317 if (!wpa_bss_get_ie(bss, WLAN_EID_RSN))
2318 continue;
2319 prio = roaming_prio(wpa_s, cred2, bss);
2320 wpa_printf(MSG_DEBUG, "Interworking: roaming_prio=%u for BSS "
2321 MACSTR " (cred=%d)", prio, MAC2STR(bss->bssid),
2322 cred2->id);
2323 if (prio < best_prio) {
2324 int bh1, bh2, load1, load2, conn1, conn2;
2325 bh1 = cred_below_min_backhaul(wpa_s, cred, selected);
2326 load1 = cred_over_max_bss_load(wpa_s, cred, selected);
2327 conn1 = cred_conn_capab_missing(wpa_s, cred, selected);
2328 bh2 = cred_below_min_backhaul(wpa_s, cred2, bss);
2329 load2 = cred_over_max_bss_load(wpa_s, cred2, bss);
2330 conn2 = cred_conn_capab_missing(wpa_s, cred2, bss);
2331 wpa_printf(MSG_DEBUG, "Interworking: old: %d %d %d new: %d %d %d",
2332 bh1, load1, conn1, bh2, load2, conn2);
2333 if (bh1 || load1 || conn1 || !(bh2 || load2 || conn2)) {
2334 wpa_printf(MSG_DEBUG, "Interworking: Better roaming partner " MACSTR " selected", MAC2STR(bss->bssid));
2335 best_prio = prio;
2336 selected = bss;
2337 }
2338 }
2339 }
2340
2341 return selected;
2342}
2343
2344
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002345static void interworking_select_network(struct wpa_supplicant *wpa_s)
2346{
Dmitry Shmidt04949592012-07-19 12:16:46 -07002347 struct wpa_bss *bss, *selected = NULL, *selected_home = NULL;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002348 struct wpa_bss *selected2 = NULL, *selected2_home = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002349 unsigned int count = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002350 const char *type;
2351 int res;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002352 struct wpa_cred *cred, *selected_cred = NULL;
2353 struct wpa_cred *selected_home_cred = NULL;
2354 struct wpa_cred *selected2_cred = NULL;
2355 struct wpa_cred *selected2_home_cred = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002356
2357 wpa_s->network_select = 0;
2358
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002359 wpa_printf(MSG_DEBUG, "Interworking: Select network (auto_select=%d)",
2360 wpa_s->auto_select);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002361 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002362 int excluded = 0;
2363 int bh, bss_load, conn_capab;
2364 cred = interworking_credentials_available(wpa_s, bss,
2365 &excluded);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002366 if (!cred)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002367 continue;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002368
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002369 if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
2370 /*
2371 * We currently support only HS 2.0 networks and those
2372 * are required to use WPA2-Enterprise.
2373 */
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002374 wpa_msg(wpa_s, MSG_DEBUG,
2375 "Interworking: Credential match with " MACSTR
2376 " but network does not use RSN",
2377 MAC2STR(bss->bssid));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002378 continue;
2379 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002380 if (!excluded)
2381 count++;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002382 res = interworking_home_sp(wpa_s, bss->anqp ?
2383 bss->anqp->domain_name : NULL);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002384 if (res > 0)
2385 type = "home";
2386 else if (res == 0)
2387 type = "roaming";
2388 else
2389 type = "unknown";
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002390 bh = cred_below_min_backhaul(wpa_s, cred, bss);
2391 bss_load = cred_over_max_bss_load(wpa_s, cred, bss);
2392 conn_capab = cred_conn_capab_missing(wpa_s, cred, bss);
2393 wpa_msg(wpa_s, MSG_INFO, "%s" MACSTR " type=%s%s%s%s id=%d priority=%d sp_priority=%d",
2394 excluded ? INTERWORKING_BLACKLISTED : INTERWORKING_AP,
2395 MAC2STR(bss->bssid), type,
2396 bh ? " below_min_backhaul=1" : "",
2397 bss_load ? " over_max_bss_load=1" : "",
2398 conn_capab ? " conn_capab_missing=1" : "",
2399 cred->id, cred->priority, cred->sp_priority);
2400 if (excluded)
2401 continue;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002402 if (wpa_s->auto_select ||
2403 (wpa_s->conf->auto_interworking &&
2404 wpa_s->auto_network_select)) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002405 if (bh || bss_load || conn_capab) {
2406 if (selected2_cred == NULL ||
2407 cred_prio_cmp(cred, selected2_cred) > 0) {
2408 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected2");
2409 selected2 = bss;
2410 selected2_cred = cred;
2411 }
2412 if (res > 0 &&
2413 (selected2_home_cred == NULL ||
2414 cred_prio_cmp(cred, selected2_home_cred) >
2415 0)) {
2416 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected2_home");
2417 selected2_home = bss;
2418 selected2_home_cred = cred;
2419 }
2420 } else {
2421 if (selected_cred == NULL ||
2422 cred_prio_cmp(cred, selected_cred) > 0) {
2423 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected");
2424 selected = bss;
2425 selected_cred = cred;
2426 }
2427 if (res > 0 &&
2428 (selected_home_cred == NULL ||
2429 cred_prio_cmp(cred, selected_home_cred) >
2430 0)) {
2431 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected_home");
2432 selected_home = bss;
2433 selected_home_cred = cred;
2434 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002435 }
2436 }
2437 }
2438
2439 if (selected_home && selected_home != selected &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002440 selected_home_cred &&
2441 (selected_cred == NULL ||
2442 cred_prio_cmp(selected_home_cred, selected_cred) >= 0)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002443 /* Prefer network operated by the Home SP */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002444 wpa_printf(MSG_DEBUG, "Interworking: Overrided selected with selected_home");
Dmitry Shmidt04949592012-07-19 12:16:46 -07002445 selected = selected_home;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002446 selected_cred = selected_home_cred;
2447 }
2448
2449 if (!selected) {
2450 if (selected2_home) {
2451 wpa_printf(MSG_DEBUG, "Interworking: Use home BSS with BW limit mismatch since no other network could be selected");
2452 selected = selected2_home;
2453 selected_cred = selected2_home_cred;
2454 } else if (selected2) {
2455 wpa_printf(MSG_DEBUG, "Interworking: Use visited BSS with BW limit mismatch since no other network could be selected");
2456 selected = selected2;
2457 selected_cred = selected2_cred;
2458 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002459 }
2460
2461 if (count == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002462 /*
2463 * No matching network was found based on configured
2464 * credentials. Check whether any of the enabled network blocks
2465 * have matching APs.
2466 */
2467 if (interworking_find_network_match(wpa_s)) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002468 wpa_msg(wpa_s, MSG_DEBUG,
2469 "Interworking: Possible BSS match for enabled network configurations");
Dmitry Shmidt71757432014-06-02 13:50:35 -07002470 if (wpa_s->auto_select) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002471 interworking_reconnect(wpa_s);
Dmitry Shmidt71757432014-06-02 13:50:35 -07002472 return;
2473 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002474 }
2475
2476 if (wpa_s->auto_network_select) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002477 wpa_msg(wpa_s, MSG_DEBUG,
2478 "Interworking: Continue scanning after ANQP fetch");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002479 wpa_supplicant_req_scan(wpa_s, wpa_s->scan_interval,
2480 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002481 return;
2482 }
2483
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002484 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_NO_MATCH "No network "
2485 "with matching credentials found");
2486 }
2487
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002488 if (selected) {
2489 wpa_printf(MSG_DEBUG, "Interworking: Selected " MACSTR,
2490 MAC2STR(selected->bssid));
2491 selected = pick_best_roaming_partner(wpa_s, selected,
2492 selected_cred);
2493 wpa_printf(MSG_DEBUG, "Interworking: Selected " MACSTR
2494 " (after best roaming partner selection)",
2495 MAC2STR(selected->bssid));
2496 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_SELECTED MACSTR,
2497 MAC2STR(selected->bssid));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002498 interworking_connect(wpa_s, selected);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002499 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002500}
2501
2502
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002503static struct wpa_bss_anqp *
2504interworking_match_anqp_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
2505{
2506 struct wpa_bss *other;
2507
2508 if (is_zero_ether_addr(bss->hessid))
2509 return NULL; /* Cannot be in the same homegenous ESS */
2510
2511 dl_list_for_each(other, &wpa_s->bss, struct wpa_bss, list) {
2512 if (other == bss)
2513 continue;
2514 if (other->anqp == NULL)
2515 continue;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002516 if (other->anqp->roaming_consortium == NULL &&
2517 other->anqp->nai_realm == NULL &&
2518 other->anqp->anqp_3gpp == NULL &&
2519 other->anqp->domain_name == NULL)
2520 continue;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002521 if (!(other->flags & WPA_BSS_ANQP_FETCH_TRIED))
2522 continue;
2523 if (os_memcmp(bss->hessid, other->hessid, ETH_ALEN) != 0)
2524 continue;
2525 if (bss->ssid_len != other->ssid_len ||
2526 os_memcmp(bss->ssid, other->ssid, bss->ssid_len) != 0)
2527 continue;
2528
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002529 wpa_msg(wpa_s, MSG_DEBUG,
2530 "Interworking: Share ANQP data with already fetched BSSID "
2531 MACSTR " and " MACSTR,
2532 MAC2STR(other->bssid), MAC2STR(bss->bssid));
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002533 other->anqp->users++;
2534 return other->anqp;
2535 }
2536
2537 return NULL;
2538}
2539
2540
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002541static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s)
2542{
2543 struct wpa_bss *bss;
2544 int found = 0;
2545 const u8 *ie;
2546
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002547 wpa_printf(MSG_DEBUG, "Interworking: next_anqp_fetch - "
2548 "fetch_anqp_in_progress=%d fetch_osu_icon_in_progress=%d",
2549 wpa_s->fetch_anqp_in_progress,
2550 wpa_s->fetch_osu_icon_in_progress);
2551
2552 if (eloop_terminated() || !wpa_s->fetch_anqp_in_progress) {
2553 wpa_printf(MSG_DEBUG, "Interworking: Stop next-ANQP-fetch");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002554 return;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002555 }
2556
2557 if (wpa_s->fetch_osu_icon_in_progress) {
2558 wpa_printf(MSG_DEBUG, "Interworking: Next icon (in progress)");
2559 hs20_next_osu_icon(wpa_s);
2560 return;
2561 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002562
2563 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
2564 if (!(bss->caps & IEEE80211_CAP_ESS))
2565 continue;
2566 ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_CAPAB);
2567 if (ie == NULL || ie[1] < 4 || !(ie[5] & 0x80))
2568 continue; /* AP does not support Interworking */
Dmitry Shmidt54605472013-11-08 11:10:19 -08002569 if (disallowed_bssid(wpa_s, bss->bssid) ||
2570 disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len))
2571 continue; /* Disallowed BSS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002572
2573 if (!(bss->flags & WPA_BSS_ANQP_FETCH_TRIED)) {
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002574 if (bss->anqp == NULL) {
2575 bss->anqp = interworking_match_anqp_info(wpa_s,
2576 bss);
2577 if (bss->anqp) {
2578 /* Shared data already fetched */
2579 continue;
2580 }
2581 bss->anqp = wpa_bss_anqp_alloc();
2582 if (bss->anqp == NULL)
2583 break;
2584 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002585 found++;
2586 bss->flags |= WPA_BSS_ANQP_FETCH_TRIED;
2587 wpa_msg(wpa_s, MSG_INFO, "Starting ANQP fetch for "
2588 MACSTR, MAC2STR(bss->bssid));
2589 interworking_anqp_send_req(wpa_s, bss);
2590 break;
2591 }
2592 }
2593
2594 if (found == 0) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002595 if (wpa_s->fetch_osu_info) {
2596 if (wpa_s->num_prov_found == 0 &&
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002597 wpa_s->fetch_osu_waiting_scan &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002598 wpa_s->num_osu_scans < 3) {
2599 wpa_printf(MSG_DEBUG, "HS 2.0: No OSU providers seen - try to scan again");
2600 hs20_start_osu_scan(wpa_s);
2601 return;
2602 }
2603 wpa_printf(MSG_DEBUG, "Interworking: Next icon");
2604 hs20_osu_icon_fetch(wpa_s);
2605 return;
2606 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002607 wpa_msg(wpa_s, MSG_INFO, "ANQP fetch completed");
2608 wpa_s->fetch_anqp_in_progress = 0;
2609 if (wpa_s->network_select)
2610 interworking_select_network(wpa_s);
2611 }
2612}
2613
2614
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002615void interworking_start_fetch_anqp(struct wpa_supplicant *wpa_s)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002616{
2617 struct wpa_bss *bss;
2618
2619 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list)
2620 bss->flags &= ~WPA_BSS_ANQP_FETCH_TRIED;
2621
2622 wpa_s->fetch_anqp_in_progress = 1;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002623
2624 /*
2625 * Start actual ANQP operation from eloop call to make sure the loop
2626 * does not end up using excessive recursion.
2627 */
2628 eloop_register_timeout(0, 0, interworking_continue_anqp, wpa_s, NULL);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002629}
2630
2631
2632int interworking_fetch_anqp(struct wpa_supplicant *wpa_s)
2633{
2634 if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select)
2635 return 0;
2636
2637 wpa_s->network_select = 0;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002638 wpa_s->fetch_all_anqp = 1;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002639 wpa_s->fetch_osu_info = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002640
2641 interworking_start_fetch_anqp(wpa_s);
2642
2643 return 0;
2644}
2645
2646
2647void interworking_stop_fetch_anqp(struct wpa_supplicant *wpa_s)
2648{
2649 if (!wpa_s->fetch_anqp_in_progress)
2650 return;
2651
2652 wpa_s->fetch_anqp_in_progress = 0;
2653}
2654
2655
2656int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst,
Dmitry Shmidt15907092014-03-25 10:42:57 -07002657 u16 info_ids[], size_t num_ids, u32 subtypes)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002658{
2659 struct wpabuf *buf;
Dmitry Shmidt15907092014-03-25 10:42:57 -07002660 struct wpabuf *hs20_buf = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002661 int ret = 0;
2662 int freq;
2663 struct wpa_bss *bss;
2664 int res;
2665
2666 freq = wpa_s->assoc_freq;
2667 bss = wpa_bss_get_bssid(wpa_s, dst);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002668 if (bss) {
2669 wpa_bss_anqp_unshare_alloc(bss);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002670 freq = bss->freq;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002671 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002672 if (freq <= 0)
2673 return -1;
2674
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002675 wpa_msg(wpa_s, MSG_DEBUG,
2676 "ANQP: Query Request to " MACSTR " for %u id(s)",
2677 MAC2STR(dst), (unsigned int) num_ids);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002678
Dmitry Shmidt15907092014-03-25 10:42:57 -07002679#ifdef CONFIG_HS20
2680 if (subtypes != 0) {
2681 hs20_buf = wpabuf_alloc(100);
2682 if (hs20_buf == NULL)
2683 return -1;
2684 hs20_put_anqp_req(subtypes, NULL, 0, hs20_buf);
2685 }
2686#endif /* CONFIG_HS20 */
2687
2688 buf = anqp_build_req(info_ids, num_ids, hs20_buf);
2689 wpabuf_free(hs20_buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002690 if (buf == NULL)
2691 return -1;
2692
2693 res = gas_query_req(wpa_s->gas, dst, freq, buf, anqp_resp_cb, wpa_s);
2694 if (res < 0) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002695 wpa_msg(wpa_s, MSG_DEBUG, "ANQP: Failed to send Query Request");
Dmitry Shmidt051af732013-10-22 13:52:46 -07002696 wpabuf_free(buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002697 ret = -1;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002698 } else {
2699 wpa_msg(wpa_s, MSG_DEBUG,
2700 "ANQP: Query started with dialog token %u", res);
2701 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002702
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002703 return ret;
2704}
2705
2706
2707static void interworking_parse_rx_anqp_resp(struct wpa_supplicant *wpa_s,
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002708 struct wpa_bss *bss, const u8 *sa,
2709 u16 info_id,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002710 const u8 *data, size_t slen)
2711{
2712 const u8 *pos = data;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002713 struct wpa_bss_anqp *anqp = NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002714#ifdef CONFIG_HS20
2715 u8 type;
2716#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002717
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002718 if (bss)
2719 anqp = bss->anqp;
2720
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002721 switch (info_id) {
2722 case ANQP_CAPABILITY_LIST:
2723 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2724 " ANQP Capability list", MAC2STR(sa));
2725 break;
2726 case ANQP_VENUE_NAME:
2727 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2728 " Venue Name", MAC2STR(sa));
2729 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Venue Name", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002730 if (anqp) {
2731 wpabuf_free(anqp->venue_name);
2732 anqp->venue_name = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002733 }
2734 break;
2735 case ANQP_NETWORK_AUTH_TYPE:
2736 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2737 " Network Authentication Type information",
2738 MAC2STR(sa));
2739 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Network Authentication "
2740 "Type", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002741 if (anqp) {
2742 wpabuf_free(anqp->network_auth_type);
2743 anqp->network_auth_type = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002744 }
2745 break;
2746 case ANQP_ROAMING_CONSORTIUM:
2747 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2748 " Roaming Consortium list", MAC2STR(sa));
2749 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Roaming Consortium",
2750 pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002751 if (anqp) {
2752 wpabuf_free(anqp->roaming_consortium);
2753 anqp->roaming_consortium = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002754 }
2755 break;
2756 case ANQP_IP_ADDR_TYPE_AVAILABILITY:
2757 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2758 " IP Address Type Availability information",
2759 MAC2STR(sa));
2760 wpa_hexdump(MSG_MSGDUMP, "ANQP: IP Address Availability",
2761 pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002762 if (anqp) {
2763 wpabuf_free(anqp->ip_addr_type_availability);
2764 anqp->ip_addr_type_availability =
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002765 wpabuf_alloc_copy(pos, slen);
2766 }
2767 break;
2768 case ANQP_NAI_REALM:
2769 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2770 " NAI Realm list", MAC2STR(sa));
2771 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: NAI Realm", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002772 if (anqp) {
2773 wpabuf_free(anqp->nai_realm);
2774 anqp->nai_realm = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002775 }
2776 break;
2777 case ANQP_3GPP_CELLULAR_NETWORK:
2778 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2779 " 3GPP Cellular Network information", MAC2STR(sa));
2780 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: 3GPP Cellular Network",
2781 pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002782 if (anqp) {
2783 wpabuf_free(anqp->anqp_3gpp);
2784 anqp->anqp_3gpp = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002785 }
2786 break;
2787 case ANQP_DOMAIN_NAME:
2788 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2789 " Domain Name list", MAC2STR(sa));
2790 wpa_hexdump_ascii(MSG_MSGDUMP, "ANQP: Domain Name", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002791 if (anqp) {
2792 wpabuf_free(anqp->domain_name);
2793 anqp->domain_name = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002794 }
2795 break;
2796 case ANQP_VENDOR_SPECIFIC:
2797 if (slen < 3)
2798 return;
2799
2800 switch (WPA_GET_BE24(pos)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002801#ifdef CONFIG_HS20
2802 case OUI_WFA:
2803 pos += 3;
2804 slen -= 3;
2805
2806 if (slen < 1)
2807 return;
2808 type = *pos++;
2809 slen--;
2810
2811 switch (type) {
2812 case HS20_ANQP_OUI_TYPE:
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002813 hs20_parse_rx_hs20_anqp_resp(wpa_s, bss, sa,
2814 pos, slen);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002815 break;
2816 default:
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002817 wpa_msg(wpa_s, MSG_DEBUG,
2818 "HS20: Unsupported ANQP vendor type %u",
2819 type);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002820 break;
2821 }
2822 break;
2823#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002824 default:
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002825 wpa_msg(wpa_s, MSG_DEBUG,
2826 "Interworking: Unsupported vendor-specific ANQP OUI %06x",
2827 WPA_GET_BE24(pos));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002828 return;
2829 }
2830 break;
2831 default:
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002832 wpa_msg(wpa_s, MSG_DEBUG,
2833 "Interworking: Unsupported ANQP Info ID %u", info_id);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002834 break;
2835 }
2836}
2837
2838
2839void anqp_resp_cb(void *ctx, const u8 *dst, u8 dialog_token,
2840 enum gas_query_result result,
2841 const struct wpabuf *adv_proto,
2842 const struct wpabuf *resp, u16 status_code)
2843{
2844 struct wpa_supplicant *wpa_s = ctx;
2845 const u8 *pos;
2846 const u8 *end;
2847 u16 info_id;
2848 u16 slen;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002849 struct wpa_bss *bss = NULL, *tmp;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002850 const char *anqp_result = "SUCCESS";
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002851
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002852 wpa_printf(MSG_DEBUG, "Interworking: anqp_resp_cb dst=" MACSTR
2853 " dialog_token=%u result=%d status_code=%u",
2854 MAC2STR(dst), dialog_token, result, status_code);
2855 if (result != GAS_QUERY_SUCCESS) {
2856 if (wpa_s->fetch_osu_icon_in_progress)
2857 hs20_icon_fetch_failed(wpa_s);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002858 anqp_result = "FAILURE";
2859 goto out;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002860 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002861
2862 pos = wpabuf_head(adv_proto);
2863 if (wpabuf_len(adv_proto) < 4 || pos[0] != WLAN_EID_ADV_PROTO ||
2864 pos[1] < 2 || pos[3] != ACCESS_NETWORK_QUERY_PROTOCOL) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002865 wpa_msg(wpa_s, MSG_DEBUG,
2866 "ANQP: Unexpected Advertisement Protocol in response");
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002867 if (wpa_s->fetch_osu_icon_in_progress)
2868 hs20_icon_fetch_failed(wpa_s);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002869 anqp_result = "INVALID_FRAME";
2870 goto out;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002871 }
2872
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002873 /*
2874 * If possible, select the BSS entry based on which BSS entry was used
2875 * for the request. This can help in cases where multiple BSS entries
2876 * may exist for the same AP.
2877 */
2878 dl_list_for_each_reverse(tmp, &wpa_s->bss, struct wpa_bss, list) {
2879 if (tmp == wpa_s->interworking_gas_bss &&
2880 os_memcmp(tmp->bssid, dst, ETH_ALEN) == 0) {
2881 bss = tmp;
2882 break;
2883 }
2884 }
2885 if (bss == NULL)
2886 bss = wpa_bss_get_bssid(wpa_s, dst);
2887
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002888 pos = wpabuf_head(resp);
2889 end = pos + wpabuf_len(resp);
2890
2891 while (pos < end) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002892 unsigned int left = end - pos;
2893
2894 if (left < 4) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002895 wpa_msg(wpa_s, MSG_DEBUG, "ANQP: Invalid element");
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002896 anqp_result = "INVALID_FRAME";
2897 goto out_parse_done;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002898 }
2899 info_id = WPA_GET_LE16(pos);
2900 pos += 2;
2901 slen = WPA_GET_LE16(pos);
2902 pos += 2;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002903 left -= 4;
2904 if (left < slen) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002905 wpa_msg(wpa_s, MSG_DEBUG,
2906 "ANQP: Invalid element length for Info ID %u",
2907 info_id);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002908 anqp_result = "INVALID_FRAME";
2909 goto out_parse_done;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002910 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002911 interworking_parse_rx_anqp_resp(wpa_s, bss, dst, info_id, pos,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002912 slen);
2913 pos += slen;
2914 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002915
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002916out_parse_done:
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002917 hs20_notify_parse_done(wpa_s);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002918out:
2919 wpa_msg(wpa_s, MSG_INFO, ANQP_QUERY_DONE "addr=" MACSTR " result=%s",
2920 MAC2STR(dst), anqp_result);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002921}
2922
2923
2924static void interworking_scan_res_handler(struct wpa_supplicant *wpa_s,
2925 struct wpa_scan_results *scan_res)
2926{
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002927 wpa_msg(wpa_s, MSG_DEBUG,
2928 "Interworking: Scan results available - start ANQP fetch");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002929 interworking_start_fetch_anqp(wpa_s);
2930}
2931
2932
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002933int interworking_select(struct wpa_supplicant *wpa_s, int auto_select,
2934 int *freqs)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002935{
2936 interworking_stop_fetch_anqp(wpa_s);
2937 wpa_s->network_select = 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002938 wpa_s->auto_network_select = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002939 wpa_s->auto_select = !!auto_select;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002940 wpa_s->fetch_all_anqp = 0;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002941 wpa_s->fetch_osu_info = 0;
Dmitry Shmidt216983b2015-02-06 10:50:36 -08002942 wpa_msg(wpa_s, MSG_DEBUG,
2943 "Interworking: Start scan for network selection");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002944 wpa_s->scan_res_handler = interworking_scan_res_handler;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002945 wpa_s->normal_scans = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002946 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002947 os_free(wpa_s->manual_scan_freqs);
2948 wpa_s->manual_scan_freqs = freqs;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002949 wpa_s->after_wps = 0;
2950 wpa_s->known_wps_freq = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002951 wpa_supplicant_req_scan(wpa_s, 0, 0);
2952
2953 return 0;
2954}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002955
2956
2957static void gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
2958 enum gas_query_result result,
2959 const struct wpabuf *adv_proto,
2960 const struct wpabuf *resp, u16 status_code)
2961{
2962 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002963 struct wpabuf *n;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002964
2965 wpa_msg(wpa_s, MSG_INFO, GAS_RESPONSE_INFO "addr=" MACSTR
2966 " dialog_token=%d status_code=%d resp_len=%d",
2967 MAC2STR(addr), dialog_token, status_code,
2968 resp ? (int) wpabuf_len(resp) : -1);
2969 if (!resp)
2970 return;
2971
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002972 n = wpabuf_dup(resp);
2973 if (n == NULL)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002974 return;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002975 wpabuf_free(wpa_s->prev_gas_resp);
2976 wpa_s->prev_gas_resp = wpa_s->last_gas_resp;
2977 os_memcpy(wpa_s->prev_gas_addr, wpa_s->last_gas_addr, ETH_ALEN);
2978 wpa_s->prev_gas_dialog_token = wpa_s->last_gas_dialog_token;
2979 wpa_s->last_gas_resp = n;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002980 os_memcpy(wpa_s->last_gas_addr, addr, ETH_ALEN);
2981 wpa_s->last_gas_dialog_token = dialog_token;
2982}
2983
2984
2985int gas_send_request(struct wpa_supplicant *wpa_s, const u8 *dst,
2986 const struct wpabuf *adv_proto,
2987 const struct wpabuf *query)
2988{
2989 struct wpabuf *buf;
2990 int ret = 0;
2991 int freq;
2992 struct wpa_bss *bss;
2993 int res;
2994 size_t len;
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07002995 u8 query_resp_len_limit = 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002996
2997 freq = wpa_s->assoc_freq;
2998 bss = wpa_bss_get_bssid(wpa_s, dst);
2999 if (bss)
3000 freq = bss->freq;
3001 if (freq <= 0)
3002 return -1;
3003
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003004 wpa_msg(wpa_s, MSG_DEBUG, "GAS request to " MACSTR " (freq %d MHz)",
3005 MAC2STR(dst), freq);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003006 wpa_hexdump_buf(MSG_DEBUG, "Advertisement Protocol ID", adv_proto);
3007 wpa_hexdump_buf(MSG_DEBUG, "GAS Query", query);
3008
3009 len = 3 + wpabuf_len(adv_proto) + 2;
3010 if (query)
3011 len += wpabuf_len(query);
3012 buf = gas_build_initial_req(0, len);
3013 if (buf == NULL)
3014 return -1;
3015
3016 /* Advertisement Protocol IE */
3017 wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
3018 wpabuf_put_u8(buf, 1 + wpabuf_len(adv_proto)); /* Length */
Dmitry Shmidt7f0b69e2014-07-28 10:35:20 -07003019 wpabuf_put_u8(buf, query_resp_len_limit & 0x7f);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003020 wpabuf_put_buf(buf, adv_proto);
3021
3022 /* GAS Query */
3023 if (query) {
3024 wpabuf_put_le16(buf, wpabuf_len(query));
3025 wpabuf_put_buf(buf, query);
3026 } else
3027 wpabuf_put_le16(buf, 0);
3028
3029 res = gas_query_req(wpa_s->gas, dst, freq, buf, gas_resp_cb, wpa_s);
3030 if (res < 0) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003031 wpa_msg(wpa_s, MSG_DEBUG, "GAS: Failed to send Query Request");
Dmitry Shmidt051af732013-10-22 13:52:46 -07003032 wpabuf_free(buf);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003033 ret = -1;
3034 } else
Dmitry Shmidt216983b2015-02-06 10:50:36 -08003035 wpa_msg(wpa_s, MSG_DEBUG,
3036 "GAS: Query started with dialog token %u", res);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003037
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003038 return ret;
3039}