ieee802_11_ht.c 7.4 KB

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