ap_mlme.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * hostapd / IEEE 802.11 MLME
  3. * Copyright 2003-2006, Jouni Malinen <j@w1.fi>
  4. * Copyright 2003-2004, Instant802 Networks, Inc.
  5. * Copyright 2005-2006, Devicescape Software, Inc.
  6. *
  7. * This software may be distributed under the terms of the BSD license.
  8. * See README for more details.
  9. */
  10. #include "utils/includes.h"
  11. #include "utils/common.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "ieee802_11.h"
  14. #include "wpa_auth.h"
  15. #include "sta_info.h"
  16. #include "ap_mlme.h"
  17. #include "hostapd.h"
  18. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  19. static const char * mlme_auth_alg_str(int alg)
  20. {
  21. switch (alg) {
  22. case WLAN_AUTH_OPEN:
  23. return "OPEN_SYSTEM";
  24. case WLAN_AUTH_SHARED_KEY:
  25. return "SHARED_KEY";
  26. case WLAN_AUTH_FT:
  27. return "FT";
  28. }
  29. return "unknown";
  30. }
  31. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  32. /**
  33. * mlme_authenticate_indication - Report the establishment of an authentication
  34. * relationship with a specific peer MAC entity
  35. * @hapd: BSS data
  36. * @sta: peer STA data
  37. *
  38. * MLME calls this function as a result of the establishment of an
  39. * authentication relationship with a specific peer MAC entity that
  40. * resulted from an authentication procedure that was initiated by
  41. * that specific peer MAC entity.
  42. *
  43. * PeerSTAAddress = sta->addr
  44. * AuthenticationType = sta->auth_alg (WLAN_AUTH_OPEN / WLAN_AUTH_SHARED_KEY)
  45. */
  46. void mlme_authenticate_indication(struct hostapd_data *hapd,
  47. struct sta_info *sta)
  48. {
  49. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
  50. HOSTAPD_LEVEL_DEBUG,
  51. "MLME-AUTHENTICATE.indication(" MACSTR ", %s)",
  52. MAC2STR(sta->addr), mlme_auth_alg_str(sta->auth_alg));
  53. if (sta->auth_alg != WLAN_AUTH_FT &&
  54. sta->auth_alg != WLAN_AUTH_FILS_SK &&
  55. sta->auth_alg != WLAN_AUTH_FILS_SK_PFS &&
  56. sta->auth_alg != WLAN_AUTH_FILS_PK &&
  57. !(sta->flags & WLAN_STA_MFP))
  58. mlme_deletekeys_request(hapd, sta);
  59. ap_sta_clear_disconnect_timeouts(hapd, sta);
  60. }
  61. /**
  62. * mlme_deauthenticate_indication - Report the invalidation of an
  63. * authentication relationship with a specific peer MAC entity
  64. * @hapd: BSS data
  65. * @sta: Peer STA data
  66. * @reason_code: ReasonCode from Deauthentication frame
  67. *
  68. * MLME calls this function as a result of the invalidation of an
  69. * authentication relationship with a specific peer MAC entity.
  70. *
  71. * PeerSTAAddress = sta->addr
  72. */
  73. void mlme_deauthenticate_indication(struct hostapd_data *hapd,
  74. struct sta_info *sta, u16 reason_code)
  75. {
  76. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
  77. HOSTAPD_LEVEL_DEBUG,
  78. "MLME-DEAUTHENTICATE.indication(" MACSTR ", %d)",
  79. MAC2STR(sta->addr), reason_code);
  80. if (!hapd->iface->driver_ap_teardown)
  81. mlme_deletekeys_request(hapd, sta);
  82. }
  83. /**
  84. * mlme_associate_indication - Report the establishment of an association with
  85. * a specific peer MAC entity
  86. * @hapd: BSS data
  87. * @sta: peer STA data
  88. *
  89. * MLME calls this function as a result of the establishment of an
  90. * association with a specific peer MAC entity that resulted from an
  91. * association procedure that was initiated by that specific peer MAC entity.
  92. *
  93. * PeerSTAAddress = sta->addr
  94. */
  95. void mlme_associate_indication(struct hostapd_data *hapd, struct sta_info *sta)
  96. {
  97. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
  98. HOSTAPD_LEVEL_DEBUG,
  99. "MLME-ASSOCIATE.indication(" MACSTR ")",
  100. MAC2STR(sta->addr));
  101. if (sta->auth_alg != WLAN_AUTH_FT &&
  102. sta->auth_alg != WLAN_AUTH_FILS_SK &&
  103. sta->auth_alg != WLAN_AUTH_FILS_SK_PFS &&
  104. sta->auth_alg != WLAN_AUTH_FILS_PK)
  105. mlme_deletekeys_request(hapd, sta);
  106. ap_sta_clear_disconnect_timeouts(hapd, sta);
  107. }
  108. /**
  109. * mlme_reassociate_indication - Report the establishment of an reassociation
  110. * with a specific peer MAC entity
  111. * @hapd: BSS data
  112. * @sta: peer STA data
  113. *
  114. * MLME calls this function as a result of the establishment of an
  115. * reassociation with a specific peer MAC entity that resulted from a
  116. * reassociation procedure that was initiated by that specific peer MAC entity.
  117. *
  118. * PeerSTAAddress = sta->addr
  119. */
  120. void mlme_reassociate_indication(struct hostapd_data *hapd,
  121. struct sta_info *sta)
  122. {
  123. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
  124. HOSTAPD_LEVEL_DEBUG,
  125. "MLME-REASSOCIATE.indication(" MACSTR ")",
  126. MAC2STR(sta->addr));
  127. if (sta->auth_alg != WLAN_AUTH_FT &&
  128. sta->auth_alg != WLAN_AUTH_FILS_SK &&
  129. sta->auth_alg != WLAN_AUTH_FILS_SK_PFS &&
  130. sta->auth_alg != WLAN_AUTH_FILS_PK)
  131. mlme_deletekeys_request(hapd, sta);
  132. ap_sta_clear_disconnect_timeouts(hapd, sta);
  133. }
  134. /**
  135. * mlme_disassociate_indication - Report disassociation with a specific peer
  136. * MAC entity
  137. * @hapd: BSS data
  138. * @sta: Peer STA data
  139. * @reason_code: ReasonCode from Disassociation frame
  140. *
  141. * MLME calls this function as a result of the invalidation of an association
  142. * relationship with a specific peer MAC entity.
  143. *
  144. * PeerSTAAddress = sta->addr
  145. */
  146. void mlme_disassociate_indication(struct hostapd_data *hapd,
  147. struct sta_info *sta, u16 reason_code)
  148. {
  149. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
  150. HOSTAPD_LEVEL_DEBUG,
  151. "MLME-DISASSOCIATE.indication(" MACSTR ", %d)",
  152. MAC2STR(sta->addr), reason_code);
  153. mlme_deletekeys_request(hapd, sta);
  154. }
  155. void mlme_michaelmicfailure_indication(struct hostapd_data *hapd,
  156. const u8 *addr)
  157. {
  158. hostapd_logger(hapd, addr, HOSTAPD_MODULE_MLME,
  159. HOSTAPD_LEVEL_DEBUG,
  160. "MLME-MichaelMICFailure.indication(" MACSTR ")",
  161. MAC2STR(addr));
  162. }
  163. void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta)
  164. {
  165. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
  166. HOSTAPD_LEVEL_DEBUG,
  167. "MLME-DELETEKEYS.request(" MACSTR ")",
  168. MAC2STR(sta->addr));
  169. if (sta->wpa_sm)
  170. wpa_remove_ptk(sta->wpa_sm);
  171. }