sta.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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_find(struct wlantest_bss *bss, const u8 *addr)
  20. {
  21. struct wlantest_sta *sta;
  22. dl_list_for_each(sta, &bss->sta, struct wlantest_sta, list) {
  23. if (os_memcmp(sta->addr, addr, ETH_ALEN) == 0)
  24. return sta;
  25. }
  26. return NULL;
  27. }
  28. struct wlantest_sta * sta_get(struct wlantest_bss *bss, const u8 *addr)
  29. {
  30. struct wlantest_sta *sta;
  31. if (addr[0] & 0x01)
  32. return NULL; /* Skip group addressed frames */
  33. sta = sta_find(bss, addr);
  34. if (sta)
  35. return sta;
  36. sta = os_zalloc(sizeof(*sta));
  37. if (sta == NULL)
  38. return NULL;
  39. sta->bss = bss;
  40. os_memcpy(sta->addr, addr, ETH_ALEN);
  41. dl_list_add(&bss->sta, &sta->list);
  42. wpa_printf(MSG_DEBUG, "Discovered new STA " MACSTR " in BSS " MACSTR,
  43. MAC2STR(sta->addr), MAC2STR(bss->bssid));
  44. return sta;
  45. }
  46. void sta_deinit(struct wlantest_sta *sta)
  47. {
  48. dl_list_del(&sta->list);
  49. os_free(sta->assocreq_ies);
  50. os_free(sta);
  51. }
  52. void sta_update_assoc(struct wlantest_sta *sta, struct ieee802_11_elems *elems)
  53. {
  54. struct wpa_ie_data data;
  55. struct wlantest_bss *bss = sta->bss;
  56. if (elems->wpa_ie && elems->rsn_ie) {
  57. wpa_printf(MSG_INFO, "Both WPA IE and RSN IE included in "
  58. "Association Request frame from " MACSTR,
  59. MAC2STR(sta->addr));
  60. }
  61. if (elems->rsn_ie) {
  62. wpa_hexdump(MSG_DEBUG, "RSN IE", elems->rsn_ie - 2,
  63. elems->rsn_ie_len + 2);
  64. os_memcpy(sta->rsnie, elems->rsn_ie - 2,
  65. elems->rsn_ie_len + 2);
  66. if (wpa_parse_wpa_ie_rsn(sta->rsnie, 2 + sta->rsnie[1], &data)
  67. < 0) {
  68. wpa_printf(MSG_INFO, "Failed to parse RSN IE from "
  69. MACSTR, MAC2STR(sta->addr));
  70. }
  71. } else if (elems->wpa_ie) {
  72. wpa_hexdump(MSG_DEBUG, "WPA IE", elems->wpa_ie - 2,
  73. elems->wpa_ie_len + 2);
  74. os_memcpy(sta->rsnie, elems->wpa_ie - 2,
  75. elems->wpa_ie_len + 2);
  76. if (wpa_parse_wpa_ie_wpa(sta->rsnie, 2 + sta->rsnie[1], &data)
  77. < 0) {
  78. wpa_printf(MSG_INFO, "Failed to parse WPA IE from "
  79. MACSTR, MAC2STR(sta->addr));
  80. }
  81. } else
  82. sta->rsnie[0] = 0;
  83. sta->proto = data.proto;
  84. sta->pairwise_cipher = data.pairwise_cipher;
  85. sta->key_mgmt = data.key_mgmt;
  86. sta->rsn_capab = data.capabilities;
  87. if (bss->proto && (sta->proto & bss->proto) == 0) {
  88. wpa_printf(MSG_INFO, "Mismatch in WPA/WPA2 proto: STA "
  89. MACSTR " 0x%x BSS " MACSTR " 0x%x",
  90. MAC2STR(sta->addr), sta->proto,
  91. MAC2STR(bss->bssid), bss->proto);
  92. }
  93. if (bss->pairwise_cipher &&
  94. (sta->pairwise_cipher & bss->pairwise_cipher) == 0) {
  95. wpa_printf(MSG_INFO, "Mismatch in pairwise cipher: STA "
  96. MACSTR " 0x%x BSS " MACSTR " 0x%x",
  97. MAC2STR(sta->addr), sta->pairwise_cipher,
  98. MAC2STR(bss->bssid), bss->pairwise_cipher);
  99. }
  100. if (sta->proto && data.group_cipher != bss->group_cipher) {
  101. wpa_printf(MSG_INFO, "Mismatch in group cipher: STA "
  102. MACSTR " 0x%x != BSS " MACSTR " 0x%x",
  103. MAC2STR(sta->addr), data.group_cipher,
  104. MAC2STR(bss->bssid), bss->group_cipher);
  105. }
  106. if ((bss->rsn_capab & WPA_CAPABILITY_MFPR) &&
  107. !(sta->rsn_capab & WPA_CAPABILITY_MFPC)) {
  108. wpa_printf(MSG_INFO, "STA " MACSTR " tries to associate "
  109. "without MFP to BSS " MACSTR " that advertises "
  110. "MFPR", MAC2STR(sta->addr), MAC2STR(bss->bssid));
  111. }
  112. wpa_printf(MSG_INFO, "STA " MACSTR
  113. " proto=%s%s%s"
  114. "pairwise=%s%s%s%s"
  115. "key_mgmt=%s%s%s%s%s%s%s%s"
  116. "rsn_capab=%s%s%s%s%s",
  117. MAC2STR(sta->addr),
  118. sta->proto == 0 ? "OPEN " : "",
  119. sta->proto & WPA_PROTO_WPA ? "WPA " : "",
  120. sta->proto & WPA_PROTO_RSN ? "WPA2 " : "",
  121. sta->pairwise_cipher == 0 ? "N/A " : "",
  122. sta->pairwise_cipher & WPA_CIPHER_NONE ? "NONE " : "",
  123. sta->pairwise_cipher & WPA_CIPHER_TKIP ? "TKIP " : "",
  124. sta->pairwise_cipher & WPA_CIPHER_CCMP ? "CCMP " : "",
  125. sta->key_mgmt == 0 ? "N/A " : "",
  126. sta->key_mgmt & WPA_KEY_MGMT_IEEE8021X ? "EAP " : "",
  127. sta->key_mgmt & WPA_KEY_MGMT_PSK ? "PSK " : "",
  128. sta->key_mgmt & WPA_KEY_MGMT_WPA_NONE ? "WPA-NONE " : "",
  129. sta->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X ? "FT-EAP " : "",
  130. sta->key_mgmt & WPA_KEY_MGMT_FT_PSK ? "FT-PSK " : "",
  131. sta->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256 ?
  132. "EAP-SHA256 " : "",
  133. sta->key_mgmt & WPA_KEY_MGMT_PSK_SHA256 ?
  134. "PSK-SHA256 " : "",
  135. sta->rsn_capab & WPA_CAPABILITY_PREAUTH ? "PREAUTH " : "",
  136. sta->rsn_capab & WPA_CAPABILITY_NO_PAIRWISE ?
  137. "NO_PAIRWISE " : "",
  138. sta->rsn_capab & WPA_CAPABILITY_MFPR ? "MFPR " : "",
  139. sta->rsn_capab & WPA_CAPABILITY_MFPC ? "MFPC " : "",
  140. sta->rsn_capab & WPA_CAPABILITY_PEERKEY_ENABLED ?
  141. "PEERKEY " : "");
  142. }