blob: 6d1539c64f5e20619b31c13cdca6c8cf05802beb [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{
76 if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
77 wpa_supplicant_cancel_sched_scan(wpa_s);
78 wpa_supplicant_deauthenticate(wpa_s,
79 WLAN_REASON_DEAUTH_LEAVING);
80 }
81 wpa_s->disconnected = 0;
82 wpa_s->reassociate = 1;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070083
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -080084 if (wpa_supplicant_fast_associate(wpa_s) >= 0)
85 return;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070086
Dmitry Shmidt04949592012-07-19 12:16:46 -070087 wpa_supplicant_req_scan(wpa_s, 0, 0);
88}
89
90
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080091static struct wpabuf * anqp_build_req(u16 info_ids[], size_t num_ids,
92 struct wpabuf *extra)
93{
94 struct wpabuf *buf;
95 size_t i;
96 u8 *len_pos;
97
98 buf = gas_anqp_build_initial_req(0, 4 + num_ids * 2 +
99 (extra ? wpabuf_len(extra) : 0));
100 if (buf == NULL)
101 return NULL;
102
103 len_pos = gas_anqp_add_element(buf, ANQP_QUERY_LIST);
104 for (i = 0; i < num_ids; i++)
105 wpabuf_put_le16(buf, info_ids[i]);
106 gas_anqp_set_element_len(buf, len_pos);
107 if (extra)
108 wpabuf_put_buf(buf, extra);
109
110 gas_anqp_set_len(buf);
111
112 return buf;
113}
114
115
116static void interworking_anqp_resp_cb(void *ctx, const u8 *dst,
117 u8 dialog_token,
118 enum gas_query_result result,
119 const struct wpabuf *adv_proto,
120 const struct wpabuf *resp,
121 u16 status_code)
122{
123 struct wpa_supplicant *wpa_s = ctx;
124
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800125 wpa_printf(MSG_DEBUG, "ANQP: Response callback dst=" MACSTR
126 " dialog_token=%u result=%d status_code=%u",
127 MAC2STR(dst), dialog_token, result, status_code);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800128 anqp_resp_cb(wpa_s, dst, dialog_token, result, adv_proto, resp,
129 status_code);
130 interworking_next_anqp_fetch(wpa_s);
131}
132
133
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700134static int cred_with_roaming_consortium(struct wpa_supplicant *wpa_s)
135{
136 struct wpa_cred *cred;
137
138 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
139 if (cred->roaming_consortium_len)
140 return 1;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700141 if (cred->required_roaming_consortium_len)
142 return 1;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700143 }
144 return 0;
145}
146
147
148static int cred_with_3gpp(struct wpa_supplicant *wpa_s)
149{
150 struct wpa_cred *cred;
151
152 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
153 if (cred->pcsc || cred->imsi)
154 return 1;
155 }
156 return 0;
157}
158
159
160static int cred_with_nai_realm(struct wpa_supplicant *wpa_s)
161{
162 struct wpa_cred *cred;
163
164 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
165 if (cred->pcsc || cred->imsi)
166 continue;
167 if (!cred->eap_method)
168 return 1;
169 if (cred->realm && cred->roaming_consortium_len == 0)
170 return 1;
171 }
172 return 0;
173}
174
175
176static int cred_with_domain(struct wpa_supplicant *wpa_s)
177{
178 struct wpa_cred *cred;
179
180 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800181 if (cred->domain || cred->pcsc || cred->imsi ||
182 cred->roaming_partner)
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700183 return 1;
184 }
185 return 0;
186}
187
188
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800189#ifdef CONFIG_HS20
190
191static int cred_with_min_backhaul(struct wpa_supplicant *wpa_s)
192{
193 struct wpa_cred *cred;
194
195 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
196 if (cred->min_dl_bandwidth_home ||
197 cred->min_ul_bandwidth_home ||
198 cred->min_dl_bandwidth_roaming ||
199 cred->min_ul_bandwidth_roaming)
200 return 1;
201 }
202 return 0;
203}
204
205
206static int cred_with_conn_capab(struct wpa_supplicant *wpa_s)
207{
208 struct wpa_cred *cred;
209
210 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
211 if (cred->num_req_conn_capab)
212 return 1;
213 }
214 return 0;
215}
216
217#endif /* CONFIG_HS20 */
218
219
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700220static int additional_roaming_consortiums(struct wpa_bss *bss)
221{
222 const u8 *ie;
223 ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
224 if (ie == NULL || ie[1] == 0)
225 return 0;
226 return ie[2]; /* Number of ANQP OIs */
227}
228
229
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800230static void interworking_continue_anqp(void *eloop_ctx, void *sock_ctx)
231{
232 struct wpa_supplicant *wpa_s = eloop_ctx;
233 interworking_next_anqp_fetch(wpa_s);
234}
235
236
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800237static int interworking_anqp_send_req(struct wpa_supplicant *wpa_s,
238 struct wpa_bss *bss)
239{
240 struct wpabuf *buf;
241 int ret = 0;
242 int res;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700243 u16 info_ids[8];
244 size_t num_info_ids = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800245 struct wpabuf *extra = NULL;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700246 int all = wpa_s->fetch_all_anqp;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800247
248 wpa_printf(MSG_DEBUG, "Interworking: ANQP Query Request to " MACSTR,
249 MAC2STR(bss->bssid));
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700250 wpa_s->interworking_gas_bss = bss;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800251
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700252 info_ids[num_info_ids++] = ANQP_CAPABILITY_LIST;
253 if (all) {
254 info_ids[num_info_ids++] = ANQP_VENUE_NAME;
255 info_ids[num_info_ids++] = ANQP_NETWORK_AUTH_TYPE;
256 }
257 if (all || (cred_with_roaming_consortium(wpa_s) &&
258 additional_roaming_consortiums(bss)))
259 info_ids[num_info_ids++] = ANQP_ROAMING_CONSORTIUM;
260 if (all)
261 info_ids[num_info_ids++] = ANQP_IP_ADDR_TYPE_AVAILABILITY;
262 if (all || cred_with_nai_realm(wpa_s))
263 info_ids[num_info_ids++] = ANQP_NAI_REALM;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700264 if (all || cred_with_3gpp(wpa_s)) {
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700265 info_ids[num_info_ids++] = ANQP_3GPP_CELLULAR_NETWORK;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700266 wpa_supplicant_scard_init(wpa_s, NULL);
267 }
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700268 if (all || cred_with_domain(wpa_s))
269 info_ids[num_info_ids++] = ANQP_DOMAIN_NAME;
270 wpa_hexdump(MSG_DEBUG, "Interworking: ANQP Query info",
271 (u8 *) info_ids, num_info_ids * 2);
272
Dmitry Shmidt04949592012-07-19 12:16:46 -0700273#ifdef CONFIG_HS20
274 if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
275 u8 *len_pos;
276
277 extra = wpabuf_alloc(100);
278 if (!extra)
279 return -1;
280
281 len_pos = gas_anqp_add_element(extra, ANQP_VENDOR_SPECIFIC);
282 wpabuf_put_be24(extra, OUI_WFA);
283 wpabuf_put_u8(extra, HS20_ANQP_OUI_TYPE);
284 wpabuf_put_u8(extra, HS20_STYPE_QUERY_LIST);
285 wpabuf_put_u8(extra, 0); /* Reserved */
286 wpabuf_put_u8(extra, HS20_STYPE_CAPABILITY_LIST);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800287 if (all)
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700288 wpabuf_put_u8(extra,
289 HS20_STYPE_OPERATOR_FRIENDLY_NAME);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800290 if (all || cred_with_min_backhaul(wpa_s))
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700291 wpabuf_put_u8(extra, HS20_STYPE_WAN_METRICS);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800292 if (all || cred_with_conn_capab(wpa_s))
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700293 wpabuf_put_u8(extra, HS20_STYPE_CONNECTION_CAPABILITY);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800294 if (all)
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700295 wpabuf_put_u8(extra, HS20_STYPE_OPERATING_CLASS);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800296 if (all)
297 wpabuf_put_u8(extra, HS20_STYPE_OSU_PROVIDERS_LIST);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700298 gas_anqp_set_element_len(extra, len_pos);
299 }
300#endif /* CONFIG_HS20 */
301
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700302 buf = anqp_build_req(info_ids, num_info_ids, extra);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800303 wpabuf_free(extra);
304 if (buf == NULL)
305 return -1;
306
307 res = gas_query_req(wpa_s->gas, bss->bssid, bss->freq, buf,
308 interworking_anqp_resp_cb, wpa_s);
309 if (res < 0) {
310 wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
Dmitry Shmidt051af732013-10-22 13:52:46 -0700311 wpabuf_free(buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800312 ret = -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800313 eloop_register_timeout(0, 0, interworking_continue_anqp, wpa_s,
314 NULL);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800315 } else
316 wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
317 "%u", res);
318
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800319 return ret;
320}
321
322
323struct nai_realm_eap {
324 u8 method;
325 u8 inner_method;
326 enum nai_realm_eap_auth_inner_non_eap inner_non_eap;
327 u8 cred_type;
328 u8 tunneled_cred_type;
329};
330
331struct nai_realm {
332 u8 encoding;
333 char *realm;
334 u8 eap_count;
335 struct nai_realm_eap *eap;
336};
337
338
339static void nai_realm_free(struct nai_realm *realms, u16 count)
340{
341 u16 i;
342
343 if (realms == NULL)
344 return;
345 for (i = 0; i < count; i++) {
346 os_free(realms[i].eap);
347 os_free(realms[i].realm);
348 }
349 os_free(realms);
350}
351
352
353static const u8 * nai_realm_parse_eap(struct nai_realm_eap *e, const u8 *pos,
354 const u8 *end)
355{
356 u8 elen, auth_count, a;
357 const u8 *e_end;
358
359 if (pos + 3 > end) {
360 wpa_printf(MSG_DEBUG, "No room for EAP Method fixed fields");
361 return NULL;
362 }
363
364 elen = *pos++;
365 if (pos + elen > end || elen < 2) {
366 wpa_printf(MSG_DEBUG, "No room for EAP Method subfield");
367 return NULL;
368 }
369 e_end = pos + elen;
370 e->method = *pos++;
371 auth_count = *pos++;
372 wpa_printf(MSG_DEBUG, "EAP Method: len=%u method=%u auth_count=%u",
373 elen, e->method, auth_count);
374
375 for (a = 0; a < auth_count; a++) {
376 u8 id, len;
377
378 if (pos + 2 > end || pos + 2 + pos[1] > end) {
379 wpa_printf(MSG_DEBUG, "No room for Authentication "
380 "Parameter subfield");
381 return NULL;
382 }
383
384 id = *pos++;
385 len = *pos++;
386
387 switch (id) {
388 case NAI_REALM_EAP_AUTH_NON_EAP_INNER_AUTH:
389 if (len < 1)
390 break;
391 e->inner_non_eap = *pos;
392 if (e->method != EAP_TYPE_TTLS)
393 break;
394 switch (*pos) {
395 case NAI_REALM_INNER_NON_EAP_PAP:
396 wpa_printf(MSG_DEBUG, "EAP-TTLS/PAP");
397 break;
398 case NAI_REALM_INNER_NON_EAP_CHAP:
399 wpa_printf(MSG_DEBUG, "EAP-TTLS/CHAP");
400 break;
401 case NAI_REALM_INNER_NON_EAP_MSCHAP:
402 wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAP");
403 break;
404 case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
405 wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAPV2");
406 break;
407 }
408 break;
409 case NAI_REALM_EAP_AUTH_INNER_AUTH_EAP_METHOD:
410 if (len < 1)
411 break;
412 e->inner_method = *pos;
413 wpa_printf(MSG_DEBUG, "Inner EAP method: %u",
414 e->inner_method);
415 break;
416 case NAI_REALM_EAP_AUTH_CRED_TYPE:
417 if (len < 1)
418 break;
419 e->cred_type = *pos;
420 wpa_printf(MSG_DEBUG, "Credential Type: %u",
421 e->cred_type);
422 break;
423 case NAI_REALM_EAP_AUTH_TUNNELED_CRED_TYPE:
424 if (len < 1)
425 break;
426 e->tunneled_cred_type = *pos;
427 wpa_printf(MSG_DEBUG, "Tunneled EAP Method Credential "
428 "Type: %u", e->tunneled_cred_type);
429 break;
430 default:
431 wpa_printf(MSG_DEBUG, "Unsupported Authentication "
432 "Parameter: id=%u len=%u", id, len);
433 wpa_hexdump(MSG_DEBUG, "Authentication Parameter "
434 "Value", pos, len);
435 break;
436 }
437
438 pos += len;
439 }
440
441 return e_end;
442}
443
444
445static const u8 * nai_realm_parse_realm(struct nai_realm *r, const u8 *pos,
446 const u8 *end)
447{
448 u16 len;
449 const u8 *f_end;
450 u8 realm_len, e;
451
452 if (end - pos < 4) {
453 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
454 "fixed fields");
455 return NULL;
456 }
457
458 len = WPA_GET_LE16(pos); /* NAI Realm Data field Length */
459 pos += 2;
460 if (pos + len > end || len < 3) {
461 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
462 "(len=%u; left=%u)",
463 len, (unsigned int) (end - pos));
464 return NULL;
465 }
466 f_end = pos + len;
467
468 r->encoding = *pos++;
469 realm_len = *pos++;
470 if (pos + realm_len > f_end) {
471 wpa_printf(MSG_DEBUG, "No room for NAI Realm "
472 "(len=%u; left=%u)",
473 realm_len, (unsigned int) (f_end - pos));
474 return NULL;
475 }
476 wpa_hexdump_ascii(MSG_DEBUG, "NAI Realm", pos, realm_len);
Dmitry Shmidt4b060592013-04-29 16:42:49 -0700477 r->realm = dup_binstr(pos, realm_len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800478 if (r->realm == NULL)
479 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800480 pos += realm_len;
481
482 if (pos + 1 > f_end) {
483 wpa_printf(MSG_DEBUG, "No room for EAP Method Count");
484 return NULL;
485 }
486 r->eap_count = *pos++;
487 wpa_printf(MSG_DEBUG, "EAP Count: %u", r->eap_count);
488 if (pos + r->eap_count * 3 > f_end) {
489 wpa_printf(MSG_DEBUG, "No room for EAP Methods");
490 return NULL;
491 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700492 r->eap = os_calloc(r->eap_count, sizeof(struct nai_realm_eap));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800493 if (r->eap == NULL)
494 return NULL;
495
496 for (e = 0; e < r->eap_count; e++) {
497 pos = nai_realm_parse_eap(&r->eap[e], pos, f_end);
498 if (pos == NULL)
499 return NULL;
500 }
501
502 return f_end;
503}
504
505
506static struct nai_realm * nai_realm_parse(struct wpabuf *anqp, u16 *count)
507{
508 struct nai_realm *realm;
509 const u8 *pos, *end;
510 u16 i, num;
511
512 if (anqp == NULL || wpabuf_len(anqp) < 2)
513 return NULL;
514
515 pos = wpabuf_head_u8(anqp);
516 end = pos + wpabuf_len(anqp);
517 num = WPA_GET_LE16(pos);
518 wpa_printf(MSG_DEBUG, "NAI Realm Count: %u", num);
519 pos += 2;
520
521 if (num * 5 > end - pos) {
522 wpa_printf(MSG_DEBUG, "Invalid NAI Realm Count %u - not "
523 "enough data (%u octets) for that many realms",
524 num, (unsigned int) (end - pos));
525 return NULL;
526 }
527
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700528 realm = os_calloc(num, sizeof(struct nai_realm));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800529 if (realm == NULL)
530 return NULL;
531
532 for (i = 0; i < num; i++) {
533 pos = nai_realm_parse_realm(&realm[i], pos, end);
534 if (pos == NULL) {
535 nai_realm_free(realm, num);
536 return NULL;
537 }
538 }
539
540 *count = num;
541 return realm;
542}
543
544
545static int nai_realm_match(struct nai_realm *realm, const char *home_realm)
546{
547 char *tmp, *pos, *end;
548 int match = 0;
549
550 if (realm->realm == NULL || home_realm == NULL)
551 return 0;
552
553 if (os_strchr(realm->realm, ';') == NULL)
554 return os_strcasecmp(realm->realm, home_realm) == 0;
555
556 tmp = os_strdup(realm->realm);
557 if (tmp == NULL)
558 return 0;
559
560 pos = tmp;
561 while (*pos) {
562 end = os_strchr(pos, ';');
563 if (end)
564 *end = '\0';
565 if (os_strcasecmp(pos, home_realm) == 0) {
566 match = 1;
567 break;
568 }
569 if (end == NULL)
570 break;
571 pos = end + 1;
572 }
573
574 os_free(tmp);
575
576 return match;
577}
578
579
580static int nai_realm_cred_username(struct nai_realm_eap *eap)
581{
582 if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL)
583 return 0; /* method not supported */
584
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800585 if (eap->method != EAP_TYPE_TTLS && eap->method != EAP_TYPE_PEAP &&
586 eap->method != EAP_TYPE_FAST) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800587 /* Only tunneled methods with username/password supported */
588 return 0;
589 }
590
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800591 if (eap->method == EAP_TYPE_PEAP || eap->method == EAP_TYPE_FAST) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800592 if (eap->inner_method &&
593 eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
594 return 0;
595 if (!eap->inner_method &&
596 eap_get_name(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2) == NULL)
597 return 0;
598 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800599
600 if (eap->method == EAP_TYPE_TTLS) {
601 if (eap->inner_method == 0 && eap->inner_non_eap == 0)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800602 return 1; /* Assume TTLS/MSCHAPv2 is used */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800603 if (eap->inner_method &&
604 eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
605 return 0;
606 if (eap->inner_non_eap &&
607 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_PAP &&
608 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_CHAP &&
609 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAP &&
610 eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAPV2)
611 return 0;
612 }
613
614 if (eap->inner_method &&
615 eap->inner_method != EAP_TYPE_GTC &&
616 eap->inner_method != EAP_TYPE_MSCHAPV2)
617 return 0;
618
619 return 1;
620}
621
622
Dmitry Shmidt04949592012-07-19 12:16:46 -0700623static int nai_realm_cred_cert(struct nai_realm_eap *eap)
624{
625 if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL)
626 return 0; /* method not supported */
627
628 if (eap->method != EAP_TYPE_TLS) {
629 /* Only EAP-TLS supported for credential authentication */
630 return 0;
631 }
632
633 return 1;
634}
635
636
637static struct nai_realm_eap * nai_realm_find_eap(struct wpa_cred *cred,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800638 struct nai_realm *realm)
639{
640 u8 e;
641
Dmitry Shmidt04949592012-07-19 12:16:46 -0700642 if (cred == NULL ||
643 cred->username == NULL ||
644 cred->username[0] == '\0' ||
645 ((cred->password == NULL ||
646 cred->password[0] == '\0') &&
647 (cred->private_key == NULL ||
648 cred->private_key[0] == '\0')))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800649 return NULL;
650
651 for (e = 0; e < realm->eap_count; e++) {
652 struct nai_realm_eap *eap = &realm->eap[e];
Dmitry Shmidt04949592012-07-19 12:16:46 -0700653 if (cred->password && cred->password[0] &&
654 nai_realm_cred_username(eap))
655 return eap;
656 if (cred->private_key && cred->private_key[0] &&
657 nai_realm_cred_cert(eap))
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800658 return eap;
659 }
660
661 return NULL;
662}
663
664
665#ifdef INTERWORKING_3GPP
666
Dmitry Shmidt04949592012-07-19 12:16:46 -0700667static int plmn_id_match(struct wpabuf *anqp, const char *imsi, int mnc_len)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800668{
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700669 u8 plmn[3], plmn2[3];
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800670 const u8 *pos, *end;
671 u8 udhl;
672
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700673 /*
674 * See Annex A of 3GPP TS 24.234 v8.1.0 for description. The network
675 * operator is allowed to include only two digits of the MNC, so allow
676 * matches based on both two and three digit MNC assumptions. Since some
677 * SIM/USIM cards may not expose MNC length conveniently, we may be
678 * provided the default MNC length 3 here and as such, checking with MNC
679 * length 2 is justifiable even though 3GPP TS 24.234 does not mention
680 * that case. Anyway, MCC/MNC pair where both 2 and 3 digit MNC is used
681 * with otherwise matching values would not be good idea in general, so
682 * this should not result in selecting incorrect networks.
683 */
684 /* Match with 3 digit MNC */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800685 plmn[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700686 plmn[1] = (imsi[2] - '0') | ((imsi[5] - '0') << 4);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800687 plmn[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700688 /* Match with 2 digit MNC */
689 plmn2[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
690 plmn2[1] = (imsi[2] - '0') | 0xf0;
691 plmn2[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800692
693 if (anqp == NULL)
694 return 0;
695 pos = wpabuf_head_u8(anqp);
696 end = pos + wpabuf_len(anqp);
697 if (pos + 2 > end)
698 return 0;
699 if (*pos != 0) {
700 wpa_printf(MSG_DEBUG, "Unsupported GUD version 0x%x", *pos);
701 return 0;
702 }
703 pos++;
704 udhl = *pos++;
705 if (pos + udhl > end) {
706 wpa_printf(MSG_DEBUG, "Invalid UDHL");
707 return 0;
708 }
709 end = pos + udhl;
710
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700711 wpa_printf(MSG_DEBUG, "Interworking: Matching against MCC/MNC alternatives: %02x:%02x:%02x or %02x:%02x:%02x (IMSI %s, MNC length %d)",
712 plmn[0], plmn[1], plmn[2], plmn2[0], plmn2[1], plmn2[2],
713 imsi, mnc_len);
714
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800715 while (pos + 2 <= end) {
716 u8 iei, len;
717 const u8 *l_end;
718 iei = *pos++;
719 len = *pos++ & 0x7f;
720 if (pos + len > end)
721 break;
722 l_end = pos + len;
723
724 if (iei == 0 && len > 0) {
725 /* PLMN List */
726 u8 num, i;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700727 wpa_hexdump(MSG_DEBUG, "Interworking: PLMN List information element",
728 pos, len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800729 num = *pos++;
730 for (i = 0; i < num; i++) {
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700731 if (pos + 3 > l_end)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800732 break;
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700733 if (os_memcmp(pos, plmn, 3) == 0 ||
734 os_memcmp(pos, plmn2, 3) == 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800735 return 1; /* Found matching PLMN */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700736 pos += 3;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800737 }
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700738 } else {
739 wpa_hexdump(MSG_DEBUG, "Interworking: Unrecognized 3GPP information element",
740 pos, len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800741 }
742
743 pos = l_end;
744 }
745
746 return 0;
747}
748
749
Dmitry Shmidt04949592012-07-19 12:16:46 -0700750static int build_root_nai(char *nai, size_t nai_len, const char *imsi,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700751 size_t mnc_len, char prefix)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800752{
753 const char *sep, *msin;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700754 char *end, *pos;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800755 size_t msin_len, plmn_len;
756
757 /*
758 * TS 23.003, Clause 14 (3GPP to WLAN Interworking)
759 * Root NAI:
760 * <aka:0|sim:1><IMSI>@wlan.mnc<MNC>.mcc<MCC>.3gppnetwork.org
761 * <MNC> is zero-padded to three digits in case two-digit MNC is used
762 */
763
764 if (imsi == NULL || os_strlen(imsi) > 16) {
765 wpa_printf(MSG_DEBUG, "No valid IMSI available");
766 return -1;
767 }
768 sep = os_strchr(imsi, '-');
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700769 if (sep) {
770 plmn_len = sep - imsi;
771 msin = sep + 1;
772 } else if (mnc_len && os_strlen(imsi) >= 3 + mnc_len) {
773 plmn_len = 3 + mnc_len;
774 msin = imsi + plmn_len;
775 } else
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800776 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800777 if (plmn_len != 5 && plmn_len != 6)
778 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800779 msin_len = os_strlen(msin);
780
781 pos = nai;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700782 end = nai + nai_len;
783 if (prefix)
784 *pos++ = prefix;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800785 os_memcpy(pos, imsi, plmn_len);
786 pos += plmn_len;
787 os_memcpy(pos, msin, msin_len);
788 pos += msin_len;
789 pos += os_snprintf(pos, end - pos, "@wlan.mnc");
790 if (plmn_len == 5) {
791 *pos++ = '0';
792 *pos++ = imsi[3];
793 *pos++ = imsi[4];
794 } else {
795 *pos++ = imsi[3];
796 *pos++ = imsi[4];
797 *pos++ = imsi[5];
798 }
799 pos += os_snprintf(pos, end - pos, ".mcc%c%c%c.3gppnetwork.org",
800 imsi[0], imsi[1], imsi[2]);
801
Dmitry Shmidt04949592012-07-19 12:16:46 -0700802 return 0;
803}
804
805
806static int set_root_nai(struct wpa_ssid *ssid, const char *imsi, char prefix)
807{
808 char nai[100];
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700809 if (build_root_nai(nai, sizeof(nai), imsi, 0, prefix) < 0)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700810 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800811 return wpa_config_set_quoted(ssid, "identity", nai);
812}
813
814#endif /* INTERWORKING_3GPP */
815
816
Dmitry Shmidt54605472013-11-08 11:10:19 -0800817static int already_connected(struct wpa_supplicant *wpa_s,
818 struct wpa_cred *cred, struct wpa_bss *bss)
819{
Dmitry Shmidt4582d2a2014-02-28 11:14:23 -0800820 struct wpa_ssid *ssid, *sel_ssid;
821 struct wpa_bss *selected;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800822
823 if (wpa_s->wpa_state < WPA_ASSOCIATED || wpa_s->current_ssid == NULL)
824 return 0;
825
826 ssid = wpa_s->current_ssid;
827 if (ssid->parent_cred != cred)
828 return 0;
829
830 if (ssid->ssid_len != bss->ssid_len ||
831 os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) != 0)
832 return 0;
833
Dmitry Shmidt4582d2a2014-02-28 11:14:23 -0800834 sel_ssid = NULL;
835 selected = wpa_supplicant_pick_network(wpa_s, &sel_ssid);
836 if (selected && sel_ssid && sel_ssid->priority > ssid->priority)
837 return 0; /* higher priority network in scan results */
838
Dmitry Shmidt54605472013-11-08 11:10:19 -0800839 return 1;
840}
841
842
843static void remove_duplicate_network(struct wpa_supplicant *wpa_s,
844 struct wpa_cred *cred,
845 struct wpa_bss *bss)
846{
847 struct wpa_ssid *ssid;
848
849 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
850 if (ssid->parent_cred != cred)
851 continue;
852 if (ssid->ssid_len != bss->ssid_len ||
853 os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) != 0)
854 continue;
855
856 break;
857 }
858
859 if (ssid == NULL)
860 return;
861
862 wpa_printf(MSG_DEBUG, "Interworking: Remove duplicate network entry for the same credential");
863
864 if (ssid == wpa_s->current_ssid) {
865 wpa_sm_set_config(wpa_s->wpa, NULL);
866 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
867 wpa_supplicant_deauthenticate(wpa_s,
868 WLAN_REASON_DEAUTH_LEAVING);
869 }
870
871 wpas_notify_network_removed(wpa_s, ssid);
872 wpa_config_remove_network(wpa_s->conf, ssid->id);
873}
874
875
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800876static int interworking_set_hs20_params(struct wpa_supplicant *wpa_s,
877 struct wpa_ssid *ssid)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700878{
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700879 const char *key_mgmt = NULL;
880#ifdef CONFIG_IEEE80211R
881 int res;
882 struct wpa_driver_capa capa;
883
884 res = wpa_drv_get_capa(wpa_s, &capa);
885 if (res == 0 && capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_FT) {
886 key_mgmt = wpa_s->conf->pmf != NO_MGMT_FRAME_PROTECTION ?
887 "WPA-EAP WPA-EAP-SHA256 FT-EAP" :
888 "WPA-EAP FT-EAP";
889 }
890#endif /* CONFIG_IEEE80211R */
891
892 if (!key_mgmt)
893 key_mgmt = wpa_s->conf->pmf != NO_MGMT_FRAME_PROTECTION ?
894 "WPA-EAP WPA-EAP-SHA256" : "WPA-EAP";
895 if (wpa_config_set(ssid, "key_mgmt", key_mgmt, 0) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700896 return -1;
897 if (wpa_config_set(ssid, "proto", "RSN", 0) < 0)
898 return -1;
899 if (wpa_config_set(ssid, "pairwise", "CCMP", 0) < 0)
900 return -1;
901 return 0;
902}
903
904
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800905static int interworking_connect_3gpp(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800906 struct wpa_cred *cred,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800907 struct wpa_bss *bss)
908{
909#ifdef INTERWORKING_3GPP
910 struct wpa_ssid *ssid;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700911 int eap_type;
912 int res;
913 char prefix;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800914
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700915 if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700916 return -1;
917
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800918 wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR " (3GPP)",
919 MAC2STR(bss->bssid));
920
Dmitry Shmidt54605472013-11-08 11:10:19 -0800921 if (already_connected(wpa_s, cred, bss)) {
922 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
923 MAC2STR(bss->bssid));
924 return 0;
925 }
926
927 remove_duplicate_network(wpa_s, cred, bss);
928
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800929 ssid = wpa_config_add_network(wpa_s->conf);
930 if (ssid == NULL)
931 return -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800932 ssid->parent_cred = cred;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800933
934 wpas_notify_network_added(wpa_s, ssid);
935 wpa_config_set_network_defaults(ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700936 ssid->priority = cred->priority;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800937 ssid->temporary = 1;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800938 ssid->ssid = os_zalloc(bss->ssid_len + 1);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800939 if (ssid->ssid == NULL)
940 goto fail;
Dmitry Shmidt54605472013-11-08 11:10:19 -0800941 os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
942 ssid->ssid_len = bss->ssid_len;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700943 ssid->eap.sim_num = cred->sim_num;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800944
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800945 if (interworking_set_hs20_params(wpa_s, ssid) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700946 goto fail;
947
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700948 eap_type = EAP_TYPE_SIM;
949 if (cred->pcsc && wpa_s->scard && scard_supports_umts(wpa_s->scard))
950 eap_type = EAP_TYPE_AKA;
951 if (cred->eap_method && cred->eap_method[0].vendor == EAP_VENDOR_IETF) {
952 if (cred->eap_method[0].method == EAP_TYPE_SIM ||
953 cred->eap_method[0].method == EAP_TYPE_AKA ||
954 cred->eap_method[0].method == EAP_TYPE_AKA_PRIME)
955 eap_type = cred->eap_method[0].method;
956 }
957
958 switch (eap_type) {
959 case EAP_TYPE_SIM:
960 prefix = '1';
961 res = wpa_config_set(ssid, "eap", "SIM", 0);
962 break;
963 case EAP_TYPE_AKA:
964 prefix = '0';
965 res = wpa_config_set(ssid, "eap", "AKA", 0);
966 break;
967 case EAP_TYPE_AKA_PRIME:
968 prefix = '6';
969 res = wpa_config_set(ssid, "eap", "AKA'", 0);
970 break;
971 default:
972 res = -1;
973 break;
974 }
975 if (res < 0) {
976 wpa_printf(MSG_DEBUG, "Selected EAP method (%d) not supported",
977 eap_type);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800978 goto fail;
979 }
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700980
981 if (!cred->pcsc && set_root_nai(ssid, cred->imsi, prefix) < 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800982 wpa_printf(MSG_DEBUG, "Failed to set Root NAI");
983 goto fail;
984 }
985
Dmitry Shmidt04949592012-07-19 12:16:46 -0700986 if (cred->milenage && cred->milenage[0]) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800987 if (wpa_config_set_quoted(ssid, "password",
Dmitry Shmidt04949592012-07-19 12:16:46 -0700988 cred->milenage) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800989 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700990 } else if (cred->pcsc) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800991 if (wpa_config_set_quoted(ssid, "pcsc", "") < 0)
992 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700993 if (wpa_s->conf->pcsc_pin &&
994 wpa_config_set_quoted(ssid, "pin", wpa_s->conf->pcsc_pin)
995 < 0)
996 goto fail;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800997 }
998
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800999 wpa_s->next_ssid = ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001000 wpa_config_update_prio_list(wpa_s->conf);
1001 interworking_reconnect(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001002
1003 return 0;
1004
1005fail:
1006 wpas_notify_network_removed(wpa_s, ssid);
1007 wpa_config_remove_network(wpa_s->conf, ssid->id);
1008#endif /* INTERWORKING_3GPP */
1009 return -1;
1010}
1011
1012
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001013static int roaming_consortium_element_match(const u8 *ie, const u8 *rc_id,
1014 size_t rc_len)
1015{
1016 const u8 *pos, *end;
1017 u8 lens;
1018
1019 if (ie == NULL)
1020 return 0;
1021
1022 pos = ie + 2;
1023 end = ie + 2 + ie[1];
1024
1025 /* Roaming Consortium element:
1026 * Number of ANQP OIs
1027 * OI #1 and #2 lengths
1028 * OI #1, [OI #2], [OI #3]
1029 */
1030
1031 if (pos + 2 > end)
1032 return 0;
1033
1034 pos++; /* skip Number of ANQP OIs */
1035 lens = *pos++;
1036 if (pos + (lens & 0x0f) + (lens >> 4) > end)
1037 return 0;
1038
1039 if ((lens & 0x0f) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
1040 return 1;
1041 pos += lens & 0x0f;
1042
1043 if ((lens >> 4) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
1044 return 1;
1045 pos += lens >> 4;
1046
1047 if (pos < end && (size_t) (end - pos) == rc_len &&
1048 os_memcmp(pos, rc_id, rc_len) == 0)
1049 return 1;
1050
1051 return 0;
1052}
1053
1054
1055static int roaming_consortium_anqp_match(const struct wpabuf *anqp,
1056 const u8 *rc_id, size_t rc_len)
1057{
1058 const u8 *pos, *end;
1059 u8 len;
1060
1061 if (anqp == NULL)
1062 return 0;
1063
1064 pos = wpabuf_head(anqp);
1065 end = pos + wpabuf_len(anqp);
1066
1067 /* Set of <OI Length, OI> duples */
1068 while (pos < end) {
1069 len = *pos++;
1070 if (pos + len > end)
1071 break;
1072 if (len == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
1073 return 1;
1074 pos += len;
1075 }
1076
1077 return 0;
1078}
1079
1080
1081static int roaming_consortium_match(const u8 *ie, const struct wpabuf *anqp,
1082 const u8 *rc_id, size_t rc_len)
1083{
1084 return roaming_consortium_element_match(ie, rc_id, rc_len) ||
1085 roaming_consortium_anqp_match(anqp, rc_id, rc_len);
1086}
1087
1088
Dmitry Shmidt051af732013-10-22 13:52:46 -07001089static int cred_no_required_oi_match(struct wpa_cred *cred, struct wpa_bss *bss)
1090{
1091 const u8 *ie;
1092
1093 if (cred->required_roaming_consortium_len == 0)
1094 return 0;
1095
1096 ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
1097
1098 if (ie == NULL &&
1099 (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
1100 return 1;
1101
1102 return !roaming_consortium_match(ie,
1103 bss->anqp ?
1104 bss->anqp->roaming_consortium : NULL,
1105 cred->required_roaming_consortium,
1106 cred->required_roaming_consortium_len);
1107}
1108
1109
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001110static int cred_excluded_ssid(struct wpa_cred *cred, struct wpa_bss *bss)
1111{
1112 size_t i;
1113
1114 if (!cred->excluded_ssid)
1115 return 0;
1116
1117 for (i = 0; i < cred->num_excluded_ssid; i++) {
1118 struct excluded_ssid *e = &cred->excluded_ssid[i];
1119 if (bss->ssid_len == e->ssid_len &&
1120 os_memcmp(bss->ssid, e->ssid, e->ssid_len) == 0)
1121 return 1;
1122 }
1123
1124 return 0;
1125}
1126
1127
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001128static int cred_below_min_backhaul(struct wpa_supplicant *wpa_s,
1129 struct wpa_cred *cred, struct wpa_bss *bss)
1130{
1131 int res;
1132 unsigned int dl_bandwidth, ul_bandwidth;
1133 const u8 *wan;
1134 u8 wan_info, dl_load, ul_load;
1135 u16 lmd;
1136 u32 ul_speed, dl_speed;
1137
1138 if (!cred->min_dl_bandwidth_home &&
1139 !cred->min_ul_bandwidth_home &&
1140 !cred->min_dl_bandwidth_roaming &&
1141 !cred->min_ul_bandwidth_roaming)
1142 return 0; /* No bandwidth constraint specified */
1143
1144 if (bss->anqp == NULL || bss->anqp->hs20_wan_metrics == NULL)
1145 return 0; /* No WAN Metrics known - ignore constraint */
1146
1147 wan = wpabuf_head(bss->anqp->hs20_wan_metrics);
1148 wan_info = wan[0];
1149 if (wan_info & BIT(3))
1150 return 1; /* WAN link at capacity */
1151 lmd = WPA_GET_LE16(wan + 11);
1152 if (lmd == 0)
1153 return 0; /* Downlink/Uplink Load was not measured */
1154 dl_speed = WPA_GET_LE32(wan + 1);
1155 ul_speed = WPA_GET_LE32(wan + 5);
1156 dl_load = wan[9];
1157 ul_load = wan[10];
1158
1159 if (dl_speed >= 0xffffff)
1160 dl_bandwidth = dl_speed / 255 * (255 - dl_load);
1161 else
1162 dl_bandwidth = dl_speed * (255 - dl_load) / 255;
1163
1164 if (ul_speed >= 0xffffff)
1165 ul_bandwidth = ul_speed / 255 * (255 - ul_load);
1166 else
1167 ul_bandwidth = ul_speed * (255 - ul_load) / 255;
1168
1169 res = interworking_home_sp_cred(wpa_s, cred, bss->anqp ?
1170 bss->anqp->domain_name : NULL);
1171 if (res > 0) {
1172 if (cred->min_dl_bandwidth_home > dl_bandwidth)
1173 return 1;
1174 if (cred->min_ul_bandwidth_home > ul_bandwidth)
1175 return 1;
1176 } else {
1177 if (cred->min_dl_bandwidth_roaming > dl_bandwidth)
1178 return 1;
1179 if (cred->min_ul_bandwidth_roaming > ul_bandwidth)
1180 return 1;
1181 }
1182
1183 return 0;
1184}
1185
1186
1187static int cred_over_max_bss_load(struct wpa_supplicant *wpa_s,
1188 struct wpa_cred *cred, struct wpa_bss *bss)
1189{
1190 const u8 *ie;
1191 int res;
1192
1193 if (!cred->max_bss_load)
1194 return 0; /* No BSS Load constraint specified */
1195
1196 ie = wpa_bss_get_ie(bss, WLAN_EID_BSS_LOAD);
1197 if (ie == NULL || ie[1] < 3)
1198 return 0; /* No BSS Load advertised */
1199
1200 res = interworking_home_sp_cred(wpa_s, cred, bss->anqp ?
1201 bss->anqp->domain_name : NULL);
1202 if (res <= 0)
1203 return 0; /* Not a home network */
1204
1205 return ie[4] > cred->max_bss_load;
1206}
1207
1208
1209static int has_proto_match(const u8 *pos, const u8 *end, u8 proto)
1210{
1211 while (pos + 4 <= end) {
1212 if (pos[0] == proto && pos[3] == 1 /* Open */)
1213 return 1;
1214 pos += 4;
1215 }
1216
1217 return 0;
1218}
1219
1220
1221static int has_proto_port_match(const u8 *pos, const u8 *end, u8 proto,
1222 u16 port)
1223{
1224 while (pos + 4 <= end) {
1225 if (pos[0] == proto && WPA_GET_LE16(&pos[1]) == port &&
1226 pos[3] == 1 /* Open */)
1227 return 1;
1228 pos += 4;
1229 }
1230
1231 return 0;
1232}
1233
1234
1235static int cred_conn_capab_missing(struct wpa_supplicant *wpa_s,
1236 struct wpa_cred *cred, struct wpa_bss *bss)
1237{
1238 int res;
1239 const u8 *capab, *end;
1240 unsigned int i, j;
1241 int *ports;
1242
1243 if (!cred->num_req_conn_capab)
1244 return 0; /* No connection capability constraint specified */
1245
1246 if (bss->anqp == NULL || bss->anqp->hs20_connection_capability == NULL)
1247 return 0; /* No Connection Capability known - ignore constraint
1248 */
1249
1250 res = interworking_home_sp_cred(wpa_s, cred, bss->anqp ?
1251 bss->anqp->domain_name : NULL);
1252 if (res > 0)
1253 return 0; /* No constraint in home network */
1254
1255 capab = wpabuf_head(bss->anqp->hs20_connection_capability);
1256 end = capab + wpabuf_len(bss->anqp->hs20_connection_capability);
1257
1258 for (i = 0; i < cred->num_req_conn_capab; i++) {
1259 ports = cred->req_conn_capab_port[i];
1260 if (!ports) {
1261 if (!has_proto_match(capab, end,
1262 cred->req_conn_capab_proto[i]))
1263 return 1;
1264 } else {
1265 for (j = 0; ports[j] > -1; j++) {
1266 if (!has_proto_port_match(
1267 capab, end,
1268 cred->req_conn_capab_proto[i],
1269 ports[j]))
1270 return 1;
1271 }
1272 }
1273 }
1274
1275 return 0;
1276}
1277
1278
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001279static struct wpa_cred * interworking_credentials_available_roaming_consortium(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001280 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
1281 int *excluded)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001282{
1283 struct wpa_cred *cred, *selected = NULL;
1284 const u8 *ie;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001285 int is_excluded = 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001286
1287 ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
1288
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001289 if (ie == NULL &&
1290 (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001291 return NULL;
1292
1293 if (wpa_s->conf->cred == NULL)
1294 return NULL;
1295
1296 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1297 if (cred->roaming_consortium_len == 0)
1298 continue;
1299
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001300 if (!roaming_consortium_match(ie,
1301 bss->anqp ?
1302 bss->anqp->roaming_consortium :
1303 NULL,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001304 cred->roaming_consortium,
1305 cred->roaming_consortium_len))
1306 continue;
1307
Dmitry Shmidt051af732013-10-22 13:52:46 -07001308 if (cred_no_required_oi_match(cred, bss))
1309 continue;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001310 if (!ignore_bw && cred_below_min_backhaul(wpa_s, cred, bss))
1311 continue;
1312 if (!ignore_bw && cred_over_max_bss_load(wpa_s, cred, bss))
1313 continue;
1314 if (!ignore_bw && cred_conn_capab_missing(wpa_s, cred, bss))
1315 continue;
1316 if (cred_excluded_ssid(cred, bss)) {
1317 if (excluded == NULL)
1318 continue;
1319 if (selected == NULL) {
1320 selected = cred;
1321 is_excluded = 1;
1322 }
1323 } else {
1324 if (selected == NULL || is_excluded ||
1325 cred_prio_cmp(selected, cred) < 0) {
1326 selected = cred;
1327 is_excluded = 0;
1328 }
1329 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001330 }
1331
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001332 if (excluded)
1333 *excluded = is_excluded;
1334
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001335 return selected;
1336}
1337
1338
1339static int interworking_set_eap_params(struct wpa_ssid *ssid,
1340 struct wpa_cred *cred, int ttls)
1341{
1342 if (cred->eap_method) {
1343 ttls = cred->eap_method->vendor == EAP_VENDOR_IETF &&
1344 cred->eap_method->method == EAP_TYPE_TTLS;
1345
1346 os_free(ssid->eap.eap_methods);
1347 ssid->eap.eap_methods =
1348 os_malloc(sizeof(struct eap_method_type) * 2);
1349 if (ssid->eap.eap_methods == NULL)
1350 return -1;
1351 os_memcpy(ssid->eap.eap_methods, cred->eap_method,
1352 sizeof(*cred->eap_method));
1353 ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF;
1354 ssid->eap.eap_methods[1].method = EAP_TYPE_NONE;
1355 }
1356
1357 if (ttls && cred->username && cred->username[0]) {
1358 const char *pos;
1359 char *anon;
1360 /* Use anonymous NAI in Phase 1 */
1361 pos = os_strchr(cred->username, '@');
1362 if (pos) {
1363 size_t buflen = 9 + os_strlen(pos) + 1;
1364 anon = os_malloc(buflen);
1365 if (anon == NULL)
1366 return -1;
1367 os_snprintf(anon, buflen, "anonymous%s", pos);
1368 } else if (cred->realm) {
1369 size_t buflen = 10 + os_strlen(cred->realm) + 1;
1370 anon = os_malloc(buflen);
1371 if (anon == NULL)
1372 return -1;
1373 os_snprintf(anon, buflen, "anonymous@%s", cred->realm);
1374 } else {
1375 anon = os_strdup("anonymous");
1376 if (anon == NULL)
1377 return -1;
1378 }
1379 if (wpa_config_set_quoted(ssid, "anonymous_identity", anon) <
1380 0) {
1381 os_free(anon);
1382 return -1;
1383 }
1384 os_free(anon);
1385 }
1386
1387 if (cred->username && cred->username[0] &&
1388 wpa_config_set_quoted(ssid, "identity", cred->username) < 0)
1389 return -1;
1390
1391 if (cred->password && cred->password[0]) {
1392 if (cred->ext_password &&
1393 wpa_config_set(ssid, "password", cred->password, 0) < 0)
1394 return -1;
1395 if (!cred->ext_password &&
1396 wpa_config_set_quoted(ssid, "password", cred->password) <
1397 0)
1398 return -1;
1399 }
1400
1401 if (cred->client_cert && cred->client_cert[0] &&
1402 wpa_config_set_quoted(ssid, "client_cert", cred->client_cert) < 0)
1403 return -1;
1404
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001405#ifdef ANDROID
1406 if (cred->private_key &&
1407 os_strncmp(cred->private_key, "keystore://", 11) == 0) {
1408 /* Use OpenSSL engine configuration for Android keystore */
1409 if (wpa_config_set_quoted(ssid, "engine_id", "keystore") < 0 ||
1410 wpa_config_set_quoted(ssid, "key_id",
1411 cred->private_key + 11) < 0 ||
1412 wpa_config_set(ssid, "engine", "1", 0) < 0)
1413 return -1;
1414 } else
1415#endif /* ANDROID */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001416 if (cred->private_key && cred->private_key[0] &&
1417 wpa_config_set_quoted(ssid, "private_key", cred->private_key) < 0)
1418 return -1;
1419
1420 if (cred->private_key_passwd && cred->private_key_passwd[0] &&
1421 wpa_config_set_quoted(ssid, "private_key_passwd",
1422 cred->private_key_passwd) < 0)
1423 return -1;
1424
1425 if (cred->phase1) {
1426 os_free(ssid->eap.phase1);
1427 ssid->eap.phase1 = os_strdup(cred->phase1);
1428 }
1429 if (cred->phase2) {
1430 os_free(ssid->eap.phase2);
1431 ssid->eap.phase2 = os_strdup(cred->phase2);
1432 }
1433
1434 if (cred->ca_cert && cred->ca_cert[0] &&
1435 wpa_config_set_quoted(ssid, "ca_cert", cred->ca_cert) < 0)
1436 return -1;
1437
Dmitry Shmidt051af732013-10-22 13:52:46 -07001438 if (cred->domain_suffix_match && cred->domain_suffix_match[0] &&
1439 wpa_config_set_quoted(ssid, "domain_suffix_match",
1440 cred->domain_suffix_match) < 0)
1441 return -1;
1442
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001443 ssid->eap.ocsp = cred->ocsp;
1444
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001445 return 0;
1446}
1447
1448
1449static int interworking_connect_roaming_consortium(
1450 struct wpa_supplicant *wpa_s, struct wpa_cred *cred,
Dmitry Shmidt54605472013-11-08 11:10:19 -08001451 struct wpa_bss *bss)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001452{
1453 struct wpa_ssid *ssid;
1454
1455 wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR " based on "
1456 "roaming consortium match", MAC2STR(bss->bssid));
1457
Dmitry Shmidt54605472013-11-08 11:10:19 -08001458 if (already_connected(wpa_s, cred, bss)) {
1459 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
1460 MAC2STR(bss->bssid));
1461 return 0;
1462 }
1463
1464 remove_duplicate_network(wpa_s, cred, bss);
1465
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001466 ssid = wpa_config_add_network(wpa_s->conf);
1467 if (ssid == NULL)
1468 return -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001469 ssid->parent_cred = cred;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001470 wpas_notify_network_added(wpa_s, ssid);
1471 wpa_config_set_network_defaults(ssid);
1472 ssid->priority = cred->priority;
1473 ssid->temporary = 1;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001474 ssid->ssid = os_zalloc(bss->ssid_len + 1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001475 if (ssid->ssid == NULL)
1476 goto fail;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001477 os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
1478 ssid->ssid_len = bss->ssid_len;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001479
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001480 if (interworking_set_hs20_params(wpa_s, ssid) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001481 goto fail;
1482
1483 if (cred->eap_method == NULL) {
1484 wpa_printf(MSG_DEBUG, "Interworking: No EAP method set for "
1485 "credential using roaming consortium");
1486 goto fail;
1487 }
1488
1489 if (interworking_set_eap_params(
1490 ssid, cred,
1491 cred->eap_method->vendor == EAP_VENDOR_IETF &&
1492 cred->eap_method->method == EAP_TYPE_TTLS) < 0)
1493 goto fail;
1494
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001495 wpa_s->next_ssid = ssid;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001496 wpa_config_update_prio_list(wpa_s->conf);
1497 interworking_reconnect(wpa_s);
1498
1499 return 0;
1500
1501fail:
1502 wpas_notify_network_removed(wpa_s, ssid);
1503 wpa_config_remove_network(wpa_s->conf, ssid->id);
1504 return -1;
1505}
1506
1507
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001508static int interworking_connect_helper(struct wpa_supplicant *wpa_s,
1509 struct wpa_bss *bss, int allow_excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001510{
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001511 struct wpa_cred *cred, *cred_rc, *cred_3gpp;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001512 struct wpa_ssid *ssid;
1513 struct nai_realm *realm;
1514 struct nai_realm_eap *eap = NULL;
1515 u16 count, i;
1516 char buf[100];
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001517 int excluded = 0, *excl = allow_excluded ? &excluded : NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001518
Dmitry Shmidt04949592012-07-19 12:16:46 -07001519 if (wpa_s->conf->cred == NULL || bss == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001520 return -1;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001521 if (disallowed_bssid(wpa_s, bss->bssid) ||
1522 disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
1523 wpa_printf(MSG_DEBUG, "Interworking: Reject connection to disallowed BSS "
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001524 MACSTR, MAC2STR(bss->bssid));
1525 return -1;
1526 }
1527
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001528 wpa_printf(MSG_DEBUG, "Interworking: Considering BSS " MACSTR
1529 " for connection (allow_excluded=%d)",
1530 MAC2STR(bss->bssid), allow_excluded);
1531
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001532 if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
1533 /*
1534 * We currently support only HS 2.0 networks and those are
1535 * required to use WPA2-Enterprise.
1536 */
1537 wpa_printf(MSG_DEBUG, "Interworking: Network does not use "
1538 "RSN");
1539 return -1;
1540 }
1541
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001542 cred_rc = interworking_credentials_available_roaming_consortium(
1543 wpa_s, bss, 0, excl);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001544 if (cred_rc) {
1545 wpa_printf(MSG_DEBUG, "Interworking: Highest roaming "
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001546 "consortium matching credential priority %d "
1547 "sp_priority %d",
1548 cred_rc->priority, cred_rc->sp_priority);
1549 if (allow_excluded && excl && !(*excl))
1550 excl = NULL;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001551 }
1552
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001553 cred = interworking_credentials_available_realm(wpa_s, bss, 0, excl);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001554 if (cred) {
1555 wpa_printf(MSG_DEBUG, "Interworking: Highest NAI Realm list "
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001556 "matching credential priority %d sp_priority %d",
1557 cred->priority, cred->sp_priority);
1558 if (allow_excluded && excl && !(*excl))
1559 excl = NULL;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001560 }
1561
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001562 cred_3gpp = interworking_credentials_available_3gpp(wpa_s, bss, 0,
1563 excl);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001564 if (cred_3gpp) {
1565 wpa_printf(MSG_DEBUG, "Interworking: Highest 3GPP matching "
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001566 "credential priority %d sp_priority %d",
1567 cred_3gpp->priority, cred_3gpp->sp_priority);
1568 if (allow_excluded && excl && !(*excl))
1569 excl = NULL;
1570 }
1571
1572 if (!cred_rc && !cred && !cred_3gpp) {
1573 wpa_printf(MSG_DEBUG, "Interworking: No full credential matches - consider options without BW(etc.) limits");
1574 cred_rc = interworking_credentials_available_roaming_consortium(
1575 wpa_s, bss, 1, excl);
1576 if (cred_rc) {
1577 wpa_printf(MSG_DEBUG, "Interworking: Highest roaming "
1578 "consortium matching credential priority %d "
1579 "sp_priority %d (ignore BW)",
1580 cred_rc->priority, cred_rc->sp_priority);
1581 if (allow_excluded && excl && !(*excl))
1582 excl = NULL;
1583 }
1584
1585 cred = interworking_credentials_available_realm(wpa_s, bss, 1,
1586 excl);
1587 if (cred) {
1588 wpa_printf(MSG_DEBUG, "Interworking: Highest NAI Realm "
1589 "list matching credential priority %d "
1590 "sp_priority %d (ignore BW)",
1591 cred->priority, cred->sp_priority);
1592 if (allow_excluded && excl && !(*excl))
1593 excl = NULL;
1594 }
1595
1596 cred_3gpp = interworking_credentials_available_3gpp(wpa_s, bss,
1597 1, excl);
1598 if (cred_3gpp) {
1599 wpa_printf(MSG_DEBUG, "Interworking: Highest 3GPP "
1600 "matching credential priority %d "
1601 "sp_priority %d (ignore BW)",
1602 cred_3gpp->priority, cred_3gpp->sp_priority);
1603 if (allow_excluded && excl && !(*excl))
1604 excl = NULL;
1605 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001606 }
1607
1608 if (cred_rc &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001609 (cred == NULL || cred_prio_cmp(cred_rc, cred) >= 0) &&
1610 (cred_3gpp == NULL || cred_prio_cmp(cred_rc, cred_3gpp) >= 0))
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001611 return interworking_connect_roaming_consortium(wpa_s, cred_rc,
Dmitry Shmidt54605472013-11-08 11:10:19 -08001612 bss);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001613
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001614 if (cred_3gpp &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001615 (cred == NULL || cred_prio_cmp(cred_3gpp, cred) >= 0)) {
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001616 return interworking_connect_3gpp(wpa_s, cred_3gpp, bss);
1617 }
1618
1619 if (cred == NULL) {
1620 wpa_printf(MSG_DEBUG, "Interworking: No matching credentials "
1621 "found for " MACSTR, MAC2STR(bss->bssid));
1622 return -1;
1623 }
1624
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001625 realm = nai_realm_parse(bss->anqp ? bss->anqp->nai_realm : NULL,
1626 &count);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001627 if (realm == NULL) {
1628 wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
1629 "Realm list from " MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001630 return -1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001631 }
1632
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001633 for (i = 0; i < count; i++) {
1634 if (!nai_realm_match(&realm[i], cred->realm))
1635 continue;
1636 eap = nai_realm_find_eap(cred, &realm[i]);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001637 if (eap)
1638 break;
1639 }
1640
1641 if (!eap) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001642 wpa_printf(MSG_DEBUG, "Interworking: No matching credentials "
1643 "and EAP method found for " MACSTR,
1644 MAC2STR(bss->bssid));
1645 nai_realm_free(realm, count);
1646 return -1;
1647 }
1648
1649 wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR,
1650 MAC2STR(bss->bssid));
1651
Dmitry Shmidt54605472013-11-08 11:10:19 -08001652 if (already_connected(wpa_s, cred, bss)) {
1653 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
1654 MAC2STR(bss->bssid));
1655 nai_realm_free(realm, count);
1656 return 0;
1657 }
1658
1659 remove_duplicate_network(wpa_s, cred, bss);
1660
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001661 ssid = wpa_config_add_network(wpa_s->conf);
1662 if (ssid == NULL) {
1663 nai_realm_free(realm, count);
1664 return -1;
1665 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001666 ssid->parent_cred = cred;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001667 wpas_notify_network_added(wpa_s, ssid);
1668 wpa_config_set_network_defaults(ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001669 ssid->priority = cred->priority;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001670 ssid->temporary = 1;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001671 ssid->ssid = os_zalloc(bss->ssid_len + 1);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001672 if (ssid->ssid == NULL)
1673 goto fail;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001674 os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
1675 ssid->ssid_len = bss->ssid_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001676
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001677 if (interworking_set_hs20_params(wpa_s, ssid) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001678 goto fail;
1679
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001680 if (wpa_config_set(ssid, "eap", eap_get_name(EAP_VENDOR_IETF,
1681 eap->method), 0) < 0)
1682 goto fail;
1683
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001684 switch (eap->method) {
1685 case EAP_TYPE_TTLS:
1686 if (eap->inner_method) {
1687 os_snprintf(buf, sizeof(buf), "\"autheap=%s\"",
1688 eap_get_name(EAP_VENDOR_IETF,
1689 eap->inner_method));
1690 if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
1691 goto fail;
1692 break;
1693 }
1694 switch (eap->inner_non_eap) {
1695 case NAI_REALM_INNER_NON_EAP_PAP:
1696 if (wpa_config_set(ssid, "phase2", "\"auth=PAP\"", 0) <
1697 0)
1698 goto fail;
1699 break;
1700 case NAI_REALM_INNER_NON_EAP_CHAP:
1701 if (wpa_config_set(ssid, "phase2", "\"auth=CHAP\"", 0)
1702 < 0)
1703 goto fail;
1704 break;
1705 case NAI_REALM_INNER_NON_EAP_MSCHAP:
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08001706 if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAP\"",
1707 0) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001708 goto fail;
1709 break;
1710 case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
1711 if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
1712 0) < 0)
1713 goto fail;
1714 break;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001715 default:
1716 /* EAP params were not set - assume TTLS/MSCHAPv2 */
1717 if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
1718 0) < 0)
1719 goto fail;
1720 break;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001721 }
1722 break;
1723 case EAP_TYPE_PEAP:
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001724 case EAP_TYPE_FAST:
1725 if (wpa_config_set(ssid, "phase1", "\"fast_provisioning=2\"",
1726 0) < 0)
1727 goto fail;
1728 if (wpa_config_set(ssid, "pac_file",
1729 "\"blob://pac_interworking\"", 0) < 0)
1730 goto fail;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001731 os_snprintf(buf, sizeof(buf), "\"auth=%s\"",
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001732 eap_get_name(EAP_VENDOR_IETF,
1733 eap->inner_method ?
1734 eap->inner_method :
1735 EAP_TYPE_MSCHAPV2));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001736 if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
1737 goto fail;
1738 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001739 case EAP_TYPE_TLS:
1740 break;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001741 }
1742
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001743 if (interworking_set_eap_params(ssid, cred,
1744 eap->method == EAP_TYPE_TTLS) < 0)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001745 goto fail;
1746
1747 nai_realm_free(realm, count);
1748
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001749 wpa_s->next_ssid = ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001750 wpa_config_update_prio_list(wpa_s->conf);
1751 interworking_reconnect(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001752
1753 return 0;
1754
1755fail:
1756 wpas_notify_network_removed(wpa_s, ssid);
1757 wpa_config_remove_network(wpa_s->conf, ssid->id);
1758 nai_realm_free(realm, count);
1759 return -1;
1760}
1761
1762
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001763int interworking_connect(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
1764{
1765 return interworking_connect_helper(wpa_s, bss, 1);
1766}
1767
1768
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001769#ifdef PCSC_FUNCS
1770static int interworking_pcsc_read_imsi(struct wpa_supplicant *wpa_s)
1771{
1772 size_t len;
1773
1774 if (wpa_s->imsi[0] && wpa_s->mnc_len)
1775 return 0;
1776
1777 len = sizeof(wpa_s->imsi) - 1;
1778 if (scard_get_imsi(wpa_s->scard, wpa_s->imsi, &len)) {
1779 scard_deinit(wpa_s->scard);
1780 wpa_s->scard = NULL;
1781 wpa_msg(wpa_s, MSG_ERROR, "Could not read IMSI");
1782 return -1;
1783 }
1784 wpa_s->imsi[len] = '\0';
1785 wpa_s->mnc_len = scard_get_mnc_len(wpa_s->scard);
1786 wpa_printf(MSG_DEBUG, "SCARD: IMSI %s (MNC length %d)",
1787 wpa_s->imsi, wpa_s->mnc_len);
1788
1789 return 0;
1790}
1791#endif /* PCSC_FUNCS */
1792
1793
Dmitry Shmidt04949592012-07-19 12:16:46 -07001794static struct wpa_cred * interworking_credentials_available_3gpp(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001795 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
1796 int *excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001797{
Dmitry Shmidt2f3b8de2013-03-01 09:32:50 -08001798 struct wpa_cred *selected = NULL;
1799#ifdef INTERWORKING_3GPP
1800 struct wpa_cred *cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001801 int ret;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001802 int is_excluded = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001803
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001804 if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001805 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001806
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08001807#ifdef CONFIG_EAP_PROXY
1808 if (!wpa_s->imsi[0]) {
1809 size_t len;
1810 wpa_printf(MSG_DEBUG, "Interworking: IMSI not available - try to read again through eap_proxy");
1811 wpa_s->mnc_len = eapol_sm_get_eap_proxy_imsi(wpa_s->eapol,
1812 wpa_s->imsi,
1813 &len);
1814 if (wpa_s->mnc_len > 0) {
1815 wpa_s->imsi[len] = '\0';
1816 wpa_printf(MSG_DEBUG, "eap_proxy: IMSI %s (MNC length %d)",
1817 wpa_s->imsi, wpa_s->mnc_len);
1818 } else {
1819 wpa_printf(MSG_DEBUG, "eap_proxy: IMSI not available");
1820 }
1821 }
1822#endif /* CONFIG_EAP_PROXY */
1823
Dmitry Shmidt04949592012-07-19 12:16:46 -07001824 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1825 char *sep;
1826 const char *imsi;
1827 int mnc_len;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001828 char imsi_buf[16];
1829 size_t msin_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001830
Dmitry Shmidt04949592012-07-19 12:16:46 -07001831#ifdef PCSC_FUNCS
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001832 if (cred->pcsc && wpa_s->scard) {
1833 if (interworking_pcsc_read_imsi(wpa_s) < 0)
1834 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001835 imsi = wpa_s->imsi;
1836 mnc_len = wpa_s->mnc_len;
1837 goto compare;
1838 }
1839#endif /* PCSC_FUNCS */
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001840#ifdef CONFIG_EAP_PROXY
1841 if (cred->pcsc && wpa_s->mnc_len > 0 && wpa_s->imsi[0]) {
1842 imsi = wpa_s->imsi;
1843 mnc_len = wpa_s->mnc_len;
1844 goto compare;
1845 }
1846#endif /* CONFIG_EAP_PROXY */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001847
1848 if (cred->imsi == NULL || !cred->imsi[0] ||
Dmitry Shmidt051af732013-10-22 13:52:46 -07001849 (!wpa_s->conf->external_sim &&
1850 (cred->milenage == NULL || !cred->milenage[0])))
Dmitry Shmidt04949592012-07-19 12:16:46 -07001851 continue;
1852
1853 sep = os_strchr(cred->imsi, '-');
1854 if (sep == NULL ||
1855 (sep - cred->imsi != 5 && sep - cred->imsi != 6))
1856 continue;
1857 mnc_len = sep - cred->imsi - 3;
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001858 os_memcpy(imsi_buf, cred->imsi, 3 + mnc_len);
1859 sep++;
1860 msin_len = os_strlen(cred->imsi);
1861 if (3 + mnc_len + msin_len >= sizeof(imsi_buf) - 1)
1862 msin_len = sizeof(imsi_buf) - 3 - mnc_len - 1;
1863 os_memcpy(&imsi_buf[3 + mnc_len], sep, msin_len);
1864 imsi_buf[3 + mnc_len + msin_len] = '\0';
1865 imsi = imsi_buf;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001866
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001867#if defined(PCSC_FUNCS) || defined(CONFIG_EAP_PROXY)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001868 compare:
Dmitry Shmidt34af3062013-07-11 10:46:32 -07001869#endif /* PCSC_FUNCS || CONFIG_EAP_PROXY */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001870 wpa_printf(MSG_DEBUG, "Interworking: Parsing 3GPP info from "
1871 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001872 ret = plmn_id_match(bss->anqp->anqp_3gpp, imsi, mnc_len);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001873 wpa_printf(MSG_DEBUG, "PLMN match %sfound", ret ? "" : "not ");
1874 if (ret) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001875 if (cred_no_required_oi_match(cred, bss))
1876 continue;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001877 if (!ignore_bw &&
1878 cred_below_min_backhaul(wpa_s, cred, bss))
1879 continue;
1880 if (!ignore_bw &&
1881 cred_over_max_bss_load(wpa_s, cred, bss))
1882 continue;
1883 if (!ignore_bw &&
1884 cred_conn_capab_missing(wpa_s, cred, bss))
1885 continue;
1886 if (cred_excluded_ssid(cred, bss)) {
1887 if (excluded == NULL)
1888 continue;
1889 if (selected == NULL) {
1890 selected = cred;
1891 is_excluded = 1;
1892 }
1893 } else {
1894 if (selected == NULL || is_excluded ||
1895 cred_prio_cmp(selected, cred) < 0) {
1896 selected = cred;
1897 is_excluded = 0;
1898 }
1899 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001900 }
1901 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001902
1903 if (excluded)
1904 *excluded = is_excluded;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001905#endif /* INTERWORKING_3GPP */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001906 return selected;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001907}
1908
1909
Dmitry Shmidt04949592012-07-19 12:16:46 -07001910static struct wpa_cred * interworking_credentials_available_realm(
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001911 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
1912 int *excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001913{
Dmitry Shmidt04949592012-07-19 12:16:46 -07001914 struct wpa_cred *cred, *selected = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001915 struct nai_realm *realm;
1916 u16 count, i;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001917 int is_excluded = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001918
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001919 if (bss->anqp == NULL || bss->anqp->nai_realm == NULL)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001920 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001921
Dmitry Shmidt04949592012-07-19 12:16:46 -07001922 if (wpa_s->conf->cred == NULL)
1923 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001924
1925 wpa_printf(MSG_DEBUG, "Interworking: Parsing NAI Realm list from "
1926 MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07001927 realm = nai_realm_parse(bss->anqp->nai_realm, &count);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001928 if (realm == NULL) {
1929 wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
1930 "Realm list from " MACSTR, MAC2STR(bss->bssid));
Dmitry Shmidt04949592012-07-19 12:16:46 -07001931 return NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001932 }
1933
Dmitry Shmidt04949592012-07-19 12:16:46 -07001934 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
1935 if (cred->realm == NULL)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001936 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001937
1938 for (i = 0; i < count; i++) {
1939 if (!nai_realm_match(&realm[i], cred->realm))
1940 continue;
1941 if (nai_realm_find_eap(cred, &realm[i])) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001942 if (cred_no_required_oi_match(cred, bss))
1943 continue;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001944 if (!ignore_bw &&
1945 cred_below_min_backhaul(wpa_s, cred, bss))
1946 continue;
1947 if (!ignore_bw &&
1948 cred_over_max_bss_load(wpa_s, cred, bss))
1949 continue;
1950 if (!ignore_bw &&
1951 cred_conn_capab_missing(wpa_s, cred, bss))
1952 continue;
1953 if (cred_excluded_ssid(cred, bss)) {
1954 if (excluded == NULL)
1955 continue;
1956 if (selected == NULL) {
1957 selected = cred;
1958 is_excluded = 1;
1959 }
1960 } else {
1961 if (selected == NULL || is_excluded ||
1962 cred_prio_cmp(selected, cred) < 0)
1963 {
1964 selected = cred;
1965 is_excluded = 0;
1966 }
1967 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001968 break;
1969 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001970 }
1971 }
1972
1973 nai_realm_free(realm, count);
1974
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001975 if (excluded)
1976 *excluded = is_excluded;
1977
Dmitry Shmidt04949592012-07-19 12:16:46 -07001978 return selected;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001979}
1980
1981
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001982static struct wpa_cred * interworking_credentials_available_helper(
1983 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int ignore_bw,
1984 int *excluded)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001985{
Dmitry Shmidt04949592012-07-19 12:16:46 -07001986 struct wpa_cred *cred, *cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001987 int excluded1, excluded2;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001988
Dmitry Shmidt54605472013-11-08 11:10:19 -08001989 if (disallowed_bssid(wpa_s, bss->bssid) ||
1990 disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
1991 wpa_printf(MSG_DEBUG, "Interworking: Ignore disallowed BSS "
1992 MACSTR, MAC2STR(bss->bssid));
1993 return NULL;
1994 }
1995
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001996 cred = interworking_credentials_available_realm(wpa_s, bss, ignore_bw,
1997 &excluded1);
1998 cred2 = interworking_credentials_available_3gpp(wpa_s, bss, ignore_bw,
1999 &excluded2);
2000 if (cred && cred2 &&
2001 (cred_prio_cmp(cred2, cred) >= 0 || (!excluded2 && excluded1))) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002002 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002003 excluded1 = excluded2;
2004 }
2005 if (!cred) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002006 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002007 excluded1 = excluded2;
2008 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002009
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002010 cred2 = interworking_credentials_available_roaming_consortium(
2011 wpa_s, bss, ignore_bw, &excluded2);
2012 if (cred && cred2 &&
2013 (cred_prio_cmp(cred2, cred) >= 0 || (!excluded2 && excluded1))) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002014 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002015 excluded1 = excluded2;
2016 }
2017 if (!cred) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002018 cred = cred2;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002019 excluded1 = excluded2;
2020 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002021
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002022 if (excluded)
2023 *excluded = excluded1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002024 return cred;
2025}
2026
2027
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002028static struct wpa_cred * interworking_credentials_available(
2029 struct wpa_supplicant *wpa_s, struct wpa_bss *bss, int *excluded)
2030{
2031 struct wpa_cred *cred;
2032
2033 if (excluded)
2034 *excluded = 0;
2035 cred = interworking_credentials_available_helper(wpa_s, bss, 0,
2036 excluded);
2037 if (cred)
2038 return cred;
2039 return interworking_credentials_available_helper(wpa_s, bss, 1,
2040 excluded);
2041}
2042
2043
2044int domain_name_list_contains(struct wpabuf *domain_names,
2045 const char *domain, int exact_match)
Dmitry Shmidt04949592012-07-19 12:16:46 -07002046{
2047 const u8 *pos, *end;
2048 size_t len;
2049
2050 len = os_strlen(domain);
2051 pos = wpabuf_head(domain_names);
2052 end = pos + wpabuf_len(domain_names);
2053
2054 while (pos + 1 < end) {
2055 if (pos + 1 + pos[0] > end)
2056 break;
2057
2058 wpa_hexdump_ascii(MSG_DEBUG, "Interworking: AP domain name",
2059 pos + 1, pos[0]);
2060 if (pos[0] == len &&
2061 os_strncasecmp(domain, (const char *) (pos + 1), len) == 0)
2062 return 1;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002063 if (!exact_match && pos[0] > len && pos[pos[0] - len] == '.') {
2064 const char *ap = (const char *) (pos + 1);
2065 int offset = pos[0] - len;
2066 if (os_strncasecmp(domain, ap + offset, len) == 0)
2067 return 1;
2068 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002069
2070 pos += 1 + pos[0];
2071 }
2072
2073 return 0;
2074}
2075
2076
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002077int interworking_home_sp_cred(struct wpa_supplicant *wpa_s,
2078 struct wpa_cred *cred,
2079 struct wpabuf *domain_names)
2080{
Dmitry Shmidt051af732013-10-22 13:52:46 -07002081 size_t i;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002082 int ret = -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002083#ifdef INTERWORKING_3GPP
2084 char nai[100], *realm;
2085
2086 char *imsi = NULL;
2087 int mnc_len = 0;
2088 if (cred->imsi)
2089 imsi = cred->imsi;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002090#ifdef PCSC_FUNCS
2091 else if (cred->pcsc && wpa_s->scard) {
2092 if (interworking_pcsc_read_imsi(wpa_s) < 0)
2093 return -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002094 imsi = wpa_s->imsi;
2095 mnc_len = wpa_s->mnc_len;
2096 }
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002097#endif /* PCSC_FUNCS */
Dmitry Shmidt051af732013-10-22 13:52:46 -07002098#ifdef CONFIG_EAP_PROXY
2099 else if (cred->pcsc && wpa_s->mnc_len > 0 && wpa_s->imsi[0]) {
2100 imsi = wpa_s->imsi;
2101 mnc_len = wpa_s->mnc_len;
2102 }
2103#endif /* CONFIG_EAP_PROXY */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002104 if (domain_names &&
2105 imsi && build_root_nai(nai, sizeof(nai), imsi, mnc_len, 0) == 0) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002106 realm = os_strchr(nai, '@');
2107 if (realm)
2108 realm++;
2109 wpa_printf(MSG_DEBUG, "Interworking: Search for match "
2110 "with SIM/USIM domain %s", realm);
2111 if (realm &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002112 domain_name_list_contains(domain_names, realm, 1))
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002113 return 1;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002114 if (realm)
2115 ret = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002116 }
2117#endif /* INTERWORKING_3GPP */
2118
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002119 if (domain_names == NULL || cred->domain == NULL)
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002120 return ret;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002121
Dmitry Shmidt051af732013-10-22 13:52:46 -07002122 for (i = 0; i < cred->num_domain; i++) {
2123 wpa_printf(MSG_DEBUG, "Interworking: Search for match with "
2124 "home SP FQDN %s", cred->domain[i]);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002125 if (domain_name_list_contains(domain_names, cred->domain[i], 1))
Dmitry Shmidt051af732013-10-22 13:52:46 -07002126 return 1;
2127 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002128
2129 return 0;
2130}
2131
2132
Dmitry Shmidt04949592012-07-19 12:16:46 -07002133static int interworking_home_sp(struct wpa_supplicant *wpa_s,
2134 struct wpabuf *domain_names)
2135{
2136 struct wpa_cred *cred;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002137
2138 if (domain_names == NULL || wpa_s->conf->cred == NULL)
2139 return -1;
2140
2141 for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002142 int res = interworking_home_sp_cred(wpa_s, cred, domain_names);
2143 if (res)
2144 return res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002145 }
2146
2147 return 0;
2148}
2149
2150
2151static int interworking_find_network_match(struct wpa_supplicant *wpa_s)
2152{
2153 struct wpa_bss *bss;
2154 struct wpa_ssid *ssid;
2155
2156 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
2157 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
2158 if (wpas_network_disabled(wpa_s, ssid) ||
2159 ssid->mode != WPAS_MODE_INFRA)
2160 continue;
2161 if (ssid->ssid_len != bss->ssid_len ||
2162 os_memcmp(ssid->ssid, bss->ssid, ssid->ssid_len) !=
2163 0)
2164 continue;
2165 /*
2166 * TODO: Consider more accurate matching of security
2167 * configuration similarly to what is done in events.c
2168 */
2169 return 1;
2170 }
2171 }
2172
2173 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002174}
2175
2176
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002177static int roaming_partner_match(struct wpa_supplicant *wpa_s,
2178 struct roaming_partner *partner,
2179 struct wpabuf *domain_names)
2180{
2181 wpa_printf(MSG_DEBUG, "Interworking: Comparing roaming_partner info fqdn='%s' exact_match=%d priority=%u country='%s'",
2182 partner->fqdn, partner->exact_match, partner->priority,
2183 partner->country);
2184 wpa_hexdump_ascii(MSG_DEBUG, "Interworking: Domain names",
2185 wpabuf_head(domain_names),
2186 wpabuf_len(domain_names));
2187 if (!domain_name_list_contains(domain_names, partner->fqdn,
2188 partner->exact_match))
2189 return 0;
2190 /* TODO: match Country */
2191 return 1;
2192}
2193
2194
2195static u8 roaming_prio(struct wpa_supplicant *wpa_s, struct wpa_cred *cred,
2196 struct wpa_bss *bss)
2197{
2198 size_t i;
2199
2200 if (bss->anqp == NULL || bss->anqp->domain_name == NULL) {
2201 wpa_printf(MSG_DEBUG, "Interworking: No ANQP domain name info -> use default roaming partner priority 128");
2202 return 128; /* cannot check preference with domain name */
2203 }
2204
2205 if (interworking_home_sp_cred(wpa_s, cred, bss->anqp->domain_name) > 0)
2206 {
2207 wpa_printf(MSG_DEBUG, "Interworking: Determined to be home SP -> use maximum preference 0 as roaming partner priority");
2208 return 0; /* max preference for home SP network */
2209 }
2210
2211 for (i = 0; i < cred->num_roaming_partner; i++) {
2212 if (roaming_partner_match(wpa_s, &cred->roaming_partner[i],
2213 bss->anqp->domain_name)) {
2214 wpa_printf(MSG_DEBUG, "Interworking: Roaming partner preference match - priority %u",
2215 cred->roaming_partner[i].priority);
2216 return cred->roaming_partner[i].priority;
2217 }
2218 }
2219
2220 wpa_printf(MSG_DEBUG, "Interworking: No roaming partner preference match - use default roaming partner priority 128");
2221 return 128;
2222}
2223
2224
2225static struct wpa_bss * pick_best_roaming_partner(struct wpa_supplicant *wpa_s,
2226 struct wpa_bss *selected,
2227 struct wpa_cred *cred)
2228{
2229 struct wpa_bss *bss;
2230 u8 best_prio, prio;
2231 struct wpa_cred *cred2;
2232
2233 /*
2234 * Check if any other BSS is operated by a more preferred roaming
2235 * partner.
2236 */
2237
2238 best_prio = roaming_prio(wpa_s, cred, selected);
2239 wpa_printf(MSG_DEBUG, "Interworking: roaming_prio=%u for selected BSS "
2240 MACSTR " (cred=%d)", best_prio, MAC2STR(selected->bssid),
2241 cred->id);
2242
2243 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
2244 if (bss == selected)
2245 continue;
2246 cred2 = interworking_credentials_available(wpa_s, bss, NULL);
2247 if (!cred2)
2248 continue;
2249 if (!wpa_bss_get_ie(bss, WLAN_EID_RSN))
2250 continue;
2251 prio = roaming_prio(wpa_s, cred2, bss);
2252 wpa_printf(MSG_DEBUG, "Interworking: roaming_prio=%u for BSS "
2253 MACSTR " (cred=%d)", prio, MAC2STR(bss->bssid),
2254 cred2->id);
2255 if (prio < best_prio) {
2256 int bh1, bh2, load1, load2, conn1, conn2;
2257 bh1 = cred_below_min_backhaul(wpa_s, cred, selected);
2258 load1 = cred_over_max_bss_load(wpa_s, cred, selected);
2259 conn1 = cred_conn_capab_missing(wpa_s, cred, selected);
2260 bh2 = cred_below_min_backhaul(wpa_s, cred2, bss);
2261 load2 = cred_over_max_bss_load(wpa_s, cred2, bss);
2262 conn2 = cred_conn_capab_missing(wpa_s, cred2, bss);
2263 wpa_printf(MSG_DEBUG, "Interworking: old: %d %d %d new: %d %d %d",
2264 bh1, load1, conn1, bh2, load2, conn2);
2265 if (bh1 || load1 || conn1 || !(bh2 || load2 || conn2)) {
2266 wpa_printf(MSG_DEBUG, "Interworking: Better roaming partner " MACSTR " selected", MAC2STR(bss->bssid));
2267 best_prio = prio;
2268 selected = bss;
2269 }
2270 }
2271 }
2272
2273 return selected;
2274}
2275
2276
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002277static void interworking_select_network(struct wpa_supplicant *wpa_s)
2278{
Dmitry Shmidt04949592012-07-19 12:16:46 -07002279 struct wpa_bss *bss, *selected = NULL, *selected_home = NULL;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002280 struct wpa_bss *selected2 = NULL, *selected2_home = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002281 unsigned int count = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002282 const char *type;
2283 int res;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002284 struct wpa_cred *cred, *selected_cred = NULL;
2285 struct wpa_cred *selected_home_cred = NULL;
2286 struct wpa_cred *selected2_cred = NULL;
2287 struct wpa_cred *selected2_home_cred = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002288
2289 wpa_s->network_select = 0;
2290
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002291 wpa_printf(MSG_DEBUG, "Interworking: Select network (auto_select=%d)",
2292 wpa_s->auto_select);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002293 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002294 int excluded = 0;
2295 int bh, bss_load, conn_capab;
2296 cred = interworking_credentials_available(wpa_s, bss,
2297 &excluded);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002298 if (!cred)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002299 continue;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002300 if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
2301 /*
2302 * We currently support only HS 2.0 networks and those
2303 * are required to use WPA2-Enterprise.
2304 */
2305 wpa_printf(MSG_DEBUG, "Interworking: Credential match "
2306 "with " MACSTR " but network does not use "
2307 "RSN", MAC2STR(bss->bssid));
2308 continue;
2309 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002310 if (!excluded)
2311 count++;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002312 res = interworking_home_sp(wpa_s, bss->anqp ?
2313 bss->anqp->domain_name : NULL);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002314 if (res > 0)
2315 type = "home";
2316 else if (res == 0)
2317 type = "roaming";
2318 else
2319 type = "unknown";
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002320 bh = cred_below_min_backhaul(wpa_s, cred, bss);
2321 bss_load = cred_over_max_bss_load(wpa_s, cred, bss);
2322 conn_capab = cred_conn_capab_missing(wpa_s, cred, bss);
2323 wpa_msg(wpa_s, MSG_INFO, "%s" MACSTR " type=%s%s%s%s id=%d priority=%d sp_priority=%d",
2324 excluded ? INTERWORKING_BLACKLISTED : INTERWORKING_AP,
2325 MAC2STR(bss->bssid), type,
2326 bh ? " below_min_backhaul=1" : "",
2327 bss_load ? " over_max_bss_load=1" : "",
2328 conn_capab ? " conn_capab_missing=1" : "",
2329 cred->id, cred->priority, cred->sp_priority);
2330 if (excluded)
2331 continue;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002332 if (wpa_s->auto_select ||
2333 (wpa_s->conf->auto_interworking &&
2334 wpa_s->auto_network_select)) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002335 if (bh || bss_load || conn_capab) {
2336 if (selected2_cred == NULL ||
2337 cred_prio_cmp(cred, selected2_cred) > 0) {
2338 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected2");
2339 selected2 = bss;
2340 selected2_cred = cred;
2341 }
2342 if (res > 0 &&
2343 (selected2_home_cred == NULL ||
2344 cred_prio_cmp(cred, selected2_home_cred) >
2345 0)) {
2346 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected2_home");
2347 selected2_home = bss;
2348 selected2_home_cred = cred;
2349 }
2350 } else {
2351 if (selected_cred == NULL ||
2352 cred_prio_cmp(cred, selected_cred) > 0) {
2353 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected");
2354 selected = bss;
2355 selected_cred = cred;
2356 }
2357 if (res > 0 &&
2358 (selected_home_cred == NULL ||
2359 cred_prio_cmp(cred, selected_home_cred) >
2360 0)) {
2361 wpa_printf(MSG_DEBUG, "Interworking: Mark as selected_home");
2362 selected_home = bss;
2363 selected_home_cred = cred;
2364 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07002365 }
2366 }
2367 }
2368
2369 if (selected_home && selected_home != selected &&
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002370 selected_home_cred &&
2371 (selected_cred == NULL ||
2372 cred_prio_cmp(selected_home_cred, selected_cred) >= 0)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002373 /* Prefer network operated by the Home SP */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002374 wpa_printf(MSG_DEBUG, "Interworking: Overrided selected with selected_home");
Dmitry Shmidt04949592012-07-19 12:16:46 -07002375 selected = selected_home;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002376 selected_cred = selected_home_cred;
2377 }
2378
2379 if (!selected) {
2380 if (selected2_home) {
2381 wpa_printf(MSG_DEBUG, "Interworking: Use home BSS with BW limit mismatch since no other network could be selected");
2382 selected = selected2_home;
2383 selected_cred = selected2_home_cred;
2384 } else if (selected2) {
2385 wpa_printf(MSG_DEBUG, "Interworking: Use visited BSS with BW limit mismatch since no other network could be selected");
2386 selected = selected2;
2387 selected_cred = selected2_cred;
2388 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002389 }
2390
2391 if (count == 0) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002392 /*
2393 * No matching network was found based on configured
2394 * credentials. Check whether any of the enabled network blocks
2395 * have matching APs.
2396 */
2397 if (interworking_find_network_match(wpa_s)) {
2398 wpa_printf(MSG_DEBUG, "Interworking: Possible BSS "
2399 "match for enabled network configurations");
Dmitry Shmidt71757432014-06-02 13:50:35 -07002400 if (wpa_s->auto_select) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002401 interworking_reconnect(wpa_s);
Dmitry Shmidt71757432014-06-02 13:50:35 -07002402 return;
2403 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002404 }
2405
2406 if (wpa_s->auto_network_select) {
2407 wpa_printf(MSG_DEBUG, "Interworking: Continue "
2408 "scanning after ANQP fetch");
2409 wpa_supplicant_req_scan(wpa_s, wpa_s->scan_interval,
2410 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002411 return;
2412 }
2413
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002414 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_NO_MATCH "No network "
2415 "with matching credentials found");
2416 }
2417
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002418 if (selected) {
2419 wpa_printf(MSG_DEBUG, "Interworking: Selected " MACSTR,
2420 MAC2STR(selected->bssid));
2421 selected = pick_best_roaming_partner(wpa_s, selected,
2422 selected_cred);
2423 wpa_printf(MSG_DEBUG, "Interworking: Selected " MACSTR
2424 " (after best roaming partner selection)",
2425 MAC2STR(selected->bssid));
2426 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_SELECTED MACSTR,
2427 MAC2STR(selected->bssid));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002428 interworking_connect(wpa_s, selected);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002429 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002430}
2431
2432
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002433static struct wpa_bss_anqp *
2434interworking_match_anqp_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
2435{
2436 struct wpa_bss *other;
2437
2438 if (is_zero_ether_addr(bss->hessid))
2439 return NULL; /* Cannot be in the same homegenous ESS */
2440
2441 dl_list_for_each(other, &wpa_s->bss, struct wpa_bss, list) {
2442 if (other == bss)
2443 continue;
2444 if (other->anqp == NULL)
2445 continue;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002446 if (other->anqp->roaming_consortium == NULL &&
2447 other->anqp->nai_realm == NULL &&
2448 other->anqp->anqp_3gpp == NULL &&
2449 other->anqp->domain_name == NULL)
2450 continue;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002451 if (!(other->flags & WPA_BSS_ANQP_FETCH_TRIED))
2452 continue;
2453 if (os_memcmp(bss->hessid, other->hessid, ETH_ALEN) != 0)
2454 continue;
2455 if (bss->ssid_len != other->ssid_len ||
2456 os_memcmp(bss->ssid, other->ssid, bss->ssid_len) != 0)
2457 continue;
2458
2459 wpa_printf(MSG_DEBUG, "Interworking: Share ANQP data with "
2460 "already fetched BSSID " MACSTR " and " MACSTR,
2461 MAC2STR(other->bssid), MAC2STR(bss->bssid));
2462 other->anqp->users++;
2463 return other->anqp;
2464 }
2465
2466 return NULL;
2467}
2468
2469
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002470static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s)
2471{
2472 struct wpa_bss *bss;
2473 int found = 0;
2474 const u8 *ie;
2475
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002476 wpa_printf(MSG_DEBUG, "Interworking: next_anqp_fetch - "
2477 "fetch_anqp_in_progress=%d fetch_osu_icon_in_progress=%d",
2478 wpa_s->fetch_anqp_in_progress,
2479 wpa_s->fetch_osu_icon_in_progress);
2480
2481 if (eloop_terminated() || !wpa_s->fetch_anqp_in_progress) {
2482 wpa_printf(MSG_DEBUG, "Interworking: Stop next-ANQP-fetch");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002483 return;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002484 }
2485
2486 if (wpa_s->fetch_osu_icon_in_progress) {
2487 wpa_printf(MSG_DEBUG, "Interworking: Next icon (in progress)");
2488 hs20_next_osu_icon(wpa_s);
2489 return;
2490 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002491
2492 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
2493 if (!(bss->caps & IEEE80211_CAP_ESS))
2494 continue;
2495 ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_CAPAB);
2496 if (ie == NULL || ie[1] < 4 || !(ie[5] & 0x80))
2497 continue; /* AP does not support Interworking */
Dmitry Shmidt54605472013-11-08 11:10:19 -08002498 if (disallowed_bssid(wpa_s, bss->bssid) ||
2499 disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len))
2500 continue; /* Disallowed BSS */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002501
2502 if (!(bss->flags & WPA_BSS_ANQP_FETCH_TRIED)) {
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002503 if (bss->anqp == NULL) {
2504 bss->anqp = interworking_match_anqp_info(wpa_s,
2505 bss);
2506 if (bss->anqp) {
2507 /* Shared data already fetched */
2508 continue;
2509 }
2510 bss->anqp = wpa_bss_anqp_alloc();
2511 if (bss->anqp == NULL)
2512 break;
2513 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002514 found++;
2515 bss->flags |= WPA_BSS_ANQP_FETCH_TRIED;
2516 wpa_msg(wpa_s, MSG_INFO, "Starting ANQP fetch for "
2517 MACSTR, MAC2STR(bss->bssid));
2518 interworking_anqp_send_req(wpa_s, bss);
2519 break;
2520 }
2521 }
2522
2523 if (found == 0) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002524 if (wpa_s->fetch_osu_info) {
2525 if (wpa_s->num_prov_found == 0 &&
2526 wpa_s->num_osu_scans < 3) {
2527 wpa_printf(MSG_DEBUG, "HS 2.0: No OSU providers seen - try to scan again");
2528 hs20_start_osu_scan(wpa_s);
2529 return;
2530 }
2531 wpa_printf(MSG_DEBUG, "Interworking: Next icon");
2532 hs20_osu_icon_fetch(wpa_s);
2533 return;
2534 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002535 wpa_msg(wpa_s, MSG_INFO, "ANQP fetch completed");
2536 wpa_s->fetch_anqp_in_progress = 0;
2537 if (wpa_s->network_select)
2538 interworking_select_network(wpa_s);
2539 }
2540}
2541
2542
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002543void interworking_start_fetch_anqp(struct wpa_supplicant *wpa_s)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002544{
2545 struct wpa_bss *bss;
2546
2547 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list)
2548 bss->flags &= ~WPA_BSS_ANQP_FETCH_TRIED;
2549
2550 wpa_s->fetch_anqp_in_progress = 1;
2551 interworking_next_anqp_fetch(wpa_s);
2552}
2553
2554
2555int interworking_fetch_anqp(struct wpa_supplicant *wpa_s)
2556{
2557 if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select)
2558 return 0;
2559
2560 wpa_s->network_select = 0;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002561 wpa_s->fetch_all_anqp = 1;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002562 wpa_s->fetch_osu_info = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002563
2564 interworking_start_fetch_anqp(wpa_s);
2565
2566 return 0;
2567}
2568
2569
2570void interworking_stop_fetch_anqp(struct wpa_supplicant *wpa_s)
2571{
2572 if (!wpa_s->fetch_anqp_in_progress)
2573 return;
2574
2575 wpa_s->fetch_anqp_in_progress = 0;
2576}
2577
2578
2579int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst,
Dmitry Shmidt15907092014-03-25 10:42:57 -07002580 u16 info_ids[], size_t num_ids, u32 subtypes)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002581{
2582 struct wpabuf *buf;
Dmitry Shmidt15907092014-03-25 10:42:57 -07002583 struct wpabuf *hs20_buf = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002584 int ret = 0;
2585 int freq;
2586 struct wpa_bss *bss;
2587 int res;
2588
2589 freq = wpa_s->assoc_freq;
2590 bss = wpa_bss_get_bssid(wpa_s, dst);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002591 if (bss) {
2592 wpa_bss_anqp_unshare_alloc(bss);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002593 freq = bss->freq;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002594 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002595 if (freq <= 0)
2596 return -1;
2597
2598 wpa_printf(MSG_DEBUG, "ANQP: Query Request to " MACSTR " for %u id(s)",
2599 MAC2STR(dst), (unsigned int) num_ids);
2600
Dmitry Shmidt15907092014-03-25 10:42:57 -07002601#ifdef CONFIG_HS20
2602 if (subtypes != 0) {
2603 hs20_buf = wpabuf_alloc(100);
2604 if (hs20_buf == NULL)
2605 return -1;
2606 hs20_put_anqp_req(subtypes, NULL, 0, hs20_buf);
2607 }
2608#endif /* CONFIG_HS20 */
2609
2610 buf = anqp_build_req(info_ids, num_ids, hs20_buf);
2611 wpabuf_free(hs20_buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002612 if (buf == NULL)
2613 return -1;
2614
2615 res = gas_query_req(wpa_s->gas, dst, freq, buf, anqp_resp_cb, wpa_s);
2616 if (res < 0) {
2617 wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
Dmitry Shmidt051af732013-10-22 13:52:46 -07002618 wpabuf_free(buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002619 ret = -1;
2620 } else
2621 wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
2622 "%u", res);
2623
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002624 return ret;
2625}
2626
2627
2628static void interworking_parse_rx_anqp_resp(struct wpa_supplicant *wpa_s,
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002629 struct wpa_bss *bss, const u8 *sa,
2630 u16 info_id,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002631 const u8 *data, size_t slen)
2632{
2633 const u8 *pos = data;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002634 struct wpa_bss_anqp *anqp = NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002635#ifdef CONFIG_HS20
2636 u8 type;
2637#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002638
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002639 if (bss)
2640 anqp = bss->anqp;
2641
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002642 switch (info_id) {
2643 case ANQP_CAPABILITY_LIST:
2644 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2645 " ANQP Capability list", MAC2STR(sa));
2646 break;
2647 case ANQP_VENUE_NAME:
2648 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2649 " Venue Name", MAC2STR(sa));
2650 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Venue Name", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002651 if (anqp) {
2652 wpabuf_free(anqp->venue_name);
2653 anqp->venue_name = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002654 }
2655 break;
2656 case ANQP_NETWORK_AUTH_TYPE:
2657 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2658 " Network Authentication Type information",
2659 MAC2STR(sa));
2660 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Network Authentication "
2661 "Type", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002662 if (anqp) {
2663 wpabuf_free(anqp->network_auth_type);
2664 anqp->network_auth_type = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002665 }
2666 break;
2667 case ANQP_ROAMING_CONSORTIUM:
2668 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2669 " Roaming Consortium list", MAC2STR(sa));
2670 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Roaming Consortium",
2671 pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002672 if (anqp) {
2673 wpabuf_free(anqp->roaming_consortium);
2674 anqp->roaming_consortium = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002675 }
2676 break;
2677 case ANQP_IP_ADDR_TYPE_AVAILABILITY:
2678 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2679 " IP Address Type Availability information",
2680 MAC2STR(sa));
2681 wpa_hexdump(MSG_MSGDUMP, "ANQP: IP Address Availability",
2682 pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002683 if (anqp) {
2684 wpabuf_free(anqp->ip_addr_type_availability);
2685 anqp->ip_addr_type_availability =
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002686 wpabuf_alloc_copy(pos, slen);
2687 }
2688 break;
2689 case ANQP_NAI_REALM:
2690 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2691 " NAI Realm list", MAC2STR(sa));
2692 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: NAI Realm", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002693 if (anqp) {
2694 wpabuf_free(anqp->nai_realm);
2695 anqp->nai_realm = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002696 }
2697 break;
2698 case ANQP_3GPP_CELLULAR_NETWORK:
2699 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2700 " 3GPP Cellular Network information", MAC2STR(sa));
2701 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: 3GPP Cellular Network",
2702 pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002703 if (anqp) {
2704 wpabuf_free(anqp->anqp_3gpp);
2705 anqp->anqp_3gpp = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002706 }
2707 break;
2708 case ANQP_DOMAIN_NAME:
2709 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
2710 " Domain Name list", MAC2STR(sa));
2711 wpa_hexdump_ascii(MSG_MSGDUMP, "ANQP: Domain Name", pos, slen);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002712 if (anqp) {
2713 wpabuf_free(anqp->domain_name);
2714 anqp->domain_name = wpabuf_alloc_copy(pos, slen);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002715 }
2716 break;
2717 case ANQP_VENDOR_SPECIFIC:
2718 if (slen < 3)
2719 return;
2720
2721 switch (WPA_GET_BE24(pos)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002722#ifdef CONFIG_HS20
2723 case OUI_WFA:
2724 pos += 3;
2725 slen -= 3;
2726
2727 if (slen < 1)
2728 return;
2729 type = *pos++;
2730 slen--;
2731
2732 switch (type) {
2733 case HS20_ANQP_OUI_TYPE:
2734 hs20_parse_rx_hs20_anqp_resp(wpa_s, sa, pos,
2735 slen);
2736 break;
2737 default:
2738 wpa_printf(MSG_DEBUG, "HS20: Unsupported ANQP "
2739 "vendor type %u", type);
2740 break;
2741 }
2742 break;
2743#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002744 default:
2745 wpa_printf(MSG_DEBUG, "Interworking: Unsupported "
2746 "vendor-specific ANQP OUI %06x",
2747 WPA_GET_BE24(pos));
2748 return;
2749 }
2750 break;
2751 default:
2752 wpa_printf(MSG_DEBUG, "Interworking: Unsupported ANQP Info ID "
2753 "%u", info_id);
2754 break;
2755 }
2756}
2757
2758
2759void anqp_resp_cb(void *ctx, const u8 *dst, u8 dialog_token,
2760 enum gas_query_result result,
2761 const struct wpabuf *adv_proto,
2762 const struct wpabuf *resp, u16 status_code)
2763{
2764 struct wpa_supplicant *wpa_s = ctx;
2765 const u8 *pos;
2766 const u8 *end;
2767 u16 info_id;
2768 u16 slen;
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002769 struct wpa_bss *bss = NULL, *tmp;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002770
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002771 wpa_printf(MSG_DEBUG, "Interworking: anqp_resp_cb dst=" MACSTR
2772 " dialog_token=%u result=%d status_code=%u",
2773 MAC2STR(dst), dialog_token, result, status_code);
2774 if (result != GAS_QUERY_SUCCESS) {
2775 if (wpa_s->fetch_osu_icon_in_progress)
2776 hs20_icon_fetch_failed(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002777 return;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002778 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002779
2780 pos = wpabuf_head(adv_proto);
2781 if (wpabuf_len(adv_proto) < 4 || pos[0] != WLAN_EID_ADV_PROTO ||
2782 pos[1] < 2 || pos[3] != ACCESS_NETWORK_QUERY_PROTOCOL) {
2783 wpa_printf(MSG_DEBUG, "ANQP: Unexpected Advertisement "
2784 "Protocol in response");
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002785 if (wpa_s->fetch_osu_icon_in_progress)
2786 hs20_icon_fetch_failed(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002787 return;
2788 }
2789
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002790 /*
2791 * If possible, select the BSS entry based on which BSS entry was used
2792 * for the request. This can help in cases where multiple BSS entries
2793 * may exist for the same AP.
2794 */
2795 dl_list_for_each_reverse(tmp, &wpa_s->bss, struct wpa_bss, list) {
2796 if (tmp == wpa_s->interworking_gas_bss &&
2797 os_memcmp(tmp->bssid, dst, ETH_ALEN) == 0) {
2798 bss = tmp;
2799 break;
2800 }
2801 }
2802 if (bss == NULL)
2803 bss = wpa_bss_get_bssid(wpa_s, dst);
2804
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002805 pos = wpabuf_head(resp);
2806 end = pos + wpabuf_len(resp);
2807
2808 while (pos < end) {
2809 if (pos + 4 > end) {
2810 wpa_printf(MSG_DEBUG, "ANQP: Invalid element");
2811 break;
2812 }
2813 info_id = WPA_GET_LE16(pos);
2814 pos += 2;
2815 slen = WPA_GET_LE16(pos);
2816 pos += 2;
2817 if (pos + slen > end) {
2818 wpa_printf(MSG_DEBUG, "ANQP: Invalid element length "
2819 "for Info ID %u", info_id);
2820 break;
2821 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07002822 interworking_parse_rx_anqp_resp(wpa_s, bss, dst, info_id, pos,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002823 slen);
2824 pos += slen;
2825 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002826
2827 hs20_notify_parse_done(wpa_s);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002828}
2829
2830
2831static void interworking_scan_res_handler(struct wpa_supplicant *wpa_s,
2832 struct wpa_scan_results *scan_res)
2833{
2834 wpa_printf(MSG_DEBUG, "Interworking: Scan results available - start "
2835 "ANQP fetch");
2836 interworking_start_fetch_anqp(wpa_s);
2837}
2838
2839
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002840int interworking_select(struct wpa_supplicant *wpa_s, int auto_select,
2841 int *freqs)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002842{
2843 interworking_stop_fetch_anqp(wpa_s);
2844 wpa_s->network_select = 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002845 wpa_s->auto_network_select = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002846 wpa_s->auto_select = !!auto_select;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -07002847 wpa_s->fetch_all_anqp = 0;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002848 wpa_s->fetch_osu_info = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002849 wpa_printf(MSG_DEBUG, "Interworking: Start scan for network "
2850 "selection");
2851 wpa_s->scan_res_handler = interworking_scan_res_handler;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002852 wpa_s->normal_scans = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002853 wpa_s->scan_req = MANUAL_SCAN_REQ;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002854 os_free(wpa_s->manual_scan_freqs);
2855 wpa_s->manual_scan_freqs = freqs;
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002856 wpa_s->after_wps = 0;
2857 wpa_s->known_wps_freq = 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002858 wpa_supplicant_req_scan(wpa_s, 0, 0);
2859
2860 return 0;
2861}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002862
2863
2864static void gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
2865 enum gas_query_result result,
2866 const struct wpabuf *adv_proto,
2867 const struct wpabuf *resp, u16 status_code)
2868{
2869 struct wpa_supplicant *wpa_s = ctx;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002870 struct wpabuf *n;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002871
2872 wpa_msg(wpa_s, MSG_INFO, GAS_RESPONSE_INFO "addr=" MACSTR
2873 " dialog_token=%d status_code=%d resp_len=%d",
2874 MAC2STR(addr), dialog_token, status_code,
2875 resp ? (int) wpabuf_len(resp) : -1);
2876 if (!resp)
2877 return;
2878
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002879 n = wpabuf_dup(resp);
2880 if (n == NULL)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002881 return;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002882 wpabuf_free(wpa_s->prev_gas_resp);
2883 wpa_s->prev_gas_resp = wpa_s->last_gas_resp;
2884 os_memcpy(wpa_s->prev_gas_addr, wpa_s->last_gas_addr, ETH_ALEN);
2885 wpa_s->prev_gas_dialog_token = wpa_s->last_gas_dialog_token;
2886 wpa_s->last_gas_resp = n;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002887 os_memcpy(wpa_s->last_gas_addr, addr, ETH_ALEN);
2888 wpa_s->last_gas_dialog_token = dialog_token;
2889}
2890
2891
2892int gas_send_request(struct wpa_supplicant *wpa_s, const u8 *dst,
2893 const struct wpabuf *adv_proto,
2894 const struct wpabuf *query)
2895{
2896 struct wpabuf *buf;
2897 int ret = 0;
2898 int freq;
2899 struct wpa_bss *bss;
2900 int res;
2901 size_t len;
2902 u8 query_resp_len_limit = 0, pame_bi = 0;
2903
2904 freq = wpa_s->assoc_freq;
2905 bss = wpa_bss_get_bssid(wpa_s, dst);
2906 if (bss)
2907 freq = bss->freq;
2908 if (freq <= 0)
2909 return -1;
2910
2911 wpa_printf(MSG_DEBUG, "GAS request to " MACSTR " (freq %d MHz)",
2912 MAC2STR(dst), freq);
2913 wpa_hexdump_buf(MSG_DEBUG, "Advertisement Protocol ID", adv_proto);
2914 wpa_hexdump_buf(MSG_DEBUG, "GAS Query", query);
2915
2916 len = 3 + wpabuf_len(adv_proto) + 2;
2917 if (query)
2918 len += wpabuf_len(query);
2919 buf = gas_build_initial_req(0, len);
2920 if (buf == NULL)
2921 return -1;
2922
2923 /* Advertisement Protocol IE */
2924 wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
2925 wpabuf_put_u8(buf, 1 + wpabuf_len(adv_proto)); /* Length */
2926 wpabuf_put_u8(buf, (query_resp_len_limit & 0x7f) |
2927 (pame_bi ? 0x80 : 0));
2928 wpabuf_put_buf(buf, adv_proto);
2929
2930 /* GAS Query */
2931 if (query) {
2932 wpabuf_put_le16(buf, wpabuf_len(query));
2933 wpabuf_put_buf(buf, query);
2934 } else
2935 wpabuf_put_le16(buf, 0);
2936
2937 res = gas_query_req(wpa_s->gas, dst, freq, buf, gas_resp_cb, wpa_s);
2938 if (res < 0) {
2939 wpa_printf(MSG_DEBUG, "GAS: Failed to send Query Request");
Dmitry Shmidt051af732013-10-22 13:52:46 -07002940 wpabuf_free(buf);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002941 ret = -1;
2942 } else
2943 wpa_printf(MSG_DEBUG, "GAS: Query started with dialog token "
2944 "%u", res);
2945
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002946 return ret;
2947}