2015-01-12 16:52:37 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/socket.h>
|
2015-06-06 01:18:55 +02:00
|
|
|
#include <limits.h>
|
2015-01-12 16:52:37 +01:00
|
|
|
#include <linux/if.h>
|
|
|
|
#include <linux/if_ether.h>
|
|
|
|
#include <ell/ell.h>
|
|
|
|
|
|
|
|
#include "linux/nl80211.h"
|
|
|
|
#include "src/iwd.h"
|
|
|
|
#include "src/wiphy.h"
|
2015-01-28 13:14:53 +01:00
|
|
|
#include "src/ie.h"
|
2015-01-12 16:52:37 +01:00
|
|
|
#include "src/scan.h"
|
|
|
|
|
2015-06-05 05:31:39 +02:00
|
|
|
#define SCAN_MAX_INTERVAL 320
|
|
|
|
#define SCAN_INIT_INTERVAL 10
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
struct l_queue *scan_contexts = NULL;
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-29 03:40:32 +02:00
|
|
|
static struct l_genl_family *nl80211 = NULL;
|
2015-06-01 16:28:05 +02:00
|
|
|
uint32_t scan_id = 0;
|
2015-10-06 05:37:12 +02:00
|
|
|
uint32_t next_scan_request_id = 0;
|
2015-06-01 16:28:05 +02:00
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
struct scan_periodic {
|
|
|
|
struct l_timeout *timeout;
|
|
|
|
uint16_t interval;
|
2016-06-25 20:42:23 +02:00
|
|
|
scan_trigger_func_t trigger;
|
2015-09-20 21:58:23 +02:00
|
|
|
scan_notify_func_t callback;
|
|
|
|
void *userdata;
|
2015-09-22 21:05:50 +02:00
|
|
|
bool rearm:1;
|
|
|
|
bool retry:1;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct scan_request {
|
2015-10-06 05:37:12 +02:00
|
|
|
uint32_t id;
|
2015-09-22 21:05:50 +02:00
|
|
|
scan_trigger_func_t trigger;
|
|
|
|
scan_notify_func_t callback;
|
|
|
|
void *userdata;
|
|
|
|
scan_destroy_func_t destroy;
|
|
|
|
bool passive:1; /* Active or Passive scan? */
|
|
|
|
bool triggered:1;
|
2015-09-30 18:32:02 +02:00
|
|
|
uint8_t *extra_ie;
|
|
|
|
size_t extra_ie_size;
|
2015-09-20 21:58:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct scan_context {
|
|
|
|
uint32_t ifindex;
|
|
|
|
enum scan_state state;
|
|
|
|
struct scan_periodic sp;
|
2015-09-22 21:05:50 +02:00
|
|
|
struct l_queue *requests;
|
2015-09-20 21:58:23 +02:00
|
|
|
};
|
2015-06-01 16:28:05 +02:00
|
|
|
|
|
|
|
struct scan_results {
|
|
|
|
uint32_t wiphy;
|
|
|
|
uint32_t ifindex;
|
|
|
|
struct l_queue *bss_list;
|
2015-06-10 23:24:31 +02:00
|
|
|
struct scan_freq_set *freqs;
|
2015-06-01 16:28:05 +02:00
|
|
|
};
|
|
|
|
|
2015-09-22 21:05:50 +02:00
|
|
|
static void scan_done(struct l_genl_msg *msg, void *userdata);
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
static bool scan_context_match(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct scan_context *sc = a;
|
|
|
|
uint32_t ifindex = L_PTR_TO_UINT(b);
|
|
|
|
|
|
|
|
return (sc->ifindex == ifindex);
|
|
|
|
}
|
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
static bool scan_request_match(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct scan_request *sr = a;
|
|
|
|
uint32_t id = L_PTR_TO_UINT(b);
|
|
|
|
|
|
|
|
return sr->id == id;
|
|
|
|
}
|
|
|
|
|
2015-09-22 21:05:50 +02:00
|
|
|
static void scan_request_free(void *data)
|
|
|
|
{
|
|
|
|
struct scan_request *sr = data;
|
|
|
|
|
|
|
|
free(sr);
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
static struct scan_context *scan_context_new(uint32_t ifindex)
|
|
|
|
{
|
|
|
|
struct scan_context *sc;
|
|
|
|
|
|
|
|
sc = l_new(struct scan_context, 1);
|
|
|
|
|
|
|
|
sc->ifindex = ifindex;
|
|
|
|
sc->state = SCAN_STATE_NOT_RUNNING;
|
2015-09-22 21:05:50 +02:00
|
|
|
sc->requests = l_queue_new();
|
2015-09-20 21:58:23 +02:00
|
|
|
|
|
|
|
return sc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scan_context_free(struct scan_context *sc)
|
|
|
|
{
|
|
|
|
l_debug("sc: %p", sc);
|
|
|
|
|
2015-09-22 21:05:50 +02:00
|
|
|
l_queue_destroy(sc->requests, scan_request_free);
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
if (sc->sp.timeout)
|
|
|
|
l_timeout_remove(sc->sp.timeout);
|
|
|
|
|
|
|
|
l_free(sc);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scan_ifindex_add(uint32_t ifindex)
|
|
|
|
{
|
|
|
|
struct scan_context *sc;
|
|
|
|
|
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
|
|
|
L_UINT_TO_PTR(ifindex));
|
|
|
|
|
|
|
|
if (sc)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
sc = scan_context_new(ifindex);
|
|
|
|
l_queue_push_head(scan_contexts, sc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scan_ifindex_remove(uint32_t ifindex)
|
|
|
|
{
|
|
|
|
struct scan_context *sc;
|
|
|
|
|
|
|
|
sc = l_queue_remove_if(scan_contexts, scan_context_match,
|
|
|
|
L_UINT_TO_PTR(ifindex));
|
|
|
|
|
|
|
|
if (!sc)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
l_info("Removing scan context for ifindex: %u", ifindex);
|
|
|
|
scan_context_free(sc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-22 21:05:50 +02:00
|
|
|
static bool __scan_passive_start(struct l_genl_family *nl80211,
|
|
|
|
uint32_t ifindex,
|
|
|
|
scan_func_t callback, void *user_data)
|
2015-01-12 16:52:37 +01:00
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_TRIGGER_SCAN, 16);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
2015-09-22 21:05:50 +02:00
|
|
|
|
|
|
|
if (!l_genl_family_send(nl80211, msg, callback, user_data, NULL)) {
|
2015-09-30 18:32:02 +02:00
|
|
|
l_error("Starting passive scan failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool __scan_active_start(struct l_genl_family *nl80211,
|
|
|
|
uint32_t ifindex,
|
|
|
|
uint8_t *extra_ie, size_t extra_ie_size,
|
|
|
|
scan_func_t callback, void *user_data)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_TRIGGER_SCAN,
|
|
|
|
32 + extra_ie_size);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_enter_nested(msg, NL80211_ATTR_SCAN_SSIDS);
|
2016-09-14 20:52:37 +02:00
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_SSID, 0, NULL);
|
2015-09-30 18:32:02 +02:00
|
|
|
l_genl_msg_leave_nested(msg);
|
|
|
|
|
|
|
|
if (extra_ie && extra_ie_size)
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IE, extra_ie_size,
|
|
|
|
extra_ie);
|
|
|
|
|
|
|
|
if (!l_genl_family_send(nl80211, msg, callback, user_data, NULL)) {
|
|
|
|
l_error("Starting active scan failed");
|
2015-09-22 21:05:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void start_next_scan_request(void *userdata)
|
|
|
|
{
|
|
|
|
uint32_t ifindex = L_PTR_TO_UINT(userdata);
|
|
|
|
struct scan_context *sc;
|
|
|
|
struct scan_request *sr;
|
|
|
|
bool r;
|
|
|
|
|
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
|
|
|
L_UINT_TO_PTR(ifindex));
|
|
|
|
|
|
|
|
if (!sc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sr = l_queue_peek_head(sc->requests);
|
|
|
|
|
2015-09-30 20:38:41 +02:00
|
|
|
if (sr->passive)
|
|
|
|
r = __scan_passive_start(nl80211, ifindex, scan_done, sc);
|
|
|
|
else
|
|
|
|
r = __scan_active_start(nl80211, ifindex,
|
|
|
|
sr->extra_ie, sr->extra_ie_size,
|
|
|
|
scan_done, sc);
|
2015-09-22 21:05:50 +02:00
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
l_error("Could not send CMD_TRIGGER_SCAN");
|
|
|
|
|
|
|
|
if (sr->destroy)
|
|
|
|
sr->destroy(sr->userdata);
|
|
|
|
|
|
|
|
sr = l_queue_pop_head(sc->requests);
|
|
|
|
scan_request_free(sr);
|
|
|
|
|
|
|
|
if (!l_queue_isempty(sc->requests))
|
|
|
|
l_idle_oneshot(start_next_scan_request,
|
|
|
|
L_UINT_TO_PTR(sc->ifindex), NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scan_done(struct l_genl_msg *msg, void *userdata)
|
|
|
|
{
|
|
|
|
struct scan_context *sc = userdata;
|
|
|
|
struct scan_request *sr = l_queue_peek_head(sc->requests);
|
|
|
|
int err;
|
|
|
|
|
|
|
|
l_debug("");
|
|
|
|
|
|
|
|
err = l_genl_msg_get_error(msg);
|
|
|
|
if (err < 0) {
|
|
|
|
/* Scan in progress, defer */
|
|
|
|
if (err == -EBUSY)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (sr->trigger)
|
|
|
|
sr->trigger(err, sr->userdata);
|
|
|
|
|
|
|
|
if (sr->destroy)
|
|
|
|
sr->destroy(sr->userdata);
|
|
|
|
|
|
|
|
l_queue_pop_head(sc->requests);
|
|
|
|
scan_request_free(sr);
|
|
|
|
|
|
|
|
l_error("Received an error during CMD_TRIGGER_SCAN");
|
|
|
|
|
|
|
|
if (!l_queue_isempty(sc->requests))
|
|
|
|
l_idle_oneshot(start_next_scan_request,
|
|
|
|
L_UINT_TO_PTR(sc->ifindex), NULL);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->state = sr->passive ? SCAN_STATE_PASSIVE : SCAN_STATE_ACTIVE;
|
2015-09-30 20:38:41 +02:00
|
|
|
l_debug("%s scan triggered for ifindex: %u",
|
|
|
|
sr->passive ? "Passive" : "Active", sc->ifindex);
|
2015-09-22 21:05:50 +02:00
|
|
|
sr->triggered = true;
|
2015-10-30 11:12:14 +01:00
|
|
|
|
|
|
|
if (sr->trigger)
|
|
|
|
sr->trigger(0, sr->userdata);
|
2015-09-22 21:05:50 +02:00
|
|
|
}
|
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
static uint32_t scan_common(uint32_t ifindex, bool passive,
|
2015-09-30 18:32:02 +02:00
|
|
|
uint8_t *extra_ie, size_t extra_ie_size,
|
|
|
|
scan_trigger_func_t trigger,
|
|
|
|
scan_notify_func_t notify, void *userdata,
|
|
|
|
scan_destroy_func_t destroy)
|
2015-09-22 21:05:50 +02:00
|
|
|
{
|
|
|
|
struct scan_context *sc;
|
|
|
|
struct scan_request *sr;
|
2015-09-30 18:32:02 +02:00
|
|
|
bool r;
|
2015-09-22 21:05:50 +02:00
|
|
|
|
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
|
|
|
L_UINT_TO_PTR(ifindex));
|
|
|
|
|
|
|
|
if (!sc)
|
2015-10-06 05:37:12 +02:00
|
|
|
return 0;
|
2015-09-22 21:05:50 +02:00
|
|
|
|
|
|
|
sr = l_new(struct scan_request, 1);
|
|
|
|
sr->trigger = trigger;
|
|
|
|
sr->callback = notify;
|
|
|
|
sr->userdata = userdata;
|
|
|
|
sr->destroy = destroy;
|
2015-09-30 18:32:02 +02:00
|
|
|
sr->passive = passive;
|
|
|
|
sr->extra_ie = extra_ie;
|
|
|
|
sr->extra_ie_size = extra_ie_size;
|
2015-10-06 05:37:12 +02:00
|
|
|
sr->id = ++next_scan_request_id;
|
2015-09-22 21:05:50 +02:00
|
|
|
|
|
|
|
if (l_queue_length(sc->requests) > 0)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (sc->state != SCAN_STATE_NOT_RUNNING)
|
|
|
|
goto done;
|
|
|
|
|
2015-09-30 18:32:02 +02:00
|
|
|
if (passive)
|
|
|
|
r = __scan_passive_start(nl80211, ifindex, scan_done, sc);
|
|
|
|
else
|
|
|
|
r = __scan_active_start(nl80211, ifindex,
|
|
|
|
extra_ie, extra_ie_size,
|
|
|
|
scan_done, sc);
|
|
|
|
|
|
|
|
if (!r) {
|
2015-09-22 21:05:50 +02:00
|
|
|
scan_request_free(sr);
|
2015-10-06 05:37:12 +02:00
|
|
|
return 0;
|
2015-09-22 21:05:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
l_queue_push_tail(sc->requests, sr);
|
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
return sr->id;
|
2015-01-12 16:52:37 +01:00
|
|
|
}
|
2015-01-12 16:52:38 +01:00
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
uint32_t scan_passive(uint32_t ifindex, scan_trigger_func_t trigger,
|
2015-09-30 18:32:02 +02:00
|
|
|
scan_notify_func_t notify, void *userdata,
|
|
|
|
scan_destroy_func_t destroy)
|
|
|
|
{
|
|
|
|
return scan_common(ifindex, true, NULL, 0, trigger, notify,
|
|
|
|
userdata, destroy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @extra_ie data is passed by reference. So it must be valid at least until
|
|
|
|
* the @trigger callback is called.
|
|
|
|
*/
|
2015-10-06 05:37:12 +02:00
|
|
|
uint32_t scan_active(uint32_t ifindex, 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)
|
|
|
|
{
|
|
|
|
return scan_common(ifindex, false, extra_ie, extra_ie_size,
|
|
|
|
trigger, notify, userdata, destroy);
|
|
|
|
}
|
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
bool scan_cancel(uint32_t ifindex, uint32_t id)
|
|
|
|
{
|
|
|
|
struct scan_context *sc;
|
|
|
|
struct scan_request *sr;
|
|
|
|
|
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
|
|
|
L_UINT_TO_PTR(ifindex));
|
|
|
|
|
|
|
|
if (!sc)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
sr = l_queue_peek_head(sc->requests);
|
|
|
|
|
|
|
|
/* If the scan has already been triggered, just zero out the callback */
|
|
|
|
if (sr->id == id && sr->triggered) {
|
|
|
|
sr->callback = NULL;
|
|
|
|
|
2016-09-21 18:54:53 +02:00
|
|
|
if (sr->destroy) {
|
2015-10-06 05:37:12 +02:00
|
|
|
sr->destroy(sr->userdata);
|
2016-09-21 18:54:53 +02:00
|
|
|
sr->destroy = NULL;
|
|
|
|
}
|
2015-10-06 05:37:12 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
sr = l_queue_remove_if(sc->requests, scan_request_match,
|
|
|
|
L_UINT_TO_PTR(id));
|
|
|
|
if (!sr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-12 16:52:38 +01:00
|
|
|
void scan_sched_start(struct l_genl_family *nl80211, uint32_t ifindex,
|
|
|
|
uint32_t scan_interval,
|
|
|
|
scan_func_t callback, void *user_data)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
scan_interval *= 1000; /* in kernel the interval is in msecs */
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_START_SCHED_SCAN, 32);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL,
|
|
|
|
4, &scan_interval);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_SOCKET_OWNER, 0, NULL);
|
|
|
|
|
|
|
|
if (!l_genl_family_send(nl80211, msg, callback, user_data, NULL))
|
|
|
|
l_error("Starting scheduled scan failed");
|
|
|
|
}
|
2015-01-12 16:52:39 +01:00
|
|
|
|
2015-06-05 05:31:39 +02:00
|
|
|
static void scan_periodic_done(struct l_genl_msg *msg, void *user_data)
|
|
|
|
{
|
2015-09-20 21:58:23 +02:00
|
|
|
struct scan_context *sc = user_data;
|
2015-06-05 05:31:39 +02:00
|
|
|
int err;
|
|
|
|
|
|
|
|
l_debug("");
|
2015-09-22 21:05:50 +02:00
|
|
|
sc->sp.rearm = true;
|
2015-06-05 05:31:39 +02:00
|
|
|
|
|
|
|
err = l_genl_msg_get_error(msg);
|
|
|
|
if (err < 0) {
|
|
|
|
/* Scan already in progress */
|
|
|
|
if (err != -EBUSY)
|
|
|
|
l_warn("Periodic scan could not be triggered: %s (%d)",
|
|
|
|
strerror(-err), -err);
|
2015-09-20 21:58:23 +02:00
|
|
|
|
2015-09-22 21:05:50 +02:00
|
|
|
sc->sp.retry = true;
|
|
|
|
|
2015-06-05 05:31:39 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
sc->state = SCAN_STATE_PASSIVE;
|
|
|
|
l_debug("Periodic scan triggered for ifindex: %u", sc->ifindex);
|
2016-06-25 20:42:23 +02:00
|
|
|
|
|
|
|
if (sc->sp.trigger)
|
|
|
|
sc->sp.trigger(0, sc->sp.userdata);
|
2015-06-05 05:31:39 +02:00
|
|
|
}
|
|
|
|
|
2016-06-25 20:42:23 +02:00
|
|
|
void scan_periodic_start(uint32_t ifindex, scan_trigger_func_t trigger,
|
|
|
|
scan_notify_func_t func, void *userdata)
|
2015-06-05 05:31:39 +02:00
|
|
|
{
|
2015-09-20 21:58:23 +02:00
|
|
|
struct scan_context *sc;
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
2015-06-05 05:31:39 +02:00
|
|
|
L_UINT_TO_PTR(ifindex));
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
if (!sc) {
|
|
|
|
l_error("scan_periodic_start called without scan_ifindex_add");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->sp.interval)
|
2015-06-05 05:31:39 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
l_debug("Starting periodic scan for ifindex: %u", ifindex);
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
sc->sp.interval = SCAN_INIT_INTERVAL;
|
2016-06-25 20:42:23 +02:00
|
|
|
sc->sp.trigger = trigger;
|
2015-09-20 21:58:23 +02:00
|
|
|
sc->sp.callback = func;
|
|
|
|
sc->sp.userdata = userdata;
|
2015-09-22 21:05:50 +02:00
|
|
|
sc->sp.retry = false;
|
|
|
|
sc->sp.rearm = false;
|
2015-09-20 21:58:23 +02:00
|
|
|
|
2015-09-22 21:05:50 +02:00
|
|
|
__scan_passive_start(nl80211, ifindex, scan_periodic_done, sc);
|
2015-06-05 05:31:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool scan_periodic_stop(uint32_t ifindex)
|
|
|
|
{
|
2015-09-20 21:58:23 +02:00
|
|
|
struct scan_context *sc;
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
2015-06-05 05:31:39 +02:00
|
|
|
L_UINT_TO_PTR(ifindex));
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
if (!sc)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!sc->sp.interval)
|
2015-06-05 05:31:39 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
l_debug("Stopping periodic scan for ifindex: %u", ifindex);
|
|
|
|
|
2016-04-13 23:03:33 +02:00
|
|
|
if (sc->sp.timeout) {
|
|
|
|
l_timeout_remove(sc->sp.timeout);
|
|
|
|
sc->sp.timeout = NULL;
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
sc->sp.interval = 0;
|
2016-06-25 20:42:23 +02:00
|
|
|
sc->sp.trigger = NULL;
|
2015-09-20 21:58:23 +02:00
|
|
|
sc->sp.callback = NULL;
|
|
|
|
sc->sp.userdata = NULL;
|
2015-09-22 21:05:50 +02:00
|
|
|
sc->sp.rearm = false;
|
|
|
|
sc->sp.retry = false;
|
2015-09-20 21:58:23 +02:00
|
|
|
|
2015-06-05 05:31:39 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scan_periodic_timeout(struct l_timeout *timeout, void *user_data)
|
|
|
|
{
|
2015-09-20 21:58:23 +02:00
|
|
|
struct scan_context *sc = user_data;
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
l_debug("scan_periodic_timeout: %u", sc->ifindex);
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
sc->sp.interval *= 2;
|
2015-09-22 21:05:50 +02:00
|
|
|
__scan_passive_start(nl80211, sc->ifindex, scan_periodic_done, sc);
|
2015-06-05 05:31:39 +02:00
|
|
|
}
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
static void scan_periodic_rearm(struct scan_context *sc)
|
2015-06-05 05:31:39 +02:00
|
|
|
{
|
2015-09-20 21:58:23 +02:00
|
|
|
l_debug("Arming periodic scan timer: %u", sc->sp.interval);
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
if (sc->sp.timeout)
|
|
|
|
l_timeout_modify(sc->sp.timeout, sc->sp.interval);
|
2015-06-05 05:31:39 +02:00
|
|
|
else
|
2015-09-20 21:58:23 +02:00
|
|
|
sc->sp.timeout = l_timeout_create(sc->sp.interval,
|
|
|
|
scan_periodic_timeout, sc, NULL);
|
2015-09-22 21:05:50 +02:00
|
|
|
|
|
|
|
sc->sp.rearm = false;
|
2015-06-05 05:31:39 +02:00
|
|
|
}
|
|
|
|
|
2016-05-11 22:52:43 +02:00
|
|
|
enum security scan_get_security(enum ie_bss_capability bss_capability,
|
2015-01-28 21:25:21 +01:00
|
|
|
const struct ie_rsn_info *info)
|
2015-01-28 13:14:53 +01:00
|
|
|
{
|
2015-01-30 11:21:52 +01:00
|
|
|
if (info && (info->akm_suites & IE_RSN_AKM_SUITE_PSK ||
|
2015-01-28 13:14:53 +01:00
|
|
|
info->akm_suites & IE_RSN_AKM_SUITE_PSK_SHA256 ||
|
2015-01-30 11:21:52 +01:00
|
|
|
info->akm_suites & IE_RSN_AKM_SUITE_FT_USING_PSK ||
|
|
|
|
info->akm_suites & IE_RSN_AKM_SUITE_SAE_SHA256 ||
|
|
|
|
info->akm_suites & IE_RSN_AKM_SUITE_FT_OVER_SAE_SHA256))
|
2016-05-11 22:52:43 +02:00
|
|
|
return SECURITY_PSK;
|
2015-01-28 13:14:53 +01:00
|
|
|
|
2015-01-30 11:21:52 +01:00
|
|
|
if (info && (info->akm_suites & IE_RSN_AKM_SUITE_8021X ||
|
|
|
|
info->akm_suites & IE_RSN_AKM_SUITE_8021X_SHA256 ||
|
|
|
|
info->akm_suites & IE_RSN_AKM_SUITE_FT_OVER_8021X))
|
2016-05-11 22:52:43 +02:00
|
|
|
return SECURITY_8021X;
|
2015-01-30 11:21:52 +01:00
|
|
|
|
|
|
|
if (bss_capability & IE_BSS_CAP_PRIVACY)
|
2016-05-11 22:52:43 +02:00
|
|
|
return SECURITY_WEP;
|
2015-01-30 11:21:52 +01:00
|
|
|
|
2016-05-11 22:52:43 +02:00
|
|
|
return SECURITY_NONE;
|
2015-01-28 13:14:53 +01:00
|
|
|
}
|
2015-05-01 05:21:31 +02:00
|
|
|
|
2015-05-01 16:17:54 +02:00
|
|
|
static bool scan_parse_bss_information_elements(struct scan_bss *bss,
|
|
|
|
const void *data, uint16_t len)
|
|
|
|
{
|
|
|
|
struct ie_tlv_iter iter;
|
2015-06-01 16:28:05 +02:00
|
|
|
bool have_ssid = false;
|
2015-05-01 16:17:54 +02:00
|
|
|
|
|
|
|
ie_tlv_iter_init(&iter, data, len);
|
|
|
|
|
|
|
|
while (ie_tlv_iter_next(&iter)) {
|
|
|
|
uint8_t tag = ie_tlv_iter_get_tag(&iter);
|
|
|
|
|
|
|
|
switch (tag) {
|
|
|
|
case IE_TYPE_SSID:
|
|
|
|
if (iter.len > 32)
|
|
|
|
return false;
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
memcpy(bss->ssid, iter.data, iter.len);
|
|
|
|
bss->ssid_len = iter.len;
|
|
|
|
have_ssid = true;
|
2015-05-01 16:17:54 +02:00
|
|
|
break;
|
2015-06-10 20:05:58 +02:00
|
|
|
case IE_TYPE_SUPPORTED_RATES:
|
|
|
|
case IE_TYPE_EXTENDED_SUPPORTED_RATES:
|
|
|
|
if (ie_parse_supported_rates(&iter,
|
|
|
|
&bss->supported_rates) < 0)
|
|
|
|
l_warn("Unable to parse [Extended] "
|
|
|
|
"Supported Rates IE");
|
|
|
|
break;
|
2015-05-01 16:17:54 +02:00
|
|
|
case IE_TYPE_RSN:
|
|
|
|
if (!bss->rsne)
|
|
|
|
bss->rsne = l_memdup(iter.data - 2,
|
|
|
|
iter.len + 2);
|
|
|
|
break;
|
2015-06-10 19:37:50 +02:00
|
|
|
case IE_TYPE_BSS_LOAD:
|
|
|
|
if (ie_parse_bss_load(&iter, NULL, &bss->utilization,
|
|
|
|
NULL) < 0)
|
|
|
|
l_warn("Unable to parse BSS Load IE");
|
|
|
|
else
|
|
|
|
l_debug("Load: %u/255", bss->utilization);
|
|
|
|
|
|
|
|
break;
|
2015-05-01 16:17:54 +02:00
|
|
|
case IE_TYPE_VENDOR_SPECIFIC:
|
|
|
|
/* Interested only in WPA IE from Vendor data */
|
|
|
|
if (!bss->wpa && is_ie_wpa_ie(iter.data, iter.len))
|
|
|
|
bss->wpa = l_memdup(iter.data - 2,
|
|
|
|
iter.len + 2);
|
|
|
|
break;
|
2016-10-28 05:59:52 +02:00
|
|
|
case IE_TYPE_MOBILITY_DOMAIN:
|
|
|
|
if (!bss->mde_present && iter.len == 3) {
|
|
|
|
memcpy(bss->mde, iter.data, iter.len);
|
|
|
|
bss->mde_present = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2016-10-28 05:59:53 +02:00
|
|
|
case IE_TYPE_RM_ENABLED_CAPABILITIES:
|
|
|
|
if (iter.len != 5)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Only interested in Neighbor Reports */
|
|
|
|
|
|
|
|
bss->cap_rm_neighbor_report =
|
|
|
|
(iter.data[0] & IE_RM_CAP_NEIGHBOR_REPORT) > 0;
|
|
|
|
break;
|
2016-10-28 05:59:54 +02:00
|
|
|
case IE_TYPE_COUNTRY:
|
|
|
|
if (bss->cc_present || iter.len < 6)
|
|
|
|
break;
|
|
|
|
|
|
|
|
bss->cc[0] = iter.data[0];
|
|
|
|
bss->cc[1] = iter.data[1];
|
|
|
|
bss->cc[2] = iter.data[2];
|
|
|
|
bss->cc_present = true;
|
|
|
|
|
|
|
|
break;
|
2015-05-01 16:17:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
return have_ssid;
|
2015-05-01 16:17:54 +02:00
|
|
|
}
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
static struct scan_bss *scan_parse_attr_bss(struct l_genl_attr *attr)
|
2015-05-01 16:17:54 +02:00
|
|
|
{
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
struct scan_bss *bss;
|
|
|
|
|
|
|
|
bss = l_new(struct scan_bss, 1);
|
2015-06-10 19:37:50 +02:00
|
|
|
bss->utilization = 127;
|
2015-05-01 16:17:54 +02:00
|
|
|
|
|
|
|
while (l_genl_attr_next(attr, &type, &len, &data)) {
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_BSS_BSSID:
|
|
|
|
if (len != sizeof(bss->addr))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
memcpy(bss->addr, data, len);
|
|
|
|
break;
|
|
|
|
case NL80211_BSS_CAPABILITY:
|
|
|
|
if (len != sizeof(uint16_t))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
bss->capability = *((uint16_t *) data);
|
|
|
|
break;
|
|
|
|
case NL80211_BSS_FREQUENCY:
|
|
|
|
if (len != sizeof(uint32_t))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
bss->frequency = *((uint32_t *) data);
|
|
|
|
break;
|
|
|
|
case NL80211_BSS_SIGNAL_MBM:
|
|
|
|
if (len != sizeof(int32_t))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
bss->signal_strength = *((int32_t *) data);
|
|
|
|
break;
|
|
|
|
case NL80211_BSS_INFORMATION_ELEMENTS:
|
|
|
|
if (!scan_parse_bss_information_elements(bss,
|
2015-06-01 16:28:05 +02:00
|
|
|
data, len))
|
2015-05-01 16:17:54 +02:00
|
|
|
goto fail;
|
|
|
|
|
2015-09-23 15:44:46 +02:00
|
|
|
bss->wsc = ie_tlv_extract_wsc_payload(data, len,
|
|
|
|
&bss->wsc_size);
|
|
|
|
|
2015-05-01 16:17:54 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bss;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
scan_bss_free(bss);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-10 23:24:31 +02:00
|
|
|
static struct scan_freq_set *scan_parse_attr_scan_frequencies(
|
|
|
|
struct l_genl_attr *attr)
|
|
|
|
{
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
struct scan_freq_set *set;
|
|
|
|
|
|
|
|
set = scan_freq_set_new();
|
|
|
|
|
|
|
|
while (l_genl_attr_next(attr, &type, &len, &data)) {
|
|
|
|
uint32_t freq;
|
|
|
|
|
|
|
|
if (len != sizeof(uint32_t))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
freq = *((uint32_t *) data);
|
|
|
|
scan_freq_set_add(set, freq);
|
|
|
|
}
|
|
|
|
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
static struct scan_bss *scan_parse_result(struct l_genl_msg *msg,
|
2015-05-01 16:17:54 +02:00
|
|
|
uint32_t *out_ifindex,
|
2015-06-01 16:28:05 +02:00
|
|
|
uint64_t *out_wdev)
|
2015-05-01 16:17:54 +02:00
|
|
|
{
|
|
|
|
struct l_genl_attr attr, nested;
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
uint32_t ifindex;
|
|
|
|
uint64_t wdev;
|
|
|
|
struct scan_bss *bss = NULL;
|
|
|
|
|
|
|
|
if (!l_genl_attr_init(&attr, msg))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_ATTR_IFINDEX:
|
|
|
|
if (len != sizeof(uint32_t))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ifindex = *((uint32_t *) data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NL80211_ATTR_WDEV:
|
|
|
|
if (len != sizeof(uint64_t))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wdev = *((uint64_t *) data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NL80211_ATTR_BSS:
|
|
|
|
if (!l_genl_attr_recurse(&attr, &nested))
|
|
|
|
return NULL;
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
bss = scan_parse_attr_bss(&nested);
|
2015-05-01 16:17:54 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bss)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (out_ifindex)
|
|
|
|
*out_ifindex = ifindex;
|
|
|
|
|
|
|
|
if (out_wdev)
|
|
|
|
*out_wdev = wdev;
|
|
|
|
|
|
|
|
return bss;
|
|
|
|
}
|
|
|
|
|
2015-06-22 21:12:09 +02:00
|
|
|
static void scan_bss_compute_rank(struct scan_bss *bss)
|
2015-06-06 01:18:55 +02:00
|
|
|
{
|
2015-06-10 19:25:27 +02:00
|
|
|
static const double RANK_RSNE_FACTOR = 1.2;
|
|
|
|
static const double RANK_WPA_FACTOR = 1.0;
|
|
|
|
static const double RANK_OPEN_FACTOR = 0.5;
|
|
|
|
static const double RANK_NO_PRIVACY_FACTOR = 0.5;
|
|
|
|
static const double RANK_5G_FACTOR = 1.1;
|
2015-06-10 19:37:50 +02:00
|
|
|
static const double RANK_HIGH_UTILIZATION_FACTOR = 0.8;
|
|
|
|
static const double RANK_LOW_UTILIZATION_FACTOR = 1.2;
|
2015-06-10 20:06:19 +02:00
|
|
|
static const double RANK_MIN_SUPPORTED_RATE_FACTOR = 0.8;
|
|
|
|
static const double RANK_MAX_SUPPORTED_RATE_FACTOR = 1.1;
|
2015-06-06 01:18:55 +02:00
|
|
|
double rank;
|
|
|
|
uint32_t irank;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Signal strength is in mBm (100 * dBm) and is negative.
|
|
|
|
* WiFi range is -0 to -100 dBm
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Heavily slanted towards signal strength */
|
2015-06-10 19:36:53 +02:00
|
|
|
rank = 10000 + bss->signal_strength;
|
2015-06-06 01:18:55 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Prefer RSNE first, WPA second. Open networks are much less
|
|
|
|
* desirable.
|
|
|
|
*/
|
|
|
|
if (bss->rsne)
|
|
|
|
rank *= RANK_RSNE_FACTOR;
|
|
|
|
else if (bss->wpa)
|
|
|
|
rank *= RANK_WPA_FACTOR;
|
|
|
|
else
|
|
|
|
rank *= RANK_OPEN_FACTOR;
|
|
|
|
|
|
|
|
/* We prefer networks with CAP PRIVACY */
|
|
|
|
if (!(bss->capability & IE_BSS_CAP_PRIVACY))
|
|
|
|
rank *= RANK_NO_PRIVACY_FACTOR;
|
|
|
|
|
|
|
|
/* Prefer 5G networks over 2.4G */
|
|
|
|
if (bss->frequency > 4000)
|
|
|
|
rank *= RANK_5G_FACTOR;
|
|
|
|
|
2015-06-10 19:37:50 +02:00
|
|
|
/* Rank loaded APs lower and lighly loaded APs higher */
|
|
|
|
if (bss->utilization >= 192)
|
|
|
|
rank *= RANK_HIGH_UTILIZATION_FACTOR;
|
|
|
|
else if (bss->utilization <= 63)
|
|
|
|
rank *= RANK_LOW_UTILIZATION_FACTOR;
|
2015-06-06 01:18:55 +02:00
|
|
|
|
2015-06-10 20:06:19 +02:00
|
|
|
if (bss->supported_rates) {
|
|
|
|
uint8_t max = l_uintset_find_max(bss->supported_rates);
|
|
|
|
double factor = RANK_MAX_SUPPORTED_RATE_FACTOR -
|
|
|
|
RANK_MIN_SUPPORTED_RATE_FACTOR;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Maximum rate is 54 Mbps, see DATA_RATE in 802.11-2012,
|
|
|
|
* Section 6.5.5.2
|
|
|
|
*/
|
|
|
|
factor = factor * max / 108 + RANK_MIN_SUPPORTED_RATE_FACTOR;
|
2016-10-04 05:47:46 +02:00
|
|
|
rank *= factor;
|
2015-06-10 20:06:19 +02:00
|
|
|
}
|
2015-06-06 01:18:55 +02:00
|
|
|
|
|
|
|
irank = rank;
|
|
|
|
|
|
|
|
if (irank > USHRT_MAX)
|
|
|
|
bss->rank = USHRT_MAX;
|
|
|
|
else
|
|
|
|
bss->rank = irank;
|
|
|
|
}
|
|
|
|
|
2015-05-01 05:21:31 +02:00
|
|
|
void scan_bss_free(struct scan_bss *bss)
|
|
|
|
{
|
2015-06-10 20:05:58 +02:00
|
|
|
l_uintset_free(bss->supported_rates);
|
2015-05-01 05:21:31 +02:00
|
|
|
l_free(bss->rsne);
|
|
|
|
l_free(bss->wpa);
|
2015-09-23 15:44:46 +02:00
|
|
|
l_free(bss->wsc);
|
2015-05-01 05:21:31 +02:00
|
|
|
l_free(bss);
|
|
|
|
}
|
2015-05-18 13:31:38 +02:00
|
|
|
|
2016-10-25 05:12:25 +02:00
|
|
|
int scan_bss_get_rsn_info(struct scan_bss *bss, struct ie_rsn_info *info)
|
2015-05-18 13:31:38 +02:00
|
|
|
{
|
2016-10-25 05:12:25 +02:00
|
|
|
/*
|
|
|
|
* If both an RSN and a WPA elements are present currently
|
|
|
|
* RSN takes priority and the WPA IE is ignored.
|
|
|
|
*/
|
2015-05-18 13:31:38 +02:00
|
|
|
if (bss->rsne) {
|
|
|
|
int res = ie_parse_rsne_from_data(bss->rsne, bss->rsne[1] + 2,
|
2016-10-25 05:12:25 +02:00
|
|
|
info);
|
2015-05-18 13:31:38 +02:00
|
|
|
if (res < 0) {
|
|
|
|
l_debug("Cannot parse RSN field (%d, %s)",
|
|
|
|
res, strerror(-res));
|
2016-10-25 05:12:25 +02:00
|
|
|
return res;
|
2015-05-18 13:31:38 +02:00
|
|
|
}
|
|
|
|
} else if (bss->wpa) {
|
|
|
|
int res = ie_parse_wpa_from_data(bss->wpa, bss->wpa[1] + 2,
|
2016-10-25 05:12:25 +02:00
|
|
|
info);
|
2015-05-18 13:31:38 +02:00
|
|
|
if (res < 0) {
|
|
|
|
l_debug("Cannot parse WPA IE (%d, %s)",
|
|
|
|
res, strerror(-res));
|
2016-10-25 05:12:25 +02:00
|
|
|
return res;
|
2015-05-18 13:31:38 +02:00
|
|
|
}
|
|
|
|
} else
|
2016-10-25 05:12:25 +02:00
|
|
|
return -ENOENT;
|
2015-05-18 13:31:38 +02:00
|
|
|
|
2016-10-25 05:12:25 +02:00
|
|
|
return 0;
|
2015-05-18 13:31:38 +02:00
|
|
|
}
|
2015-06-01 16:28:05 +02:00
|
|
|
|
2015-06-16 20:56:03 +02:00
|
|
|
int scan_bss_rank_compare(const void *a, const void *b, void *user_data)
|
|
|
|
{
|
|
|
|
const struct scan_bss *new_bss = a, *bss = b;
|
|
|
|
|
|
|
|
return bss->rank - new_bss->rank;
|
|
|
|
}
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
static void get_scan_callback(struct l_genl_msg *msg, void *user_data)
|
|
|
|
{
|
|
|
|
struct scan_results *results = user_data;
|
|
|
|
struct scan_bss *bss;
|
|
|
|
uint32_t ifindex;
|
|
|
|
|
|
|
|
l_debug("get_scan_callback");
|
|
|
|
|
|
|
|
if (!results->bss_list)
|
|
|
|
results->bss_list = l_queue_new();
|
|
|
|
|
|
|
|
bss = scan_parse_result(msg, &ifindex, NULL);
|
|
|
|
if (!bss)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ifindex != results->ifindex) {
|
|
|
|
l_warn("ifindex mismatch in get_scan_callback");
|
|
|
|
scan_bss_free(bss);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-06 01:18:55 +02:00
|
|
|
scan_bss_compute_rank(bss);
|
2015-06-16 20:56:03 +02:00
|
|
|
l_queue_insert(results->bss_list, bss, scan_bss_rank_compare, NULL);
|
2015-06-01 16:28:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void get_scan_done(void *user)
|
|
|
|
{
|
|
|
|
struct scan_results *results = user;
|
2015-10-06 05:37:12 +02:00
|
|
|
struct scan_context *sc;
|
|
|
|
struct scan_request *sr;
|
|
|
|
scan_notify_func_t callback;
|
|
|
|
void *userdata;
|
|
|
|
scan_destroy_func_t destroy;
|
2015-06-01 16:28:05 +02:00
|
|
|
bool new_owner = false;
|
|
|
|
|
|
|
|
l_debug("get_scan_done");
|
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
|
|
|
L_UINT_TO_PTR(results->ifindex));
|
|
|
|
if (!sc)
|
2015-06-01 16:28:05 +02:00
|
|
|
goto done;
|
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
sr = l_queue_peek_head(sc->requests);
|
|
|
|
if (sr && sr->triggered) {
|
|
|
|
callback = sr->callback;
|
|
|
|
userdata = sr->userdata;
|
|
|
|
destroy = sr->destroy;
|
|
|
|
|
|
|
|
scan_request_free(sr);
|
|
|
|
l_queue_pop_head(sc->requests);
|
|
|
|
} else if (sc->state == SCAN_STATE_PASSIVE && sc->sp.interval != 0) {
|
|
|
|
callback = sc->sp.callback;
|
|
|
|
userdata = sc->sp.userdata;
|
|
|
|
destroy = NULL;
|
|
|
|
} else
|
|
|
|
goto done;
|
2015-09-20 21:58:23 +02:00
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
if (callback)
|
|
|
|
new_owner = callback(results->wiphy, results->ifindex,
|
|
|
|
results->bss_list, userdata);
|
2015-06-01 16:28:05 +02:00
|
|
|
|
2015-10-06 05:37:12 +02:00
|
|
|
if (destroy)
|
|
|
|
destroy(userdata);
|
|
|
|
|
|
|
|
sc->state = SCAN_STATE_NOT_RUNNING;
|
|
|
|
|
|
|
|
if (!l_queue_isempty(sc->requests)) {
|
|
|
|
l_idle_oneshot(start_next_scan_request,
|
|
|
|
L_UINT_TO_PTR(sc->ifindex), NULL);
|
|
|
|
} else if (sc->sp.retry) {
|
|
|
|
__scan_passive_start(nl80211, sc->ifindex,
|
|
|
|
scan_periodic_done, sc);
|
|
|
|
sc->sp.retry = false;
|
|
|
|
} else if (sc->sp.rearm) {
|
|
|
|
scan_periodic_rearm(sc);
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2015-06-01 16:28:05 +02:00
|
|
|
if (!new_owner)
|
|
|
|
l_queue_destroy(results->bss_list,
|
|
|
|
(l_queue_destroy_func_t) scan_bss_free);
|
|
|
|
|
2015-06-10 23:24:31 +02:00
|
|
|
if (results->freqs)
|
|
|
|
scan_freq_set_free(results->freqs);
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
l_free(results);
|
|
|
|
}
|
|
|
|
|
2015-06-10 23:24:31 +02:00
|
|
|
static void scan_parse_new_scan_results(struct l_genl_msg *msg,
|
|
|
|
struct scan_results *results)
|
|
|
|
{
|
|
|
|
struct l_genl_attr attr, nested;
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
|
|
|
|
if (!l_genl_attr_init(&attr, msg))
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_ATTR_SCAN_FREQUENCIES:
|
|
|
|
if (!l_genl_attr_recurse(&attr, &nested)) {
|
|
|
|
l_warn("Failed to parse ATTR_SCAN_FREQUENCIES");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
results->freqs =
|
|
|
|
scan_parse_attr_scan_frequencies(&nested);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
static void scan_notify(struct l_genl_msg *msg, void *user_data)
|
|
|
|
{
|
|
|
|
struct l_genl_attr attr;
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
uint8_t cmd;
|
|
|
|
uint32_t uninitialized_var(attr_ifindex);
|
|
|
|
bool have_ifindex;
|
|
|
|
uint32_t uninitialized_var(attr_wiphy);
|
|
|
|
bool have_wiphy;
|
2015-09-20 21:58:23 +02:00
|
|
|
struct scan_context *sc;
|
|
|
|
bool active_scan = false;
|
2015-06-01 16:28:05 +02:00
|
|
|
|
|
|
|
cmd = l_genl_msg_get_command(msg);
|
|
|
|
|
|
|
|
l_debug("Scan notification %u", cmd);
|
|
|
|
|
|
|
|
if (!l_genl_attr_init(&attr, msg))
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_ATTR_WIPHY:
|
|
|
|
if (len != sizeof(uint32_t)) {
|
|
|
|
l_warn("Invalid wiphy attribute");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
have_wiphy = true;
|
|
|
|
attr_wiphy = *((uint32_t *) data);
|
|
|
|
break;
|
|
|
|
case NL80211_ATTR_IFINDEX:
|
|
|
|
if (len != sizeof(uint32_t)) {
|
|
|
|
l_warn("Invalid interface index attribute");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
have_ifindex = true;
|
|
|
|
attr_ifindex = *((uint32_t *) data);
|
|
|
|
break;
|
2015-09-20 21:58:23 +02:00
|
|
|
case NL80211_ATTR_SCAN_SSIDS:
|
|
|
|
active_scan = true;
|
|
|
|
break;
|
2015-06-01 16:28:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!have_wiphy) {
|
|
|
|
l_warn("Scan results do not contain wiphy attribute");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!have_ifindex) {
|
|
|
|
l_warn("Scan results do not contain ifindex attribute");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
sc = l_queue_find(scan_contexts, scan_context_match,
|
|
|
|
L_UINT_TO_PTR(attr_ifindex));
|
|
|
|
if (!sc)
|
2015-06-01 16:28:05 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case NL80211_CMD_NEW_SCAN_RESULTS:
|
|
|
|
case NL80211_CMD_SCHED_SCAN_RESULTS:
|
|
|
|
{
|
2015-06-10 23:24:31 +02:00
|
|
|
struct l_genl_msg *scan_msg;
|
2015-06-01 16:28:05 +02:00
|
|
|
struct scan_results *results;
|
|
|
|
|
|
|
|
results = l_new(struct scan_results, 1);
|
|
|
|
results->wiphy = attr_wiphy;
|
|
|
|
results->ifindex = attr_ifindex;
|
|
|
|
|
2015-06-10 23:24:31 +02:00
|
|
|
scan_parse_new_scan_results(msg, results);
|
|
|
|
|
|
|
|
scan_msg = l_genl_msg_new_sized(NL80211_CMD_GET_SCAN, 8);
|
|
|
|
l_genl_msg_append_attr(scan_msg, NL80211_ATTR_IFINDEX, 4,
|
2015-06-01 16:28:05 +02:00
|
|
|
&attr_ifindex);
|
2015-06-10 23:24:31 +02:00
|
|
|
l_genl_family_dump(nl80211, scan_msg, get_scan_callback,
|
|
|
|
results, get_scan_done);
|
2015-06-05 05:31:39 +02:00
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
break;
|
2015-06-01 16:28:05 +02:00
|
|
|
}
|
2015-09-20 21:58:23 +02:00
|
|
|
|
|
|
|
case NL80211_CMD_TRIGGER_SCAN:
|
|
|
|
if (active_scan)
|
|
|
|
sc->state = SCAN_STATE_ACTIVE;
|
|
|
|
else
|
|
|
|
sc->state = SCAN_STATE_PASSIVE;
|
|
|
|
|
|
|
|
break;
|
2016-04-12 00:53:06 +02:00
|
|
|
|
|
|
|
case NL80211_CMD_SCAN_ABORTED:
|
|
|
|
sc->state = SCAN_STATE_NOT_RUNNING;
|
|
|
|
break;
|
2015-06-01 16:28:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-10 22:31:13 +02:00
|
|
|
uint8_t scan_freq_to_channel(uint32_t freq, enum scan_band *out_band)
|
|
|
|
{
|
|
|
|
uint32_t channel = 0;
|
|
|
|
|
|
|
|
if (freq >= 2412 && freq <= 2484) {
|
|
|
|
if (freq == 2484)
|
|
|
|
channel = 14;
|
|
|
|
else {
|
|
|
|
channel = freq - 2407;
|
|
|
|
|
|
|
|
if (channel % 5)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
channel /= 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (out_band)
|
|
|
|
*out_band = SCAN_BAND_2_4_GHZ;
|
|
|
|
|
|
|
|
return channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (freq >= 5005 && freq < 5900) {
|
|
|
|
if (channel % 5)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
channel = (freq - 5000) / 5;
|
|
|
|
|
|
|
|
if (out_band)
|
|
|
|
*out_band = SCAN_BAND_5_GHZ;
|
|
|
|
|
|
|
|
return channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (freq >= 4905 && freq < 5000) {
|
|
|
|
if (channel % 5)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
channel = (freq - 4000) / 5;
|
|
|
|
|
|
|
|
if (out_band)
|
|
|
|
*out_band = SCAN_BAND_5_GHZ;
|
|
|
|
|
|
|
|
return channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-04 05:47:52 +02:00
|
|
|
uint32_t scan_channel_to_freq(uint8_t channel, enum scan_band band)
|
|
|
|
{
|
|
|
|
if (band == SCAN_BAND_2_4_GHZ) {
|
|
|
|
if (channel >= 1 && channel <= 13)
|
|
|
|
return 2407 + 5 * channel;
|
|
|
|
|
|
|
|
if (channel == 14)
|
|
|
|
return 2484;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (band == SCAN_BAND_5_GHZ) {
|
|
|
|
if (channel >= 1 && channel <= 179)
|
|
|
|
return 5000 + 5 * channel;
|
|
|
|
|
|
|
|
if (channel >= 181 && channel <= 199)
|
|
|
|
return 4000 + 5 * channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-04 05:47:53 +02:00
|
|
|
static const char *const oper_class_us_codes[] = {
|
|
|
|
"US", "CA"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *const oper_class_eu_codes[] = {
|
|
|
|
"AL", "AM", "AT", "AZ", "BA", "BE", "BG", "BY", "CH", "CY", "CZ", "DE",
|
|
|
|
"DK", "EE", "EL", "ES", "FI", "FR", "GE", "HR", "HU", "IE", "IS", "IT",
|
|
|
|
"LI", "LT", "LU", "LV", "MD", "ME", "MK", "MT", "NL", "NO", "PL", "PT",
|
|
|
|
"RO", "RS", "RU", "SE", "SI", "SK", "TR", "UA", "UK"
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Annex E, table E-1 */
|
|
|
|
static const uint8_t oper_class_us_to_global[] = {
|
|
|
|
[1] = 115, [2] = 118, [3] = 124, [4] = 121,
|
|
|
|
[5] = 125, [6] = 103, [7] = 103, [8] = 102,
|
|
|
|
[9] = 102, [10] = 101, [11] = 101, [12] = 81,
|
|
|
|
[13] = 94, [14] = 95, [15] = 96, [22] = 116,
|
|
|
|
[23] = 119, [24] = 122, [25] = 126, [26] = 126,
|
|
|
|
[27] = 117, [28] = 120, [29] = 123, [30] = 127,
|
|
|
|
[31] = 127, [32] = 83, [33] = 84
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Annex E, table E-2 */
|
|
|
|
static const uint8_t oper_class_eu_to_global[] = {
|
|
|
|
[1] = 115, [2] = 118, [3] = 121, [4] = 81,
|
|
|
|
[5] = 116, [6] = 119, [7] = 122, [8] = 117,
|
|
|
|
[9] = 120, [10] = 123, [11] = 83, [12] = 84,
|
|
|
|
[17] = 125
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Annex E, table E-3 */
|
|
|
|
static const uint8_t oper_class_jp_to_global[] = {
|
|
|
|
[1] = 115, [2] = 112, [3] = 112, [4] = 112,
|
|
|
|
[5] = 112, [6] = 112, [7] = 109, [8] = 109,
|
|
|
|
[9] = 109, [10] = 109, [11] = 109, [12] = 113,
|
|
|
|
[13] = 113, [14] = 113, [15] = 113, [16] = 110,
|
|
|
|
[17] = 110, [18] = 110, [19] = 110, [20] = 110,
|
|
|
|
[21] = 114, [22] = 114, [23] = 114, [24] = 114,
|
|
|
|
[25] = 111, [26] = 111, [27] = 111, [28] = 111,
|
|
|
|
[29] = 111, [30] = 81, [31] = 82, [32] = 118,
|
|
|
|
[33] = 118, [34] = 121, [35] = 121, [36] = 116,
|
|
|
|
[37] = 119, [38] = 119, [39] = 122, [40] = 122,
|
|
|
|
[41] = 117, [42] = 120, [43] = 120, [44] = 123,
|
|
|
|
[45] = 123, [46] = 104, [47] = 104, [48] = 104,
|
|
|
|
[49] = 104, [50] = 104, [51] = 105, [52] = 105,
|
|
|
|
[53] = 105, [54] = 105, [55] = 105, [56] = 83,
|
|
|
|
[57] = 84, [58] = 121
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Annex E, table E-4 (only 2.4GHz and 4.9 / 5GHz bands) */
|
|
|
|
static const enum scan_band oper_class_to_band_global[] = {
|
|
|
|
[81 ... 84] = SCAN_BAND_2_4_GHZ,
|
|
|
|
[104 ... 127] = SCAN_BAND_5_GHZ,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum scan_band scan_oper_class_to_band(const uint8_t *country,
|
|
|
|
uint8_t oper_class)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
int table = 0;
|
|
|
|
|
|
|
|
if (country && country[2] >= 1 && country[2] <= 4)
|
|
|
|
table = country[2];
|
|
|
|
else if (country) {
|
|
|
|
for (i = 0; i < L_ARRAY_SIZE(oper_class_us_codes); i++)
|
|
|
|
if (!memcmp(oper_class_us_codes[i], country, 2)) {
|
|
|
|
/* Use table E-1 */
|
|
|
|
table = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < L_ARRAY_SIZE(oper_class_eu_codes); i++)
|
|
|
|
if (!memcmp(oper_class_eu_codes[i], country, 2)) {
|
|
|
|
/* Use table E-2 */
|
|
|
|
table = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!memcmp("JP", country, 2))
|
|
|
|
/* Use table E-3 */
|
|
|
|
table = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (table) {
|
|
|
|
case 1:
|
|
|
|
if (oper_class < L_ARRAY_SIZE(oper_class_us_to_global))
|
|
|
|
oper_class = oper_class_us_to_global[oper_class];
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (oper_class < L_ARRAY_SIZE(oper_class_eu_to_global))
|
|
|
|
oper_class = oper_class_eu_to_global[oper_class];
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
if (oper_class < L_ARRAY_SIZE(oper_class_jp_to_global))
|
|
|
|
oper_class = oper_class_jp_to_global[oper_class];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (oper_class < L_ARRAY_SIZE(oper_class_to_band_global))
|
|
|
|
return oper_class_to_band_global[oper_class];
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-10 23:24:06 +02:00
|
|
|
struct scan_freq_set {
|
|
|
|
uint16_t channels_2ghz;
|
|
|
|
struct l_uintset *channels_5ghz;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct scan_freq_set *scan_freq_set_new(void)
|
|
|
|
{
|
|
|
|
struct scan_freq_set *ret = l_new(struct scan_freq_set, 1);
|
|
|
|
|
|
|
|
/* 802.11-2012, 8.4.2.10 hints that 200 is the largest channel number */
|
|
|
|
ret->channels_5ghz = l_uintset_new_from_range(1, 200);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void scan_freq_set_free(struct scan_freq_set *freqs)
|
|
|
|
{
|
2015-06-10 23:24:31 +02:00
|
|
|
l_uintset_free(freqs->channels_5ghz);
|
2015-06-10 23:24:06 +02:00
|
|
|
l_free(freqs);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scan_freq_set_add(struct scan_freq_set *freqs, uint32_t freq)
|
|
|
|
{
|
|
|
|
enum scan_band band;
|
|
|
|
uint8_t channel;
|
|
|
|
|
|
|
|
channel = scan_freq_to_channel(freq, &band);
|
|
|
|
if (!channel)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (band) {
|
|
|
|
case SCAN_BAND_2_4_GHZ:
|
|
|
|
freqs->channels_2ghz |= 1 << (channel - 1);
|
|
|
|
return true;
|
|
|
|
case SCAN_BAND_5_GHZ:
|
|
|
|
return l_uintset_put(freqs->channels_5ghz, channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scan_freq_set_contains(struct scan_freq_set *freqs, uint32_t freq)
|
|
|
|
{
|
|
|
|
enum scan_band band;
|
|
|
|
uint8_t channel;
|
|
|
|
|
|
|
|
channel = scan_freq_to_channel(freq, &band);
|
|
|
|
if (!channel)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (band) {
|
|
|
|
case SCAN_BAND_2_4_GHZ:
|
|
|
|
return freqs->channels_2ghz & (1 << (channel - 1));
|
|
|
|
case SCAN_BAND_5_GHZ:
|
|
|
|
return l_uintset_contains(freqs->channels_5ghz, channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-06 22:23:09 +02:00
|
|
|
uint32_t scan_freq_set_get_bands(struct scan_freq_set *freqs)
|
|
|
|
{
|
|
|
|
uint32_t bands = 0;
|
|
|
|
uint32_t max;
|
|
|
|
|
|
|
|
if (freqs->channels_2ghz)
|
|
|
|
bands |= SCAN_BAND_2_4_GHZ;
|
|
|
|
|
|
|
|
max = l_uintset_get_max(freqs->channels_5ghz);
|
|
|
|
|
|
|
|
if (l_uintset_find_min(freqs->channels_5ghz) <= max)
|
|
|
|
bands |= SCAN_BAND_5_GHZ;
|
|
|
|
|
|
|
|
return bands;
|
|
|
|
}
|
|
|
|
|
2016-10-04 05:47:49 +02:00
|
|
|
void scan_freq_set_foreach(struct scan_freq_set *freqs,
|
|
|
|
scan_freq_set_func_t func, void *user_data)
|
|
|
|
{
|
|
|
|
uint8_t channel;
|
|
|
|
uint32_t freq;
|
|
|
|
|
|
|
|
for (channel = 1; channel <= 14; channel++)
|
|
|
|
if (freqs->channels_2ghz & (1 << (channel - 1))) {
|
|
|
|
freq = scan_channel_to_freq(channel, SCAN_BAND_2_4_GHZ);
|
|
|
|
|
|
|
|
func(freq, user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (channel = 1; channel <= 200; channel++)
|
|
|
|
if (l_uintset_contains(freqs->channels_5ghz, channel)) {
|
|
|
|
freq = scan_channel_to_freq(channel, SCAN_BAND_5_GHZ);
|
|
|
|
|
|
|
|
func(freq, user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
bool scan_init(struct l_genl_family *in)
|
2015-06-01 16:28:05 +02:00
|
|
|
{
|
|
|
|
nl80211 = in;
|
|
|
|
scan_id = l_genl_family_register(nl80211, "scan", scan_notify,
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
|
|
if (!scan_id) {
|
|
|
|
l_error("Registering for scan notification failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
scan_contexts = l_queue_new();
|
2015-06-01 16:28:05 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-10 23:34:28 +02:00
|
|
|
bool scan_exit()
|
2015-06-01 16:28:05 +02:00
|
|
|
{
|
2015-06-05 05:31:39 +02:00
|
|
|
bool r;
|
|
|
|
|
2015-09-22 21:07:27 +02:00
|
|
|
l_debug("");
|
|
|
|
|
2015-06-01 16:28:05 +02:00
|
|
|
if (!nl80211)
|
|
|
|
return false;
|
|
|
|
|
2015-09-20 21:58:23 +02:00
|
|
|
l_queue_destroy(scan_contexts,
|
|
|
|
(l_queue_destroy_func_t) scan_context_free);
|
|
|
|
scan_contexts = NULL;
|
2015-06-05 05:31:39 +02:00
|
|
|
|
|
|
|
r = l_genl_family_unregister(nl80211, scan_id);
|
|
|
|
scan_id = 0;
|
2015-06-01 16:28:05 +02:00
|
|
|
|
2015-09-22 21:07:02 +02:00
|
|
|
nl80211 = 0;
|
|
|
|
|
2015-06-05 05:31:39 +02:00
|
|
|
return r;
|
2015-06-01 16:28:05 +02:00
|
|
|
}
|