bss.h 2.7 KB

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