blob: 37ca72c94490f2068bdb9907eaa10698d6a749ed [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
22/**
23 * struct wpa_bss - BSS table
24 * @list: List entry for struct wpa_supplicant::bss
25 * @list_id: List entry for struct wpa_supplicant::bss_id
26 * @id: Unique identifier for this BSS entry
27 * @scan_miss_count: Number of counts without seeing this BSS
28 * @flags: information flags about the BSS/IBSS (WPA_BSS_*)
29 * @last_update_idx: Index of the last scan update
30 * @bssid: BSSID
31 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
32 * @beacon_int: beacon interval in TUs (host byte order)
33 * @caps: capability information field in host byte order
34 * @qual: signal quality
35 * @noise: noise level
36 * @level: signal level
37 * @tsf: Timestamp of last Beacon/Probe Response frame
38 * @last_update: Time of the last update (i.e., Beacon or Probe Response RX)
39 * @ie_len: length of the following IE field in octets (from Probe Response)
40 * @beacon_ie_len: length of the following Beacon IE field in octets
41 *
42 * This structure is used to store information about neighboring BSSes in
43 * generic format. It is mainly updated based on scan results from the driver.
44 */
45struct wpa_bss {
46 struct dl_list list;
47 struct dl_list list_id;
48 unsigned int id;
49 unsigned int scan_miss_count;
50 unsigned int last_update_idx;
51 unsigned int flags;
52 u8 bssid[ETH_ALEN];
53 u8 ssid[32];
54 size_t ssid_len;
55 int freq;
56 u16 beacon_int;
57 u16 caps;
58 int qual;
59 int noise;
60 int level;
61 u64 tsf;
62 struct os_time last_update;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080063#ifdef CONFIG_INTERWORKING
64 struct wpabuf *anqp_venue_name;
65 struct wpabuf *anqp_network_auth_type;
66 struct wpabuf *anqp_roaming_consortium;
67 struct wpabuf *anqp_ip_addr_type_availability;
68 struct wpabuf *anqp_nai_realm;
69 struct wpabuf *anqp_3gpp;
70 struct wpabuf *anqp_domain_name;
71#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070072 size_t ie_len;
73 size_t beacon_ie_len;
74 /* followed by ie_len octets of IEs */
75 /* followed by beacon_ie_len octets of IEs */
76};
77
78void wpa_bss_update_start(struct wpa_supplicant *wpa_s);
79void wpa_bss_update_scan_res(struct wpa_supplicant *wpa_s,
80 struct wpa_scan_res *res);
81void wpa_bss_update_end(struct wpa_supplicant *wpa_s, struct scan_info *info,
82 int new_scan);
83int wpa_bss_init(struct wpa_supplicant *wpa_s);
84void wpa_bss_deinit(struct wpa_supplicant *wpa_s);
85void wpa_bss_flush(struct wpa_supplicant *wpa_s);
86void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age);
87struct wpa_bss * wpa_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid,
88 const u8 *ssid, size_t ssid_len);
89struct wpa_bss * wpa_bss_get_bssid(struct wpa_supplicant *wpa_s,
90 const u8 *bssid);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -080091struct wpa_bss * wpa_bss_get_p2p_dev_addr(struct wpa_supplicant *wpa_s,
92 const u8 *dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070093struct wpa_bss * wpa_bss_get_id(struct wpa_supplicant *wpa_s, unsigned int id);
94const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie);
95const u8 * wpa_bss_get_vendor_ie(const struct wpa_bss *bss, u32 vendor_type);
96struct wpabuf * wpa_bss_get_vendor_ie_multi(const struct wpa_bss *bss,
97 u32 vendor_type);
98int wpa_bss_get_max_rate(const struct wpa_bss *bss);
99int wpa_bss_get_bit_rates(const struct wpa_bss *bss, u8 **rates);
100
101#endif /* BSS_H */