wme.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. /*
  2. * hostapd / WMM (Wi-Fi Multimedia)
  3. * Copyright 2002-2003, Instant802 Networks, Inc.
  4. * Copyright 2005-2006, Devicescape Software, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #include "includes.h"
  16. #include "common.h"
  17. #include "hostapd.h"
  18. #include "ieee802_11.h"
  19. #include "wme.h"
  20. #include "sta_info.h"
  21. #include "driver_i.h"
  22. /* TODO: maintain separate sequence and fragment numbers for each AC
  23. * TODO: IGMP snooping to track which multicasts to forward - and use QOS-DATA
  24. * if only WMM stations are receiving a certain group */
  25. static inline u8 wmm_aci_aifsn(int aifsn, int acm, int aci)
  26. {
  27. u8 ret;
  28. ret = (aifsn << WMM_AC_AIFNS_SHIFT) & WMM_AC_AIFSN_MASK;
  29. if (acm)
  30. ret |= WMM_AC_ACM;
  31. ret |= (aci << WMM_AC_ACI_SHIFT) & WMM_AC_ACI_MASK;
  32. return ret;
  33. }
  34. static inline u8 wmm_ecw(int ecwmin, int ecwmax)
  35. {
  36. return ((ecwmin << WMM_AC_ECWMIN_SHIFT) & WMM_AC_ECWMIN_MASK) |
  37. ((ecwmax << WMM_AC_ECWMAX_SHIFT) & WMM_AC_ECWMAX_MASK);
  38. }
  39. /*
  40. * Add WMM Parameter Element to Beacon, Probe Response, and (Re)Association
  41. * Response frames.
  42. */
  43. u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid)
  44. {
  45. u8 *pos = eid;
  46. struct wmm_parameter_element *wmm =
  47. (struct wmm_parameter_element *) (pos + 2);
  48. int e;
  49. if (!hapd->conf->wmm_enabled)
  50. return eid;
  51. eid[0] = WLAN_EID_VENDOR_SPECIFIC;
  52. wmm->oui[0] = 0x00;
  53. wmm->oui[1] = 0x50;
  54. wmm->oui[2] = 0xf2;
  55. wmm->oui_type = WMM_OUI_TYPE;
  56. wmm->oui_subtype = WMM_OUI_SUBTYPE_PARAMETER_ELEMENT;
  57. wmm->version = WMM_VERSION;
  58. wmm->qos_info = hapd->parameter_set_count & 0xf;
  59. /* fill in a parameter set record for each AC */
  60. for (e = 0; e < 4; e++) {
  61. struct wmm_ac_parameter *ac = &wmm->ac[e];
  62. struct hostapd_wmm_ac_params *acp =
  63. &hapd->iconf->wmm_ac_params[e];
  64. ac->aci_aifsn = wmm_aci_aifsn(acp->aifs,
  65. acp->admission_control_mandatory,
  66. e);
  67. ac->cw = wmm_ecw(acp->cwmin, acp->cwmax);
  68. ac->txop_limit = host_to_le16(acp->txop_limit);
  69. }
  70. pos = (u8 *) (wmm + 1);
  71. eid[1] = pos - eid - 2; /* element length */
  72. return pos;
  73. }
  74. /* This function is called when a station sends an association request with
  75. * WMM info element. The function returns zero on success or non-zero on any
  76. * error in WMM element. eid does not include Element ID and Length octets. */
  77. int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, size_t len)
  78. {
  79. struct wmm_information_element *wmm;
  80. wpa_hexdump(MSG_MSGDUMP, "WMM IE", eid, len);
  81. if (len < sizeof(struct wmm_information_element)) {
  82. wpa_printf(MSG_DEBUG, "Too short WMM IE (len=%lu)",
  83. (unsigned long) len);
  84. return -1;
  85. }
  86. wmm = (struct wmm_information_element *) eid;
  87. wpa_printf(MSG_DEBUG, "Validating WMM IE: OUI %02x:%02x:%02x "
  88. "OUI type %d OUI sub-type %d version %d QoS info 0x%x",
  89. wmm->oui[0], wmm->oui[1], wmm->oui[2], wmm->oui_type,
  90. wmm->oui_subtype, wmm->version, wmm->qos_info);
  91. if (wmm->oui_subtype != WMM_OUI_SUBTYPE_INFORMATION_ELEMENT ||
  92. wmm->version != WMM_VERSION) {
  93. wpa_printf(MSG_DEBUG, "Unsupported WMM IE Subtype/Version");
  94. return -1;
  95. }
  96. return 0;
  97. }
  98. static void wmm_send_action(struct hostapd_data *hapd, const u8 *addr,
  99. const struct wmm_tspec_element *tspec,
  100. u8 action_code, u8 dialogue_token, u8 status_code)
  101. {
  102. u8 buf[256];
  103. struct ieee80211_mgmt *m = (struct ieee80211_mgmt *) buf;
  104. struct wmm_tspec_element *t = (struct wmm_tspec_element *)
  105. m->u.action.u.wmm_action.variable;
  106. int len;
  107. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  108. HOSTAPD_LEVEL_DEBUG,
  109. "action response - reason %d", status_code);
  110. os_memset(buf, 0, sizeof(buf));
  111. m->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  112. WLAN_FC_STYPE_ACTION);
  113. os_memcpy(m->da, addr, ETH_ALEN);
  114. os_memcpy(m->sa, hapd->own_addr, ETH_ALEN);
  115. os_memcpy(m->bssid, hapd->own_addr, ETH_ALEN);
  116. m->u.action.category = WLAN_ACTION_WMM;
  117. m->u.action.u.wmm_action.action_code = action_code;
  118. m->u.action.u.wmm_action.dialog_token = dialogue_token;
  119. m->u.action.u.wmm_action.status_code = status_code;
  120. os_memcpy(t, tspec, sizeof(struct wmm_tspec_element));
  121. len = ((u8 *) (t + 1)) - buf;
  122. if (hostapd_send_mgmt_frame(hapd, m, len) < 0)
  123. perror("wmm_send_action: send");
  124. }
  125. int wmm_process_tspec(struct wmm_tspec_element *tspec)
  126. {
  127. int medium_time, pps, duration;
  128. int up, psb, dir, tid;
  129. u16 val, surplus;
  130. up = (tspec->ts_info[1] >> 3) & 0x07;
  131. psb = (tspec->ts_info[1] >> 2) & 0x01;
  132. dir = (tspec->ts_info[0] >> 5) & 0x03;
  133. tid = (tspec->ts_info[0] >> 1) & 0x0f;
  134. wpa_printf(MSG_DEBUG, "WMM: TS Info: UP=%d PSB=%d Direction=%d TID=%d",
  135. up, psb, dir, tid);
  136. val = le_to_host16(tspec->nominal_msdu_size);
  137. wpa_printf(MSG_DEBUG, "WMM: Nominal MSDU Size: %d%s",
  138. val & 0x7fff, val & 0x8000 ? " (fixed)" : "");
  139. wpa_printf(MSG_DEBUG, "WMM: Mean Data Rate: %u bps",
  140. le_to_host32(tspec->mean_data_rate));
  141. wpa_printf(MSG_DEBUG, "WMM: Minimum PHY Rate: %u bps",
  142. le_to_host32(tspec->minimum_phy_rate));
  143. val = le_to_host16(tspec->surplus_bandwidth_allowance);
  144. wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance: %u.%04u",
  145. val >> 13, 10000 * (val & 0x1fff) / 0x2000);
  146. val = le_to_host16(tspec->nominal_msdu_size);
  147. if (val == 0) {
  148. wpa_printf(MSG_DEBUG, "WMM: Invalid Nominal MSDU Size (0)");
  149. return WMM_ADDTS_STATUS_INVALID_PARAMETERS;
  150. }
  151. /* pps = Ceiling((Mean Data Rate / 8) / Nominal MSDU Size) */
  152. pps = ((le_to_host32(tspec->mean_data_rate) / 8) + val - 1) / val;
  153. wpa_printf(MSG_DEBUG, "WMM: Packets-per-second estimate for TSPEC: %d",
  154. pps);
  155. if (le_to_host32(tspec->minimum_phy_rate) < 1000000) {
  156. wpa_printf(MSG_DEBUG, "WMM: Too small Minimum PHY Rate");
  157. return WMM_ADDTS_STATUS_INVALID_PARAMETERS;
  158. }
  159. duration = (le_to_host16(tspec->nominal_msdu_size) & 0x7fff) * 8 /
  160. (le_to_host32(tspec->minimum_phy_rate) / 1000000) +
  161. 50 /* FIX: proper SIFS + ACK duration */;
  162. /* unsigned binary number with an implicit binary point after the
  163. * leftmost 3 bits, i.e., 0x2000 = 1.0 */
  164. surplus = le_to_host16(tspec->surplus_bandwidth_allowance);
  165. if (surplus <= 0x2000) {
  166. wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance not "
  167. "greater than unity");
  168. return WMM_ADDTS_STATUS_INVALID_PARAMETERS;
  169. }
  170. medium_time = surplus * pps * duration / 0x2000;
  171. wpa_printf(MSG_DEBUG, "WMM: Estimated medium time: %u", medium_time);
  172. /*
  173. * TODO: store list of granted (and still active) TSPECs and check
  174. * whether there is available medium time for this request. For now,
  175. * just refuse requests that would by themselves take very large
  176. * portion of the available bandwidth.
  177. */
  178. if (medium_time > 750000) {
  179. wpa_printf(MSG_DEBUG, "WMM: Refuse TSPEC request for over "
  180. "75%% of available bandwidth");
  181. return WMM_ADDTS_STATUS_REFUSED;
  182. }
  183. /* Convert to 32 microseconds per second unit */
  184. tspec->medium_time = host_to_le16(medium_time / 32);
  185. return WMM_ADDTS_STATUS_ADMISSION_ACCEPTED;
  186. }
  187. static void wmm_addts_req(struct hostapd_data *hapd,
  188. const struct ieee80211_mgmt *mgmt,
  189. struct wmm_tspec_element *tspec, size_t len)
  190. {
  191. const u8 *end = ((const u8 *) mgmt) + len;
  192. int res;
  193. if ((const u8 *) (tspec + 1) > end) {
  194. wpa_printf(MSG_DEBUG, "WMM: TSPEC overflow in ADDTS Request");
  195. return;
  196. }
  197. wpa_printf(MSG_DEBUG, "WMM: ADDTS Request (Dialog Token %d) for TSPEC "
  198. "from " MACSTR,
  199. mgmt->u.action.u.wmm_action.dialog_token,
  200. MAC2STR(mgmt->sa));
  201. res = wmm_process_tspec(tspec);
  202. wpa_printf(MSG_DEBUG, "WMM: ADDTS processing result: %d", res);
  203. wmm_send_action(hapd, mgmt->sa, tspec, WMM_ACTION_CODE_ADDTS_RESP,
  204. mgmt->u.action.u.wmm_action.dialog_token, res);
  205. }
  206. void hostapd_wmm_action(struct hostapd_data *hapd,
  207. const struct ieee80211_mgmt *mgmt, size_t len)
  208. {
  209. int action_code;
  210. int left = len - IEEE80211_HDRLEN - 4;
  211. const u8 *pos = ((const u8 *) mgmt) + IEEE80211_HDRLEN + 4;
  212. struct ieee802_11_elems elems;
  213. struct sta_info *sta = ap_get_sta(hapd, mgmt->sa);
  214. /* check that the request comes from a valid station */
  215. if (!sta ||
  216. (sta->flags & (WLAN_STA_ASSOC | WLAN_STA_WMM)) !=
  217. (WLAN_STA_ASSOC | WLAN_STA_WMM)) {
  218. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  219. HOSTAPD_LEVEL_DEBUG,
  220. "wmm action received is not from associated wmm"
  221. " station");
  222. /* TODO: respond with action frame refused status code */
  223. return;
  224. }
  225. /* extract the tspec info element */
  226. if (ieee802_11_parse_elems(pos, left, &elems, 1) == ParseFailed) {
  227. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  228. HOSTAPD_LEVEL_DEBUG,
  229. "hostapd_wmm_action - could not parse wmm "
  230. "action");
  231. /* TODO: respond with action frame invalid parameters status
  232. * code */
  233. return;
  234. }
  235. if (!elems.wmm_tspec ||
  236. elems.wmm_tspec_len != (sizeof(struct wmm_tspec_element) - 2)) {
  237. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  238. HOSTAPD_LEVEL_DEBUG,
  239. "hostapd_wmm_action - missing or wrong length "
  240. "tspec");
  241. /* TODO: respond with action frame invalid parameters status
  242. * code */
  243. return;
  244. }
  245. /* TODO: check the request is for an AC with ACM set, if not, refuse
  246. * request */
  247. action_code = mgmt->u.action.u.wmm_action.action_code;
  248. switch (action_code) {
  249. case WMM_ACTION_CODE_ADDTS_REQ:
  250. wmm_addts_req(hapd, mgmt, (struct wmm_tspec_element *)
  251. (elems.wmm_tspec - 2), len);
  252. return;
  253. #if 0
  254. /* TODO: needed for client implementation */
  255. case WMM_ACTION_CODE_ADDTS_RESP:
  256. wmm_setup_request(hapd, mgmt, len);
  257. return;
  258. /* TODO: handle station teardown requests */
  259. case WMM_ACTION_CODE_DELTS:
  260. wmm_teardown(hapd, mgmt, len);
  261. return;
  262. #endif
  263. }
  264. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  265. HOSTAPD_LEVEL_DEBUG,
  266. "hostapd_wmm_action - unknown action code %d",
  267. action_code);
  268. }