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