Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * wpa_supplicant - WNM |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 3 | * Copyright (c) 2011-2013, Qualcomm Atheros, Inc. |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 4 | * |
| 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
| 7 | */ |
| 8 | |
| 9 | #include "utils/includes.h" |
| 10 | |
| 11 | #include "utils/common.h" |
| 12 | #include "common/ieee802_11_defs.h" |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 13 | #include "common/ieee802_11_common.h" |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 14 | #include "common/wpa_ctrl.h" |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 15 | #include "rsn_supp/wpa.h" |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 16 | #include "config.h" |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 17 | #include "wpa_supplicant_i.h" |
| 18 | #include "driver_i.h" |
| 19 | #include "scan.h" |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 20 | #include "ctrl_iface.h" |
| 21 | #include "bss.h" |
| 22 | #include "wnm_sta.h" |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 23 | #include "hs20_supplicant.h" |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 24 | |
| 25 | #define MAX_TFS_IE_LEN 1024 |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 26 | #define WNM_MAX_NEIGHBOR_REPORT 10 |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 27 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 28 | #define WNM_SCAN_RESULT_AGE 2 /* 2 seconds */ |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 29 | |
| 30 | /* get the TFS IE from driver */ |
| 31 | static int ieee80211_11_get_tfs_ie(struct wpa_supplicant *wpa_s, u8 *buf, |
| 32 | u16 *buf_len, enum wnm_oper oper) |
| 33 | { |
| 34 | wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper); |
| 35 | |
| 36 | return wpa_drv_wnm_oper(wpa_s, oper, wpa_s->bssid, buf, buf_len); |
| 37 | } |
| 38 | |
| 39 | |
| 40 | /* set the TFS IE to driver */ |
| 41 | static int ieee80211_11_set_tfs_ie(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 42 | const u8 *addr, const u8 *buf, u16 buf_len, |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 43 | enum wnm_oper oper) |
| 44 | { |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 45 | u16 len = buf_len; |
| 46 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 47 | wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper); |
| 48 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 49 | return wpa_drv_wnm_oper(wpa_s, oper, addr, (u8 *) buf, &len); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | |
| 53 | /* MLME-SLEEPMODE.request */ |
| 54 | int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 55 | u8 action, u16 intval, struct wpabuf *tfs_req) |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 56 | { |
| 57 | struct ieee80211_mgmt *mgmt; |
| 58 | int res; |
| 59 | size_t len; |
| 60 | struct wnm_sleep_element *wnmsleep_ie; |
| 61 | u8 *wnmtfs_ie; |
| 62 | u8 wnmsleep_ie_len; |
| 63 | u16 wnmtfs_ie_len; /* possibly multiple IE(s) */ |
| 64 | enum wnm_oper tfs_oper = action == 0 ? WNM_SLEEP_TFS_REQ_IE_ADD : |
| 65 | WNM_SLEEP_TFS_REQ_IE_NONE; |
| 66 | |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 67 | wpa_printf(MSG_DEBUG, "WNM: Request to send WNM-Sleep Mode Request " |
| 68 | "action=%s to " MACSTR, |
| 69 | action == 0 ? "enter" : "exit", |
| 70 | MAC2STR(wpa_s->bssid)); |
| 71 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 72 | /* WNM-Sleep Mode IE */ |
| 73 | wnmsleep_ie_len = sizeof(struct wnm_sleep_element); |
| 74 | wnmsleep_ie = os_zalloc(sizeof(struct wnm_sleep_element)); |
| 75 | if (wnmsleep_ie == NULL) |
| 76 | return -1; |
| 77 | wnmsleep_ie->eid = WLAN_EID_WNMSLEEP; |
| 78 | wnmsleep_ie->len = wnmsleep_ie_len - 2; |
| 79 | wnmsleep_ie->action_type = action; |
| 80 | wnmsleep_ie->status = WNM_STATUS_SLEEP_ACCEPT; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 81 | wnmsleep_ie->intval = host_to_le16(intval); |
| 82 | wpa_hexdump(MSG_DEBUG, "WNM: WNM-Sleep Mode element", |
| 83 | (u8 *) wnmsleep_ie, wnmsleep_ie_len); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 84 | |
| 85 | /* TFS IE(s) */ |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 86 | if (tfs_req) { |
| 87 | wnmtfs_ie_len = wpabuf_len(tfs_req); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 88 | wnmtfs_ie = os_memdup(wpabuf_head(tfs_req), wnmtfs_ie_len); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 89 | if (wnmtfs_ie == NULL) { |
| 90 | os_free(wnmsleep_ie); |
| 91 | return -1; |
| 92 | } |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 93 | } else { |
| 94 | wnmtfs_ie = os_zalloc(MAX_TFS_IE_LEN); |
| 95 | if (wnmtfs_ie == NULL) { |
| 96 | os_free(wnmsleep_ie); |
| 97 | return -1; |
| 98 | } |
| 99 | if (ieee80211_11_get_tfs_ie(wpa_s, wnmtfs_ie, &wnmtfs_ie_len, |
| 100 | tfs_oper)) { |
| 101 | wnmtfs_ie_len = 0; |
| 102 | os_free(wnmtfs_ie); |
| 103 | wnmtfs_ie = NULL; |
| 104 | } |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 105 | } |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 106 | wpa_hexdump(MSG_DEBUG, "WNM: TFS Request element", |
| 107 | (u8 *) wnmtfs_ie, wnmtfs_ie_len); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 108 | |
| 109 | mgmt = os_zalloc(sizeof(*mgmt) + wnmsleep_ie_len + wnmtfs_ie_len); |
| 110 | if (mgmt == NULL) { |
| 111 | wpa_printf(MSG_DEBUG, "MLME: Failed to allocate buffer for " |
| 112 | "WNM-Sleep Request action frame"); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 113 | os_free(wnmsleep_ie); |
| 114 | os_free(wnmtfs_ie); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 115 | return -1; |
| 116 | } |
| 117 | |
| 118 | os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN); |
| 119 | os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN); |
| 120 | os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN); |
| 121 | mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, |
| 122 | WLAN_FC_STYPE_ACTION); |
| 123 | mgmt->u.action.category = WLAN_ACTION_WNM; |
| 124 | mgmt->u.action.u.wnm_sleep_req.action = WNM_SLEEP_MODE_REQ; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 125 | mgmt->u.action.u.wnm_sleep_req.dialogtoken = 1; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 126 | os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable, wnmsleep_ie, |
| 127 | wnmsleep_ie_len); |
| 128 | /* copy TFS IE here */ |
| 129 | if (wnmtfs_ie_len > 0) { |
| 130 | os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable + |
| 131 | wnmsleep_ie_len, wnmtfs_ie, wnmtfs_ie_len); |
| 132 | } |
| 133 | |
| 134 | len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_req) + wnmsleep_ie_len + |
| 135 | wnmtfs_ie_len; |
| 136 | |
| 137 | res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid, |
| 138 | wpa_s->own_addr, wpa_s->bssid, |
| 139 | &mgmt->u.action.category, len, 0); |
| 140 | if (res < 0) |
| 141 | wpa_printf(MSG_DEBUG, "Failed to send WNM-Sleep Request " |
| 142 | "(action=%d, intval=%d)", action, intval); |
Dmitry Shmidt | b70d0bb | 2015-11-16 10:43:06 -0800 | [diff] [blame] | 143 | else |
| 144 | wpa_s->wnmsleep_used = 1; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 145 | |
| 146 | os_free(wnmsleep_ie); |
| 147 | os_free(wnmtfs_ie); |
| 148 | os_free(mgmt); |
| 149 | |
| 150 | return res; |
| 151 | } |
| 152 | |
| 153 | |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 154 | static void wnm_sleep_mode_enter_success(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 155 | const u8 *tfsresp_ie_start, |
| 156 | const u8 *tfsresp_ie_end) |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 157 | { |
| 158 | wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_CONFIRM, |
| 159 | wpa_s->bssid, NULL, NULL); |
| 160 | /* remove GTK/IGTK ?? */ |
| 161 | |
| 162 | /* set the TFS Resp IE(s) */ |
| 163 | if (tfsresp_ie_start && tfsresp_ie_end && |
| 164 | tfsresp_ie_end - tfsresp_ie_start >= 0) { |
| 165 | u16 tfsresp_ie_len; |
| 166 | tfsresp_ie_len = (tfsresp_ie_end + tfsresp_ie_end[1] + 2) - |
| 167 | tfsresp_ie_start; |
| 168 | wpa_printf(MSG_DEBUG, "TFS Resp IE(s) found"); |
| 169 | /* pass the TFS Resp IE(s) to driver for processing */ |
| 170 | if (ieee80211_11_set_tfs_ie(wpa_s, wpa_s->bssid, |
| 171 | tfsresp_ie_start, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 172 | tfsresp_ie_len, |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 173 | WNM_SLEEP_TFS_RESP_IE_SET)) |
| 174 | wpa_printf(MSG_DEBUG, "WNM: Fail to set TFS Resp IE"); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | |
| 179 | static void wnm_sleep_mode_exit_success(struct wpa_supplicant *wpa_s, |
| 180 | const u8 *frm, u16 key_len_total) |
| 181 | { |
| 182 | u8 *ptr, *end; |
| 183 | u8 gtk_len; |
| 184 | |
| 185 | wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_CONFIRM, wpa_s->bssid, |
| 186 | NULL, NULL); |
| 187 | |
| 188 | /* Install GTK/IGTK */ |
| 189 | |
| 190 | /* point to key data field */ |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 191 | ptr = (u8 *) frm + 1 + 2; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 192 | end = ptr + key_len_total; |
| 193 | wpa_hexdump_key(MSG_DEBUG, "WNM: Key Data", ptr, key_len_total); |
| 194 | |
Jouni Malinen | 17de68d | 2015-11-09 15:25:41 -0800 | [diff] [blame] | 195 | if (key_len_total && !wpa_sm_pmf_enabled(wpa_s->wpa)) { |
| 196 | wpa_msg(wpa_s, MSG_INFO, |
| 197 | "WNM: Ignore Key Data in WNM-Sleep Mode Response - PMF not enabled"); |
| 198 | return; |
| 199 | } |
| 200 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 201 | while (end - ptr > 1) { |
| 202 | if (2 + ptr[1] > end - ptr) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 203 | wpa_printf(MSG_DEBUG, "WNM: Invalid Key Data element " |
| 204 | "length"); |
| 205 | if (end > ptr) { |
| 206 | wpa_hexdump(MSG_DEBUG, "WNM: Remaining data", |
| 207 | ptr, end - ptr); |
| 208 | } |
| 209 | break; |
| 210 | } |
| 211 | if (*ptr == WNM_SLEEP_SUBELEM_GTK) { |
| 212 | if (ptr[1] < 11 + 5) { |
| 213 | wpa_printf(MSG_DEBUG, "WNM: Too short GTK " |
| 214 | "subelem"); |
| 215 | break; |
| 216 | } |
| 217 | gtk_len = *(ptr + 4); |
| 218 | if (ptr[1] < 11 + gtk_len || |
| 219 | gtk_len < 5 || gtk_len > 32) { |
| 220 | wpa_printf(MSG_DEBUG, "WNM: Invalid GTK " |
| 221 | "subelem"); |
| 222 | break; |
| 223 | } |
| 224 | wpa_wnmsleep_install_key( |
| 225 | wpa_s->wpa, |
| 226 | WNM_SLEEP_SUBELEM_GTK, |
| 227 | ptr); |
| 228 | ptr += 13 + gtk_len; |
| 229 | #ifdef CONFIG_IEEE80211W |
| 230 | } else if (*ptr == WNM_SLEEP_SUBELEM_IGTK) { |
| 231 | if (ptr[1] < 2 + 6 + WPA_IGTK_LEN) { |
| 232 | wpa_printf(MSG_DEBUG, "WNM: Too short IGTK " |
| 233 | "subelem"); |
| 234 | break; |
| 235 | } |
| 236 | wpa_wnmsleep_install_key(wpa_s->wpa, |
| 237 | WNM_SLEEP_SUBELEM_IGTK, ptr); |
| 238 | ptr += 10 + WPA_IGTK_LEN; |
| 239 | #endif /* CONFIG_IEEE80211W */ |
| 240 | } else |
| 241 | break; /* skip the loop */ |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 246 | static void ieee802_11_rx_wnmsleep_resp(struct wpa_supplicant *wpa_s, |
| 247 | const u8 *frm, int len) |
| 248 | { |
| 249 | /* |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 250 | * Action [1] | Dialog Token [1] | Key Data Len [2] | Key Data | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 251 | * WNM-Sleep Mode IE | TFS Response IE |
| 252 | */ |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 253 | const u8 *pos = frm; /* point to payload after the action field */ |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 254 | u16 key_len_total; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 255 | struct wnm_sleep_element *wnmsleep_ie = NULL; |
| 256 | /* multiple TFS Resp IE (assuming consecutive) */ |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 257 | const u8 *tfsresp_ie_start = NULL; |
| 258 | const u8 *tfsresp_ie_end = NULL; |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 259 | size_t left; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 260 | |
Dmitry Shmidt | b70d0bb | 2015-11-16 10:43:06 -0800 | [diff] [blame] | 261 | if (!wpa_s->wnmsleep_used) { |
| 262 | wpa_printf(MSG_DEBUG, |
Jouni Malinen | 90bfa45 | 2017-09-22 11:25:02 +0300 | [diff] [blame] | 263 | "WNM: Ignore WNM-Sleep Mode Response frame since WNM-Sleep Mode operation has not been requested"); |
Dmitry Shmidt | b70d0bb | 2015-11-16 10:43:06 -0800 | [diff] [blame] | 264 | return; |
| 265 | } |
| 266 | |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 267 | if (len < 3) |
| 268 | return; |
| 269 | key_len_total = WPA_GET_LE16(frm + 1); |
| 270 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 271 | wpa_printf(MSG_DEBUG, "WNM-Sleep Mode Response token=%u key_len_total=%d", |
| 272 | frm[0], key_len_total); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 273 | left = len - 3; |
| 274 | if (key_len_total > left) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 275 | wpa_printf(MSG_INFO, "WNM: Too short frame for Key Data field"); |
| 276 | return; |
| 277 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 278 | pos += 3 + key_len_total; |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 279 | while (pos - frm + 1 < len) { |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 280 | u8 ie_len = *(pos + 1); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 281 | if (2 + ie_len > frm + len - pos) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 282 | wpa_printf(MSG_INFO, "WNM: Invalid IE len %u", ie_len); |
| 283 | break; |
| 284 | } |
| 285 | wpa_hexdump(MSG_DEBUG, "WNM: Element", pos, 2 + ie_len); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 286 | if (*pos == WLAN_EID_WNMSLEEP && ie_len >= 4) |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 287 | wnmsleep_ie = (struct wnm_sleep_element *) pos; |
| 288 | else if (*pos == WLAN_EID_TFS_RESP) { |
| 289 | if (!tfsresp_ie_start) |
| 290 | tfsresp_ie_start = pos; |
| 291 | tfsresp_ie_end = pos; |
| 292 | } else |
| 293 | wpa_printf(MSG_DEBUG, "EID %d not recognized", *pos); |
| 294 | pos += ie_len + 2; |
| 295 | } |
| 296 | |
| 297 | if (!wnmsleep_ie) { |
| 298 | wpa_printf(MSG_DEBUG, "No WNM-Sleep IE found"); |
| 299 | return; |
| 300 | } |
| 301 | |
Jouni Malinen | 90bfa45 | 2017-09-22 11:25:02 +0300 | [diff] [blame] | 302 | wpa_s->wnmsleep_used = 0; |
| 303 | |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 304 | if (wnmsleep_ie->status == WNM_STATUS_SLEEP_ACCEPT || |
| 305 | wnmsleep_ie->status == WNM_STATUS_SLEEP_EXIT_ACCEPT_GTK_UPDATE) { |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 306 | wpa_printf(MSG_DEBUG, "Successfully recv WNM-Sleep Response " |
| 307 | "frame (action=%d, intval=%d)", |
| 308 | wnmsleep_ie->action_type, wnmsleep_ie->intval); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 309 | if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER) { |
| 310 | wnm_sleep_mode_enter_success(wpa_s, tfsresp_ie_start, |
| 311 | tfsresp_ie_end); |
| 312 | } else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) { |
| 313 | wnm_sleep_mode_exit_success(wpa_s, frm, key_len_total); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 314 | } |
| 315 | } else { |
| 316 | wpa_printf(MSG_DEBUG, "Reject recv WNM-Sleep Response frame " |
| 317 | "(action=%d, intval=%d)", |
| 318 | wnmsleep_ie->action_type, wnmsleep_ie->intval); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 319 | if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER) |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 320 | wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_FAIL, |
| 321 | wpa_s->bssid, NULL, NULL); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 322 | else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 323 | wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_FAIL, |
| 324 | wpa_s->bssid, NULL, NULL); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 329 | void wnm_deallocate_memory(struct wpa_supplicant *wpa_s) |
| 330 | { |
| 331 | int i; |
| 332 | |
| 333 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 334 | os_free(wpa_s->wnm_neighbor_report_elements[i].meas_pilot); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 335 | os_free(wpa_s->wnm_neighbor_report_elements[i].mul_bssid); |
| 336 | } |
| 337 | |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 338 | wpa_s->wnm_num_neighbor_report = 0; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 339 | os_free(wpa_s->wnm_neighbor_report_elements); |
| 340 | wpa_s->wnm_neighbor_report_elements = NULL; |
| 341 | } |
| 342 | |
| 343 | |
| 344 | static void wnm_parse_neighbor_report_elem(struct neighbor_report *rep, |
| 345 | u8 id, u8 elen, const u8 *pos) |
| 346 | { |
| 347 | switch (id) { |
| 348 | case WNM_NEIGHBOR_TSF: |
| 349 | if (elen < 2 + 2) { |
| 350 | wpa_printf(MSG_DEBUG, "WNM: Too short TSF"); |
| 351 | break; |
| 352 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 353 | rep->tsf_offset = WPA_GET_LE16(pos); |
| 354 | rep->beacon_int = WPA_GET_LE16(pos + 2); |
| 355 | rep->tsf_present = 1; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 356 | break; |
| 357 | case WNM_NEIGHBOR_CONDENSED_COUNTRY_STRING: |
| 358 | if (elen < 2) { |
| 359 | wpa_printf(MSG_DEBUG, "WNM: Too short condensed " |
| 360 | "country string"); |
| 361 | break; |
| 362 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 363 | os_memcpy(rep->country, pos, 2); |
| 364 | rep->country_present = 1; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 365 | break; |
| 366 | case WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE: |
| 367 | if (elen < 1) { |
| 368 | wpa_printf(MSG_DEBUG, "WNM: Too short BSS transition " |
| 369 | "candidate"); |
| 370 | break; |
| 371 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 372 | rep->preference = pos[0]; |
| 373 | rep->preference_present = 1; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 374 | break; |
| 375 | case WNM_NEIGHBOR_BSS_TERMINATION_DURATION: |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 376 | rep->bss_term_tsf = WPA_GET_LE64(pos); |
| 377 | rep->bss_term_dur = WPA_GET_LE16(pos + 8); |
| 378 | rep->bss_term_present = 1; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 379 | break; |
| 380 | case WNM_NEIGHBOR_BEARING: |
| 381 | if (elen < 8) { |
| 382 | wpa_printf(MSG_DEBUG, "WNM: Too short neighbor " |
| 383 | "bearing"); |
| 384 | break; |
| 385 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 386 | rep->bearing = WPA_GET_LE16(pos); |
| 387 | rep->distance = WPA_GET_LE32(pos + 2); |
| 388 | rep->rel_height = WPA_GET_LE16(pos + 2 + 4); |
| 389 | rep->bearing_present = 1; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 390 | break; |
| 391 | case WNM_NEIGHBOR_MEASUREMENT_PILOT: |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 392 | if (elen < 1) { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 393 | wpa_printf(MSG_DEBUG, "WNM: Too short measurement " |
| 394 | "pilot"); |
| 395 | break; |
| 396 | } |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 397 | os_free(rep->meas_pilot); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 398 | rep->meas_pilot = os_zalloc(sizeof(struct measurement_pilot)); |
| 399 | if (rep->meas_pilot == NULL) |
| 400 | break; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 401 | rep->meas_pilot->measurement_pilot = pos[0]; |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 402 | rep->meas_pilot->subelem_len = elen - 1; |
| 403 | os_memcpy(rep->meas_pilot->subelems, pos + 1, elen - 1); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 404 | break; |
| 405 | case WNM_NEIGHBOR_RRM_ENABLED_CAPABILITIES: |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 406 | if (elen < 5) { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 407 | wpa_printf(MSG_DEBUG, "WNM: Too short RRM enabled " |
| 408 | "capabilities"); |
| 409 | break; |
| 410 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 411 | os_memcpy(rep->rm_capab, pos, 5); |
| 412 | rep->rm_capab_present = 1; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 413 | break; |
| 414 | case WNM_NEIGHBOR_MULTIPLE_BSSID: |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 415 | if (elen < 1) { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 416 | wpa_printf(MSG_DEBUG, "WNM: Too short multiple BSSID"); |
| 417 | break; |
| 418 | } |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 419 | os_free(rep->mul_bssid); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 420 | rep->mul_bssid = os_zalloc(sizeof(struct multiple_bssid)); |
| 421 | if (rep->mul_bssid == NULL) |
| 422 | break; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 423 | rep->mul_bssid->max_bssid_indicator = pos[0]; |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 424 | rep->mul_bssid->subelem_len = elen - 1; |
| 425 | os_memcpy(rep->mul_bssid->subelems, pos + 1, elen - 1); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 426 | break; |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 431 | static int wnm_nei_get_chan(struct wpa_supplicant *wpa_s, u8 op_class, u8 chan) |
| 432 | { |
| 433 | struct wpa_bss *bss = wpa_s->current_bss; |
| 434 | const char *country = NULL; |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 435 | int freq; |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 436 | |
| 437 | if (bss) { |
| 438 | const u8 *elem = wpa_bss_get_ie(bss, WLAN_EID_COUNTRY); |
| 439 | |
| 440 | if (elem && elem[1] >= 2) |
| 441 | country = (const char *) (elem + 2); |
| 442 | } |
| 443 | |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 444 | freq = ieee80211_chan_to_freq(country, op_class, chan); |
| 445 | if (freq <= 0 && op_class == 0) { |
| 446 | /* |
| 447 | * Some APs do not advertise correct operating class |
| 448 | * information. Try to determine the most likely operating |
| 449 | * frequency based on the channel number. |
| 450 | */ |
| 451 | if (chan >= 1 && chan <= 13) |
| 452 | freq = 2407 + chan * 5; |
| 453 | else if (chan == 14) |
| 454 | freq = 2484; |
| 455 | else if (chan >= 36 && chan <= 169) |
| 456 | freq = 5000 + chan * 5; |
| 457 | } |
| 458 | return freq; |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 462 | static void wnm_parse_neighbor_report(struct wpa_supplicant *wpa_s, |
| 463 | const u8 *pos, u8 len, |
| 464 | struct neighbor_report *rep) |
| 465 | { |
| 466 | u8 left = len; |
| 467 | |
| 468 | if (left < 13) { |
| 469 | wpa_printf(MSG_DEBUG, "WNM: Too short neighbor report"); |
| 470 | return; |
| 471 | } |
| 472 | |
| 473 | os_memcpy(rep->bssid, pos, ETH_ALEN); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 474 | rep->bssid_info = WPA_GET_LE32(pos + ETH_ALEN); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 475 | rep->regulatory_class = *(pos + 10); |
| 476 | rep->channel_number = *(pos + 11); |
| 477 | rep->phy_type = *(pos + 12); |
| 478 | |
| 479 | pos += 13; |
| 480 | left -= 13; |
| 481 | |
| 482 | while (left >= 2) { |
| 483 | u8 id, elen; |
| 484 | |
| 485 | id = *pos++; |
| 486 | elen = *pos++; |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 487 | wpa_printf(MSG_DEBUG, "WNM: Subelement id=%u len=%u", id, elen); |
| 488 | left -= 2; |
| 489 | if (elen > left) { |
| 490 | wpa_printf(MSG_DEBUG, |
| 491 | "WNM: Truncated neighbor report subelement"); |
| 492 | break; |
| 493 | } |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 494 | wnm_parse_neighbor_report_elem(rep, id, elen, pos); |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 495 | left -= elen; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 496 | pos += elen; |
| 497 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 498 | |
| 499 | rep->freq = wnm_nei_get_chan(wpa_s, rep->regulatory_class, |
| 500 | rep->channel_number); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 504 | static void wnm_clear_acceptable(struct wpa_supplicant *wpa_s) |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 505 | { |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 506 | unsigned int i; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 507 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 508 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) |
| 509 | wpa_s->wnm_neighbor_report_elements[i].acceptable = 0; |
| 510 | } |
| 511 | |
| 512 | |
| 513 | static struct wpa_bss * get_first_acceptable(struct wpa_supplicant *wpa_s) |
| 514 | { |
| 515 | unsigned int i; |
| 516 | struct neighbor_report *nei; |
| 517 | |
| 518 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) { |
| 519 | nei = &wpa_s->wnm_neighbor_report_elements[i]; |
| 520 | if (nei->acceptable) |
| 521 | return wpa_bss_get_bssid(wpa_s, nei->bssid); |
| 522 | } |
| 523 | |
| 524 | return NULL; |
| 525 | } |
| 526 | |
| 527 | |
| 528 | #ifdef CONFIG_MBO |
| 529 | static struct wpa_bss * |
| 530 | get_mbo_transition_candidate(struct wpa_supplicant *wpa_s, |
| 531 | enum mbo_transition_reject_reason *reason) |
| 532 | { |
| 533 | struct wpa_bss *target = NULL; |
| 534 | struct wpa_bss_trans_info params; |
| 535 | struct wpa_bss_candidate_info *info = NULL; |
| 536 | struct neighbor_report *nei = wpa_s->wnm_neighbor_report_elements; |
| 537 | u8 *first_candidate_bssid = NULL, *pos; |
| 538 | unsigned int i; |
| 539 | |
| 540 | params.mbo_transition_reason = wpa_s->wnm_mbo_transition_reason; |
| 541 | params.n_candidates = 0; |
| 542 | params.bssid = os_calloc(wpa_s->wnm_num_neighbor_report, ETH_ALEN); |
| 543 | if (!params.bssid) |
| 544 | return NULL; |
| 545 | |
| 546 | pos = params.bssid; |
| 547 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; nei++, i++) { |
| 548 | if (nei->is_first) |
| 549 | first_candidate_bssid = nei->bssid; |
| 550 | if (!nei->acceptable) |
| 551 | continue; |
| 552 | os_memcpy(pos, nei->bssid, ETH_ALEN); |
| 553 | pos += ETH_ALEN; |
| 554 | params.n_candidates++; |
| 555 | } |
| 556 | |
| 557 | if (!params.n_candidates) |
| 558 | goto end; |
| 559 | |
| 560 | info = wpa_drv_get_bss_trans_status(wpa_s, ¶ms); |
| 561 | if (!info) { |
| 562 | /* If failed to get candidate BSS transition status from driver, |
| 563 | * get the first acceptable candidate from wpa_supplicant. |
| 564 | */ |
| 565 | target = wpa_bss_get_bssid(wpa_s, params.bssid); |
| 566 | goto end; |
| 567 | } |
| 568 | |
| 569 | /* Get the first acceptable candidate from driver */ |
| 570 | for (i = 0; i < info->num; i++) { |
| 571 | if (info->candidates[i].is_accept) { |
| 572 | target = wpa_bss_get_bssid(wpa_s, |
| 573 | info->candidates[i].bssid); |
| 574 | goto end; |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | /* If Disassociation Imminent is set and driver rejects all the |
| 579 | * candidate select first acceptable candidate which has |
| 580 | * rssi > disassoc_imminent_rssi_threshold |
| 581 | */ |
| 582 | if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT) { |
| 583 | for (i = 0; i < info->num; i++) { |
| 584 | target = wpa_bss_get_bssid(wpa_s, |
| 585 | info->candidates[i].bssid); |
| 586 | if (target && |
| 587 | (target->level < |
| 588 | wpa_s->conf->disassoc_imminent_rssi_threshold)) |
| 589 | continue; |
| 590 | goto end; |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | /* While sending BTM reject use reason code of the first candidate |
| 595 | * received in BTM request frame |
| 596 | */ |
| 597 | if (reason) { |
| 598 | for (i = 0; i < info->num; i++) { |
| 599 | if (first_candidate_bssid && |
| 600 | os_memcmp(first_candidate_bssid, |
| 601 | info->candidates[i].bssid, ETH_ALEN) == 0) |
| 602 | { |
| 603 | *reason = info->candidates[i].reject_reason; |
| 604 | break; |
| 605 | } |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | target = NULL; |
| 610 | |
| 611 | end: |
| 612 | os_free(params.bssid); |
| 613 | if (info) { |
| 614 | os_free(info->candidates); |
| 615 | os_free(info); |
| 616 | } |
| 617 | return target; |
| 618 | } |
| 619 | #endif /* CONFIG_MBO */ |
| 620 | |
| 621 | |
| 622 | static struct wpa_bss * |
| 623 | compare_scan_neighbor_results(struct wpa_supplicant *wpa_s, os_time_t age_secs, |
| 624 | enum mbo_transition_reject_reason *reason) |
| 625 | { |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 626 | u8 i; |
| 627 | struct wpa_bss *bss = wpa_s->current_bss; |
| 628 | struct wpa_bss *target; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 629 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 630 | if (!bss) |
Dmitry Shmidt | 4ae50e6 | 2016-06-27 13:48:39 -0700 | [diff] [blame] | 631 | return NULL; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 632 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 633 | wpa_printf(MSG_DEBUG, "WNM: Current BSS " MACSTR " RSSI %d", |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 634 | MAC2STR(wpa_s->bssid), bss->level); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 635 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 636 | wnm_clear_acceptable(wpa_s); |
| 637 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 638 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) { |
| 639 | struct neighbor_report *nei; |
| 640 | |
| 641 | nei = &wpa_s->wnm_neighbor_report_elements[i]; |
| 642 | if (nei->preference_present && nei->preference == 0) { |
| 643 | wpa_printf(MSG_DEBUG, "Skip excluded BSS " MACSTR, |
| 644 | MAC2STR(nei->bssid)); |
| 645 | continue; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 646 | } |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 647 | |
| 648 | target = wpa_bss_get_bssid(wpa_s, nei->bssid); |
| 649 | if (!target) { |
| 650 | wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR |
| 651 | " (pref %d) not found in scan results", |
| 652 | MAC2STR(nei->bssid), |
| 653 | nei->preference_present ? nei->preference : |
| 654 | -1); |
| 655 | continue; |
| 656 | } |
| 657 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 658 | if (age_secs) { |
| 659 | struct os_reltime now; |
| 660 | |
| 661 | if (os_get_reltime(&now) == 0 && |
| 662 | os_reltime_expired(&now, &target->last_update, |
| 663 | age_secs)) { |
| 664 | wpa_printf(MSG_DEBUG, |
| 665 | "Candidate BSS is more than %ld seconds old", |
| 666 | age_secs); |
| 667 | continue; |
| 668 | } |
| 669 | } |
| 670 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 671 | if (bss->ssid_len != target->ssid_len || |
| 672 | os_memcmp(bss->ssid, target->ssid, bss->ssid_len) != 0) { |
| 673 | /* |
| 674 | * TODO: Could consider allowing transition to another |
| 675 | * ESS if PMF was enabled for the association. |
| 676 | */ |
| 677 | wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR |
| 678 | " (pref %d) in different ESS", |
| 679 | MAC2STR(nei->bssid), |
| 680 | nei->preference_present ? nei->preference : |
| 681 | -1); |
| 682 | continue; |
| 683 | } |
| 684 | |
Dmitry Shmidt | e466304 | 2016-04-04 10:07:49 -0700 | [diff] [blame] | 685 | if (wpa_s->current_ssid && |
| 686 | !wpa_scan_res_match(wpa_s, 0, target, wpa_s->current_ssid, |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 687 | 1, 0)) { |
Dmitry Shmidt | e466304 | 2016-04-04 10:07:49 -0700 | [diff] [blame] | 688 | wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR |
| 689 | " (pref %d) does not match the current network profile", |
| 690 | MAC2STR(nei->bssid), |
| 691 | nei->preference_present ? nei->preference : |
| 692 | -1); |
| 693 | continue; |
| 694 | } |
| 695 | |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 696 | if (wpa_is_bss_tmp_disallowed(wpa_s, target->bssid)) { |
| 697 | wpa_printf(MSG_DEBUG, |
| 698 | "MBO: Candidate BSS " MACSTR |
| 699 | " retry delay is not over yet", |
| 700 | MAC2STR(nei->bssid)); |
| 701 | continue; |
| 702 | } |
| 703 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 704 | if (target->level < bss->level && target->level < -80) { |
| 705 | wpa_printf(MSG_DEBUG, "Candidate BSS " MACSTR |
| 706 | " (pref %d) does not have sufficient signal level (%d)", |
| 707 | MAC2STR(nei->bssid), |
| 708 | nei->preference_present ? nei->preference : |
| 709 | -1, |
| 710 | target->level); |
| 711 | continue; |
| 712 | } |
| 713 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 714 | nei->acceptable = 1; |
| 715 | } |
| 716 | |
| 717 | #ifdef CONFIG_MBO |
| 718 | if (wpa_s->wnm_mbo_trans_reason_present) |
| 719 | target = get_mbo_transition_candidate(wpa_s, reason); |
| 720 | else |
| 721 | target = get_first_acceptable(wpa_s); |
| 722 | #else /* CONFIG_MBO */ |
| 723 | target = get_first_acceptable(wpa_s); |
| 724 | #endif /* CONFIG_MBO */ |
| 725 | |
| 726 | if (target) { |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 727 | wpa_printf(MSG_DEBUG, |
| 728 | "WNM: Found an acceptable preferred transition candidate BSS " |
| 729 | MACSTR " (RSSI %d)", |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 730 | MAC2STR(target->bssid), target->level); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 731 | } |
| 732 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 733 | return target; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 737 | static int wpa_bss_ies_eq(struct wpa_bss *a, struct wpa_bss *b, u8 eid) |
| 738 | { |
| 739 | const u8 *ie_a, *ie_b; |
| 740 | |
| 741 | if (!a || !b) |
| 742 | return 0; |
| 743 | |
| 744 | ie_a = wpa_bss_get_ie(a, eid); |
| 745 | ie_b = wpa_bss_get_ie(b, eid); |
| 746 | |
| 747 | if (!ie_a || !ie_b || ie_a[1] != ie_b[1]) |
| 748 | return 0; |
| 749 | |
| 750 | return os_memcmp(ie_a, ie_b, ie_a[1]) == 0; |
| 751 | } |
| 752 | |
| 753 | |
| 754 | static u32 wnm_get_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss) |
| 755 | { |
| 756 | u32 info = 0; |
| 757 | |
| 758 | info |= NEI_REP_BSSID_INFO_AP_UNKNOWN_REACH; |
| 759 | |
| 760 | /* |
| 761 | * Leave the security and key scope bits unset to indicate that the |
| 762 | * security information is not available. |
| 763 | */ |
| 764 | |
| 765 | if (bss->caps & WLAN_CAPABILITY_SPECTRUM_MGMT) |
| 766 | info |= NEI_REP_BSSID_INFO_SPECTRUM_MGMT; |
| 767 | if (bss->caps & WLAN_CAPABILITY_QOS) |
| 768 | info |= NEI_REP_BSSID_INFO_QOS; |
| 769 | if (bss->caps & WLAN_CAPABILITY_APSD) |
| 770 | info |= NEI_REP_BSSID_INFO_APSD; |
| 771 | if (bss->caps & WLAN_CAPABILITY_RADIO_MEASUREMENT) |
| 772 | info |= NEI_REP_BSSID_INFO_RM; |
| 773 | if (bss->caps & WLAN_CAPABILITY_DELAYED_BLOCK_ACK) |
| 774 | info |= NEI_REP_BSSID_INFO_DELAYED_BA; |
| 775 | if (bss->caps & WLAN_CAPABILITY_IMM_BLOCK_ACK) |
| 776 | info |= NEI_REP_BSSID_INFO_IMM_BA; |
| 777 | if (wpa_bss_ies_eq(bss, wpa_s->current_bss, WLAN_EID_MOBILITY_DOMAIN)) |
| 778 | info |= NEI_REP_BSSID_INFO_MOBILITY_DOMAIN; |
| 779 | if (wpa_bss_ies_eq(bss, wpa_s->current_bss, WLAN_EID_HT_CAP)) |
| 780 | info |= NEI_REP_BSSID_INFO_HT; |
| 781 | |
| 782 | return info; |
| 783 | } |
| 784 | |
| 785 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 786 | static int wnm_add_nei_rep(struct wpabuf **buf, const u8 *bssid, |
| 787 | u32 bss_info, u8 op_class, u8 chan, u8 phy_type, |
| 788 | u8 pref) |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 789 | { |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 790 | if (wpabuf_len(*buf) + 18 > |
| 791 | IEEE80211_MAX_MMPDU_SIZE - IEEE80211_HDRLEN) { |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 792 | wpa_printf(MSG_DEBUG, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 793 | "WNM: No room in frame for Neighbor Report element"); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 794 | return -1; |
| 795 | } |
| 796 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 797 | if (wpabuf_resize(buf, 18) < 0) { |
| 798 | wpa_printf(MSG_DEBUG, |
| 799 | "WNM: Failed to allocate memory for Neighbor Report element"); |
| 800 | return -1; |
| 801 | } |
| 802 | |
| 803 | wpabuf_put_u8(*buf, WLAN_EID_NEIGHBOR_REPORT); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 804 | /* length: 13 for basic neighbor report + 3 for preference subelement */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 805 | wpabuf_put_u8(*buf, 16); |
| 806 | wpabuf_put_data(*buf, bssid, ETH_ALEN); |
| 807 | wpabuf_put_le32(*buf, bss_info); |
| 808 | wpabuf_put_u8(*buf, op_class); |
| 809 | wpabuf_put_u8(*buf, chan); |
| 810 | wpabuf_put_u8(*buf, phy_type); |
| 811 | wpabuf_put_u8(*buf, WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE); |
| 812 | wpabuf_put_u8(*buf, 1); |
| 813 | wpabuf_put_u8(*buf, pref); |
| 814 | return 0; |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 815 | } |
| 816 | |
| 817 | |
| 818 | static int wnm_nei_rep_add_bss(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 819 | struct wpa_bss *bss, struct wpabuf **buf, |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 820 | u8 pref) |
| 821 | { |
| 822 | const u8 *ie; |
| 823 | u8 op_class, chan; |
| 824 | int sec_chan = 0, vht = 0; |
| 825 | enum phy_type phy_type; |
| 826 | u32 info; |
| 827 | struct ieee80211_ht_operation *ht_oper = NULL; |
| 828 | struct ieee80211_vht_operation *vht_oper = NULL; |
| 829 | |
| 830 | ie = wpa_bss_get_ie(bss, WLAN_EID_HT_OPERATION); |
| 831 | if (ie && ie[1] >= 2) { |
| 832 | ht_oper = (struct ieee80211_ht_operation *) (ie + 2); |
| 833 | |
| 834 | if (ht_oper->ht_param & HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE) |
| 835 | sec_chan = 1; |
| 836 | else if (ht_oper->ht_param & |
| 837 | HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW) |
| 838 | sec_chan = -1; |
| 839 | } |
| 840 | |
| 841 | ie = wpa_bss_get_ie(bss, WLAN_EID_VHT_OPERATION); |
| 842 | if (ie && ie[1] >= 1) { |
| 843 | vht_oper = (struct ieee80211_vht_operation *) (ie + 2); |
| 844 | |
| 845 | if (vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_80MHZ || |
| 846 | vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_160MHZ || |
| 847 | vht_oper->vht_op_info_chwidth == VHT_CHANWIDTH_80P80MHZ) |
| 848 | vht = vht_oper->vht_op_info_chwidth; |
| 849 | } |
| 850 | |
| 851 | if (ieee80211_freq_to_channel_ext(bss->freq, sec_chan, vht, &op_class, |
| 852 | &chan) == NUM_HOSTAPD_MODES) { |
| 853 | wpa_printf(MSG_DEBUG, |
| 854 | "WNM: Cannot determine operating class and channel"); |
| 855 | return -2; |
| 856 | } |
| 857 | |
| 858 | phy_type = ieee80211_get_phy_type(bss->freq, (ht_oper != NULL), |
| 859 | (vht_oper != NULL)); |
| 860 | if (phy_type == PHY_TYPE_UNSPECIFIED) { |
| 861 | wpa_printf(MSG_DEBUG, |
| 862 | "WNM: Cannot determine BSS phy type for Neighbor Report"); |
| 863 | return -2; |
| 864 | } |
| 865 | |
| 866 | info = wnm_get_bss_info(wpa_s, bss); |
| 867 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 868 | return wnm_add_nei_rep(buf, bss->bssid, info, op_class, chan, phy_type, |
| 869 | pref); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 873 | static void wnm_add_cand_list(struct wpa_supplicant *wpa_s, struct wpabuf **buf) |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 874 | { |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 875 | unsigned int i, pref = 255; |
| 876 | struct os_reltime now; |
| 877 | struct wpa_ssid *ssid = wpa_s->current_ssid; |
| 878 | |
| 879 | if (!ssid) |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 880 | return; |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 881 | |
| 882 | /* |
| 883 | * TODO: Define when scan results are no longer valid for the candidate |
| 884 | * list. |
| 885 | */ |
| 886 | os_get_reltime(&now); |
| 887 | if (os_reltime_expired(&now, &wpa_s->last_scan, 10)) |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 888 | return; |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 889 | |
| 890 | wpa_printf(MSG_DEBUG, |
| 891 | "WNM: Add candidate list to BSS Transition Management Response frame"); |
| 892 | for (i = 0; i < wpa_s->last_scan_res_used && pref; i++) { |
| 893 | struct wpa_bss *bss = wpa_s->last_scan_res[i]; |
| 894 | int res; |
| 895 | |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 896 | if (wpa_scan_res_match(wpa_s, i, bss, ssid, 1, 0)) { |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 897 | res = wnm_nei_rep_add_bss(wpa_s, bss, buf, pref--); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 898 | if (res == -2) |
| 899 | continue; /* could not build entry for BSS */ |
| 900 | if (res < 0) |
| 901 | break; /* no more room for candidates */ |
| 902 | if (pref == 1) |
| 903 | break; |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 904 | } |
| 905 | } |
| 906 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 907 | wpa_hexdump_buf(MSG_DEBUG, |
| 908 | "WNM: BSS Transition Management Response candidate list", |
| 909 | *buf); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 910 | } |
| 911 | |
| 912 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 913 | #define BTM_RESP_MIN_SIZE 5 + ETH_ALEN |
| 914 | |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 915 | static void wnm_send_bss_transition_mgmt_resp( |
| 916 | struct wpa_supplicant *wpa_s, u8 dialog_token, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 917 | enum bss_trans_mgmt_status_code status, |
| 918 | enum mbo_transition_reject_reason reason, |
| 919 | u8 delay, const u8 *target_bssid) |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 920 | { |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 921 | struct wpabuf *buf; |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 922 | int res; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 923 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 924 | wpa_printf(MSG_DEBUG, |
| 925 | "WNM: Send BSS Transition Management Response to " MACSTR |
| 926 | " dialog_token=%u status=%u reason=%u delay=%d", |
| 927 | MAC2STR(wpa_s->bssid), dialog_token, status, reason, delay); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 928 | if (!wpa_s->current_bss) { |
| 929 | wpa_printf(MSG_DEBUG, |
| 930 | "WNM: Current BSS not known - drop response"); |
| 931 | return; |
| 932 | } |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 933 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 934 | buf = wpabuf_alloc(BTM_RESP_MIN_SIZE); |
| 935 | if (!buf) { |
| 936 | wpa_printf(MSG_DEBUG, |
| 937 | "WNM: Failed to allocate memory for BTM response"); |
| 938 | return; |
| 939 | } |
| 940 | |
| 941 | wpabuf_put_u8(buf, WLAN_ACTION_WNM); |
| 942 | wpabuf_put_u8(buf, WNM_BSS_TRANS_MGMT_RESP); |
| 943 | wpabuf_put_u8(buf, dialog_token); |
| 944 | wpabuf_put_u8(buf, status); |
| 945 | wpabuf_put_u8(buf, delay); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 946 | if (target_bssid) { |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 947 | wpabuf_put_data(buf, target_bssid, ETH_ALEN); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 948 | } else if (status == WNM_BSS_TM_ACCEPT) { |
| 949 | /* |
| 950 | * P802.11-REVmc clarifies that the Target BSSID field is always |
| 951 | * present when status code is zero, so use a fake value here if |
| 952 | * no BSSID is yet known. |
| 953 | */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 954 | wpabuf_put_data(buf, "\0\0\0\0\0\0", ETH_ALEN); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 955 | } |
| 956 | |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 957 | if (status == WNM_BSS_TM_ACCEPT) |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 958 | wnm_add_cand_list(wpa_s, &buf); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 959 | |
| 960 | #ifdef CONFIG_MBO |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 961 | if (status != WNM_BSS_TM_ACCEPT && |
| 962 | wpa_bss_get_vendor_ie(wpa_s->current_bss, MBO_IE_VENDOR_TYPE)) { |
| 963 | u8 mbo[10]; |
| 964 | size_t ret; |
| 965 | |
| 966 | ret = wpas_mbo_ie_bss_trans_reject(wpa_s, mbo, sizeof(mbo), |
| 967 | reason); |
| 968 | if (ret) { |
| 969 | if (wpabuf_resize(&buf, ret) < 0) { |
| 970 | wpabuf_free(buf); |
| 971 | wpa_printf(MSG_DEBUG, |
| 972 | "WNM: Failed to allocate memory for MBO IE"); |
| 973 | return; |
| 974 | } |
| 975 | |
| 976 | wpabuf_put_data(buf, mbo, ret); |
| 977 | } |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 978 | } |
| 979 | #endif /* CONFIG_MBO */ |
| 980 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 981 | res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid, |
| 982 | wpa_s->own_addr, wpa_s->bssid, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 983 | wpabuf_head_u8(buf), wpabuf_len(buf), 0); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 984 | if (res < 0) { |
| 985 | wpa_printf(MSG_DEBUG, |
| 986 | "WNM: Failed to send BSS Transition Management Response"); |
| 987 | } |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 988 | |
| 989 | wpabuf_free(buf); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 993 | static void wnm_bss_tm_connect(struct wpa_supplicant *wpa_s, |
| 994 | struct wpa_bss *bss, struct wpa_ssid *ssid, |
| 995 | int after_new_scan) |
| 996 | { |
| 997 | wpa_dbg(wpa_s, MSG_DEBUG, |
| 998 | "WNM: Transition to BSS " MACSTR |
| 999 | " based on BSS Transition Management Request (old BSSID " |
| 1000 | MACSTR " after_new_scan=%d)", |
| 1001 | MAC2STR(bss->bssid), MAC2STR(wpa_s->bssid), after_new_scan); |
| 1002 | |
| 1003 | /* Send the BSS Management Response - Accept */ |
| 1004 | if (wpa_s->wnm_reply) { |
| 1005 | wpa_s->wnm_reply = 0; |
| 1006 | wpa_printf(MSG_DEBUG, |
| 1007 | "WNM: Sending successful BSS Transition Management Response"); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1008 | wnm_send_bss_transition_mgmt_resp( |
| 1009 | wpa_s, wpa_s->wnm_dialog_token, WNM_BSS_TM_ACCEPT, |
| 1010 | MBO_TRANSITION_REJECT_REASON_UNSPECIFIED, 0, |
| 1011 | bss->bssid); |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1012 | } |
| 1013 | |
| 1014 | if (bss == wpa_s->current_bss) { |
| 1015 | wpa_printf(MSG_DEBUG, |
| 1016 | "WNM: Already associated with the preferred candidate"); |
| 1017 | wnm_deallocate_memory(wpa_s); |
| 1018 | return; |
| 1019 | } |
| 1020 | |
| 1021 | wpa_s->reassociate = 1; |
| 1022 | wpa_printf(MSG_DEBUG, "WNM: Issuing connect"); |
| 1023 | wpa_supplicant_connect(wpa_s, bss, ssid); |
| 1024 | wnm_deallocate_memory(wpa_s); |
| 1025 | } |
| 1026 | |
| 1027 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1028 | int wnm_scan_process(struct wpa_supplicant *wpa_s, int reply_on_fail) |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1029 | { |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1030 | struct wpa_bss *bss; |
| 1031 | struct wpa_ssid *ssid = wpa_s->current_ssid; |
| 1032 | enum bss_trans_mgmt_status_code status = WNM_BSS_TM_REJECT_UNSPECIFIED; |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1033 | enum mbo_transition_reject_reason reason = |
| 1034 | MBO_TRANSITION_REJECT_REASON_UNSPECIFIED; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1035 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1036 | if (!wpa_s->wnm_neighbor_report_elements) |
| 1037 | return 0; |
| 1038 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1039 | wpa_dbg(wpa_s, MSG_DEBUG, |
| 1040 | "WNM: Process scan results for BSS Transition Management"); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1041 | if (os_reltime_before(&wpa_s->wnm_cand_valid_until, |
| 1042 | &wpa_s->scan_trigger_time)) { |
| 1043 | wpa_printf(MSG_DEBUG, "WNM: Previously stored BSS transition candidate list is not valid anymore - drop it"); |
| 1044 | wnm_deallocate_memory(wpa_s); |
| 1045 | return 0; |
| 1046 | } |
| 1047 | |
| 1048 | if (!wpa_s->current_bss || |
| 1049 | os_memcmp(wpa_s->wnm_cand_from_bss, wpa_s->current_bss->bssid, |
| 1050 | ETH_ALEN) != 0) { |
| 1051 | wpa_printf(MSG_DEBUG, "WNM: Stored BSS transition candidate list not from the current BSS - ignore it"); |
| 1052 | return 0; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | /* Compare the Neighbor Report and scan results */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1056 | bss = compare_scan_neighbor_results(wpa_s, 0, &reason); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1057 | if (!bss) { |
| 1058 | wpa_printf(MSG_DEBUG, "WNM: No BSS transition candidate match found"); |
| 1059 | status = WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES; |
| 1060 | goto send_bss_resp_fail; |
| 1061 | } |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1062 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1063 | /* Associate to the network */ |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1064 | wnm_bss_tm_connect(wpa_s, bss, ssid, 1); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1065 | return 1; |
| 1066 | |
| 1067 | send_bss_resp_fail: |
| 1068 | if (!reply_on_fail) |
| 1069 | return 0; |
| 1070 | |
| 1071 | /* Send reject response for all the failures */ |
| 1072 | |
| 1073 | if (wpa_s->wnm_reply) { |
| 1074 | wpa_s->wnm_reply = 0; |
| 1075 | wnm_send_bss_transition_mgmt_resp(wpa_s, |
| 1076 | wpa_s->wnm_dialog_token, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1077 | status, reason, 0, NULL); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1078 | } |
| 1079 | wnm_deallocate_memory(wpa_s); |
| 1080 | |
| 1081 | return 0; |
| 1082 | } |
| 1083 | |
| 1084 | |
| 1085 | static int cand_pref_compar(const void *a, const void *b) |
| 1086 | { |
| 1087 | const struct neighbor_report *aa = a; |
| 1088 | const struct neighbor_report *bb = b; |
| 1089 | |
| 1090 | if (!aa->preference_present && !bb->preference_present) |
| 1091 | return 0; |
| 1092 | if (!aa->preference_present) |
| 1093 | return 1; |
| 1094 | if (!bb->preference_present) |
| 1095 | return -1; |
| 1096 | if (bb->preference > aa->preference) |
| 1097 | return 1; |
| 1098 | if (bb->preference < aa->preference) |
| 1099 | return -1; |
| 1100 | return 0; |
| 1101 | } |
| 1102 | |
| 1103 | |
| 1104 | static void wnm_sort_cand_list(struct wpa_supplicant *wpa_s) |
| 1105 | { |
| 1106 | if (!wpa_s->wnm_neighbor_report_elements) |
| 1107 | return; |
| 1108 | qsort(wpa_s->wnm_neighbor_report_elements, |
| 1109 | wpa_s->wnm_num_neighbor_report, sizeof(struct neighbor_report), |
| 1110 | cand_pref_compar); |
| 1111 | } |
| 1112 | |
| 1113 | |
| 1114 | static void wnm_dump_cand_list(struct wpa_supplicant *wpa_s) |
| 1115 | { |
| 1116 | unsigned int i; |
| 1117 | |
| 1118 | wpa_printf(MSG_DEBUG, "WNM: BSS Transition Candidate List"); |
| 1119 | if (!wpa_s->wnm_neighbor_report_elements) |
| 1120 | return; |
| 1121 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) { |
| 1122 | struct neighbor_report *nei; |
| 1123 | |
| 1124 | nei = &wpa_s->wnm_neighbor_report_elements[i]; |
| 1125 | wpa_printf(MSG_DEBUG, "%u: " MACSTR |
| 1126 | " info=0x%x op_class=%u chan=%u phy=%u pref=%d freq=%d", |
| 1127 | i, MAC2STR(nei->bssid), nei->bssid_info, |
| 1128 | nei->regulatory_class, |
| 1129 | nei->channel_number, nei->phy_type, |
| 1130 | nei->preference_present ? nei->preference : -1, |
| 1131 | nei->freq); |
| 1132 | } |
| 1133 | } |
| 1134 | |
| 1135 | |
| 1136 | static int chan_supported(struct wpa_supplicant *wpa_s, int freq) |
| 1137 | { |
| 1138 | unsigned int i; |
| 1139 | |
| 1140 | for (i = 0; i < wpa_s->hw.num_modes; i++) { |
| 1141 | struct hostapd_hw_modes *mode = &wpa_s->hw.modes[i]; |
| 1142 | int j; |
| 1143 | |
| 1144 | for (j = 0; j < mode->num_channels; j++) { |
| 1145 | struct hostapd_channel_data *chan; |
| 1146 | |
| 1147 | chan = &mode->channels[j]; |
| 1148 | if (chan->freq == freq && |
| 1149 | !(chan->flag & HOSTAPD_CHAN_DISABLED)) |
| 1150 | return 1; |
| 1151 | } |
| 1152 | } |
| 1153 | |
| 1154 | return 0; |
| 1155 | } |
| 1156 | |
| 1157 | |
| 1158 | static void wnm_set_scan_freqs(struct wpa_supplicant *wpa_s) |
| 1159 | { |
| 1160 | int *freqs; |
| 1161 | int num_freqs = 0; |
| 1162 | unsigned int i; |
| 1163 | |
| 1164 | if (!wpa_s->wnm_neighbor_report_elements) |
| 1165 | return; |
| 1166 | |
| 1167 | if (wpa_s->hw.modes == NULL) |
| 1168 | return; |
| 1169 | |
| 1170 | os_free(wpa_s->next_scan_freqs); |
| 1171 | wpa_s->next_scan_freqs = NULL; |
| 1172 | |
| 1173 | freqs = os_calloc(wpa_s->wnm_num_neighbor_report + 1, sizeof(int)); |
| 1174 | if (freqs == NULL) |
| 1175 | return; |
| 1176 | |
| 1177 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) { |
| 1178 | struct neighbor_report *nei; |
| 1179 | |
| 1180 | nei = &wpa_s->wnm_neighbor_report_elements[i]; |
| 1181 | if (nei->freq <= 0) { |
| 1182 | wpa_printf(MSG_DEBUG, |
| 1183 | "WNM: Unknown neighbor operating frequency for " |
| 1184 | MACSTR " - scan all channels", |
| 1185 | MAC2STR(nei->bssid)); |
| 1186 | os_free(freqs); |
| 1187 | return; |
| 1188 | } |
| 1189 | if (chan_supported(wpa_s, nei->freq)) |
| 1190 | add_freq(freqs, &num_freqs, nei->freq); |
| 1191 | } |
| 1192 | |
| 1193 | if (num_freqs == 0) { |
| 1194 | os_free(freqs); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1195 | return; |
| 1196 | } |
| 1197 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1198 | wpa_printf(MSG_DEBUG, |
| 1199 | "WNM: Scan %d frequencies based on transition candidate list", |
| 1200 | num_freqs); |
| 1201 | wpa_s->next_scan_freqs = freqs; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1202 | } |
| 1203 | |
| 1204 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1205 | static int wnm_fetch_scan_results(struct wpa_supplicant *wpa_s) |
| 1206 | { |
| 1207 | struct wpa_scan_results *scan_res; |
| 1208 | struct wpa_bss *bss; |
| 1209 | struct wpa_ssid *ssid = wpa_s->current_ssid; |
| 1210 | u8 i, found = 0; |
| 1211 | size_t j; |
| 1212 | |
| 1213 | wpa_dbg(wpa_s, MSG_DEBUG, |
| 1214 | "WNM: Fetch current scan results from the driver for checking transition candidates"); |
| 1215 | scan_res = wpa_drv_get_scan_results2(wpa_s); |
| 1216 | if (!scan_res) { |
| 1217 | wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Failed to get scan results"); |
| 1218 | return 0; |
| 1219 | } |
| 1220 | |
| 1221 | if (scan_res->fetch_time.sec == 0) |
| 1222 | os_get_reltime(&scan_res->fetch_time); |
| 1223 | |
| 1224 | filter_scan_res(wpa_s, scan_res); |
| 1225 | |
| 1226 | for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) { |
| 1227 | struct neighbor_report *nei; |
| 1228 | |
| 1229 | nei = &wpa_s->wnm_neighbor_report_elements[i]; |
| 1230 | if (nei->preference_present && nei->preference == 0) |
| 1231 | continue; |
| 1232 | |
| 1233 | for (j = 0; j < scan_res->num; j++) { |
| 1234 | struct wpa_scan_res *res; |
| 1235 | const u8 *ssid_ie; |
| 1236 | |
| 1237 | res = scan_res->res[j]; |
| 1238 | if (os_memcmp(nei->bssid, res->bssid, ETH_ALEN) != 0 || |
| 1239 | res->age > WNM_SCAN_RESULT_AGE * 1000) |
| 1240 | continue; |
| 1241 | bss = wpa_s->current_bss; |
| 1242 | ssid_ie = wpa_scan_get_ie(res, WLAN_EID_SSID); |
| 1243 | if (bss && ssid_ie && |
| 1244 | (bss->ssid_len != ssid_ie[1] || |
| 1245 | os_memcmp(bss->ssid, ssid_ie + 2, |
| 1246 | bss->ssid_len) != 0)) |
| 1247 | continue; |
| 1248 | |
| 1249 | /* Potential candidate found */ |
| 1250 | found = 1; |
| 1251 | scan_snr(res); |
| 1252 | scan_est_throughput(wpa_s, res); |
| 1253 | wpa_bss_update_scan_res(wpa_s, res, |
| 1254 | &scan_res->fetch_time); |
| 1255 | } |
| 1256 | } |
| 1257 | |
| 1258 | wpa_scan_results_free(scan_res); |
| 1259 | if (!found) { |
| 1260 | wpa_dbg(wpa_s, MSG_DEBUG, |
| 1261 | "WNM: No transition candidate matches existing scan results"); |
| 1262 | return 0; |
| 1263 | } |
| 1264 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1265 | bss = compare_scan_neighbor_results(wpa_s, WNM_SCAN_RESULT_AGE, NULL); |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1266 | if (!bss) { |
| 1267 | wpa_dbg(wpa_s, MSG_DEBUG, |
| 1268 | "WNM: Comparison of scan results against transition candidates did not find matches"); |
| 1269 | return 0; |
| 1270 | } |
| 1271 | |
| 1272 | /* Associate to the network */ |
| 1273 | wnm_bss_tm_connect(wpa_s, bss, ssid, 0); |
| 1274 | return 1; |
| 1275 | } |
| 1276 | |
| 1277 | |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1278 | static void ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s, |
| 1279 | const u8 *pos, const u8 *end, |
| 1280 | int reply) |
| 1281 | { |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1282 | unsigned int beacon_int; |
| 1283 | u8 valid_int; |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 1284 | #ifdef CONFIG_MBO |
| 1285 | const u8 *vendor; |
| 1286 | #endif /* CONFIG_MBO */ |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1287 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1288 | if (end - pos < 5) |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1289 | return; |
| 1290 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1291 | #ifdef CONFIG_MBO |
| 1292 | wpa_s->wnm_mbo_trans_reason_present = 0; |
| 1293 | wpa_s->wnm_mbo_transition_reason = 0; |
| 1294 | #endif /* CONFIG_MBO */ |
| 1295 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1296 | if (wpa_s->current_bss) |
| 1297 | beacon_int = wpa_s->current_bss->beacon_int; |
| 1298 | else |
| 1299 | beacon_int = 100; /* best guess */ |
| 1300 | |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1301 | wpa_s->wnm_dialog_token = pos[0]; |
| 1302 | wpa_s->wnm_mode = pos[1]; |
| 1303 | wpa_s->wnm_dissoc_timer = WPA_GET_LE16(pos + 2); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1304 | valid_int = pos[4]; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1305 | wpa_s->wnm_reply = reply; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1306 | |
| 1307 | wpa_printf(MSG_DEBUG, "WNM: BSS Transition Management Request: " |
| 1308 | "dialog_token=%u request_mode=0x%x " |
| 1309 | "disassoc_timer=%u validity_interval=%u", |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1310 | wpa_s->wnm_dialog_token, wpa_s->wnm_mode, |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1311 | wpa_s->wnm_dissoc_timer, valid_int); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1312 | |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 1313 | #if defined(CONFIG_MBO) && defined(CONFIG_TESTING_OPTIONS) |
| 1314 | if (wpa_s->reject_btm_req_reason) { |
| 1315 | wpa_printf(MSG_INFO, |
| 1316 | "WNM: Testing - reject BSS Transition Management Request: reject_btm_req_reason=%d", |
| 1317 | wpa_s->reject_btm_req_reason); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1318 | wnm_send_bss_transition_mgmt_resp( |
| 1319 | wpa_s, wpa_s->wnm_dialog_token, |
| 1320 | wpa_s->reject_btm_req_reason, |
| 1321 | MBO_TRANSITION_REJECT_REASON_UNSPECIFIED, 0, NULL); |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 1322 | return; |
| 1323 | } |
| 1324 | #endif /* CONFIG_MBO && CONFIG_TESTING_OPTIONS */ |
| 1325 | |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1326 | pos += 5; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1327 | |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1328 | if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED) { |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1329 | if (end - pos < 12) { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1330 | wpa_printf(MSG_DEBUG, "WNM: Too short BSS TM Request"); |
| 1331 | return; |
| 1332 | } |
| 1333 | os_memcpy(wpa_s->wnm_bss_termination_duration, pos, 12); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1334 | pos += 12; /* BSS Termination Duration */ |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1335 | } |
| 1336 | |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1337 | if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1338 | char url[256]; |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1339 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1340 | if (end - pos < 1 || 1 + pos[0] > end - pos) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1341 | wpa_printf(MSG_DEBUG, "WNM: Invalid BSS Transition " |
| 1342 | "Management Request (URL)"); |
| 1343 | return; |
| 1344 | } |
| 1345 | os_memcpy(url, pos + 1, pos[0]); |
| 1346 | url[pos[0]] = '\0'; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1347 | pos += 1 + pos[0]; |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1348 | |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1349 | wpa_msg(wpa_s, MSG_INFO, ESS_DISASSOC_IMMINENT "%d %u %s", |
| 1350 | wpa_sm_pmf_enabled(wpa_s->wpa), |
| 1351 | wpa_s->wnm_dissoc_timer * beacon_int * 128 / 125, url); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1352 | } |
| 1353 | |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1354 | if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_DISASSOC_IMMINENT) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1355 | wpa_msg(wpa_s, MSG_INFO, "WNM: Disassociation Imminent - " |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1356 | "Disassociation Timer %u", wpa_s->wnm_dissoc_timer); |
| 1357 | if (wpa_s->wnm_dissoc_timer && !wpa_s->scanning) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1358 | /* TODO: mark current BSS less preferred for |
| 1359 | * selection */ |
| 1360 | wpa_printf(MSG_DEBUG, "Trying to find another BSS"); |
| 1361 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 1362 | } |
| 1363 | } |
| 1364 | |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 1365 | #ifdef CONFIG_MBO |
| 1366 | vendor = get_ie(pos, end - pos, WLAN_EID_VENDOR_SPECIFIC); |
| 1367 | if (vendor) |
| 1368 | wpas_mbo_ie_trans_req(wpa_s, vendor + 2, vendor[1]); |
| 1369 | #endif /* CONFIG_MBO */ |
| 1370 | |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1371 | if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED) { |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1372 | unsigned int valid_ms; |
| 1373 | |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1374 | wpa_msg(wpa_s, MSG_INFO, "WNM: Preferred List Available"); |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1375 | wnm_deallocate_memory(wpa_s); |
| 1376 | wpa_s->wnm_neighbor_report_elements = os_calloc( |
| 1377 | WNM_MAX_NEIGHBOR_REPORT, |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1378 | sizeof(struct neighbor_report)); |
| 1379 | if (wpa_s->wnm_neighbor_report_elements == NULL) |
| 1380 | return; |
| 1381 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1382 | while (end - pos >= 2 && |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1383 | wpa_s->wnm_num_neighbor_report < WNM_MAX_NEIGHBOR_REPORT) |
| 1384 | { |
| 1385 | u8 tag = *pos++; |
| 1386 | u8 len = *pos++; |
| 1387 | |
| 1388 | wpa_printf(MSG_DEBUG, "WNM: Neighbor report tag %u", |
| 1389 | tag); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1390 | if (len > end - pos) { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1391 | wpa_printf(MSG_DEBUG, "WNM: Truncated request"); |
| 1392 | return; |
| 1393 | } |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 1394 | if (tag == WLAN_EID_NEIGHBOR_REPORT) { |
| 1395 | struct neighbor_report *rep; |
| 1396 | rep = &wpa_s->wnm_neighbor_report_elements[ |
| 1397 | wpa_s->wnm_num_neighbor_report]; |
| 1398 | wnm_parse_neighbor_report(wpa_s, pos, len, rep); |
Dmitry Shmidt | 9c17526 | 2016-03-03 10:20:07 -0800 | [diff] [blame] | 1399 | wpa_s->wnm_num_neighbor_report++; |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1400 | #ifdef CONFIG_MBO |
| 1401 | if (wpa_s->wnm_mbo_trans_reason_present && |
| 1402 | wpa_s->wnm_num_neighbor_report == 1) { |
| 1403 | rep->is_first = 1; |
| 1404 | wpa_printf(MSG_DEBUG, |
| 1405 | "WNM: First transition candidate is " |
| 1406 | MACSTR, MAC2STR(rep->bssid)); |
| 1407 | } |
| 1408 | #endif /* CONFIG_MBO */ |
Dmitry Shmidt | f940fbd | 2014-04-10 10:23:13 -0700 | [diff] [blame] | 1409 | } |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1410 | |
| 1411 | pos += len; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1412 | } |
Dmitry Shmidt | 9c17526 | 2016-03-03 10:20:07 -0800 | [diff] [blame] | 1413 | |
| 1414 | if (!wpa_s->wnm_num_neighbor_report) { |
| 1415 | wpa_printf(MSG_DEBUG, |
| 1416 | "WNM: Candidate list included bit is set, but no candidates found"); |
| 1417 | wnm_send_bss_transition_mgmt_resp( |
| 1418 | wpa_s, wpa_s->wnm_dialog_token, |
| 1419 | WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1420 | MBO_TRANSITION_REJECT_REASON_UNSPECIFIED, 0, |
| 1421 | NULL); |
Dmitry Shmidt | 9c17526 | 2016-03-03 10:20:07 -0800 | [diff] [blame] | 1422 | return; |
| 1423 | } |
| 1424 | |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1425 | wnm_sort_cand_list(wpa_s); |
| 1426 | wnm_dump_cand_list(wpa_s); |
| 1427 | valid_ms = valid_int * beacon_int * 128 / 125; |
| 1428 | wpa_printf(MSG_DEBUG, "WNM: Candidate list valid for %u ms", |
| 1429 | valid_ms); |
| 1430 | os_get_reltime(&wpa_s->wnm_cand_valid_until); |
| 1431 | wpa_s->wnm_cand_valid_until.sec += valid_ms / 1000; |
| 1432 | wpa_s->wnm_cand_valid_until.usec += (valid_ms % 1000) * 1000; |
| 1433 | wpa_s->wnm_cand_valid_until.sec += |
| 1434 | wpa_s->wnm_cand_valid_until.usec / 1000000; |
| 1435 | wpa_s->wnm_cand_valid_until.usec %= 1000000; |
| 1436 | os_memcpy(wpa_s->wnm_cand_from_bss, wpa_s->bssid, ETH_ALEN); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1437 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1438 | /* |
| 1439 | * Fetch the latest scan results from the kernel and check for |
| 1440 | * candidates based on those results first. This can help in |
| 1441 | * finding more up-to-date information should the driver has |
| 1442 | * done some internal scanning operations after the last scan |
| 1443 | * result update in wpa_supplicant. |
| 1444 | */ |
| 1445 | if (wnm_fetch_scan_results(wpa_s) > 0) |
| 1446 | return; |
| 1447 | |
| 1448 | /* |
| 1449 | * Try to use previously received scan results, if they are |
| 1450 | * recent enough to use for a connection. |
| 1451 | */ |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1452 | if (wpa_s->last_scan_res_used > 0) { |
| 1453 | struct os_reltime now; |
| 1454 | |
| 1455 | os_get_reltime(&now); |
| 1456 | if (!os_reltime_expired(&now, &wpa_s->last_scan, 10)) { |
| 1457 | wpa_printf(MSG_DEBUG, |
| 1458 | "WNM: Try to use recent scan results"); |
| 1459 | if (wnm_scan_process(wpa_s, 0) > 0) |
| 1460 | return; |
| 1461 | wpa_printf(MSG_DEBUG, |
| 1462 | "WNM: No match in previous scan results - try a new scan"); |
| 1463 | } |
| 1464 | } |
| 1465 | |
| 1466 | wnm_set_scan_freqs(wpa_s); |
Dmitry Shmidt | 9c17526 | 2016-03-03 10:20:07 -0800 | [diff] [blame] | 1467 | if (wpa_s->wnm_num_neighbor_report == 1) { |
| 1468 | os_memcpy(wpa_s->next_scan_bssid, |
| 1469 | wpa_s->wnm_neighbor_report_elements[0].bssid, |
| 1470 | ETH_ALEN); |
| 1471 | wpa_printf(MSG_DEBUG, |
| 1472 | "WNM: Scan only for a specific BSSID since there is only a single candidate " |
| 1473 | MACSTR, MAC2STR(wpa_s->next_scan_bssid)); |
| 1474 | } |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1475 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 1476 | } else if (reply) { |
Dmitry Shmidt | f7e0a99 | 2013-05-23 11:03:10 -0700 | [diff] [blame] | 1477 | enum bss_trans_mgmt_status_code status; |
| 1478 | if (wpa_s->wnm_mode & WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT) |
| 1479 | status = WNM_BSS_TM_ACCEPT; |
| 1480 | else { |
| 1481 | wpa_msg(wpa_s, MSG_INFO, "WNM: BSS Transition Management Request did not include candidates"); |
| 1482 | status = WNM_BSS_TM_REJECT_UNSPECIFIED; |
| 1483 | } |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1484 | wnm_send_bss_transition_mgmt_resp( |
| 1485 | wpa_s, wpa_s->wnm_dialog_token, status, |
| 1486 | MBO_TRANSITION_REJECT_REASON_UNSPECIFIED, 0, NULL); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1487 | } |
| 1488 | } |
| 1489 | |
| 1490 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1491 | #define BTM_QUERY_MIN_SIZE 4 |
| 1492 | |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1493 | int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1494 | u8 query_reason, |
| 1495 | const char *btm_candidates, |
| 1496 | int cand_list) |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1497 | { |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1498 | struct wpabuf *buf; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1499 | int ret; |
| 1500 | |
| 1501 | wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Query to " |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 1502 | MACSTR " query_reason=%u%s", |
| 1503 | MAC2STR(wpa_s->bssid), query_reason, |
| 1504 | cand_list ? " candidate list" : ""); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1505 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1506 | buf = wpabuf_alloc(BTM_QUERY_MIN_SIZE); |
| 1507 | if (!buf) |
| 1508 | return -1; |
| 1509 | |
| 1510 | wpabuf_put_u8(buf, WLAN_ACTION_WNM); |
| 1511 | wpabuf_put_u8(buf, WNM_BSS_TRANS_MGMT_QUERY); |
| 1512 | wpabuf_put_u8(buf, 1); |
| 1513 | wpabuf_put_u8(buf, query_reason); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1514 | |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 1515 | if (cand_list) |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1516 | wnm_add_cand_list(wpa_s, &buf); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 1517 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1518 | if (btm_candidates) { |
| 1519 | const size_t max_len = 1000; |
| 1520 | |
| 1521 | ret = wpabuf_resize(&buf, max_len); |
| 1522 | if (ret < 0) { |
| 1523 | wpabuf_free(buf); |
| 1524 | return ret; |
| 1525 | } |
| 1526 | |
| 1527 | ret = ieee802_11_parse_candidate_list(btm_candidates, |
| 1528 | wpabuf_put(buf, 0), |
| 1529 | max_len); |
| 1530 | if (ret < 0) { |
| 1531 | wpabuf_free(buf); |
| 1532 | return ret; |
| 1533 | } |
| 1534 | |
| 1535 | wpabuf_put(buf, ret); |
| 1536 | } |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1537 | |
| 1538 | ret = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid, |
| 1539 | wpa_s->own_addr, wpa_s->bssid, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1540 | wpabuf_head_u8(buf), wpabuf_len(buf), 0); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1541 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame^] | 1542 | wpabuf_free(buf); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1543 | return ret; |
| 1544 | } |
| 1545 | |
| 1546 | |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1547 | static void ieee802_11_rx_wnm_notif_req_wfa(struct wpa_supplicant *wpa_s, |
| 1548 | const u8 *sa, const u8 *data, |
| 1549 | int len) |
| 1550 | { |
| 1551 | const u8 *pos, *end, *next; |
| 1552 | u8 ie, ie_len; |
| 1553 | |
| 1554 | pos = data; |
| 1555 | end = data + len; |
| 1556 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1557 | while (end - pos > 1) { |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1558 | ie = *pos++; |
| 1559 | ie_len = *pos++; |
| 1560 | wpa_printf(MSG_DEBUG, "WNM: WFA subelement %u len %u", |
| 1561 | ie, ie_len); |
| 1562 | if (ie_len > end - pos) { |
| 1563 | wpa_printf(MSG_DEBUG, "WNM: Not enough room for " |
| 1564 | "subelement"); |
| 1565 | break; |
| 1566 | } |
| 1567 | next = pos + ie_len; |
| 1568 | if (ie_len < 4) { |
| 1569 | pos = next; |
| 1570 | continue; |
| 1571 | } |
| 1572 | wpa_printf(MSG_DEBUG, "WNM: Subelement OUI %06x type %u", |
| 1573 | WPA_GET_BE24(pos), pos[3]); |
| 1574 | |
| 1575 | #ifdef CONFIG_HS20 |
| 1576 | if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 5 && |
| 1577 | WPA_GET_BE24(pos) == OUI_WFA && |
| 1578 | pos[3] == HS20_WNM_SUB_REM_NEEDED) { |
| 1579 | /* Subscription Remediation subelement */ |
| 1580 | const u8 *ie_end; |
| 1581 | u8 url_len; |
| 1582 | char *url; |
| 1583 | u8 osu_method; |
| 1584 | |
| 1585 | wpa_printf(MSG_DEBUG, "WNM: Subscription Remediation " |
| 1586 | "subelement"); |
| 1587 | ie_end = pos + ie_len; |
| 1588 | pos += 4; |
| 1589 | url_len = *pos++; |
| 1590 | if (url_len == 0) { |
| 1591 | wpa_printf(MSG_DEBUG, "WNM: No Server URL included"); |
| 1592 | url = NULL; |
| 1593 | osu_method = 1; |
| 1594 | } else { |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1595 | if (url_len + 1 > ie_end - pos) { |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1596 | wpa_printf(MSG_DEBUG, "WNM: Not enough room for Server URL (len=%u) and Server Method (left %d)", |
| 1597 | url_len, |
| 1598 | (int) (ie_end - pos)); |
| 1599 | break; |
| 1600 | } |
| 1601 | url = os_malloc(url_len + 1); |
| 1602 | if (url == NULL) |
| 1603 | break; |
| 1604 | os_memcpy(url, pos, url_len); |
| 1605 | url[url_len] = '\0'; |
| 1606 | osu_method = pos[url_len]; |
| 1607 | } |
| 1608 | hs20_rx_subscription_remediation(wpa_s, url, |
| 1609 | osu_method); |
| 1610 | os_free(url); |
| 1611 | pos = next; |
| 1612 | continue; |
| 1613 | } |
| 1614 | |
| 1615 | if (ie == WLAN_EID_VENDOR_SPECIFIC && ie_len >= 8 && |
| 1616 | WPA_GET_BE24(pos) == OUI_WFA && |
| 1617 | pos[3] == HS20_WNM_DEAUTH_IMMINENT_NOTICE) { |
| 1618 | const u8 *ie_end; |
| 1619 | u8 url_len; |
| 1620 | char *url; |
| 1621 | u8 code; |
| 1622 | u16 reauth_delay; |
| 1623 | |
| 1624 | ie_end = pos + ie_len; |
| 1625 | pos += 4; |
| 1626 | code = *pos++; |
| 1627 | reauth_delay = WPA_GET_LE16(pos); |
| 1628 | pos += 2; |
| 1629 | url_len = *pos++; |
| 1630 | wpa_printf(MSG_DEBUG, "WNM: HS 2.0 Deauthentication " |
| 1631 | "Imminent - Reason Code %u " |
| 1632 | "Re-Auth Delay %u URL Length %u", |
| 1633 | code, reauth_delay, url_len); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1634 | if (url_len > ie_end - pos) |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1635 | break; |
| 1636 | url = os_malloc(url_len + 1); |
| 1637 | if (url == NULL) |
| 1638 | break; |
| 1639 | os_memcpy(url, pos, url_len); |
| 1640 | url[url_len] = '\0'; |
| 1641 | hs20_rx_deauth_imminent_notice(wpa_s, code, |
| 1642 | reauth_delay, url); |
| 1643 | os_free(url); |
| 1644 | pos = next; |
| 1645 | continue; |
| 1646 | } |
| 1647 | #endif /* CONFIG_HS20 */ |
| 1648 | |
| 1649 | pos = next; |
| 1650 | } |
| 1651 | } |
| 1652 | |
| 1653 | |
| 1654 | static void ieee802_11_rx_wnm_notif_req(struct wpa_supplicant *wpa_s, |
| 1655 | const u8 *sa, const u8 *frm, int len) |
| 1656 | { |
| 1657 | const u8 *pos, *end; |
| 1658 | u8 dialog_token, type; |
| 1659 | |
| 1660 | /* Dialog Token [1] | Type [1] | Subelements */ |
| 1661 | |
| 1662 | if (len < 2 || sa == NULL) |
| 1663 | return; |
| 1664 | end = frm + len; |
| 1665 | pos = frm; |
| 1666 | dialog_token = *pos++; |
| 1667 | type = *pos++; |
| 1668 | |
| 1669 | wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Received WNM-Notification Request " |
| 1670 | "(dialog_token %u type %u sa " MACSTR ")", |
| 1671 | dialog_token, type, MAC2STR(sa)); |
| 1672 | wpa_hexdump(MSG_DEBUG, "WNM-Notification Request subelements", |
| 1673 | pos, end - pos); |
| 1674 | |
| 1675 | if (wpa_s->wpa_state != WPA_COMPLETED || |
| 1676 | os_memcmp(sa, wpa_s->bssid, ETH_ALEN) != 0) { |
| 1677 | wpa_dbg(wpa_s, MSG_DEBUG, "WNM: WNM-Notification frame not " |
| 1678 | "from our AP - ignore it"); |
| 1679 | return; |
| 1680 | } |
| 1681 | |
| 1682 | switch (type) { |
| 1683 | case 1: |
| 1684 | ieee802_11_rx_wnm_notif_req_wfa(wpa_s, sa, pos, end - pos); |
| 1685 | break; |
| 1686 | default: |
| 1687 | wpa_dbg(wpa_s, MSG_DEBUG, "WNM: Ignore unknown " |
| 1688 | "WNM-Notification type %u", type); |
| 1689 | break; |
| 1690 | } |
| 1691 | } |
| 1692 | |
| 1693 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1694 | void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1695 | const struct ieee80211_mgmt *mgmt, size_t len) |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1696 | { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1697 | const u8 *pos, *end; |
| 1698 | u8 act; |
| 1699 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1700 | if (len < IEEE80211_HDRLEN + 2) |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1701 | return; |
| 1702 | |
Dmitry Shmidt | 623d63a | 2014-06-13 11:05:14 -0700 | [diff] [blame] | 1703 | pos = ((const u8 *) mgmt) + IEEE80211_HDRLEN + 1; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1704 | act = *pos++; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1705 | end = ((const u8 *) mgmt) + len; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1706 | |
| 1707 | wpa_printf(MSG_DEBUG, "WNM: RX action %u from " MACSTR, |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1708 | act, MAC2STR(mgmt->sa)); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1709 | if (wpa_s->wpa_state < WPA_ASSOCIATED || |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1710 | os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) != 0) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1711 | wpa_printf(MSG_DEBUG, "WNM: Ignore unexpected WNM Action " |
| 1712 | "frame"); |
| 1713 | return; |
| 1714 | } |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1715 | |
| 1716 | switch (act) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1717 | case WNM_BSS_TRANS_MGMT_REQ: |
| 1718 | ieee802_11_rx_bss_trans_mgmt_req(wpa_s, pos, end, |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1719 | !(mgmt->da[0] & 0x01)); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1720 | break; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1721 | case WNM_SLEEP_MODE_RESP: |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1722 | ieee802_11_rx_wnmsleep_resp(wpa_s, pos, end - pos); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1723 | break; |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1724 | case WNM_NOTIFICATION_REQ: |
| 1725 | ieee802_11_rx_wnm_notif_req(wpa_s, mgmt->sa, pos, end - pos); |
| 1726 | break; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1727 | default: |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1728 | wpa_printf(MSG_ERROR, "WNM: Unknown request"); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1729 | break; |
| 1730 | } |
| 1731 | } |