sta.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * STA list
  3. * Copyright (c) 2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include "utils/common.h"
  16. #include "common/defs.h"
  17. #include "common/ieee802_11_common.h"
  18. #include "wlantest.h"
  19. struct wlantest_sta * sta_get(struct wlantest_bss *bss, const u8 *addr)
  20. {
  21. struct wlantest_sta *sta;
  22. if (addr[0] & 0x01)
  23. return NULL; /* Skip group addressed frames */
  24. dl_list_for_each(sta, &bss->sta, struct wlantest_sta, list) {
  25. if (os_memcmp(sta->addr, addr, ETH_ALEN) == 0)
  26. return sta;
  27. }
  28. sta = os_zalloc(sizeof(*sta));
  29. if (sta == NULL)
  30. return NULL;
  31. sta->bss = bss;
  32. os_memcpy(sta->addr, addr, ETH_ALEN);
  33. dl_list_add(&bss->sta, &sta->list);
  34. wpa_printf(MSG_DEBUG, "Discovered new STA " MACSTR " in BSS " MACSTR,
  35. MAC2STR(sta->addr), MAC2STR(bss->bssid));
  36. return sta;
  37. }
  38. void sta_deinit(struct wlantest_sta *sta)
  39. {
  40. dl_list_del(&sta->list);
  41. os_free(sta->assocreq_ies);
  42. os_free(sta);
  43. }
  44. void sta_update_assoc(struct wlantest_sta *sta, struct ieee802_11_elems *elems)
  45. {
  46. struct wpa_ie_data data;
  47. struct wlantest_bss *bss = sta->bss;
  48. if (elems->wpa_ie && elems->rsn_ie) {
  49. wpa_printf(MSG_INFO, "Both WPA IE and RSN IE included in "
  50. "Association Request frame from " MACSTR,
  51. MAC2STR(sta->addr));
  52. }
  53. if (elems->rsn_ie) {
  54. wpa_hexdump(MSG_DEBUG, "RSN IE", elems->rsn_ie - 2,
  55. elems->rsn_ie_len + 2);
  56. os_memcpy(sta->rsnie, elems->rsn_ie - 2,
  57. elems->rsn_ie_len + 2);
  58. if (wpa_parse_wpa_ie_rsn(sta->rsnie, 2 + sta->rsnie[1], &data)
  59. < 0) {
  60. wpa_printf(MSG_INFO, "Failed to parse RSN IE from "
  61. MACSTR, MAC2STR(sta->addr));
  62. }
  63. } else if (elems->wpa_ie) {
  64. wpa_hexdump(MSG_DEBUG, "WPA IE", elems->wpa_ie - 2,
  65. elems->wpa_ie_len + 2);
  66. os_memcpy(sta->rsnie, elems->wpa_ie - 2,
  67. elems->wpa_ie_len + 2);
  68. if (wpa_parse_wpa_ie_wpa(sta->rsnie, 2 + sta->rsnie[1], &data)
  69. < 0) {
  70. wpa_printf(MSG_INFO, "Failed to parse WPA IE from "
  71. MACSTR, MAC2STR(sta->addr));
  72. }
  73. } else
  74. sta->rsnie[0] = 0;
  75. sta->proto = data.proto;
  76. sta->pairwise_cipher = data.pairwise_cipher;
  77. sta->key_mgmt = data.key_mgmt;
  78. sta->rsn_capab = data.capabilities;
  79. if (bss->proto && (sta->proto & bss->proto) == 0) {
  80. wpa_printf(MSG_INFO, "Mismatch in WPA/WPA2 proto: STA "
  81. MACSTR " 0x%x BSS " MACSTR " 0x%x",
  82. MAC2STR(sta->addr), sta->proto,
  83. MAC2STR(bss->bssid), bss->proto);
  84. }
  85. if (bss->pairwise_cipher &&
  86. (sta->pairwise_cipher & bss->pairwise_cipher) == 0) {
  87. wpa_printf(MSG_INFO, "Mismatch in pairwise cipher: STA "
  88. MACSTR " 0x%x BSS " MACSTR " 0x%x",
  89. MAC2STR(sta->addr), sta->pairwise_cipher,
  90. MAC2STR(bss->bssid), bss->pairwise_cipher);
  91. }
  92. if (sta->proto && data.group_cipher != bss->group_cipher) {
  93. wpa_printf(MSG_INFO, "Mismatch in group cipher: STA "
  94. MACSTR " 0x%x != BSS " MACSTR " 0x%x",
  95. MAC2STR(sta->addr), data.group_cipher,
  96. MAC2STR(bss->bssid), bss->group_cipher);
  97. }
  98. if ((bss->rsn_capab & WPA_CAPABILITY_MFPR) &&
  99. !(sta->rsn_capab & WPA_CAPABILITY_MFPC)) {
  100. wpa_printf(MSG_INFO, "STA " MACSTR " tries to associate "
  101. "without MFP to BSS " MACSTR " that advertises "
  102. "MFPR", MAC2STR(sta->addr), MAC2STR(bss->bssid));
  103. }
  104. wpa_printf(MSG_INFO, "STA " MACSTR
  105. " proto=%s%s%s"
  106. "pairwise=%s%s%s%s"
  107. "key_mgmt=%s%s%s%s%s%s%s%s"
  108. "rsn_capab=%s%s%s%s%s",
  109. MAC2STR(sta->addr),
  110. sta->proto == 0 ? "OPEN " : "",
  111. sta->proto & WPA_PROTO_WPA ? "WPA " : "",
  112. sta->proto & WPA_PROTO_RSN ? "WPA2 " : "",
  113. sta->pairwise_cipher == 0 ? "N/A " : "",
  114. sta->pairwise_cipher & WPA_CIPHER_NONE ? "NONE " : "",
  115. sta->pairwise_cipher & WPA_CIPHER_TKIP ? "TKIP " : "",
  116. sta->pairwise_cipher & WPA_CIPHER_CCMP ? "CCMP " : "",
  117. sta->key_mgmt == 0 ? "N/A " : "",
  118. sta->key_mgmt & WPA_KEY_MGMT_IEEE8021X ? "EAP " : "",
  119. sta->key_mgmt & WPA_KEY_MGMT_PSK ? "PSK " : "",
  120. sta->key_mgmt & WPA_KEY_MGMT_WPA_NONE ? "WPA-NONE " : "",
  121. sta->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X ? "FT-EAP " : "",
  122. sta->key_mgmt & WPA_KEY_MGMT_FT_PSK ? "FT-PSK " : "",
  123. sta->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256 ?
  124. "EAP-SHA256 " : "",
  125. sta->key_mgmt & WPA_KEY_MGMT_PSK_SHA256 ?
  126. "PSK-SHA256 " : "",
  127. sta->rsn_capab & WPA_CAPABILITY_PREAUTH ? "PREAUTH " : "",
  128. sta->rsn_capab & WPA_CAPABILITY_NO_PAIRWISE ?
  129. "NO_PAIRWISE " : "",
  130. sta->rsn_capab & WPA_CAPABILITY_MFPR ? "MFPR " : "",
  131. sta->rsn_capab & WPA_CAPABILITY_MFPC ? "MFPC " : "",
  132. sta->rsn_capab & WPA_CAPABILITY_PEERKEY_ENABLED ?
  133. "PEERKEY " : "");
  134. }