bss.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * BSS table
  3. * Copyright (c) 2009-2015, 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. /**
  19. * struct wpa_bss_anqp - ANQP data for a BSS entry (struct wpa_bss)
  20. */
  21. struct wpa_bss_anqp {
  22. /** Number of BSS entries referring to this ANQP data instance */
  23. unsigned int users;
  24. #ifdef CONFIG_INTERWORKING
  25. struct wpabuf *capability_list;
  26. struct wpabuf *venue_name;
  27. struct wpabuf *network_auth_type;
  28. struct wpabuf *roaming_consortium;
  29. struct wpabuf *ip_addr_type_availability;
  30. struct wpabuf *nai_realm;
  31. struct wpabuf *anqp_3gpp;
  32. struct wpabuf *domain_name;
  33. #endif /* CONFIG_INTERWORKING */
  34. #ifdef CONFIG_HS20
  35. struct wpabuf *hs20_capability_list;
  36. struct wpabuf *hs20_operator_friendly_name;
  37. struct wpabuf *hs20_wan_metrics;
  38. struct wpabuf *hs20_connection_capability;
  39. struct wpabuf *hs20_operating_class;
  40. struct wpabuf *hs20_osu_providers_list;
  41. #endif /* CONFIG_HS20 */
  42. };
  43. /**
  44. * struct wpa_bss - BSS table
  45. *
  46. * This structure is used to store information about neighboring BSSes in
  47. * generic format. It is mainly updated based on scan results from the driver.
  48. */
  49. struct wpa_bss {
  50. /** List entry for struct wpa_supplicant::bss */
  51. struct dl_list list;
  52. /** List entry for struct wpa_supplicant::bss_id */
  53. struct dl_list list_id;
  54. /** Unique identifier for this BSS entry */
  55. unsigned int id;
  56. /** Number of counts without seeing this BSS */
  57. unsigned int scan_miss_count;
  58. /** Index of the last scan update */
  59. unsigned int last_update_idx;
  60. /** Information flags about the BSS/IBSS (WPA_BSS_*) */
  61. unsigned int flags;
  62. /** BSSID */
  63. u8 bssid[ETH_ALEN];
  64. /** HESSID */
  65. u8 hessid[ETH_ALEN];
  66. /** SSID */
  67. u8 ssid[32];
  68. /** Length of SSID */
  69. size_t ssid_len;
  70. /** Frequency of the channel in MHz (e.g., 2412 = channel 1) */
  71. int freq;
  72. /** Beacon interval in TUs (host byte order) */
  73. u16 beacon_int;
  74. /** Capability information field in host byte order */
  75. u16 caps;
  76. /** Signal quality */
  77. int qual;
  78. /** Noise level */
  79. int noise;
  80. /** Signal level */
  81. int level;
  82. /** Timestamp of last Beacon/Probe Response frame */
  83. u64 tsf;
  84. /** Time of the last update (i.e., Beacon or Probe Response RX) */
  85. struct os_reltime last_update;
  86. /** Estimated throughput in kbps */
  87. unsigned int est_throughput;
  88. /** Signal-to-noise ratio in dB */
  89. int snr;
  90. /** ANQP data */
  91. struct wpa_bss_anqp *anqp;
  92. /** Length of the following IE field in octets (from Probe Response) */
  93. size_t ie_len;
  94. /** Length of the following Beacon IE field in octets */
  95. size_t beacon_ie_len;
  96. /* followed by ie_len octets of IEs */
  97. /* followed by beacon_ie_len octets of IEs */
  98. };
  99. void wpa_bss_update_start(struct wpa_supplicant *wpa_s);
  100. void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
  101. struct wpa_scan_res *res,
  102. struct os_reltime *fetch_time);
  103. void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
  104. int new_scan);
  105. int wpa_bss_init(struct wpa_supplicant *wpa_s);
  106. void wpa_bss_deinit(struct wpa_supplicant *wpa_s);
  107. void wpa_bss_flush(struct wpa_supplicant *wpa_s);
  108. void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
  109. struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
  110. const u8 *ssid, size_t ssid_len);
  111. struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
  112. const u8 *bssid);
  113. struct wpa_bss * wpa_bss_get_bssid_latest(struct wpa_supplicant *wpa_s,
  114. const u8 *bssid);
  115. struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
  116. const u8 *dev_addr);
  117. struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id);
  118. struct wpa_bss * wpa_bss_get_id_range(struct wpa_supplicant *wpa_s,
  119. unsigned int idf, unsigned int idl);
  120. const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
  121. const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
  122. const u8 * wpa_bss_get_vendor_ie_beacon(const struct wpa_bss *bss,
  123. u32 vendor_type);
  124. struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
  125. u32 vendor_type);
  126. struct wpabuf * wpa_bss_get_vendor_ie_multi_beacon(const struct wpa_bss *bss,
  127. u32 vendor_type);
  128. int wpa_bss_get_max_rate(const struct wpa_bss *bss);
  129. int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
  130. struct wpa_bss_anqp * wpa_bss_anqp_alloc(void);
  131. int wpa_bss_anqp_unshare_alloc(struct wpa_bss *bss);
  132. static inline int bss_is_dmg(const struct wpa_bss *bss)
  133. {
  134. return bss->freq > 45000;
  135. }
  136. static inline void wpa_bss_update_level(struct wpa_bss *bss, int new_level)
  137. {
  138. if (bss != NULL && new_level < 0)
  139. bss->level = new_level;
  140. }
  141. #endif /* BSS_H */