utils.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * AP mode helper functions
  3. * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "common/ieee802_11_defs.h"
  11. #include "fst/fst.h"
  12. #include "sta_info.h"
  13. #include "hostapd.h"
  14. int hostapd_register_probereq_cb(struct hostapd_data *hapd,
  15. int (*cb)(void *ctx, const u8 *sa,
  16. const u8 *da, const u8 *bssid,
  17. const u8 *ie, size_t ie_len,
  18. int ssi_signal),
  19. void *ctx)
  20. {
  21. struct hostapd_probereq_cb *n;
  22. n = os_realloc_array(hapd->probereq_cb, hapd->num_probereq_cb + 1,
  23. sizeof(struct hostapd_probereq_cb));
  24. if (n == NULL)
  25. return -1;
  26. hapd->probereq_cb = n;
  27. n = &hapd->probereq_cb[hapd->num_probereq_cb];
  28. hapd->num_probereq_cb++;
  29. n->cb = cb;
  30. n->ctx = ctx;
  31. return 0;
  32. }
  33. struct prune_data {
  34. struct hostapd_data *hapd;
  35. const u8 *addr;
  36. };
  37. static int prune_associations(struct hostapd_iface *iface, void *ctx)
  38. {
  39. struct prune_data *data = ctx;
  40. struct sta_info *osta;
  41. struct hostapd_data *ohapd;
  42. size_t j;
  43. for (j = 0; j < iface->num_bss; j++) {
  44. ohapd = iface->bss[j];
  45. if (ohapd == data->hapd)
  46. continue;
  47. #ifdef CONFIG_FST
  48. /* Don't prune STAs belong to same FST */
  49. if (ohapd->iface->fst &&
  50. data->hapd->iface->fst &&
  51. fst_are_ifaces_aggregated(ohapd->iface->fst,
  52. data->hapd->iface->fst))
  53. continue;
  54. #endif /* CONFIG_FST */
  55. osta = ap_get_sta(ohapd, data->addr);
  56. if (!osta)
  57. continue;
  58. wpa_printf(MSG_INFO, "%s: Prune association for " MACSTR,
  59. ohapd->conf->iface, MAC2STR(osta->addr));
  60. ap_sta_disassociate(ohapd, osta, WLAN_REASON_UNSPECIFIED);
  61. }
  62. return 0;
  63. }
  64. /**
  65. * hostapd_prune_associations - Remove extraneous associations
  66. * @hapd: Pointer to BSS data for the most recent association
  67. * @addr: Associated STA address
  68. *
  69. * This function looks through all radios and BSS's for previous
  70. * (stale) associations of STA. If any are found they are removed.
  71. */
  72. void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr)
  73. {
  74. struct prune_data data;
  75. data.hapd = hapd;
  76. data.addr = addr;
  77. if (hapd->iface->interfaces &&
  78. hapd->iface->interfaces->for_each_interface)
  79. hapd->iface->interfaces->for_each_interface(
  80. hapd->iface->interfaces, prune_associations, &data);
  81. }