]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/bss.h
List all networks despite message limit of 4096 bytes
[thirdparty/hostap.git] / wpa_supplicant / bss.h
CommitLineData
83922c2d
JM
1/*
2 * BSS table
8d923a4a 3 * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
83922c2d 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
83922c2d
JM
7 */
8
9#ifndef BSS_H
10#define BSS_H
11
a1fd2ce5
JM
12struct wpa_scan_res;
13
83922c2d
JM
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)
afc064fe 20#define WPA_BSS_ANQP_FETCH_TRIED BIT(6)
83922c2d 21
2c09af30
JM
22/**
23 * struct wpa_bss_anqp - ANQP data for a BSS entry (struct wpa_bss)
24 */
476aed35 25struct wpa_bss_anqp {
2c09af30 26 /** Number of BSS entries referring to this ANQP data instance */
476aed35
JM
27 unsigned int users;
28#ifdef CONFIG_INTERWORKING
29 struct wpabuf *venue_name;
30 struct wpabuf *network_auth_type;
31 struct wpabuf *roaming_consortium;
32 struct wpabuf *ip_addr_type_availability;
33 struct wpabuf *nai_realm;
34 struct wpabuf *anqp_3gpp;
35 struct wpabuf *domain_name;
36#endif /* CONFIG_INTERWORKING */
37#ifdef CONFIG_HS20
38 struct wpabuf *hs20_operator_friendly_name;
39 struct wpabuf *hs20_wan_metrics;
40 struct wpabuf *hs20_connection_capability;
41 struct wpabuf *hs20_operating_class;
1d2215fc 42 struct wpabuf *hs20_osu_providers_list;
476aed35
JM
43#endif /* CONFIG_HS20 */
44};
45
83922c2d
JM
46/**
47 * struct wpa_bss - BSS table
83922c2d
JM
48 *
49 * This structure is used to store information about neighboring BSSes in
50 * generic format. It is mainly updated based on scan results from the driver.
51 */
52struct wpa_bss {
2c09af30 53 /** List entry for struct wpa_supplicant::bss */
83922c2d 54 struct dl_list list;
2c09af30 55 /** List entry for struct wpa_supplicant::bss_id */
d4bf8f13 56 struct dl_list list_id;
2c09af30 57 /** Unique identifier for this BSS entry */
83922c2d 58 unsigned int id;
2c09af30 59 /** Number of counts without seeing this BSS */
83922c2d 60 unsigned int scan_miss_count;
2c09af30 61 /** Index of the last scan update */
83922c2d 62 unsigned int last_update_idx;
2c09af30 63 /** Information flags about the BSS/IBSS (WPA_BSS_*) */
83922c2d 64 unsigned int flags;
2c09af30 65 /** BSSID */
83922c2d 66 u8 bssid[ETH_ALEN];
2c09af30 67 /** HESSID */
c739d7e9 68 u8 hessid[ETH_ALEN];
2c09af30 69 /** SSID */
83922c2d 70 u8 ssid[32];
2c09af30 71 /** Length of SSID */
83922c2d 72 size_t ssid_len;
2c09af30 73 /** Frequency of the channel in MHz (e.g., 2412 = channel 1) */
83922c2d 74 int freq;
2c09af30 75 /** Beacon interval in TUs (host byte order) */
83922c2d 76 u16 beacon_int;
2c09af30 77 /** Capability information field in host byte order */
83922c2d 78 u16 caps;
2c09af30 79 /** Signal quality */
83922c2d 80 int qual;
2c09af30 81 /** Noise level */
83922c2d 82 int noise;
2c09af30 83 /** Signal level */
83922c2d 84 int level;
2c09af30 85 /** Timestamp of last Beacon/Probe Response frame */
83922c2d 86 u64 tsf;
2c09af30 87 /** Time of the last update (i.e., Beacon or Probe Response RX) */
acb69cec 88 struct os_reltime last_update;
2c09af30 89 /** ANQP data */
476aed35 90 struct wpa_bss_anqp *anqp;
2c09af30 91 /** Length of the following IE field in octets (from Probe Response) */
83922c2d 92 size_t ie_len;
2c09af30 93 /** Length of the following Beacon IE field in octets */
8c090654 94 size_t beacon_ie_len;
83922c2d 95 /* followed by ie_len octets of IEs */
8c090654 96 /* followed by beacon_ie_len octets of IEs */
83922c2d
JM
97};
98
99void wpa_bss_update_start(struct wpa_supplicant *wpa_s);
100void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
c5f10e80 101 struct wpa_scan_res *res,
acb69cec 102 struct os_reltime *fetch_time);
8d923a4a
JM
103void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
104 int new_scan);
83922c2d
JM
105int wpa_bss_init(struct wpa_supplicant *wpa_s);
106void wpa_bss_deinit(struct wpa_supplicant *wpa_s);
2b65b30d
SL
107void wpa_bss_flush(struct wpa_supplicant *wpa_s);
108void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
59f2caa9
JM
109struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
110 const u8 *ssid, size_t ssid_len);
d4bf8f13
JM
111struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
112 const u8 *bssid);
702621e6
JM
113struct wpa_bss * wpa_bss_get_bssid_latest(struct wpa_supplicant *wpa_s,
114 const u8 *bssid);
0a70f34f
JM
115struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
116 const u8 *dev_addr);
d4bf8f13 117struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id);
9f42d49c
AS
118struct wpa_bss * wpa_bss_get_id_range(struct wpa_supplicant *wpa_s,
119 unsigned int idf, unsigned int idl);
d4bf8f13
JM
120const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
121const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
bb50ae43
JM
122const u8 * wpa_bss_get_vendor_ie_beacon(const struct wpa_bss *bss,
123 u32 vendor_type);
d4bf8f13
JM
124struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
125 u32 vendor_type);
cf8baca6
JM
126struct wpabuf * wpa_bss_get_vendor_ie_multi_beacon(const struct wpa_bss *bss,
127 u32 vendor_type);
99a6a63f 128int wpa_bss_get_max_rate(const struct wpa_bss *bss);
75d328af 129int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
476aed35 130struct wpa_bss_anqp * wpa_bss_anqp_alloc(void);
485e3a92 131int wpa_bss_anqp_unshare_alloc(struct wpa_bss *bss);
83922c2d 132
e403ba85
BS
133static inline int bss_is_dmg(const struct wpa_bss *bss)
134{
135 return bss->freq > 45000;
136}
137
83922c2d 138#endif /* BSS_H */