ieee802_11_ht.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /*
  2. * hostapd / IEEE 802.11n HT
  3. * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2007-2008, Intel Corporation
  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 "drivers/driver.h"
  18. #include "hostapd.h"
  19. #include "config.h"
  20. #include "sta_flags.h"
  21. #include "sta_info.h"
  22. #include "beacon.h"
  23. #include "ieee802_11.h"
  24. u8 * hostapd_eid_ht_capabilities(struct hostapd_data *hapd, u8 *eid)
  25. {
  26. struct ieee80211_ht_capabilities *cap;
  27. u8 *pos = eid;
  28. if (!hapd->iconf->ieee80211n)
  29. return eid;
  30. *pos++ = WLAN_EID_HT_CAP;
  31. *pos++ = sizeof(*cap);
  32. cap = (struct ieee80211_ht_capabilities *) pos;
  33. os_memset(cap, 0, sizeof(*cap));
  34. cap->ht_capabilities_info = host_to_le16(hapd->iconf->ht_capab);
  35. cap->a_mpdu_params = hapd->iface->current_mode->a_mpdu_params;
  36. os_memcpy(cap->supported_mcs_set, hapd->iface->current_mode->mcs_set,
  37. 16);
  38. /* TODO: ht_extended_capabilities (now fully disabled) */
  39. /* TODO: tx_bf_capability_info (now fully disabled) */
  40. /* TODO: asel_capabilities (now fully disabled) */
  41. pos += sizeof(*cap);
  42. return pos;
  43. }
  44. u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid)
  45. {
  46. struct ieee80211_ht_operation *oper;
  47. u8 *pos = eid;
  48. if (!hapd->iconf->ieee80211n)
  49. return eid;
  50. *pos++ = WLAN_EID_HT_OPERATION;
  51. *pos++ = sizeof(*oper);
  52. oper = (struct ieee80211_ht_operation *) pos;
  53. os_memset(oper, 0, sizeof(*oper));
  54. oper->control_chan = hapd->iconf->channel;
  55. oper->operation_mode = host_to_le16(hapd->iface->ht_op_mode);
  56. if (hapd->iconf->secondary_channel == 1)
  57. oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE |
  58. HT_INFO_HT_PARAM_REC_TRANS_CHNL_WIDTH;
  59. if (hapd->iconf->secondary_channel == -1)
  60. oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW |
  61. HT_INFO_HT_PARAM_REC_TRANS_CHNL_WIDTH;
  62. pos += sizeof(*oper);
  63. return pos;
  64. }
  65. /*
  66. op_mode
  67. Set to 0 (HT pure) under the followign conditions
  68. - all STAs in the BSS are 20/40 MHz HT in 20/40 MHz BSS or
  69. - all STAs in the BSS are 20 MHz HT in 20 MHz BSS
  70. Set to 1 (HT non-member protection) if there may be non-HT STAs
  71. in both the primary and the secondary channel
  72. Set to 2 if only HT STAs are associated in BSS,
  73. however and at least one 20 MHz HT STA is associated
  74. Set to 3 (HT mixed mode) when one or more non-HT STAs are associated
  75. (currently non-GF HT station is considered as non-HT STA also)
  76. */
  77. int hostapd_ht_operation_update(struct hostapd_iface *iface)
  78. {
  79. u16 cur_op_mode, new_op_mode;
  80. int op_mode_changes = 0;
  81. if (!iface->conf->ieee80211n || iface->conf->ht_op_mode_fixed)
  82. return 0;
  83. wpa_printf(MSG_DEBUG, "%s current operation mode=0x%X",
  84. __func__, iface->ht_op_mode);
  85. if (!(iface->ht_op_mode & HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT)
  86. && iface->num_sta_ht_no_gf) {
  87. iface->ht_op_mode |=
  88. HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT;
  89. op_mode_changes++;
  90. } else if ((iface->ht_op_mode &
  91. HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT) &&
  92. iface->num_sta_ht_no_gf == 0) {
  93. iface->ht_op_mode &=
  94. ~HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT;
  95. op_mode_changes++;
  96. }
  97. if (!(iface->ht_op_mode & HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT) &&
  98. (iface->num_sta_no_ht || iface->olbc_ht)) {
  99. iface->ht_op_mode |= HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT;
  100. op_mode_changes++;
  101. } else if ((iface->ht_op_mode &
  102. HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT) &&
  103. (iface->num_sta_no_ht == 0 && !iface->olbc_ht)) {
  104. iface->ht_op_mode &=
  105. ~HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT;
  106. op_mode_changes++;
  107. }
  108. /* Note: currently we switch to the MIXED op mode if HT non-greenfield
  109. * station is associated. Probably it's a theoretical case, since
  110. * it looks like all known HT STAs support greenfield.
  111. */
  112. new_op_mode = 0;
  113. if (iface->num_sta_no_ht ||
  114. (iface->ht_op_mode & HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT))
  115. new_op_mode = OP_MODE_MIXED;
  116. else if ((iface->conf->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET)
  117. && iface->num_sta_ht_20mhz)
  118. new_op_mode = OP_MODE_20MHZ_HT_STA_ASSOCED;
  119. else if (iface->olbc_ht)
  120. new_op_mode = OP_MODE_MAY_BE_LEGACY_STAS;
  121. else
  122. new_op_mode = OP_MODE_PURE;
  123. cur_op_mode = iface->ht_op_mode & HT_INFO_OPERATION_MODE_OP_MODE_MASK;
  124. if (cur_op_mode != new_op_mode) {
  125. iface->ht_op_mode &= ~HT_INFO_OPERATION_MODE_OP_MODE_MASK;
  126. iface->ht_op_mode |= new_op_mode;
  127. op_mode_changes++;
  128. }
  129. wpa_printf(MSG_DEBUG, "%s new operation mode=0x%X changes=%d",
  130. __func__, iface->ht_op_mode, op_mode_changes);
  131. return op_mode_changes;
  132. }
  133. u16 copy_sta_ht_capab(struct sta_info *sta, const u8 *ht_capab,
  134. size_t ht_capab_len)
  135. {
  136. if (!ht_capab ||
  137. ht_capab_len < sizeof(struct ieee80211_ht_capabilities)) {
  138. sta->flags &= ~WLAN_STA_HT;
  139. os_free(sta->ht_capabilities);
  140. sta->ht_capabilities = NULL;
  141. return WLAN_STATUS_SUCCESS;
  142. }
  143. if (sta->ht_capabilities == NULL) {
  144. sta->ht_capabilities =
  145. os_zalloc(sizeof(struct ieee80211_ht_capabilities));
  146. if (sta->ht_capabilities == NULL)
  147. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  148. }
  149. sta->flags |= WLAN_STA_HT;
  150. os_memcpy(sta->ht_capabilities, ht_capab,
  151. sizeof(struct ieee80211_ht_capabilities));
  152. return WLAN_STATUS_SUCCESS;
  153. }
  154. static void update_sta_ht(struct hostapd_data *hapd, struct sta_info *sta)
  155. {
  156. u16 ht_capab;
  157. ht_capab = le_to_host16(sta->ht_capabilities->ht_capabilities_info);
  158. wpa_printf(MSG_DEBUG, "HT: STA " MACSTR " HT Capabilities Info: "
  159. "0x%04x", MAC2STR(sta->addr), ht_capab);
  160. if ((ht_capab & HT_CAP_INFO_GREEN_FIELD) == 0) {
  161. if (!sta->no_ht_gf_set) {
  162. sta->no_ht_gf_set = 1;
  163. hapd->iface->num_sta_ht_no_gf++;
  164. }
  165. wpa_printf(MSG_DEBUG, "%s STA " MACSTR " - no greenfield, num "
  166. "of non-gf stations %d",
  167. __func__, MAC2STR(sta->addr),
  168. hapd->iface->num_sta_ht_no_gf);
  169. }
  170. if ((ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET) == 0) {
  171. if (!sta->ht_20mhz_set) {
  172. sta->ht_20mhz_set = 1;
  173. hapd->iface->num_sta_ht_20mhz++;
  174. }
  175. wpa_printf(MSG_DEBUG, "%s STA " MACSTR " - 20 MHz HT, num of "
  176. "20MHz HT STAs %d",
  177. __func__, MAC2STR(sta->addr),
  178. hapd->iface->num_sta_ht_20mhz);
  179. }
  180. }
  181. static void update_sta_no_ht(struct hostapd_data *hapd, struct sta_info *sta)
  182. {
  183. if (!sta->no_ht_set) {
  184. sta->no_ht_set = 1;
  185. hapd->iface->num_sta_no_ht++;
  186. }
  187. if (hapd->iconf->ieee80211n) {
  188. wpa_printf(MSG_DEBUG, "%s STA " MACSTR " - no HT, num of "
  189. "non-HT stations %d",
  190. __func__, MAC2STR(sta->addr),
  191. hapd->iface->num_sta_no_ht);
  192. }
  193. }
  194. void update_ht_state(struct hostapd_data *hapd, struct sta_info *sta)
  195. {
  196. if ((sta->flags & WLAN_STA_HT) && sta->ht_capabilities)
  197. update_sta_ht(hapd, sta);
  198. else
  199. update_sta_no_ht(hapd, sta);
  200. if (hostapd_ht_operation_update(hapd->iface) > 0)
  201. ieee802_11_set_beacons(hapd->iface);
  202. }
  203. void hostapd_get_ht_capab(struct hostapd_data *hapd,
  204. struct ieee80211_ht_capabilities *ht_cap,
  205. struct ieee80211_ht_capabilities *neg_ht_cap)
  206. {
  207. u16 cap;
  208. if (ht_cap == NULL)
  209. return;
  210. os_memcpy(neg_ht_cap, ht_cap, sizeof(*neg_ht_cap));
  211. cap = le_to_host16(neg_ht_cap->ht_capabilities_info);
  212. cap &= hapd->iconf->ht_capab;
  213. cap |= (hapd->iconf->ht_capab & HT_CAP_INFO_SMPS_DISABLED);
  214. /* FIXME: Rx STBC needs to be handled specially */
  215. cap |= (hapd->iconf->ht_capab & HT_CAP_INFO_RX_STBC_MASK);
  216. neg_ht_cap->ht_capabilities_info = host_to_le16(cap);
  217. }