neighbor_db.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * hostapd / Neighboring APs DB
  3. * Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH.
  4. * Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved.
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #include "utils/includes.h"
  10. #include "utils/common.h"
  11. #include "hostapd.h"
  12. #include "neighbor_db.h"
  13. struct hostapd_neighbor_entry *
  14. hostapd_neighbor_get(struct hostapd_data *hapd, const u8 *bssid,
  15. const struct wpa_ssid_value *ssid)
  16. {
  17. struct hostapd_neighbor_entry *nr;
  18. dl_list_for_each(nr, &hapd->nr_db, struct hostapd_neighbor_entry,
  19. list) {
  20. if (os_memcmp(bssid, nr->bssid, ETH_ALEN) == 0 &&
  21. (!ssid ||
  22. (ssid->ssid_len == nr->ssid.ssid_len &&
  23. os_memcmp(ssid->ssid, nr->ssid.ssid,
  24. ssid->ssid_len) == 0)))
  25. return nr;
  26. }
  27. return NULL;
  28. }
  29. static void hostapd_neighbor_clear_entry(struct hostapd_neighbor_entry *nr)
  30. {
  31. wpabuf_free(nr->nr);
  32. nr->nr = NULL;
  33. wpabuf_free(nr->lci);
  34. nr->lci = NULL;
  35. wpabuf_free(nr->civic);
  36. nr->civic = NULL;
  37. os_memset(nr->bssid, 0, sizeof(nr->bssid));
  38. os_memset(&nr->ssid, 0, sizeof(nr->ssid));
  39. nr->stationary = 0;
  40. }
  41. static struct hostapd_neighbor_entry *
  42. hostapd_neighbor_add(struct hostapd_data *hapd)
  43. {
  44. struct hostapd_neighbor_entry *nr;
  45. nr = os_zalloc(sizeof(struct hostapd_neighbor_entry));
  46. if (!nr)
  47. return NULL;
  48. dl_list_add(&hapd->nr_db, &nr->list);
  49. return nr;
  50. }
  51. int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
  52. const struct wpa_ssid_value *ssid,
  53. const struct wpabuf *nr, const struct wpabuf *lci,
  54. const struct wpabuf *civic, int stationary)
  55. {
  56. struct hostapd_neighbor_entry *entry;
  57. entry = hostapd_neighbor_get(hapd, bssid, ssid);
  58. if (!entry)
  59. entry = hostapd_neighbor_add(hapd);
  60. if (!entry)
  61. return -1;
  62. hostapd_neighbor_clear_entry(entry);
  63. os_memcpy(entry->bssid, bssid, ETH_ALEN);
  64. os_memcpy(&entry->ssid, ssid, sizeof(entry->ssid));
  65. entry->nr = wpabuf_dup(nr);
  66. if (!entry->nr)
  67. goto fail;
  68. if (lci && wpabuf_len(lci)) {
  69. entry->lci = wpabuf_dup(lci);
  70. if (!entry->lci || os_get_time(&entry->lci_date))
  71. goto fail;
  72. }
  73. if (civic && wpabuf_len(civic)) {
  74. entry->civic = wpabuf_dup(civic);
  75. if (!entry->civic)
  76. goto fail;
  77. }
  78. entry->stationary = stationary;
  79. return 0;
  80. fail:
  81. hostapd_neighbor_remove(hapd, bssid, ssid);
  82. return -1;
  83. }
  84. int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
  85. const struct wpa_ssid_value *ssid)
  86. {
  87. struct hostapd_neighbor_entry *nr;
  88. nr = hostapd_neighbor_get(hapd, bssid, ssid);
  89. if (!nr)
  90. return -1;
  91. hostapd_neighbor_clear_entry(nr);
  92. dl_list_del(&nr->list);
  93. os_free(nr);
  94. return 0;
  95. }
  96. void hostpad_free_neighbor_db(struct hostapd_data *hapd)
  97. {
  98. struct hostapd_neighbor_entry *nr, *prev;
  99. dl_list_for_each_safe(nr, prev, &hapd->nr_db,
  100. struct hostapd_neighbor_entry, list) {
  101. hostapd_neighbor_clear_entry(nr);
  102. dl_list_del(&nr->list);
  103. os_free(nr);
  104. }
  105. }