blob: 7de96c541c2778d1ebd4da770ef347f70879586a [file] [log] [blame]
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001/*
2 * wpa_supplicant - WNM
3 * Copyright (c) 2011-2012, Qualcomm Atheros, Inc.
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9#include "utils/includes.h"
10
11#include "utils/common.h"
12#include "common/ieee802_11_defs.h"
13#include "rsn_supp/wpa.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080014#include "wpa_supplicant_i.h"
15#include "driver_i.h"
16#include "scan.h"
Dmitry Shmidt44c95782013-05-17 09:51:35 -070017#include "ctrl_iface.h"
18#include "bss.h"
19#include "wnm_sta.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070020
21#define MAX_TFS_IE_LEN 1024
Dmitry Shmidt44c95782013-05-17 09:51:35 -070022#define WNM_MAX_NEIGHBOR_REPORT 10
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070023
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070024
25/* get the TFS IE from driver */
26static int ieee80211_11_get_tfs_ie(struct wpa_supplicant *wpa_s, u8 *buf,
27 u16 *buf_len, enum wnm_oper oper)
28{
29 wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper);
30
31 return wpa_drv_wnm_oper(wpa_s, oper, wpa_s->bssid, buf, buf_len);
32}
33
34
35/* set the TFS IE to driver */
36static int ieee80211_11_set_tfs_ie(struct wpa_supplicant *wpa_s,
37 const u8 *addr, u8 *buf, u16 *buf_len,
38 enum wnm_oper oper)
39{
40 wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper);
41
42 return wpa_drv_wnm_oper(wpa_s, oper, addr, buf, buf_len);
43}
44
45
46/* MLME-SLEEPMODE.request */
47int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080048 u8 action, u16 intval, struct wpabuf *tfs_req)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070049{
50 struct ieee80211_mgmt *mgmt;
51 int res;
52 size_t len;
53 struct wnm_sleep_element *wnmsleep_ie;
54 u8 *wnmtfs_ie;
55 u8 wnmsleep_ie_len;
56 u16 wnmtfs_ie_len; /* possibly multiple IE(s) */
57 enum wnm_oper tfs_oper = action == 0 ? WNM_SLEEP_TFS_REQ_IE_ADD :
58 WNM_SLEEP_TFS_REQ_IE_NONE;
59
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080060 wpa_printf(MSG_DEBUG, "WNM: Request to send WNM-Sleep Mode Request "
61 "action=%s to " MACSTR,
62 action == 0 ? "enter" : "exit",
63 MAC2STR(wpa_s->bssid));
64
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070065 /* WNM-Sleep Mode IE */
66 wnmsleep_ie_len = sizeof(struct wnm_sleep_element);
67 wnmsleep_ie = os_zalloc(sizeof(struct wnm_sleep_element));
68 if (wnmsleep_ie == NULL)
69 return -1;
70 wnmsleep_ie->eid = WLAN_EID_WNMSLEEP;
71 wnmsleep_ie->len = wnmsleep_ie_len - 2;
72 wnmsleep_ie->action_type = action;
73 wnmsleep_ie->status = WNM_STATUS_SLEEP_ACCEPT;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080074 wnmsleep_ie->intval = host_to_le16(intval);
75 wpa_hexdump(MSG_DEBUG, "WNM: WNM-Sleep Mode element",
76 (u8 *) wnmsleep_ie, wnmsleep_ie_len);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070077
78 /* TFS IE(s) */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080079 if (tfs_req) {
80 wnmtfs_ie_len = wpabuf_len(tfs_req);
81 wnmtfs_ie = os_malloc(wnmtfs_ie_len);
82 if (wnmtfs_ie == NULL) {
83 os_free(wnmsleep_ie);
84 return -1;
85 }
86 os_memcpy(wnmtfs_ie, wpabuf_head(tfs_req), wnmtfs_ie_len);
87 } else {
88 wnmtfs_ie = os_zalloc(MAX_TFS_IE_LEN);
89 if (wnmtfs_ie == NULL) {
90 os_free(wnmsleep_ie);
91 return -1;
92 }
93 if (ieee80211_11_get_tfs_ie(wpa_s, wnmtfs_ie, &wnmtfs_ie_len,
94 tfs_oper)) {
95 wnmtfs_ie_len = 0;
96 os_free(wnmtfs_ie);
97 wnmtfs_ie = NULL;
98 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070099 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800100 wpa_hexdump(MSG_DEBUG, "WNM: TFS Request element",
101 (u8 *) wnmtfs_ie, wnmtfs_ie_len);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700102
103 mgmt = os_zalloc(sizeof(*mgmt) + wnmsleep_ie_len + wnmtfs_ie_len);
104 if (mgmt == NULL) {
105 wpa_printf(MSG_DEBUG, "MLME: Failed to allocate buffer for "
106 "WNM-Sleep Request action frame");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800107 os_free(wnmsleep_ie);
108 os_free(wnmtfs_ie);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700109 return -1;
110 }
111
112 os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
113 os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
114 os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
115 mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
116 WLAN_FC_STYPE_ACTION);
117 mgmt->u.action.category = WLAN_ACTION_WNM;
118 mgmt->u.action.u.wnm_sleep_req.action = WNM_SLEEP_MODE_REQ;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800119 mgmt->u.action.u.wnm_sleep_req.dialogtoken = 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700120 os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable, wnmsleep_ie,
121 wnmsleep_ie_len);
122 /* copy TFS IE here */
123 if (wnmtfs_ie_len > 0) {
124 os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable +
125 wnmsleep_ie_len, wnmtfs_ie, wnmtfs_ie_len);
126 }
127
128 len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_req) + wnmsleep_ie_len +
129 wnmtfs_ie_len;
130
131 res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
132 wpa_s->own_addr, wpa_s->bssid,
133 &mgmt->u.action.category, len, 0);
134 if (res < 0)
135 wpa_printf(MSG_DEBUG, "Failed to send WNM-Sleep Request "
136 "(action=%d, intval=%d)", action, intval);
137
138 os_free(wnmsleep_ie);
139 os_free(wnmtfs_ie);
140 os_free(mgmt);
141
142 return res;
143}
144
145
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800146static void wnm_sleep_mode_enter_success(struct wpa_supplicant *wpa_s,
147 u8 *tfsresp_ie_start,
148 u8 *tfsresp_ie_end)
149{
150 wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_CONFIRM,
151 wpa_s->bssid, NULL, NULL);
152 /* remove GTK/IGTK ?? */
153
154 /* set the TFS Resp IE(s) */
155 if (tfsresp_ie_start && tfsresp_ie_end &&
156 tfsresp_ie_end - tfsresp_ie_start >= 0) {
157 u16 tfsresp_ie_len;
158 tfsresp_ie_len = (tfsresp_ie_end + tfsresp_ie_end[1] + 2) -
159 tfsresp_ie_start;
160 wpa_printf(MSG_DEBUG, "TFS Resp IE(s) found");
161 /* pass the TFS Resp IE(s) to driver for processing */
162 if (ieee80211_11_set_tfs_ie(wpa_s, wpa_s->bssid,
163 tfsresp_ie_start,
164 &tfsresp_ie_len,
165 WNM_SLEEP_TFS_RESP_IE_SET))
166 wpa_printf(MSG_DEBUG, "WNM: Fail to set TFS Resp IE");
167 }
168}
169
170
171static void wnm_sleep_mode_exit_success(struct wpa_supplicant *wpa_s,
172 const u8 *frm, u16 key_len_total)
173{
174 u8 *ptr, *end;
175 u8 gtk_len;
176
177 wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_CONFIRM, wpa_s->bssid,
178 NULL, NULL);
179
180 /* Install GTK/IGTK */
181
182 /* point to key data field */
183 ptr = (u8 *) frm + 1 + 1 + 2;
184 end = ptr + key_len_total;
185 wpa_hexdump_key(MSG_DEBUG, "WNM: Key Data", ptr, key_len_total);
186
187 while (ptr + 1 < end) {
188 if (ptr + 2 + ptr[1] > end) {
189 wpa_printf(MSG_DEBUG, "WNM: Invalid Key Data element "
190 "length");
191 if (end > ptr) {
192 wpa_hexdump(MSG_DEBUG, "WNM: Remaining data",
193 ptr, end - ptr);
194 }
195 break;
196 }
197 if (*ptr == WNM_SLEEP_SUBELEM_GTK) {
198 if (ptr[1] < 11 + 5) {
199 wpa_printf(MSG_DEBUG, "WNM: Too short GTK "
200 "subelem");
201 break;
202 }
203 gtk_len = *(ptr + 4);
204 if (ptr[1] < 11 + gtk_len ||
205 gtk_len < 5 || gtk_len > 32) {
206 wpa_printf(MSG_DEBUG, "WNM: Invalid GTK "
207 "subelem");
208 break;
209 }
210 wpa_wnmsleep_install_key(
211 wpa_s->wpa,
212 WNM_SLEEP_SUBELEM_GTK,
213 ptr);
214 ptr += 13 + gtk_len;
215#ifdef CONFIG_IEEE80211W
216 } else if (*ptr == WNM_SLEEP_SUBELEM_IGTK) {
217 if (ptr[1] < 2 + 6 + WPA_IGTK_LEN) {
218 wpa_printf(MSG_DEBUG, "WNM: Too short IGTK "
219 "subelem");
220 break;
221 }
222 wpa_wnmsleep_install_key(wpa_s->wpa,
223 WNM_SLEEP_SUBELEM_IGTK, ptr);
224 ptr += 10 + WPA_IGTK_LEN;
225#endif /* CONFIG_IEEE80211W */
226 } else
227 break; /* skip the loop */
228 }
229}
230
231
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700232static void ieee802_11_rx_wnmsleep_resp(struct wpa_supplicant *wpa_s,
233 const u8 *frm, int len)
234{
235 /*
236 * Action [1] | Diaglog Token [1] | Key Data Len [2] | Key Data |
237 * WNM-Sleep Mode IE | TFS Response IE
238 */
239 u8 *pos = (u8 *) frm; /* point to action field */
240 u16 key_len_total = le_to_host16(*((u16 *)(frm+2)));
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700241 struct wnm_sleep_element *wnmsleep_ie = NULL;
242 /* multiple TFS Resp IE (assuming consecutive) */
243 u8 *tfsresp_ie_start = NULL;
244 u8 *tfsresp_ie_end = NULL;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700245
246 wpa_printf(MSG_DEBUG, "action=%d token = %d key_len_total = %d",
247 frm[0], frm[1], key_len_total);
248 pos += 4 + key_len_total;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800249 if (pos > frm + len) {
250 wpa_printf(MSG_INFO, "WNM: Too short frame for Key Data field");
251 return;
252 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700253 while (pos - frm < len) {
254 u8 ie_len = *(pos + 1);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800255 if (pos + 2 + ie_len > frm + len) {
256 wpa_printf(MSG_INFO, "WNM: Invalid IE len %u", ie_len);
257 break;
258 }
259 wpa_hexdump(MSG_DEBUG, "WNM: Element", pos, 2 + ie_len);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700260 if (*pos == WLAN_EID_WNMSLEEP)
261 wnmsleep_ie = (struct wnm_sleep_element *) pos;
262 else if (*pos == WLAN_EID_TFS_RESP) {
263 if (!tfsresp_ie_start)
264 tfsresp_ie_start = pos;
265 tfsresp_ie_end = pos;
266 } else
267 wpa_printf(MSG_DEBUG, "EID %d not recognized", *pos);
268 pos += ie_len + 2;
269 }
270
271 if (!wnmsleep_ie) {
272 wpa_printf(MSG_DEBUG, "No WNM-Sleep IE found");
273 return;
274 }
275
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800276 if (wnmsleep_ie->status == WNM_STATUS_SLEEP_ACCEPT ||
277 wnmsleep_ie->status == WNM_STATUS_SLEEP_EXIT_ACCEPT_GTK_UPDATE) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700278 wpa_printf(MSG_DEBUG, "Successfully recv WNM-Sleep Response "
279 "frame (action=%d, intval=%d)",
280 wnmsleep_ie->action_type, wnmsleep_ie->intval);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800281 if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER) {
282 wnm_sleep_mode_enter_success(wpa_s, tfsresp_ie_start,
283 tfsresp_ie_end);
284 } else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT) {
285 wnm_sleep_mode_exit_success(wpa_s, frm, key_len_total);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700286 }
287 } else {
288 wpa_printf(MSG_DEBUG, "Reject recv WNM-Sleep Response frame "
289 "(action=%d, intval=%d)",
290 wnmsleep_ie->action_type, wnmsleep_ie->intval);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800291 if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_ENTER)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700292 wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_FAIL,
293 wpa_s->bssid, NULL, NULL);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800294 else if (wnmsleep_ie->action_type == WNM_SLEEP_MODE_EXIT)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700295 wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_FAIL,
296 wpa_s->bssid, NULL, NULL);
297 }
298}
299
300
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700301void wnm_deallocate_memory(struct wpa_supplicant *wpa_s)
302{
303 int i;
304
305 for (i = 0; i < wpa_s->wnm_num_neighbor_report; i++) {
306 os_free(wpa_s->wnm_neighbor_report_elements[i].tsf_info);
307 os_free(wpa_s->wnm_neighbor_report_elements[i].con_coun_str);
308 os_free(wpa_s->wnm_neighbor_report_elements[i].bss_tran_can);
309 os_free(wpa_s->wnm_neighbor_report_elements[i].bss_term_dur);
310 os_free(wpa_s->wnm_neighbor_report_elements[i].bearing);
311 os_free(wpa_s->wnm_neighbor_report_elements[i].meas_pilot);
312 os_free(wpa_s->wnm_neighbor_report_elements[i].rrm_cap);
313 os_free(wpa_s->wnm_neighbor_report_elements[i].mul_bssid);
314 }
315
316 os_free(wpa_s->wnm_neighbor_report_elements);
317 wpa_s->wnm_neighbor_report_elements = NULL;
318}
319
320
321static void wnm_parse_neighbor_report_elem(struct neighbor_report *rep,
322 u8 id, u8 elen, const u8 *pos)
323{
324 switch (id) {
325 case WNM_NEIGHBOR_TSF:
326 if (elen < 2 + 2) {
327 wpa_printf(MSG_DEBUG, "WNM: Too short TSF");
328 break;
329 }
330 rep->tsf_info = os_zalloc(sizeof(struct tsf_info));
331 if (rep->tsf_info == NULL)
332 break;
333 rep->tsf_info->present = 1;
334 os_memcpy(rep->tsf_info->tsf_offset, pos, 2);
335 os_memcpy(rep->tsf_info->beacon_interval, pos + 2, 2);
336 break;
337 case WNM_NEIGHBOR_CONDENSED_COUNTRY_STRING:
338 if (elen < 2) {
339 wpa_printf(MSG_DEBUG, "WNM: Too short condensed "
340 "country string");
341 break;
342 }
343 rep->con_coun_str =
344 os_zalloc(sizeof(struct condensed_country_string));
345 if (rep->con_coun_str == NULL)
346 break;
347 rep->con_coun_str->present = 1;
348 os_memcpy(rep->con_coun_str->country_string, pos, 2);
349 break;
350 case WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE:
351 if (elen < 1) {
352 wpa_printf(MSG_DEBUG, "WNM: Too short BSS transition "
353 "candidate");
354 break;
355 }
356 rep->bss_tran_can =
357 os_zalloc(sizeof(struct bss_transition_candidate));
358 if (rep->bss_tran_can == NULL)
359 break;
360 rep->bss_tran_can->present = 1;
361 rep->bss_tran_can->preference = pos[0];
362 break;
363 case WNM_NEIGHBOR_BSS_TERMINATION_DURATION:
364 if (elen < 12) {
365 wpa_printf(MSG_DEBUG, "WNM: Too short BSS termination "
366 "duration");
367 break;
368 }
369 rep->bss_term_dur =
370 os_zalloc(sizeof(struct bss_termination_duration));
371 if (rep->bss_term_dur == NULL)
372 break;
373 rep->bss_term_dur->present = 1;
374 os_memcpy(rep->bss_term_dur->duration, pos, 12);
375 break;
376 case WNM_NEIGHBOR_BEARING:
377 if (elen < 8) {
378 wpa_printf(MSG_DEBUG, "WNM: Too short neighbor "
379 "bearing");
380 break;
381 }
382 rep->bearing = os_zalloc(sizeof(struct bearing));
383 if (rep->bearing == NULL)
384 break;
385 rep->bearing->present = 1;
386 os_memcpy(rep->bearing->bearing, pos, 8);
387 break;
388 case WNM_NEIGHBOR_MEASUREMENT_PILOT:
389 if (elen < 2) {
390 wpa_printf(MSG_DEBUG, "WNM: Too short measurement "
391 "pilot");
392 break;
393 }
394 rep->meas_pilot = os_zalloc(sizeof(struct measurement_pilot));
395 if (rep->meas_pilot == NULL)
396 break;
397 rep->meas_pilot->present = 1;
398 rep->meas_pilot->measurement_pilot = pos[0];
399 rep->meas_pilot->num_vendor_specific = pos[1];
400 os_memcpy(rep->meas_pilot->vendor_specific, pos + 2, elen - 2);
401 break;
402 case WNM_NEIGHBOR_RRM_ENABLED_CAPABILITIES:
403 if (elen < 4) {
404 wpa_printf(MSG_DEBUG, "WNM: Too short RRM enabled "
405 "capabilities");
406 break;
407 }
408 rep->rrm_cap =
409 os_zalloc(sizeof(struct rrm_enabled_capabilities));
410 if (rep->rrm_cap == NULL)
411 break;
412 rep->rrm_cap->present = 1;
413 os_memcpy(rep->rrm_cap->capabilities, pos, 4);
414 break;
415 case WNM_NEIGHBOR_MULTIPLE_BSSID:
416 if (elen < 2) {
417 wpa_printf(MSG_DEBUG, "WNM: Too short multiple BSSID");
418 break;
419 }
420 rep->mul_bssid = os_zalloc(sizeof(struct multiple_bssid));
421 if (rep->mul_bssid == NULL)
422 break;
423 rep->mul_bssid->present = 1;
424 rep->mul_bssid->max_bssid_indicator = pos[0];
425 rep->mul_bssid->num_vendor_specific = pos[1];
426 os_memcpy(rep->mul_bssid->vendor_specific, pos + 2, elen - 2);
427 break;
428 }
429}
430
431
432static void wnm_parse_neighbor_report(struct wpa_supplicant *wpa_s,
433 const u8 *pos, u8 len,
434 struct neighbor_report *rep)
435{
436 u8 left = len;
437
438 if (left < 13) {
439 wpa_printf(MSG_DEBUG, "WNM: Too short neighbor report");
440 return;
441 }
442
443 os_memcpy(rep->bssid, pos, ETH_ALEN);
444 os_memcpy(rep->bssid_information, pos + ETH_ALEN, 4);
445 rep->regulatory_class = *(pos + 10);
446 rep->channel_number = *(pos + 11);
447 rep->phy_type = *(pos + 12);
448
449 pos += 13;
450 left -= 13;
451
452 while (left >= 2) {
453 u8 id, elen;
454
455 id = *pos++;
456 elen = *pos++;
457 wnm_parse_neighbor_report_elem(rep, id, elen, pos);
458 left -= 2 + elen;
459 pos += elen;
460 }
461}
462
463
464static int compare_scan_neighbor_results(struct wpa_supplicant *wpa_s,
465 struct wpa_scan_results *scan_res,
466 struct neighbor_report *neigh_rep,
467 u8 num_neigh_rep, u8 *bssid_to_connect)
468{
469
470 u8 i, j;
471
472 if (scan_res == NULL || num_neigh_rep == 0)
473 return 0;
474
475 for (i = 0; i < num_neigh_rep; i++) {
476 for (j = 0; j < scan_res->num; j++) {
477 /* Check for a better RSSI AP */
478 if (os_memcmp(scan_res->res[j]->bssid,
479 neigh_rep[i].bssid, ETH_ALEN) == 0 &&
480 scan_res->res[j]->level >
481 wpa_s->current_bss->level) {
482 /* Got a BSSID with better RSSI value */
483 os_memcpy(bssid_to_connect, neigh_rep[i].bssid,
484 ETH_ALEN);
485 return 1;
486 }
487 }
488 }
489
490 return 0;
491}
492
493
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800494static void wnm_send_bss_transition_mgmt_resp(struct wpa_supplicant *wpa_s,
495 u8 dialog_token, u8 status,
496 u8 delay, const u8 *target_bssid)
497{
498 u8 buf[1000], *pos;
499 struct ieee80211_mgmt *mgmt;
500 size_t len;
501
502 wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Response "
503 "to " MACSTR " dialog_token=%u status=%u delay=%d",
504 MAC2STR(wpa_s->bssid), dialog_token, status, delay);
505
506 mgmt = (struct ieee80211_mgmt *) buf;
507 os_memset(&buf, 0, sizeof(buf));
508 os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
509 os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
510 os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
511 mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
512 WLAN_FC_STYPE_ACTION);
513 mgmt->u.action.category = WLAN_ACTION_WNM;
514 mgmt->u.action.u.bss_tm_resp.action = WNM_BSS_TRANS_MGMT_RESP;
515 mgmt->u.action.u.bss_tm_resp.dialog_token = dialog_token;
516 mgmt->u.action.u.bss_tm_resp.status_code = status;
517 mgmt->u.action.u.bss_tm_resp.bss_termination_delay = delay;
518 pos = mgmt->u.action.u.bss_tm_resp.variable;
519 if (target_bssid) {
520 os_memcpy(pos, target_bssid, ETH_ALEN);
521 pos += ETH_ALEN;
522 }
523
524 len = pos - (u8 *) &mgmt->u.action.category;
525
526 wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
527 wpa_s->own_addr, wpa_s->bssid,
528 &mgmt->u.action.category, len, 0);
529}
530
531
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700532void wnm_scan_response(struct wpa_supplicant *wpa_s,
533 struct wpa_scan_results *scan_res)
534{
535 u8 bssid[ETH_ALEN];
536
537 if (scan_res == NULL) {
538 wpa_printf(MSG_ERROR, "Scan result is NULL");
539 goto send_bss_resp_fail;
540 }
541
542 /* Compare the Neighbor Report and scan results */
543 if (compare_scan_neighbor_results(wpa_s, scan_res,
544 wpa_s->wnm_neighbor_report_elements,
545 wpa_s->wnm_num_neighbor_report,
546 bssid) == 1) {
547 /* Associate to the network */
548 struct wpa_bss *bss;
549 struct wpa_ssid *ssid = wpa_s->current_ssid;
550
551 bss = wpa_bss_get_bssid(wpa_s, bssid);
552 if (!bss) {
553 wpa_printf(MSG_DEBUG, "WNM: Target AP not found from "
554 "BSS table");
555 goto send_bss_resp_fail;
556 }
557
558 /* Send the BSS Management Response - Accept */
559 if (wpa_s->wnm_reply) {
560 wnm_send_bss_transition_mgmt_resp(wpa_s,
561 wpa_s->wnm_dialog_token,
562 0, /* Accept */
563 0, NULL);
564 }
565
566 wpa_s->reassociate = 1;
567 wpa_supplicant_connect(wpa_s, bss, ssid);
568 wnm_deallocate_memory(wpa_s);
569 return;
570 }
571
572 /* Send reject response for all the failures */
573send_bss_resp_fail:
574 wnm_deallocate_memory(wpa_s);
575 if (wpa_s->wnm_reply) {
576 wnm_send_bss_transition_mgmt_resp(wpa_s,
577 wpa_s->wnm_dialog_token,
578 1 /* Reject - unspecified */,
579 0, NULL);
580 }
581 return;
582}
583
584
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800585static void ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s,
586 const u8 *pos, const u8 *end,
587 int reply)
588{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800589 if (pos + 5 > end)
590 return;
591
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700592 wpa_s->wnm_dialog_token = pos[0];
593 wpa_s->wnm_mode = pos[1];
594 wpa_s->wnm_dissoc_timer = WPA_GET_LE16(pos + 2);
595 wpa_s->wnm_validity_interval = pos[4];
596 wpa_s->wnm_reply = reply;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800597
598 wpa_printf(MSG_DEBUG, "WNM: BSS Transition Management Request: "
599 "dialog_token=%u request_mode=0x%x "
600 "disassoc_timer=%u validity_interval=%u",
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700601 wpa_s->wnm_dialog_token, wpa_s->wnm_mode,
602 wpa_s->wnm_dissoc_timer, wpa_s->wnm_validity_interval);
603
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800604 pos += 5;
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700605
606 if (wpa_s->wnm_mode & 0x08) {
607 if (pos + 12 > end) {
608 wpa_printf(MSG_DEBUG, "WNM: Too short BSS TM Request");
609 return;
610 }
611 os_memcpy(wpa_s->wnm_bss_termination_duration, pos, 12);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800612 pos += 12; /* BSS Termination Duration */
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700613 }
614
615 if (wpa_s->wnm_mode & 0x10) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800616 char url[256];
617 if (pos + 1 > end || pos + 1 + pos[0] > end) {
618 wpa_printf(MSG_DEBUG, "WNM: Invalid BSS Transition "
619 "Management Request (URL)");
620 return;
621 }
622 os_memcpy(url, pos + 1, pos[0]);
623 url[pos[0]] = '\0';
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700624 pos += 1 + pos[0];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800625 wpa_msg(wpa_s, MSG_INFO, "WNM: ESS Disassociation Imminent - "
626 "session_info_url=%s", url);
627 }
628
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700629 if (wpa_s->wnm_mode & 0x04) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800630 wpa_msg(wpa_s, MSG_INFO, "WNM: Disassociation Imminent - "
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700631 "Disassociation Timer %u", wpa_s->wnm_dissoc_timer);
632 if (wpa_s->wnm_dissoc_timer && !wpa_s->scanning) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800633 /* TODO: mark current BSS less preferred for
634 * selection */
635 wpa_printf(MSG_DEBUG, "Trying to find another BSS");
636 wpa_supplicant_req_scan(wpa_s, 0, 0);
637 }
638 }
639
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700640 if (wpa_s->wnm_mode & 0x01) {
641 wpa_msg(wpa_s, MSG_INFO, "WNM: Preferred List Available");
642 wpa_s->wnm_num_neighbor_report = 0;
643 os_free(wpa_s->wnm_neighbor_report_elements);
644 wpa_s->wnm_neighbor_report_elements = os_zalloc(
645 WNM_MAX_NEIGHBOR_REPORT *
646 sizeof(struct neighbor_report));
647 if (wpa_s->wnm_neighbor_report_elements == NULL)
648 return;
649
650 while (pos + 2 <= end &&
651 wpa_s->wnm_num_neighbor_report < WNM_MAX_NEIGHBOR_REPORT)
652 {
653 u8 tag = *pos++;
654 u8 len = *pos++;
655
656 wpa_printf(MSG_DEBUG, "WNM: Neighbor report tag %u",
657 tag);
658 if (pos + len > end) {
659 wpa_printf(MSG_DEBUG, "WNM: Truncated request");
660 return;
661 }
662 wnm_parse_neighbor_report(
663 wpa_s, pos, len,
664 &wpa_s->wnm_neighbor_report_elements[
665 wpa_s->wnm_num_neighbor_report]);
666
667 pos += len;
668 wpa_s->wnm_num_neighbor_report++;
669 }
670
671 wpa_s->scan_res_handler = wnm_scan_response;
672 wpa_supplicant_req_scan(wpa_s, 0, 0);
673 } else if (reply) {
674 wpa_msg(wpa_s, MSG_INFO, "WNM: BSS Transition Management "
675 "Request Mode is zero");
676 wnm_send_bss_transition_mgmt_resp(wpa_s,
677 wpa_s->wnm_dialog_token,
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800678 1 /* Reject - unspecified */,
679 0, NULL);
680 }
681}
682
683
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700684int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s,
685 u8 query_reason)
686{
687 u8 buf[1000], *pos;
688 struct ieee80211_mgmt *mgmt;
689 size_t len;
690 int ret;
691
692 wpa_printf(MSG_DEBUG, "WNM: Send BSS Transition Management Query to "
693 MACSTR " query_reason=%u",
694 MAC2STR(wpa_s->bssid), query_reason);
695
696 mgmt = (struct ieee80211_mgmt *) buf;
697 os_memset(&buf, 0, sizeof(buf));
698 os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
699 os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
700 os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
701 mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
702 WLAN_FC_STYPE_ACTION);
703 mgmt->u.action.category = WLAN_ACTION_WNM;
704 mgmt->u.action.u.bss_tm_query.action = WNM_BSS_TRANS_MGMT_QUERY;
705 mgmt->u.action.u.bss_tm_query.dialog_token = 0;
706 mgmt->u.action.u.bss_tm_query.query_reason = query_reason;
707 pos = mgmt->u.action.u.bss_tm_query.variable;
708
709 len = pos - (u8 *) &mgmt->u.action.category;
710
711 ret = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
712 wpa_s->own_addr, wpa_s->bssid,
713 &mgmt->u.action.category, len, 0);
714
715 return ret;
716}
717
718
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700719void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
720 struct rx_action *action)
721{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800722 const u8 *pos, *end;
723 u8 act;
724
725 if (action->data == NULL || action->len == 0)
726 return;
727
728 pos = action->data;
729 end = pos + action->len;
730 act = *pos++;
731
732 wpa_printf(MSG_DEBUG, "WNM: RX action %u from " MACSTR,
733 act, MAC2STR(action->sa));
734 if (wpa_s->wpa_state < WPA_ASSOCIATED ||
735 os_memcmp(action->sa, wpa_s->bssid, ETH_ALEN) != 0) {
736 wpa_printf(MSG_DEBUG, "WNM: Ignore unexpected WNM Action "
737 "frame");
738 return;
739 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700740
741 switch (act) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800742 case WNM_BSS_TRANS_MGMT_REQ:
743 ieee802_11_rx_bss_trans_mgmt_req(wpa_s, pos, end,
744 !(action->da[0] & 0x01));
745 break;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700746 case WNM_SLEEP_MODE_RESP:
747 ieee802_11_rx_wnmsleep_resp(wpa_s, action->data, action->len);
748 break;
749 default:
Dmitry Shmidt44c95782013-05-17 09:51:35 -0700750 wpa_printf(MSG_ERROR, "WNM: Unknown request");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700751 break;
752 }
753}