bss.h 3.9 KB

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