wme.c 9.8 KB

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