blob: d37474a97d7d57c2ecc1757b90881c5efbea9316 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2 * BSS table
3 * Copyright (c) 2009-2019, 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
9#ifndef BSS_H
10#define BSS_H
11
12struct wpa_scan_res;
13
14#define WPA_BSS_QUAL_INVALID BIT(0)
15#define WPA_BSS_NOISE_INVALID BIT(1)
16#define WPA_BSS_LEVEL_INVALID BIT(2)
17#define WPA_BSS_LEVEL_DBM BIT(3)
18#define WPA_BSS_AUTHENTICATED BIT(4)
19#define WPA_BSS_ASSOCIATED BIT(5)
20#define WPA_BSS_ANQP_FETCH_TRIED BIT(6)
21#define WPA_BSS_OWE_TRANSITION BIT(7)
22
23#define WPA_BSS_FREQ_CHANGED_FLAG BIT(0)
24#define WPA_BSS_SIGNAL_CHANGED_FLAG BIT(1)
25#define WPA_BSS_PRIVACY_CHANGED_FLAG BIT(2)
26#define WPA_BSS_MODE_CHANGED_FLAG BIT(3)
27#define WPA_BSS_WPAIE_CHANGED_FLAG BIT(4)
28#define WPA_BSS_RSNIE_CHANGED_FLAG BIT(5)
29#define WPA_BSS_WPS_CHANGED_FLAG BIT(6)
30#define WPA_BSS_RATES_CHANGED_FLAG BIT(7)
31#define WPA_BSS_IES_CHANGED_FLAG BIT(8)
32
33struct wpa_bss_anqp_elem {
34 struct dl_list list;
35 u16 infoid;
36 bool protected_response; /* received in a protected GAS response */
37 struct wpabuf *payload;
38};
39
40/**
41 * struct wpa_bss_anqp - ANQP data for a BSS entry (struct wpa_bss)
42 */
43struct wpa_bss_anqp {
44 /** Number of BSS entries referring to this ANQP data instance */
45 unsigned int users;
46#ifdef CONFIG_INTERWORKING
47 struct wpabuf *capability_list;
48 struct wpabuf *venue_name;
49 struct wpabuf *network_auth_type;
50 struct wpabuf *roaming_consortium;
51 struct wpabuf *ip_addr_type_availability;
52 struct wpabuf *nai_realm;
53 struct wpabuf *anqp_3gpp;
54 struct wpabuf *domain_name;
55 struct wpabuf *fils_realm_info;
56 struct dl_list anqp_elems; /* list of struct wpa_bss_anqp_elem */
57#endif /* CONFIG_INTERWORKING */
58#ifdef CONFIG_HS20
59 struct wpabuf *hs20_capability_list;
60 struct wpabuf *hs20_operator_friendly_name;
61 struct wpabuf *hs20_wan_metrics;
62 struct wpabuf *hs20_connection_capability;
63 struct wpabuf *hs20_operating_class;
64 struct wpabuf *hs20_osu_providers_list;
65 struct wpabuf *hs20_operator_icon_metadata;
66 struct wpabuf *hs20_osu_providers_nai_list;
67#endif /* CONFIG_HS20 */
68};
69
70/**
71 * struct wpa_bss - BSS table
72 *
73 * This structure is used to store information about neighboring BSSes in
74 * generic format. It is mainly updated based on scan results from the driver.
75 */
76struct wpa_bss {
77 /** List entry for struct wpa_supplicant::bss */
78 struct dl_list list;
79 /** List entry for struct wpa_supplicant::bss_id */
80 struct dl_list list_id;
81 /** Unique identifier for this BSS entry */
82 unsigned int id;
83 /** Number of counts without seeing this BSS */
84 unsigned int scan_miss_count;
85 /** Index of the last scan update */
86 unsigned int last_update_idx;
87 /** Information flags about the BSS/IBSS (WPA_BSS_*) */
88 unsigned int flags;
89 /** BSSID */
90 u8 bssid[ETH_ALEN];
91 /** HESSID */
92 u8 hessid[ETH_ALEN];
93 /** SSID */
94 u8 ssid[SSID_MAX_LEN];
95 /** Length of SSID */
96 size_t ssid_len;
97 /** HT capabilities */
98 u16 ht_capab;
99 /* Five octets of HT Operation Information */
100 u8 ht_param;
101 /** Frequency of the channel in MHz (e.g., 2412 = channel 1) */
102 int freq;
103 /** Beacon interval in TUs (host byte order) */
104 u16 beacon_int;
105 /** Capability information field in host byte order */
106 u16 caps;
107 /** Signal quality */
108 int qual;
109 /** Noise level */
110 int noise;
111 /** Signal level */
112 int level;
113 /** Timestamp of last Beacon/Probe Response frame */
114 u64 tsf;
115 /** Whether the Beacon frame data is known to be newer */
116 bool beacon_newer;
117 /** Time of the last update (i.e., Beacon or Probe Response RX) */
118 struct os_reltime last_update;
119 /** Estimated throughput in kbps */
120 unsigned int est_throughput;
121 /** Signal-to-noise ratio in dB */
122 int snr;
123 /** ANQP data */
124 struct wpa_bss_anqp *anqp;
125 /** Length of the following IE field in octets (from Probe Response) */
126 size_t ie_len;
127 /** Length of the following Beacon IE field in octets */
128 size_t beacon_ie_len;
129 /** MLD address of the AP */
130 u8 mld_addr[ETH_ALEN];
131 /* followed by ie_len octets of IEs */
132 /* followed by beacon_ie_len octets of IEs */
133 u8 ies[];
134};
135
136static inline const u8 * wpa_bss_ie_ptr(const struct wpa_bss *bss)
137{
138 return bss->ies;
139}
140
141void notify_bss_changes(struct wpa_supplicant *wpa_s, u32 changes,
142 const struct wpa_bss *bss);
143void wpa_bss_update_start(struct wpa_supplicant *wpa_s);
144void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
145 struct wpa_scan_res *res,
146 struct os_reltime *fetch_time);
147void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
148 const char *reason);
149void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
150 int new_scan);
151int wpa_bss_init(struct wpa_supplicant *wpa_s);
152void wpa_bss_deinit(struct wpa_supplicant *wpa_s);
153void wpa_bss_flush(struct wpa_supplicant *wpa_s);
154void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
155struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
156 const u8 *ssid, size_t ssid_len);
157struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
158 const u8 *bssid);
159struct wpa_bss * wpa_bss_get_bssid_latest(struct wpa_supplicant *wpa_s,
160 const u8 *bssid);
161struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
162 const u8 *dev_addr);
163struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id);
164struct wpa_bss * wpa_bss_get_id_range(struct wpa_supplicant *wpa_s,
165 unsigned int idf, unsigned int idl);
166const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
167const u8 * wpa_bss_get_ie_ext(const struct wpa_bss *bss, u8 ext);
168const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
169const u8 * wpa_bss_get_vendor_ie_beacon(const struct wpa_bss *bss,
170 u32 vendor_type);
171struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
172 u32 vendor_type);
173struct wpabuf * wpa_bss_get_vendor_ie_multi_beacon(const struct wpa_bss *bss,
174 u32 vendor_type);
175int wpa_bss_get_max_rate(const struct wpa_bss *bss);
176int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
177struct wpa_bss_anqp * wpa_bss_anqp_alloc(void);
178int wpa_bss_anqp_unshare_alloc(struct wpa_bss *bss);
179const u8 * wpa_bss_get_fils_cache_id(const struct wpa_bss *bss);
180int wpa_bss_ext_capab(const struct wpa_bss *bss, unsigned int capab);
181
182static inline int bss_is_dmg(const struct wpa_bss *bss)
183{
184 return bss->freq > 45000;
185}
186
187/**
188 * Test whether a BSS is a PBSS.
189 * This checks whether a BSS is a DMG-band PBSS. PBSS is used for P2P DMG
190 * network.
191 */
192static inline int bss_is_pbss(struct wpa_bss *bss)
193{
194 return bss_is_dmg(bss) &&
195 (bss->caps & IEEE80211_CAP_DMG_MASK) == IEEE80211_CAP_DMG_PBSS;
196}
197
198static inline void wpa_bss_update_level(struct wpa_bss *bss, int new_level)
199{
200 if (bss != NULL && new_level > -WPA_INVALID_NOISE && new_level < 0)
201 bss->level = new_level;
202}
203
204void calculate_update_time(const struct os_reltime *fetch_time,
205 unsigned int age_ms,
206 struct os_reltime *update_time);
207
208struct wpabuf * wpa_bss_defrag_mle(const struct wpa_bss *bss, u8 type);
209
210#endif /* BSS_H */