ht.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. /*
  2. * HT handling
  3. *
  4. * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
  5. * Copyright 2002-2005, Instant802 Networks, Inc.
  6. * Copyright 2005-2006, Devicescape Software, Inc.
  7. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  8. * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
  9. * Copyright 2007-2010, Intel Corporation
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. */
  15. #include <linux/ieee80211.h>
  16. #include <linux/export.h>
  17. #include <net/mac80211.h>
  18. #include "ieee80211_i.h"
  19. #include "rate.h"
  20. static void __check_htcap_disable(struct ieee80211_sub_if_data *sdata,
  21. struct ieee80211_sta_ht_cap *ht_cap,
  22. u16 flag)
  23. {
  24. __le16 le_flag = cpu_to_le16(flag);
  25. if (sdata->u.mgd.ht_capa_mask.cap_info & le_flag) {
  26. if (!(sdata->u.mgd.ht_capa.cap_info & le_flag))
  27. ht_cap->cap &= ~flag;
  28. }
  29. }
  30. void ieee80211_apply_htcap_overrides(struct ieee80211_sub_if_data *sdata,
  31. struct ieee80211_sta_ht_cap *ht_cap)
  32. {
  33. u8 *scaps = (u8 *)(&sdata->u.mgd.ht_capa.mcs.rx_mask);
  34. u8 *smask = (u8 *)(&sdata->u.mgd.ht_capa_mask.mcs.rx_mask);
  35. int i;
  36. if (sdata->vif.type != NL80211_IFTYPE_STATION) {
  37. /* AP interfaces call this code when adding new stations,
  38. * so just silently ignore non station interfaces.
  39. */
  40. return;
  41. }
  42. /* NOTE: If you add more over-rides here, update register_hw
  43. * ht_capa_mod_msk logic in main.c as well.
  44. * And, if this method can ever change ht_cap.ht_supported, fix
  45. * the check in ieee80211_add_ht_ie.
  46. */
  47. /* check for HT over-rides, MCS rates first. */
  48. for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) {
  49. u8 m = smask[i];
  50. ht_cap->mcs.rx_mask[i] &= ~m; /* turn off all masked bits */
  51. /* Add back rates that are supported */
  52. ht_cap->mcs.rx_mask[i] |= (m & scaps[i]);
  53. }
  54. /* Force removal of HT-40 capabilities? */
  55. __check_htcap_disable(sdata, ht_cap, IEEE80211_HT_CAP_SUP_WIDTH_20_40);
  56. __check_htcap_disable(sdata, ht_cap, IEEE80211_HT_CAP_SGI_40);
  57. /* Allow user to disable SGI-20 (SGI-40 is handled above) */
  58. __check_htcap_disable(sdata, ht_cap, IEEE80211_HT_CAP_SGI_20);
  59. /* Allow user to disable the max-AMSDU bit. */
  60. __check_htcap_disable(sdata, ht_cap, IEEE80211_HT_CAP_MAX_AMSDU);
  61. /* Allow user to decrease AMPDU factor */
  62. if (sdata->u.mgd.ht_capa_mask.ampdu_params_info &
  63. IEEE80211_HT_AMPDU_PARM_FACTOR) {
  64. u8 n = sdata->u.mgd.ht_capa.ampdu_params_info
  65. & IEEE80211_HT_AMPDU_PARM_FACTOR;
  66. if (n < ht_cap->ampdu_factor)
  67. ht_cap->ampdu_factor = n;
  68. }
  69. /* Allow the user to increase AMPDU density. */
  70. if (sdata->u.mgd.ht_capa_mask.ampdu_params_info &
  71. IEEE80211_HT_AMPDU_PARM_DENSITY) {
  72. u8 n = (sdata->u.mgd.ht_capa.ampdu_params_info &
  73. IEEE80211_HT_AMPDU_PARM_DENSITY)
  74. >> IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT;
  75. if (n > ht_cap->ampdu_density)
  76. ht_cap->ampdu_density = n;
  77. }
  78. }
  79. void ieee80211_ht_cap_ie_to_sta_ht_cap(struct ieee80211_sub_if_data *sdata,
  80. struct ieee80211_supported_band *sband,
  81. struct ieee80211_ht_cap *ht_cap_ie,
  82. struct ieee80211_sta_ht_cap *ht_cap)
  83. {
  84. u8 ampdu_info, tx_mcs_set_cap;
  85. int i, max_tx_streams;
  86. BUG_ON(!ht_cap);
  87. memset(ht_cap, 0, sizeof(*ht_cap));
  88. if (!ht_cap_ie || !sband->ht_cap.ht_supported)
  89. return;
  90. ht_cap->ht_supported = true;
  91. /*
  92. * The bits listed in this expression should be
  93. * the same for the peer and us, if the station
  94. * advertises more then we can't use those thus
  95. * we mask them out.
  96. */
  97. ht_cap->cap = le16_to_cpu(ht_cap_ie->cap_info) &
  98. (sband->ht_cap.cap |
  99. ~(IEEE80211_HT_CAP_LDPC_CODING |
  100. IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
  101. IEEE80211_HT_CAP_GRN_FLD |
  102. IEEE80211_HT_CAP_SGI_20 |
  103. IEEE80211_HT_CAP_SGI_40 |
  104. IEEE80211_HT_CAP_DSSSCCK40));
  105. /* Unset 40 MHz if we're not using a 40 MHz channel */
  106. switch (sdata->vif.bss_conf.chandef.width) {
  107. case NL80211_CHAN_WIDTH_20_NOHT:
  108. case NL80211_CHAN_WIDTH_20:
  109. ht_cap->cap &= ~IEEE80211_HT_CAP_SGI_40;
  110. ht_cap->cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  111. break;
  112. case NL80211_CHAN_WIDTH_40:
  113. case NL80211_CHAN_WIDTH_80:
  114. case NL80211_CHAN_WIDTH_80P80:
  115. case NL80211_CHAN_WIDTH_160:
  116. break;
  117. }
  118. /*
  119. * The STBC bits are asymmetric -- if we don't have
  120. * TX then mask out the peer's RX and vice versa.
  121. */
  122. if (!(sband->ht_cap.cap & IEEE80211_HT_CAP_TX_STBC))
  123. ht_cap->cap &= ~IEEE80211_HT_CAP_RX_STBC;
  124. if (!(sband->ht_cap.cap & IEEE80211_HT_CAP_RX_STBC))
  125. ht_cap->cap &= ~IEEE80211_HT_CAP_TX_STBC;
  126. ampdu_info = ht_cap_ie->ampdu_params_info;
  127. ht_cap->ampdu_factor =
  128. ampdu_info & IEEE80211_HT_AMPDU_PARM_FACTOR;
  129. ht_cap->ampdu_density =
  130. (ampdu_info & IEEE80211_HT_AMPDU_PARM_DENSITY) >> 2;
  131. /* own MCS TX capabilities */
  132. tx_mcs_set_cap = sband->ht_cap.mcs.tx_params;
  133. /* Copy peer MCS TX capabilities, the driver might need them. */
  134. ht_cap->mcs.tx_params = ht_cap_ie->mcs.tx_params;
  135. /* can we TX with MCS rates? */
  136. if (!(tx_mcs_set_cap & IEEE80211_HT_MCS_TX_DEFINED))
  137. return;
  138. /* Counting from 0, therefore +1 */
  139. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_RX_DIFF)
  140. max_tx_streams =
  141. ((tx_mcs_set_cap & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
  142. >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
  143. else
  144. max_tx_streams = IEEE80211_HT_MCS_TX_MAX_STREAMS;
  145. /*
  146. * 802.11n-2009 20.3.5 / 20.6 says:
  147. * - indices 0 to 7 and 32 are single spatial stream
  148. * - 8 to 31 are multiple spatial streams using equal modulation
  149. * [8..15 for two streams, 16..23 for three and 24..31 for four]
  150. * - remainder are multiple spatial streams using unequal modulation
  151. */
  152. for (i = 0; i < max_tx_streams; i++)
  153. ht_cap->mcs.rx_mask[i] =
  154. sband->ht_cap.mcs.rx_mask[i] & ht_cap_ie->mcs.rx_mask[i];
  155. if (tx_mcs_set_cap & IEEE80211_HT_MCS_TX_UNEQUAL_MODULATION)
  156. for (i = IEEE80211_HT_MCS_UNEQUAL_MODULATION_START_BYTE;
  157. i < IEEE80211_HT_MCS_MASK_LEN; i++)
  158. ht_cap->mcs.rx_mask[i] =
  159. sband->ht_cap.mcs.rx_mask[i] &
  160. ht_cap_ie->mcs.rx_mask[i];
  161. /* handle MCS rate 32 too */
  162. if (sband->ht_cap.mcs.rx_mask[32/8] & ht_cap_ie->mcs.rx_mask[32/8] & 1)
  163. ht_cap->mcs.rx_mask[32/8] |= 1;
  164. /*
  165. * If user has specified capability over-rides, take care
  166. * of that here.
  167. */
  168. ieee80211_apply_htcap_overrides(sdata, ht_cap);
  169. }
  170. void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta,
  171. enum ieee80211_agg_stop_reason reason)
  172. {
  173. int i;
  174. cancel_work_sync(&sta->ampdu_mlme.work);
  175. for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
  176. __ieee80211_stop_tx_ba_session(sta, i, reason);
  177. __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT,
  178. WLAN_REASON_QSTA_LEAVE_QBSS,
  179. reason != AGG_STOP_DESTROY_STA &&
  180. reason != AGG_STOP_PEER_REQUEST);
  181. }
  182. }
  183. void ieee80211_ba_session_work(struct work_struct *work)
  184. {
  185. struct sta_info *sta =
  186. container_of(work, struct sta_info, ampdu_mlme.work);
  187. struct tid_ampdu_tx *tid_tx;
  188. int tid;
  189. /*
  190. * When this flag is set, new sessions should be
  191. * blocked, and existing sessions will be torn
  192. * down by the code that set the flag, so this
  193. * need not run.
  194. */
  195. if (test_sta_flag(sta, WLAN_STA_BLOCK_BA))
  196. return;
  197. mutex_lock(&sta->ampdu_mlme.mtx);
  198. for (tid = 0; tid < IEEE80211_NUM_TIDS; tid++) {
  199. if (test_and_clear_bit(tid, sta->ampdu_mlme.tid_rx_timer_expired))
  200. ___ieee80211_stop_rx_ba_session(
  201. sta, tid, WLAN_BACK_RECIPIENT,
  202. WLAN_REASON_QSTA_TIMEOUT, true);
  203. if (test_and_clear_bit(tid,
  204. sta->ampdu_mlme.tid_rx_stop_requested))
  205. ___ieee80211_stop_rx_ba_session(
  206. sta, tid, WLAN_BACK_RECIPIENT,
  207. WLAN_REASON_UNSPECIFIED, true);
  208. tid_tx = sta->ampdu_mlme.tid_start_tx[tid];
  209. if (tid_tx) {
  210. /*
  211. * Assign it over to the normal tid_tx array
  212. * where it "goes live".
  213. */
  214. spin_lock_bh(&sta->lock);
  215. sta->ampdu_mlme.tid_start_tx[tid] = NULL;
  216. /* could there be a race? */
  217. if (sta->ampdu_mlme.tid_tx[tid])
  218. kfree(tid_tx);
  219. else
  220. ieee80211_assign_tid_tx(sta, tid, tid_tx);
  221. spin_unlock_bh(&sta->lock);
  222. ieee80211_tx_ba_session_handle_start(sta, tid);
  223. continue;
  224. }
  225. tid_tx = rcu_dereference_protected_tid_tx(sta, tid);
  226. if (tid_tx && test_and_clear_bit(HT_AGG_STATE_WANT_STOP,
  227. &tid_tx->state))
  228. ___ieee80211_stop_tx_ba_session(sta, tid,
  229. AGG_STOP_LOCAL_REQUEST);
  230. }
  231. mutex_unlock(&sta->ampdu_mlme.mtx);
  232. }
  233. void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata,
  234. const u8 *da, u16 tid,
  235. u16 initiator, u16 reason_code)
  236. {
  237. struct ieee80211_local *local = sdata->local;
  238. struct sk_buff *skb;
  239. struct ieee80211_mgmt *mgmt;
  240. u16 params;
  241. skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom);
  242. if (!skb)
  243. return;
  244. skb_reserve(skb, local->hw.extra_tx_headroom);
  245. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  246. memset(mgmt, 0, 24);
  247. memcpy(mgmt->da, da, ETH_ALEN);
  248. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  249. if (sdata->vif.type == NL80211_IFTYPE_AP ||
  250. sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
  251. sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
  252. memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
  253. else if (sdata->vif.type == NL80211_IFTYPE_STATION)
  254. memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
  255. else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
  256. memcpy(mgmt->bssid, sdata->u.ibss.bssid, ETH_ALEN);
  257. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  258. IEEE80211_STYPE_ACTION);
  259. skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba));
  260. mgmt->u.action.category = WLAN_CATEGORY_BACK;
  261. mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
  262. params = (u16)(initiator << 11); /* bit 11 initiator */
  263. params |= (u16)(tid << 12); /* bit 15:12 TID number */
  264. mgmt->u.action.u.delba.params = cpu_to_le16(params);
  265. mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code);
  266. ieee80211_tx_skb_tid(sdata, skb, tid);
  267. }
  268. void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata,
  269. struct sta_info *sta,
  270. struct ieee80211_mgmt *mgmt, size_t len)
  271. {
  272. u16 tid, params;
  273. u16 initiator;
  274. params = le16_to_cpu(mgmt->u.action.u.delba.params);
  275. tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12;
  276. initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11;
  277. ht_dbg_ratelimited(sdata, "delba from %pM (%s) tid %d reason code %d\n",
  278. mgmt->sa, initiator ? "initiator" : "recipient",
  279. tid,
  280. le16_to_cpu(mgmt->u.action.u.delba.reason_code));
  281. if (initiator == WLAN_BACK_INITIATOR)
  282. __ieee80211_stop_rx_ba_session(sta, tid, WLAN_BACK_INITIATOR, 0,
  283. true);
  284. else
  285. __ieee80211_stop_tx_ba_session(sta, tid, AGG_STOP_PEER_REQUEST);
  286. }
  287. int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
  288. enum ieee80211_smps_mode smps, const u8 *da,
  289. const u8 *bssid)
  290. {
  291. struct ieee80211_local *local = sdata->local;
  292. struct sk_buff *skb;
  293. struct ieee80211_mgmt *action_frame;
  294. /* 27 = header + category + action + smps mode */
  295. skb = dev_alloc_skb(27 + local->hw.extra_tx_headroom);
  296. if (!skb)
  297. return -ENOMEM;
  298. skb_reserve(skb, local->hw.extra_tx_headroom);
  299. action_frame = (void *)skb_put(skb, 27);
  300. memcpy(action_frame->da, da, ETH_ALEN);
  301. memcpy(action_frame->sa, sdata->dev->dev_addr, ETH_ALEN);
  302. memcpy(action_frame->bssid, bssid, ETH_ALEN);
  303. action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  304. IEEE80211_STYPE_ACTION);
  305. action_frame->u.action.category = WLAN_CATEGORY_HT;
  306. action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS;
  307. switch (smps) {
  308. case IEEE80211_SMPS_AUTOMATIC:
  309. case IEEE80211_SMPS_NUM_MODES:
  310. WARN_ON(1);
  311. case IEEE80211_SMPS_OFF:
  312. action_frame->u.action.u.ht_smps.smps_control =
  313. WLAN_HT_SMPS_CONTROL_DISABLED;
  314. break;
  315. case IEEE80211_SMPS_STATIC:
  316. action_frame->u.action.u.ht_smps.smps_control =
  317. WLAN_HT_SMPS_CONTROL_STATIC;
  318. break;
  319. case IEEE80211_SMPS_DYNAMIC:
  320. action_frame->u.action.u.ht_smps.smps_control =
  321. WLAN_HT_SMPS_CONTROL_DYNAMIC;
  322. break;
  323. }
  324. /* we'll do more on status of this frame */
  325. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
  326. ieee80211_tx_skb(sdata, skb);
  327. return 0;
  328. }
  329. void ieee80211_request_smps_work(struct work_struct *work)
  330. {
  331. struct ieee80211_sub_if_data *sdata =
  332. container_of(work, struct ieee80211_sub_if_data,
  333. u.mgd.request_smps_work);
  334. mutex_lock(&sdata->u.mgd.mtx);
  335. __ieee80211_request_smps(sdata, sdata->u.mgd.driver_smps_mode);
  336. mutex_unlock(&sdata->u.mgd.mtx);
  337. }
  338. void ieee80211_request_smps(struct ieee80211_vif *vif,
  339. enum ieee80211_smps_mode smps_mode)
  340. {
  341. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  342. if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
  343. return;
  344. if (WARN_ON(smps_mode == IEEE80211_SMPS_OFF))
  345. smps_mode = IEEE80211_SMPS_AUTOMATIC;
  346. sdata->u.mgd.driver_smps_mode = smps_mode;
  347. ieee80211_queue_work(&sdata->local->hw,
  348. &sdata->u.mgd.request_smps_work);
  349. }
  350. /* this might change ... don't want non-open drivers using it */
  351. EXPORT_SYMBOL_GPL(ieee80211_request_smps);