wnm_sta.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  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. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "common/ieee802_11_defs.h"
  11. #include "rsn_supp/wpa.h"
  12. #include "../wpa_supplicant/wpa_supplicant_i.h"
  13. #include "../wpa_supplicant/driver_i.h"
  14. #define MAX_TFS_IE_LEN 1024
  15. #ifdef CONFIG_IEEE80211V
  16. /* get the TFS IE from driver */
  17. static int ieee80211_11_get_tfs_ie(struct wpa_supplicant *wpa_s, u8 *buf,
  18. u16 *buf_len, enum wnm_oper oper)
  19. {
  20. wpa_printf(MSG_DEBUG, "%s: TFS get operation %d", __func__, oper);
  21. return wpa_drv_wnm_oper(wpa_s, oper, wpa_s->bssid, buf, buf_len);
  22. }
  23. /* set the TFS IE to driver */
  24. static int ieee80211_11_set_tfs_ie(struct wpa_supplicant *wpa_s,
  25. const u8 *addr, u8 *buf, u16 *buf_len,
  26. enum wnm_oper oper)
  27. {
  28. wpa_printf(MSG_DEBUG, "%s: TFS set operation %d", __func__, oper);
  29. return wpa_drv_wnm_oper(wpa_s, oper, addr, buf, buf_len);
  30. }
  31. /* MLME-SLEEPMODE.request */
  32. int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
  33. u8 action, u16 intval)
  34. {
  35. struct ieee80211_mgmt *mgmt;
  36. int res;
  37. size_t len;
  38. struct wnm_sleep_element *wnmsleep_ie;
  39. u8 *wnmtfs_ie;
  40. u8 wnmsleep_ie_len;
  41. u16 wnmtfs_ie_len; /* possibly multiple IE(s) */
  42. enum wnm_oper tfs_oper = action == 0 ? WNM_SLEEP_TFS_REQ_IE_ADD :
  43. WNM_SLEEP_TFS_REQ_IE_NONE;
  44. /* WNM-Sleep Mode IE */
  45. wnmsleep_ie_len = sizeof(struct wnm_sleep_element);
  46. wnmsleep_ie = os_zalloc(sizeof(struct wnm_sleep_element));
  47. if (wnmsleep_ie == NULL)
  48. return -1;
  49. wnmsleep_ie->eid = WLAN_EID_WNMSLEEP;
  50. wnmsleep_ie->len = wnmsleep_ie_len - 2;
  51. wnmsleep_ie->action_type = action;
  52. wnmsleep_ie->status = WNM_STATUS_SLEEP_ACCEPT;
  53. wnmsleep_ie->intval = host_to_le16(intval);
  54. /* TFS IE(s) */
  55. wnmtfs_ie = os_zalloc(MAX_TFS_IE_LEN);
  56. if (wnmtfs_ie == NULL) {
  57. os_free(wnmsleep_ie);
  58. return -1;
  59. }
  60. if (ieee80211_11_get_tfs_ie(wpa_s, wnmtfs_ie, &wnmtfs_ie_len,
  61. tfs_oper)) {
  62. wnmtfs_ie_len = 0;
  63. os_free(wnmtfs_ie);
  64. wnmtfs_ie = NULL;
  65. }
  66. mgmt = os_zalloc(sizeof(*mgmt) + wnmsleep_ie_len + wnmtfs_ie_len);
  67. if (mgmt == NULL) {
  68. wpa_printf(MSG_DEBUG, "MLME: Failed to allocate buffer for "
  69. "WNM-Sleep Request action frame");
  70. return -1;
  71. }
  72. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  73. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  74. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  75. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  76. WLAN_FC_STYPE_ACTION);
  77. mgmt->u.action.category = WLAN_ACTION_WNM;
  78. mgmt->u.action.u.wnm_sleep_req.action = WNM_SLEEP_MODE_REQ;
  79. os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable, wnmsleep_ie,
  80. wnmsleep_ie_len);
  81. /* copy TFS IE here */
  82. if (wnmtfs_ie_len > 0) {
  83. os_memcpy(mgmt->u.action.u.wnm_sleep_req.variable +
  84. wnmsleep_ie_len, wnmtfs_ie, wnmtfs_ie_len);
  85. }
  86. len = 1 + sizeof(mgmt->u.action.u.wnm_sleep_req) + wnmsleep_ie_len +
  87. wnmtfs_ie_len;
  88. res = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  89. wpa_s->own_addr, wpa_s->bssid,
  90. &mgmt->u.action.category, len, 0);
  91. if (res < 0)
  92. wpa_printf(MSG_DEBUG, "Failed to send WNM-Sleep Request "
  93. "(action=%d, intval=%d)", action, intval);
  94. os_free(wnmsleep_ie);
  95. os_free(wnmtfs_ie);
  96. os_free(mgmt);
  97. return res;
  98. }
  99. static void ieee802_11_rx_wnmsleep_resp(struct wpa_supplicant *wpa_s,
  100. const u8 *frm, int len)
  101. {
  102. /*
  103. * Action [1] | Diaglog Token [1] | Key Data Len [2] | Key Data |
  104. * WNM-Sleep Mode IE | TFS Response IE
  105. */
  106. u8 *pos = (u8 *) frm; /* point to action field */
  107. u16 key_len_total = le_to_host16(*((u16 *)(frm+2)));
  108. u8 gtk_len;
  109. struct wnm_sleep_element *wnmsleep_ie = NULL;
  110. /* multiple TFS Resp IE (assuming consecutive) */
  111. u8 *tfsresp_ie_start = NULL;
  112. u8 *tfsresp_ie_end = NULL;
  113. u16 tfsresp_ie_len = 0;
  114. wpa_printf(MSG_DEBUG, "action=%d token = %d key_len_total = %d",
  115. frm[0], frm[1], key_len_total);
  116. pos += 4 + key_len_total;
  117. while (pos - frm < len) {
  118. u8 ie_len = *(pos + 1);
  119. if (*pos == WLAN_EID_WNMSLEEP)
  120. wnmsleep_ie = (struct wnm_sleep_element *) pos;
  121. else if (*pos == WLAN_EID_TFS_RESP) {
  122. if (!tfsresp_ie_start)
  123. tfsresp_ie_start = pos;
  124. tfsresp_ie_end = pos;
  125. } else
  126. wpa_printf(MSG_DEBUG, "EID %d not recognized", *pos);
  127. pos += ie_len + 2;
  128. }
  129. if (!wnmsleep_ie) {
  130. wpa_printf(MSG_DEBUG, "No WNM-Sleep IE found");
  131. return;
  132. }
  133. if (wnmsleep_ie->status == WNM_STATUS_SLEEP_ACCEPT) {
  134. wpa_printf(MSG_DEBUG, "Successfully recv WNM-Sleep Response "
  135. "frame (action=%d, intval=%d)",
  136. wnmsleep_ie->action_type, wnmsleep_ie->intval);
  137. if (wnmsleep_ie->action_type == 0) {
  138. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_CONFIRM,
  139. wpa_s->bssid, NULL, NULL);
  140. /* remove GTK/IGTK ?? */
  141. /* set the TFS Resp IE(s) */
  142. if (tfsresp_ie_start && tfsresp_ie_end &&
  143. tfsresp_ie_end - tfsresp_ie_start >= 0) {
  144. tfsresp_ie_len = (tfsresp_ie_end +
  145. tfsresp_ie_end[1] + 2) -
  146. tfsresp_ie_start;
  147. wpa_printf(MSG_DEBUG, "TFS Resp IE(s) found");
  148. /*
  149. * pass the TFS Resp IE(s) to driver for
  150. * processing
  151. */
  152. if (ieee80211_11_set_tfs_ie(
  153. wpa_s, wpa_s->bssid,
  154. tfsresp_ie_start,
  155. &tfsresp_ie_len,
  156. WNM_SLEEP_TFS_RESP_IE_SET))
  157. wpa_printf(MSG_DEBUG, "Fail to set "
  158. "TFS Resp IE");
  159. }
  160. } else if (wnmsleep_ie->action_type == 1) {
  161. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_CONFIRM,
  162. wpa_s->bssid, NULL, NULL);
  163. /* Install GTK/IGTK */
  164. do {
  165. /* point to key data field */
  166. u8 *ptr = (u8 *) frm + 1 + 1 + 2;
  167. while (ptr < (u8 *) frm + 4 + key_len_total) {
  168. if (*ptr == WNM_SLEEP_SUBELEM_GTK) {
  169. gtk_len = *(ptr + 4);
  170. wpa_wnmsleep_install_key(
  171. wpa_s->wpa,
  172. WNM_SLEEP_SUBELEM_GTK,
  173. ptr);
  174. ptr += 13 + gtk_len;
  175. #ifdef CONFIG_IEEE80211W
  176. } else if (*ptr ==
  177. WNM_SLEEP_SUBELEM_IGTK) {
  178. wpa_wnmsleep_install_key(
  179. wpa_s->wpa,
  180. WNM_SLEEP_SUBELEM_IGTK,
  181. ptr);
  182. ptr += 10 + WPA_IGTK_LEN;
  183. #endif /* CONFIG_IEEE80211W */
  184. } else
  185. break; /* skip the loop */
  186. }
  187. } while(0);
  188. }
  189. } else {
  190. wpa_printf(MSG_DEBUG, "Reject recv WNM-Sleep Response frame "
  191. "(action=%d, intval=%d)",
  192. wnmsleep_ie->action_type, wnmsleep_ie->intval);
  193. if (wnmsleep_ie->action_type == 0)
  194. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_ENTER_FAIL,
  195. wpa_s->bssid, NULL, NULL);
  196. else if (wnmsleep_ie->action_type == 1)
  197. wpa_drv_wnm_oper(wpa_s, WNM_SLEEP_EXIT_FAIL,
  198. wpa_s->bssid, NULL, NULL);
  199. }
  200. }
  201. void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
  202. struct rx_action *action)
  203. {
  204. u8 *pos = (u8 *) action->data; /* point to action field */
  205. u8 act = *pos++;
  206. /* u8 dialog_token = *pos++; */
  207. switch (act) {
  208. case WNM_SLEEP_MODE_RESP:
  209. ieee802_11_rx_wnmsleep_resp(wpa_s, action->data, action->len);
  210. break;
  211. default:
  212. break;
  213. }
  214. }
  215. #endif /* CONFIG_IEEE80211V */