wme.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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, 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. /* This function is called when a station sends an ACK frame for an AssocResp
  100. * frame (status=success) and the matching AssocReq contained a WMM element.
  101. */
  102. int hostapd_wmm_sta_config(struct hostapd_data *hapd, struct sta_info *sta)
  103. {
  104. /* update kernel STA data for WMM related items (WLAN_STA_WPA flag) */
  105. if (sta->flags & WLAN_STA_WMM)
  106. hostapd_sta_set_flags(hapd, sta->addr, sta->flags,
  107. WLAN_STA_WMM, ~0);
  108. else
  109. hostapd_sta_set_flags(hapd, sta->addr, sta->flags,
  110. 0, ~WLAN_STA_WMM);
  111. return 0;
  112. }
  113. static void wmm_send_action(struct hostapd_data *hapd, const u8 *addr,
  114. const struct wmm_tspec_element *tspec,
  115. u8 action_code, u8 dialogue_token, u8 status_code)
  116. {
  117. u8 buf[256];
  118. struct ieee80211_mgmt *m = (struct ieee80211_mgmt *) buf;
  119. struct wmm_tspec_element *t = (struct wmm_tspec_element *)
  120. m->u.action.u.wmm_action.variable;
  121. int len;
  122. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  123. HOSTAPD_LEVEL_DEBUG,
  124. "action response - reason %d", status_code);
  125. os_memset(buf, 0, sizeof(buf));
  126. m->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  127. WLAN_FC_STYPE_ACTION);
  128. os_memcpy(m->da, addr, ETH_ALEN);
  129. os_memcpy(m->sa, hapd->own_addr, ETH_ALEN);
  130. os_memcpy(m->bssid, hapd->own_addr, ETH_ALEN);
  131. m->u.action.category = WLAN_ACTION_WMM;
  132. m->u.action.u.wmm_action.action_code = action_code;
  133. m->u.action.u.wmm_action.dialog_token = dialogue_token;
  134. m->u.action.u.wmm_action.status_code = status_code;
  135. os_memcpy(t, tspec, sizeof(struct wmm_tspec_element));
  136. len = ((u8 *) (t + 1)) - buf;
  137. if (hostapd_send_mgmt_frame(hapd, m, len) < 0)
  138. perror("wmm_send_action: send");
  139. }
  140. int wmm_process_tspec(struct wmm_tspec_element *tspec)
  141. {
  142. int medium_time, pps, duration;
  143. int up, psb, dir, tid;
  144. u16 val, surplus;
  145. up = (tspec->ts_info[1] >> 3) & 0x07;
  146. psb = (tspec->ts_info[1] >> 2) & 0x01;
  147. dir = (tspec->ts_info[0] >> 5) & 0x03;
  148. tid = (tspec->ts_info[0] >> 1) & 0x0f;
  149. wpa_printf(MSG_DEBUG, "WMM: TS Info: UP=%d PSB=%d Direction=%d TID=%d",
  150. up, psb, dir, tid);
  151. val = le_to_host16(tspec->nominal_msdu_size);
  152. wpa_printf(MSG_DEBUG, "WMM: Nominal MSDU Size: %d%s",
  153. val & 0x7fff, val & 0x8000 ? " (fixed)" : "");
  154. wpa_printf(MSG_DEBUG, "WMM: Mean Data Rate: %u bps",
  155. le_to_host32(tspec->mean_data_rate));
  156. wpa_printf(MSG_DEBUG, "WMM: Minimum PHY Rate: %u bps",
  157. le_to_host32(tspec->minimum_phy_rate));
  158. val = le_to_host16(tspec->surplus_bandwidth_allowance);
  159. wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance: %u.%04u",
  160. val >> 13, 10000 * (val & 0x1fff) / 0x2000);
  161. val = le_to_host16(tspec->nominal_msdu_size);
  162. if (val == 0) {
  163. wpa_printf(MSG_DEBUG, "WMM: Invalid Nominal MSDU Size (0)");
  164. return WMM_ADDTS_STATUS_INVALID_PARAMETERS;
  165. }
  166. /* pps = Ceiling((Mean Data Rate / 8) / Nominal MSDU Size) */
  167. pps = ((le_to_host32(tspec->mean_data_rate) / 8) + val - 1) / val;
  168. wpa_printf(MSG_DEBUG, "WMM: Packets-per-second estimate for TSPEC: %d",
  169. pps);
  170. if (le_to_host32(tspec->minimum_phy_rate) < 1000000) {
  171. wpa_printf(MSG_DEBUG, "WMM: Too small Minimum PHY Rate");
  172. return WMM_ADDTS_STATUS_INVALID_PARAMETERS;
  173. }
  174. duration = (le_to_host16(tspec->nominal_msdu_size) & 0x7fff) * 8 /
  175. (le_to_host32(tspec->minimum_phy_rate) / 1000000) +
  176. 50 /* FIX: proper SIFS + ACK duration */;
  177. /* unsigned binary number with an implicit binary point after the
  178. * leftmost 3 bits, i.e., 0x2000 = 1.0 */
  179. surplus = le_to_host16(tspec->surplus_bandwidth_allowance);
  180. if (surplus <= 0x2000) {
  181. wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance not "
  182. "greater than unity");
  183. return WMM_ADDTS_STATUS_INVALID_PARAMETERS;
  184. }
  185. medium_time = surplus * pps * duration / 0x2000;
  186. wpa_printf(MSG_DEBUG, "WMM: Estimated medium time: %u", medium_time);
  187. /*
  188. * TODO: store list of granted (and still active) TSPECs and check
  189. * whether there is available medium time for this request. For now,
  190. * just refuse requests that would by themselves take very large
  191. * portion of the available bandwidth.
  192. */
  193. if (medium_time > 750000) {
  194. wpa_printf(MSG_DEBUG, "WMM: Refuse TSPEC request for over "
  195. "75%% of available bandwidth");
  196. return WMM_ADDTS_STATUS_REFUSED;
  197. }
  198. /* Convert to 32 microseconds per second unit */
  199. tspec->medium_time = host_to_le16(medium_time / 32);
  200. return WMM_ADDTS_STATUS_ADMISSION_ACCEPTED;
  201. }
  202. static void wmm_addts_req(struct hostapd_data *hapd,
  203. struct ieee80211_mgmt *mgmt,
  204. struct wmm_tspec_element *tspec, size_t len)
  205. {
  206. u8 *end = ((u8 *) mgmt) + len;
  207. int res;
  208. if ((u8 *) (tspec + 1) > end) {
  209. wpa_printf(MSG_DEBUG, "WMM: TSPEC overflow in ADDTS Request");
  210. return;
  211. }
  212. wpa_printf(MSG_DEBUG, "WMM: ADDTS Request (Dialog Token %d) for TSPEC "
  213. "from " MACSTR,
  214. mgmt->u.action.u.wmm_action.dialog_token,
  215. MAC2STR(mgmt->sa));
  216. res = wmm_process_tspec(tspec);
  217. wpa_printf(MSG_DEBUG, "WMM: ADDTS processing result: %d", res);
  218. wmm_send_action(hapd, mgmt->sa, tspec, WMM_ACTION_CODE_ADDTS_RESP,
  219. mgmt->u.action.u.wmm_action.dialog_token, res);
  220. }
  221. void hostapd_wmm_action(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
  222. size_t len)
  223. {
  224. int action_code;
  225. int left = len - IEEE80211_HDRLEN - 4;
  226. u8 *pos = ((u8 *) mgmt) + IEEE80211_HDRLEN + 4;
  227. struct ieee802_11_elems elems;
  228. struct sta_info *sta = ap_get_sta(hapd, mgmt->sa);
  229. /* check that the request comes from a valid station */
  230. if (!sta ||
  231. (sta->flags & (WLAN_STA_ASSOC | WLAN_STA_WMM)) !=
  232. (WLAN_STA_ASSOC | WLAN_STA_WMM)) {
  233. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  234. HOSTAPD_LEVEL_DEBUG,
  235. "wmm action received is not from associated wmm"
  236. " station");
  237. /* TODO: respond with action frame refused status code */
  238. return;
  239. }
  240. /* extract the tspec info element */
  241. if (ieee802_11_parse_elems(pos, left, &elems, 1) == ParseFailed) {
  242. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  243. HOSTAPD_LEVEL_DEBUG,
  244. "hostapd_wmm_action - could not parse wmm "
  245. "action");
  246. /* TODO: respond with action frame invalid parameters status
  247. * code */
  248. return;
  249. }
  250. if (!elems.wmm_tspec ||
  251. elems.wmm_tspec_len != (sizeof(struct wmm_tspec_element) - 2)) {
  252. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  253. HOSTAPD_LEVEL_DEBUG,
  254. "hostapd_wmm_action - missing or wrong length "
  255. "tspec");
  256. /* TODO: respond with action frame invalid parameters status
  257. * code */
  258. return;
  259. }
  260. /* TODO: check the request is for an AC with ACM set, if not, refuse
  261. * request */
  262. action_code = mgmt->u.action.u.wmm_action.action_code;
  263. switch (action_code) {
  264. case WMM_ACTION_CODE_ADDTS_REQ:
  265. wmm_addts_req(hapd, mgmt, (struct wmm_tspec_element *)
  266. (elems.wmm_tspec - 2), len);
  267. return;
  268. #if 0
  269. /* TODO: needed for client implementation */
  270. case WMM_ACTION_CODE_ADDTS_RESP:
  271. wmm_setup_request(hapd, mgmt, len);
  272. return;
  273. /* TODO: handle station teardown requests */
  274. case WMM_ACTION_CODE_DELTS:
  275. wmm_teardown(hapd, mgmt, len);
  276. return;
  277. #endif
  278. }
  279. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  280. HOSTAPD_LEVEL_DEBUG,
  281. "hostapd_wmm_action - unknown action code %d",
  282. action_code);
  283. }