tkip_countermeasures.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * hostapd / TKIP countermeasures
  3. * Copyright (c) 2002-2009, 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 "includes.h"
  15. #include "common.h"
  16. #include "hostapd.h"
  17. #include "eloop.h"
  18. #include "driver_i.h"
  19. #include "sta_info.h"
  20. #include "mlme.h"
  21. #include "wpa.h"
  22. #include "common/ieee802_11_defs.h"
  23. #include "tkip_countermeasures.h"
  24. static void ieee80211_tkip_countermeasures_stop(void *eloop_ctx,
  25. void *timeout_ctx)
  26. {
  27. struct hostapd_data *hapd = eloop_ctx;
  28. hapd->tkip_countermeasures = 0;
  29. hostapd_set_countermeasures(hapd, 0);
  30. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
  31. HOSTAPD_LEVEL_INFO, "TKIP countermeasures ended");
  32. }
  33. static void ieee80211_tkip_countermeasures_start(struct hostapd_data *hapd)
  34. {
  35. struct sta_info *sta;
  36. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
  37. HOSTAPD_LEVEL_INFO, "TKIP countermeasures initiated");
  38. wpa_auth_countermeasures_start(hapd->wpa_auth);
  39. hapd->tkip_countermeasures = 1;
  40. hostapd_set_countermeasures(hapd, 1);
  41. wpa_gtk_rekey(hapd->wpa_auth);
  42. eloop_cancel_timeout(ieee80211_tkip_countermeasures_stop, hapd, NULL);
  43. eloop_register_timeout(60, 0, ieee80211_tkip_countermeasures_stop,
  44. hapd, NULL);
  45. for (sta = hapd->sta_list; sta != NULL; sta = sta->next) {
  46. hostapd_sta_deauth(hapd, sta->addr,
  47. WLAN_REASON_MICHAEL_MIC_FAILURE);
  48. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC |
  49. WLAN_STA_AUTHORIZED);
  50. hostapd_sta_remove(hapd, sta->addr);
  51. }
  52. }
  53. void michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local)
  54. {
  55. time_t now;
  56. if (addr && local) {
  57. struct sta_info *sta = ap_get_sta(hapd, addr);
  58. if (sta != NULL) {
  59. wpa_auth_sta_local_mic_failure_report(sta->wpa_sm);
  60. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  61. HOSTAPD_LEVEL_INFO,
  62. "Michael MIC failure detected in "
  63. "received frame");
  64. mlme_michaelmicfailure_indication(hapd, addr);
  65. } else {
  66. wpa_printf(MSG_DEBUG,
  67. "MLME-MICHAELMICFAILURE.indication "
  68. "for not associated STA (" MACSTR
  69. ") ignored", MAC2STR(addr));
  70. return;
  71. }
  72. }
  73. time(&now);
  74. if (now > hapd->michael_mic_failure + 60) {
  75. hapd->michael_mic_failures = 1;
  76. } else {
  77. hapd->michael_mic_failures++;
  78. if (hapd->michael_mic_failures > 1)
  79. ieee80211_tkip_countermeasures_start(hapd);
  80. }
  81. hapd->michael_mic_failure = now;
  82. }