blob: 01f6c59d2388b6570c54286574c53558ed506833 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * BSS table
3 * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
4 *
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 Shmidta54fa5f2013-01-15 13:53:35 -080022/**
23 * struct wpa_bss_anqp - ANQP data for a BSS entry (struct wpa_bss)
24 */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070025struct wpa_bss_anqp {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080026 /** Number of BSS entries referring to this ANQP data instance */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070027 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;
42#endif /* CONFIG_HS20 */
43};
44
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070045/**
46 * struct wpa_bss - BSS table
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070047 *
48 * This structure is used to store information about neighboring BSSes in
49 * generic format. It is mainly updated based on scan results from the driver.
50 */
51struct wpa_bss {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080052 /** List entry for struct wpa_supplicant::bss */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070053 struct dl_list list;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080054 /** List entry for struct wpa_supplicant::bss_id */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070055 struct dl_list list_id;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080056 /** Unique identifier for this BSS entry */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070057 unsigned int id;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080058 /** Number of counts without seeing this BSS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070059 unsigned int scan_miss_count;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080060 /** Index of the last scan update */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070061 unsigned int last_update_idx;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080062 /** Information flags about the BSS/IBSS (WPA_BSS_*) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070063 unsigned int flags;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080064 /** BSSID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065 u8 bssid[ETH_ALEN];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080066 /** HESSID */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070067 u8 hessid[ETH_ALEN];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080068 /** SSID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070069 u8 ssid[32];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080070 /** Length of SSID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070071 size_t ssid_len;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080072 /** Frequency of the channel in MHz (e.g., 2412 = channel 1) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070073 int freq;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080074 /** Beacon interval in TUs (host byte order) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070075 u16 beacon_int;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080076 /** Capability information field in host byte order */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070077 u16 caps;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080078 /** Signal quality */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070079 int qual;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080080 /** Noise level */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070081 int noise;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080082 /** Signal level */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070083 int level;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080084 /** Timestamp of last Beacon/Probe Response frame */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070085 u64 tsf;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080086 /** Time of the last update (i.e., Beacon or Probe Response RX) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070087 struct os_time last_update;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080088 /** ANQP data */
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -070089 struct wpa_bss_anqp *anqp;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080090 /** Length of the following IE field in octets (from Probe Response) */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070091 size_t ie_len;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080092 /** Length of the following Beacon IE field in octets */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070093 size_t beacon_ie_len;
94 /* followed by ie_len octets of IEs */
95 /* followed by beacon_ie_len octets of IEs */
96};
97
98void wpa_bss_update_start(struct wpa_supplicant *wpa_s);
99void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
100 struct wpa_scan_res *res);
101void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
102 int new_scan);
103int wpa_bss_init(struct wpa_supplicant *wpa_s);
104void wpa_bss_deinit(struct wpa_supplicant *wpa_s);
105void wpa_bss_flush(struct wpa_supplicant *wpa_s);
106void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
107struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
108 const u8 *ssid, size_t ssid_len);
109struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
110 const u8 *bssid);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800111struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
112 const u8 *dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700113struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id);
114const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
115const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
116struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
117 u32 vendor_type);
Dmitry Shmidt9bce59c2012-09-11 15:06:38 -0700118struct wpabuf * wpa_bss_get_vendor_ie_multi_beacon(const struct wpa_bss *bss,
119 u32 vendor_type);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700120int wpa_bss_get_max_rate(const struct wpa_bss *bss);
121int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700122struct wpa_bss_anqp * wpa_bss_anqp_alloc(void);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800123int wpa_bss_anqp_unshare_alloc(struct wpa_bss *bss);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700124
125#endif /* BSS_H */