bss.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * BSS table
  3. * Copyright (c) 2009-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. #ifndef BSS_H
  15. #define BSS_H
  16. struct wpa_scan_res;
  17. #define WPA_BSS_QUAL_INVALID BIT(0)
  18. #define WPA_BSS_NOISE_INVALID BIT(1)
  19. #define WPA_BSS_LEVEL_INVALID BIT(2)
  20. #define WPA_BSS_LEVEL_DBM BIT(3)
  21. #define WPA_BSS_AUTHENTICATED BIT(4)
  22. #define WPA_BSS_ASSOCIATED BIT(5)
  23. /**
  24. * struct wpa_bss - BSS table
  25. * @list: List entry for struct wpa_supplicant::bss
  26. * @list_id: List entry for struct wpa_supplicant::bss_id
  27. * @id: Unique identifier for this BSS entry
  28. * @scan_miss_count: Number of counts without seeing this BSS
  29. * @flags: information flags about the BSS/IBSS (WPA_BSS_*)
  30. * @last_update_idx: Index of the last scan update
  31. * @bssid: BSSID
  32. * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
  33. * @beacon_int: beacon interval in TUs (host byte order)
  34. * @caps: capability information field in host byte order
  35. * @qual: signal quality
  36. * @noise: noise level
  37. * @level: signal level
  38. * @tsf: Timestamp of last Beacon/Probe Response frame
  39. * @last_update: Time of the last update (i.e., Beacon or Probe Response RX)
  40. * @ie_len: length of the following IE field in octets (from Probe Response)
  41. * @beacon_ie_len: length of the following Beacon IE field in octets
  42. *
  43. * This structure is used to store information about neighboring BSSes in
  44. * generic format. It is mainly updated based on scan results from the driver.
  45. */
  46. struct wpa_bss {
  47. struct dl_list list;
  48. struct dl_list list_id;
  49. unsigned int id;
  50. unsigned int scan_miss_count;
  51. unsigned int last_update_idx;
  52. unsigned int flags;
  53. u8 bssid[ETH_ALEN];
  54. u8 ssid[32];
  55. size_t ssid_len;
  56. int freq;
  57. u16 beacon_int;
  58. u16 caps;
  59. int qual;
  60. int noise;
  61. int level;
  62. u64 tsf;
  63. struct os_time last_update;
  64. size_t ie_len;
  65. size_t beacon_ie_len;
  66. /* followed by ie_len octets of IEs */
  67. /* followed by beacon_ie_len octets of IEs */
  68. };
  69. void wpa_bss_update_start(struct wpa_supplicant *wpa_s);
  70. void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
  71. struct wpa_scan_res *res);
  72. void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
  73. int new_scan);
  74. int wpa_bss_init(struct wpa_supplicant *wpa_s);
  75. void wpa_bss_deinit(struct wpa_supplicant *wpa_s);
  76. struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
  77. const u8 *ssid, size_t ssid_len);
  78. struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
  79. const u8 *bssid);
  80. struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id);
  81. const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
  82. const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
  83. struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
  84. u32 vendor_type);
  85. int wpa_bss_get_max_rate(const struct wpa_bss *bss);
  86. int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
  87. #endif /* BSS_H */