2015-01-12 16:52:37 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
2019-10-25 00:43:08 +02:00
|
|
|
* Copyright (C) 2015-2019 Intel Corporation. All rights reserved.
|
2015-01-12 16:52:37 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-02-03 16:44:01 +01:00
|
|
|
struct scan_freq_set;
|
|
|
|
struct ie_rsn_info;
|
|
|
|
struct p2p_probe_resp;
|
|
|
|
struct p2p_probe_req;
|
|
|
|
struct p2p_beacon;
|
|
|
|
struct mmpdu_header;
|
2021-02-05 18:21:33 +01:00
|
|
|
struct wiphy;
|
2021-02-03 16:44:01 +01:00
|
|
|
|
2015-06-10 22:31:13 +02:00
|
|
|
enum scan_band {
|
2015-10-06 22:23:09 +02:00
|
|
|
SCAN_BAND_2_4_GHZ = 0x1,
|
|
|
|
SCAN_BAND_5_GHZ = 0x2,
|
2015-06-10 22:31:13 +02:00
|
|
|
};
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
enum scan_state {
|
|
|
|
SCAN_STATE_NOT_RUNNING,
|
|
|
|
SCAN_STATE_PASSIVE,
|
|
|
|
SCAN_STATE_ACTIVE,
|
|
|
|
};
|
|
|
|
|
2019-11-21 21:15:56 +01:00
|
|
|
enum scan_bss_frame_type {
|
|
|
|
SCAN_BSS_PROBE_RESP,
|
|
|
|
SCAN_BSS_PROBE_REQ,
|
|
|
|
SCAN_BSS_BEACON,
|
|
|
|
};
|
2015-06-10 23:24:06 +02:00
|
|
|
|
2015-05-01 04:38:27 +02:00
|
|
|
struct scan_bss {
|
|
|
|
uint8_t addr[6];
|
|
|
|
uint32_t frequency;
|
|
|
|
int32_t signal_strength;
|
|
|
|
uint16_t capability;
|
|
|
|
uint8_t *rsne;
|
2021-07-08 21:11:57 +02:00
|
|
|
uint8_t *rsnxe;
|
2015-05-01 04:38:27 +02:00
|
|
|
uint8_t *wpa;
|
2019-06-11 00:46:58 +02:00
|
|
|
uint8_t *osen;
|
2015-09-23 15:44:46 +02:00
|
|
|
uint8_t *wsc; /* Concatenated WSC IEs */
|
|
|
|
ssize_t wsc_size; /* Size of Concatenated WSC IEs */
|
2019-11-21 21:15:56 +01:00
|
|
|
enum scan_bss_frame_type source_frame;
|
|
|
|
union {
|
|
|
|
struct p2p_probe_resp *p2p_probe_resp_info;
|
|
|
|
struct p2p_probe_req *p2p_probe_req_info;
|
|
|
|
struct p2p_beacon *p2p_beacon_info;
|
|
|
|
};
|
2016-10-28 05:59:52 +02:00
|
|
|
uint8_t mde[3];
|
2015-06-01 16:28:05 +02:00
|
|
|
uint8_t ssid[32];
|
|
|
|
uint8_t ssid_len;
|
2015-06-10 19:37:50 +02:00
|
|
|
uint8_t utilization;
|
2016-10-28 05:59:54 +02:00
|
|
|
uint8_t cc[3];
|
2015-06-06 01:18:55 +02:00
|
|
|
uint16_t rank;
|
2019-04-11 21:14:24 +02:00
|
|
|
uint64_t time_stamp;
|
2021-05-28 23:32:30 +02:00
|
|
|
uint64_t data_rate;
|
2019-06-26 19:42:47 +02:00
|
|
|
uint8_t hessid[6];
|
2019-07-12 19:30:26 +02:00
|
|
|
uint8_t *rc_ie; /* Roaming consortium IE */
|
2019-07-24 22:09:46 +02:00
|
|
|
uint8_t hs20_version;
|
2019-11-15 19:39:25 +01:00
|
|
|
uint64_t parent_tsf;
|
2020-07-11 03:00:43 +02:00
|
|
|
uint8_t *wfd; /* Concatenated WFD IEs */
|
|
|
|
ssize_t wfd_size; /* Size of Concatenated WFD IEs */
|
2016-10-28 05:59:52 +02:00
|
|
|
bool mde_present : 1;
|
2016-10-28 05:59:54 +02:00
|
|
|
bool cc_present : 1;
|
2016-10-28 05:59:53 +02:00
|
|
|
bool cap_rm_neighbor_report : 1;
|
2019-02-23 01:43:44 +01:00
|
|
|
bool ht_capable : 1;
|
2019-02-25 21:29:32 +01:00
|
|
|
bool vht_capable : 1;
|
2019-06-14 22:12:07 +02:00
|
|
|
bool anqp_capable : 1;
|
2019-07-24 22:09:46 +02:00
|
|
|
bool hs20_capable : 1;
|
2021-08-25 19:12:55 +02:00
|
|
|
bool force_default_sae_group : 1;
|
2021-09-03 23:32:51 +02:00
|
|
|
uint8_t cost_level : 3;
|
|
|
|
uint8_t cost_flags : 4;
|
2015-05-01 04:38:27 +02:00
|
|
|
};
|
|
|
|
|
2016-12-23 11:37:58 +01:00
|
|
|
struct scan_parameters {
|
|
|
|
const uint8_t *extra_ie;
|
|
|
|
size_t extra_ie_size;
|
2016-12-23 11:37:59 +01:00
|
|
|
struct scan_freq_set *freqs;
|
2019-11-15 19:39:21 +01:00
|
|
|
uint16_t duration;
|
2017-01-31 03:42:57 +01:00
|
|
|
bool flush : 1;
|
2018-06-28 22:40:36 +02:00
|
|
|
bool randomize_mac_addr_hint : 1;
|
2019-07-15 16:12:55 +02:00
|
|
|
bool no_cck_rates : 1;
|
2019-11-15 19:39:21 +01:00
|
|
|
bool duration_mandatory : 1;
|
2021-09-16 18:30:41 +02:00
|
|
|
const uint8_t *ssid; /* Used for direct probe request */
|
|
|
|
size_t ssid_len;
|
2020-09-09 01:49:18 +02:00
|
|
|
const uint8_t *source_mac;
|
2016-12-23 11:37:58 +01:00
|
|
|
};
|
|
|
|
|
2021-02-03 16:44:01 +01:00
|
|
|
typedef void (*scan_func_t)(struct l_genl_msg *msg, void *user_data);
|
|
|
|
typedef void (*scan_trigger_func_t)(int, void *);
|
|
|
|
typedef bool (*scan_notify_func_t)(int err, struct l_queue *bss_list,
|
2021-02-03 17:02:40 +01:00
|
|
|
const struct scan_freq_set *freqs,
|
2021-02-03 16:44:01 +01:00
|
|
|
void *userdata);
|
|
|
|
typedef void (*scan_destroy_func_t)(void *userdata);
|
|
|
|
typedef void (*scan_freq_set_func_t)(uint32_t freq, void *userdata);
|
|
|
|
|
2018-09-01 22:48:18 +02:00
|
|
|
static inline int scan_bss_addr_cmp(const struct scan_bss *a1,
|
|
|
|
const struct scan_bss *a2)
|
|
|
|
{
|
2019-06-18 20:13:28 +02:00
|
|
|
return memcmp(a1->addr, a2->addr, sizeof(a1->addr));
|
2018-09-01 22:48:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool scan_bss_addr_eq(const struct scan_bss *a1,
|
|
|
|
const struct scan_bss *a2)
|
|
|
|
{
|
2019-06-18 20:13:28 +02:00
|
|
|
return !memcmp(a1->addr, a2->addr, sizeof(a1->addr));
|
2018-09-01 22:48:18 +02:00
|
|
|
}
|
|
|
|
|
2021-02-05 18:21:33 +01:00
|
|
|
struct l_genl_msg *scan_build_trigger_scan_bss(uint32_t ifindex,
|
|
|
|
struct wiphy *wiphy,
|
|
|
|
uint32_t frequency,
|
|
|
|
const uint8_t *ssid,
|
|
|
|
uint32_t ssid_len);
|
|
|
|
|
2019-07-08 16:02:59 +02:00
|
|
|
uint32_t scan_passive(uint64_t wdev_id, struct scan_freq_set *freqs,
|
2019-03-22 22:17:39 +01:00
|
|
|
scan_trigger_func_t trigger, scan_notify_func_t notify,
|
|
|
|
void *userdata, scan_destroy_func_t destroy);
|
2019-11-15 19:39:20 +01:00
|
|
|
uint32_t scan_passive_full(uint64_t wdev_id,
|
|
|
|
const struct scan_parameters *params,
|
|
|
|
scan_trigger_func_t trigger,
|
|
|
|
scan_notify_func_t notify, void *userdata,
|
|
|
|
scan_destroy_func_t destroy);
|
2019-07-08 16:02:59 +02:00
|
|
|
uint32_t scan_active(uint64_t wdev_id, uint8_t *extra_ie, size_t extra_ie_size,
|
2015-09-30 18:32:02 +02:00
|
|
|
scan_trigger_func_t trigger,
|
|
|
|
scan_notify_func_t notify, void *userdata,
|
|
|
|
scan_destroy_func_t destroy);
|
2019-07-08 16:02:59 +02:00
|
|
|
uint32_t scan_active_full(uint64_t wdev_id,
|
2016-12-23 11:37:58 +01:00
|
|
|
const struct scan_parameters *params,
|
|
|
|
scan_trigger_func_t trigger, scan_notify_func_t notify,
|
|
|
|
void *userdata, scan_destroy_func_t destroy);
|
2019-07-08 16:02:59 +02:00
|
|
|
bool scan_cancel(uint64_t wdev_id, uint32_t id);
|
2015-09-30 18:32:02 +02:00
|
|
|
|
2019-07-08 16:02:59 +02:00
|
|
|
void scan_periodic_start(uint64_t wdev_id, scan_trigger_func_t trigger,
|
2016-06-25 20:42:23 +02:00
|
|
|
scan_notify_func_t func, void *userdata);
|
2019-07-08 16:02:59 +02:00
|
|
|
bool scan_periodic_stop(uint64_t wdev_id);
|
2015-01-12 16:52:38 +01:00
|
|
|
|
2019-11-19 23:10:23 +01:00
|
|
|
uint64_t scan_get_triggered_time(uint64_t wdev_id, uint32_t id);
|
|
|
|
|
2021-03-15 18:29:28 +01:00
|
|
|
bool scan_get_firmware_scan(uint64_t wdev_id, scan_notify_func_t notify,
|
|
|
|
void *userdata, scan_destroy_func_t destroy);
|
|
|
|
|
2015-05-01 05:21:31 +02:00
|
|
|
void scan_bss_free(struct scan_bss *bss);
|
2015-06-16 20:56:03 +02:00
|
|
|
int scan_bss_rank_compare(const void *a, const void *b, void *user);
|
2015-05-01 16:17:54 +02:00
|
|
|
|
2018-11-15 18:28:46 +01:00
|
|
|
int scan_bss_get_rsn_info(const struct scan_bss *bss, struct ie_rsn_info *info);
|
2015-06-01 16:28:05 +02:00
|
|
|
|
2019-11-21 21:15:57 +01:00
|
|
|
struct scan_bss *scan_bss_new_from_probe_req(const struct mmpdu_header *mpdu,
|
|
|
|
const uint8_t *body,
|
|
|
|
size_t body_len,
|
|
|
|
uint32_t frequency, int rssi);
|
|
|
|
|
2015-06-10 22:31:13 +02:00
|
|
|
uint8_t scan_freq_to_channel(uint32_t freq, enum scan_band *out_band);
|
2016-10-04 05:47:52 +02:00
|
|
|
uint32_t scan_channel_to_freq(uint8_t channel, enum scan_band band);
|
2016-10-04 05:47:53 +02:00
|
|
|
enum scan_band scan_oper_class_to_band(const uint8_t *country,
|
|
|
|
uint8_t oper_class);
|
2015-06-10 22:31:13 +02:00
|
|
|
|
2015-06-10 23:24:06 +02:00
|
|
|
struct scan_freq_set *scan_freq_set_new(void);
|
|
|
|
void scan_freq_set_free(struct scan_freq_set *freqs);
|
|
|
|
bool scan_freq_set_add(struct scan_freq_set *freqs, uint32_t freq);
|
2021-02-03 16:38:52 +01:00
|
|
|
bool scan_freq_set_contains(const struct scan_freq_set *freqs, uint32_t freq);
|
2015-10-06 22:23:09 +02:00
|
|
|
uint32_t scan_freq_set_get_bands(struct scan_freq_set *freqs);
|
2019-03-22 22:17:36 +01:00
|
|
|
void scan_freq_set_foreach(const struct scan_freq_set *freqs,
|
2016-10-04 05:47:49 +02:00
|
|
|
scan_freq_set_func_t func, void *user_data);
|
2019-03-22 22:17:44 +01:00
|
|
|
void scan_freq_set_merge(struct scan_freq_set *to,
|
|
|
|
const struct scan_freq_set *from);
|
2019-04-11 21:14:27 +02:00
|
|
|
void scan_freq_set_constrain(struct scan_freq_set *set,
|
|
|
|
const struct scan_freq_set *constraint);
|
2019-09-16 22:14:12 +02:00
|
|
|
bool scan_freq_set_isempty(const struct scan_freq_set *set);
|
2015-06-10 23:24:06 +02:00
|
|
|
|
2019-07-08 16:02:59 +02:00
|
|
|
bool scan_wdev_add(uint64_t wdev_id);
|
|
|
|
bool scan_wdev_remove(uint64_t wdev_id);
|