blob: 9179385021dc06f5915b591d043edd7484ad0c0f [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * BSS table
Dmitry Shmidt7f656022015-02-25 14:36:37 -08003 * Copyright (c) 2009-2015, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
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)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080020#define WPA_BSS_ANQP_FETCH_TRIED BIT(6)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070021
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080022struct wpa_bss_anqp_elem {
23 struct dl_list list;
24 u16 infoid;
25 struct wpabuf *payload;
26};
27
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080028/**
29 * struct wpa_bss_anqp - ANQP data for a BSS entry (struct wpa_bss)
30 */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070031struct wpa_bss_anqp {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080032 /** Number of BSS entries referring to this ANQP data instance */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070033 unsigned int users;
34#ifdef CONFIG_INTERWORKING
Dmitry Shmidt7f656022015-02-25 14:36:37 -080035 struct wpabuf *capability_list;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070036 struct wpabuf *venue_name;
37 struct wpabuf *network_auth_type;
38 struct wpabuf *roaming_consortium;
39 struct wpabuf *ip_addr_type_availability;
40 struct wpabuf *nai_realm;
41 struct wpabuf *anqp_3gpp;
42 struct wpabuf *domain_name;
Dmitry Shmidt29333592017-01-09 12:27:11 -080043 struct wpabuf *fils_realm_info;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080044 struct dl_list anqp_elems; /* list of struct wpa_bss_anqp_elem */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070045#endif /* CONFIG_INTERWORKING */
46#ifdef CONFIG_HS20
Dmitry Shmidt7f656022015-02-25 14:36:37 -080047 struct wpabuf *hs20_capability_list;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070048 struct wpabuf *hs20_operator_friendly_name;
49 struct wpabuf *hs20_wan_metrics;
50 struct wpabuf *hs20_connection_capability;
51 struct wpabuf *hs20_operating_class;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080052 struct wpabuf *hs20_osu_providers_list;
Roshan Pius3a1667e2018-07-03 15:17:14 -070053 struct wpabuf *hs20_operator_icon_metadata;
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070054#endif /* CONFIG_HS20 */
55};
56
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070057/**
58 * struct wpa_bss - BSS table
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070059 *
60 * This structure is used to store information about neighboring BSSes in
61 * generic format. It is mainly updated based on scan results from the driver.
62 */
63struct wpa_bss {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080064 /** List entry for struct wpa_supplicant::bss */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065 struct dl_list list;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080066 /** List entry for struct wpa_supplicant::bss_id */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070067 struct dl_list list_id;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080068 /** Unique identifier for this BSS entry */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070069 unsigned int id;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080070 /** Number of counts without seeing this BSS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070071 unsigned int scan_miss_count;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080072 /** Index of the last scan update */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070073 unsigned int last_update_idx;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080074 /** Information flags about the BSS/IBSS (WPA_BSS_*) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070075 unsigned int flags;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080076 /** BSSID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070077 u8 bssid[ETH_ALEN];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080078 /** HESSID */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070079 u8 hessid[ETH_ALEN];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080080 /** SSID */
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -070081 u8 ssid[SSID_MAX_LEN];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080082 /** Length of SSID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070083 size_t ssid_len;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080084 /** Frequency of the channel in MHz (e.g., 2412 = channel 1) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070085 int freq;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080086 /** Beacon interval in TUs (host byte order) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070087 u16 beacon_int;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080088 /** Capability information field in host byte order */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070089 u16 caps;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080090 /** Signal quality */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070091 int qual;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080092 /** Noise level */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070093 int noise;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080094 /** Signal level */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070095 int level;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080096 /** Timestamp of last Beacon/Probe Response frame */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070097 u64 tsf;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080098 /** Time of the last update (i.e., Beacon or Probe Response RX) */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080099 struct os_reltime last_update;
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800100 /** Estimated throughput in kbps */
101 unsigned int est_throughput;
102 /** Signal-to-noise ratio in dB */
103 int snr;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800104 /** ANQP data */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700105 struct wpa_bss_anqp *anqp;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800106 /** Length of the following IE field in octets (from Probe Response) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700107 size_t ie_len;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800108 /** Length of the following Beacon IE field in octets */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700109 size_t beacon_ie_len;
110 /* followed by ie_len octets of IEs */
111 /* followed by beacon_ie_len octets of IEs */
112};
113
114void wpa_bss_update_start(struct wpa_supplicant *wpa_s);
115void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800116 struct wpa_scan_res *res,
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800117 struct os_reltime *fetch_time);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800118void wpa_bss_remove(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
119 const char *reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700120void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
121 int new_scan);
122int wpa_bss_init(struct wpa_supplicant *wpa_s);
123void wpa_bss_deinit(struct wpa_supplicant *wpa_s);
124void wpa_bss_flush(struct wpa_supplicant *wpa_s);
125void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
126struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
127 const u8 *ssid, size_t ssid_len);
128struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
129 const u8 *bssid);
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700130struct wpa_bss * wpa_bss_get_bssid_latest(struct wpa_supplicant *wpa_s,
131 const u8 *bssid);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800132struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
133 const u8 *dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700134struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id);
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800135struct wpa_bss * wpa_bss_get_id_range(struct wpa_supplicant *wpa_s,
136 unsigned int idf, unsigned int idl);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700137const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
138const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
Dmitry Shmidt96571392013-10-14 12:54:46 -0700139const u8 * wpa_bss_get_vendor_ie_beacon(const struct wpa_bss *bss,
140 u32 vendor_type);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700141struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
142 u32 vendor_type);
Dmitry Shmidt9bce59c2012-09-11 15:06:38 -0700143struct wpabuf * wpa_bss_get_vendor_ie_multi_beacon(const struct wpa_bss *bss,
144 u32 vendor_type);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700145int wpa_bss_get_max_rate(const struct wpa_bss *bss);
146int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700147struct wpa_bss_anqp * wpa_bss_anqp_alloc(void);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800148int wpa_bss_anqp_unshare_alloc(struct wpa_bss *bss);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700149const u8 * wpa_bss_get_fils_cache_id(struct wpa_bss *bss);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700150
Dmitry Shmidt76cd2cc2014-05-27 12:56:04 -0700151static inline int bss_is_dmg(const struct wpa_bss *bss)
152{
153 return bss->freq > 45000;
154}
155
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800156/**
157 * Test whether a BSS is a PBSS.
158 * This checks whether a BSS is a DMG-band PBSS. PBSS is used for P2P DMG
159 * network.
160 */
161static inline int bss_is_pbss(struct wpa_bss *bss)
162{
163 return bss_is_dmg(bss) &&
164 (bss->caps & IEEE80211_CAP_DMG_MASK) == IEEE80211_CAP_DMG_PBSS;
165}
166
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800167static inline void wpa_bss_update_level(struct wpa_bss *bss, int new_level)
168{
169 if (bss != NULL && new_level < 0)
170 bss->level = new_level;
171}
172
Dmitry Shmidt29333592017-01-09 12:27:11 -0800173void calculate_update_time(const struct os_reltime *fetch_time,
174 unsigned int age_ms,
175 struct os_reltime *update_time);
176
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700177#endif /* BSS_H */