2015-06-18 12:18:26 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-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 <sys/types.h>
|
2016-05-16 21:24:21 +02:00
|
|
|
#include <errno.h>
|
2016-06-10 11:50:20 +02:00
|
|
|
#include <limits.h>
|
2015-06-18 12:18:26 +02:00
|
|
|
|
|
|
|
#include <ell/ell.h>
|
|
|
|
|
2016-05-16 19:37:48 +02:00
|
|
|
#include "src/ie.h"
|
|
|
|
#include "src/crypto.h"
|
|
|
|
|
2016-05-11 22:52:43 +02:00
|
|
|
#include "src/iwd.h"
|
|
|
|
#include "src/common.h"
|
2015-06-18 12:18:26 +02:00
|
|
|
#include "src/storage.h"
|
|
|
|
#include "src/scan.h"
|
2016-05-12 05:30:10 +02:00
|
|
|
#include "src/dbus.h"
|
2016-05-16 04:37:12 +02:00
|
|
|
#include "src/agent.h"
|
2016-05-12 05:30:10 +02:00
|
|
|
#include "src/device.h"
|
2016-05-16 19:37:48 +02:00
|
|
|
#include "src/wiphy.h"
|
2016-05-12 05:30:10 +02:00
|
|
|
#include "src/network.h"
|
2015-06-18 12:18:26 +02:00
|
|
|
|
|
|
|
struct network_info {
|
|
|
|
char ssid[33];
|
|
|
|
uint32_t type;
|
|
|
|
struct timespec connected_time; /* Time last connected */
|
|
|
|
};
|
|
|
|
|
2016-05-16 23:14:26 +02:00
|
|
|
struct network {
|
|
|
|
char *object_path;
|
2016-05-31 19:57:24 +02:00
|
|
|
struct device *device;
|
2016-05-16 23:14:26 +02:00
|
|
|
char ssid[33];
|
|
|
|
unsigned char *psk;
|
|
|
|
unsigned int agent_request;
|
|
|
|
enum security security;
|
|
|
|
struct l_queue *bss_list;
|
|
|
|
struct l_settings *settings;
|
|
|
|
bool update_psk:1; /* Whether PSK should be written to storage */
|
|
|
|
bool ask_psk:1; /* Whether we should force-ask agent for PSK */
|
2016-06-10 11:50:20 +02:00
|
|
|
int rank;
|
2016-05-16 23:14:26 +02:00
|
|
|
};
|
|
|
|
|
2015-06-18 12:18:26 +02:00
|
|
|
static struct l_queue *networks = NULL;
|
|
|
|
|
|
|
|
static int timespec_compare(const void *a, const void *b, void *user_data)
|
|
|
|
{
|
|
|
|
const struct network_info *ni_a = a;
|
|
|
|
const struct network_info *ni_b = b;
|
|
|
|
const struct timespec *tsa = &ni_a->connected_time;
|
|
|
|
const struct timespec *tsb = &ni_b->connected_time;
|
|
|
|
|
|
|
|
if (tsa->tv_sec > tsb->tv_sec)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (tsa->tv_sec < tsb->tv_sec)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (tsa->tv_nsec > tsb->tv_nsec)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (tsa->tv_nsec < tsb->tv_nsec)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool network_info_match(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct network_info *ni_a = a;
|
|
|
|
const struct network_info *ni_b = b;
|
|
|
|
|
|
|
|
if (ni_a->type != ni_b->type)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (strcmp(ni_a->ssid, ni_b->ssid))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-28 05:27:13 +02:00
|
|
|
bool network_seen(struct network *network)
|
2015-06-18 12:18:26 +02:00
|
|
|
{
|
|
|
|
struct timespec mtim;
|
|
|
|
int err;
|
|
|
|
struct network_info *info;
|
2016-05-28 05:27:11 +02:00
|
|
|
struct network_info search;
|
2016-06-07 05:29:49 +02:00
|
|
|
const char *strtype;
|
2016-05-28 05:27:11 +02:00
|
|
|
|
2016-05-28 05:27:13 +02:00
|
|
|
search.type = network->security;
|
|
|
|
strncpy(search.ssid, network->ssid, 32);
|
2016-05-28 05:27:11 +02:00
|
|
|
search.ssid[32] = 0;
|
|
|
|
|
|
|
|
info = l_queue_find(networks, network_info_match, &search);
|
|
|
|
if (info)
|
|
|
|
return true;
|
2015-06-18 12:18:26 +02:00
|
|
|
|
2016-06-07 05:29:49 +02:00
|
|
|
strtype = security_to_str(network->security);
|
|
|
|
if (!strtype)
|
2015-06-18 12:18:26 +02:00
|
|
|
return false;
|
|
|
|
|
2016-06-07 05:29:49 +02:00
|
|
|
err = storage_network_get_mtime(strtype, network->ssid, &mtim);
|
2015-06-18 12:18:26 +02:00
|
|
|
if (err < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
info = l_new(struct network_info, 1);
|
2016-05-28 05:27:13 +02:00
|
|
|
info->type = network->security;
|
|
|
|
strncpy(info->ssid, network->ssid, 32);
|
2015-06-18 12:18:26 +02:00
|
|
|
info->ssid[32] = 0;
|
|
|
|
memcpy(&info->connected_time, &mtim, sizeof(struct timespec));
|
|
|
|
|
|
|
|
l_queue_insert(networks, info, timespec_compare, NULL);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-28 05:27:13 +02:00
|
|
|
bool network_connected(struct network *network)
|
2015-06-18 12:18:26 +02:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct network_info *info;
|
|
|
|
struct network_info search;
|
2016-02-10 00:08:43 +01:00
|
|
|
const char *strtype;
|
2015-06-18 12:18:26 +02:00
|
|
|
|
2016-05-28 05:27:13 +02:00
|
|
|
search.type = network->security;
|
|
|
|
strncpy(search.ssid, network->ssid, 32);
|
2015-06-18 12:18:26 +02:00
|
|
|
search.ssid[32] = 0;
|
|
|
|
|
|
|
|
info = l_queue_remove_if(networks, network_info_match, &search);
|
|
|
|
if (!info)
|
|
|
|
return false;
|
|
|
|
|
2016-05-28 05:27:13 +02:00
|
|
|
strtype = security_to_str(network->security);
|
2016-02-10 00:08:43 +01:00
|
|
|
if (!strtype)
|
|
|
|
goto fail;
|
|
|
|
|
2016-05-28 05:27:13 +02:00
|
|
|
err = storage_network_touch(strtype, network->ssid);
|
2016-06-07 05:29:51 +02:00
|
|
|
if (err == -ENOENT) {
|
|
|
|
/*
|
|
|
|
* Write an empty settings file to keep track of the
|
|
|
|
* last connected time. This will also make iwd autoconnect
|
|
|
|
* to this network in the future.
|
|
|
|
* Current policy is that network becomes a Known Network
|
|
|
|
* only on a successful connect.
|
|
|
|
*/
|
|
|
|
if (!network_settings_load(network))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
storage_network_sync(strtype, network->ssid, network->settings);
|
|
|
|
} else
|
2015-06-18 12:18:26 +02:00
|
|
|
goto fail;
|
|
|
|
|
2016-05-28 05:27:13 +02:00
|
|
|
err = storage_network_get_mtime(strtype, network->ssid,
|
|
|
|
&info->connected_time);
|
2015-06-18 12:18:26 +02:00
|
|
|
if (err < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
l_queue_push_head(networks, info);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
l_free(info);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-09 19:55:18 +02:00
|
|
|
void network_disconnected(struct network *network)
|
|
|
|
{
|
|
|
|
network_settings_close(network);
|
|
|
|
}
|
|
|
|
|
2016-06-10 11:50:20 +02:00
|
|
|
static const struct network_info *network_find_info(const char *ssid,
|
|
|
|
enum security security,
|
|
|
|
unsigned int *index)
|
|
|
|
{
|
|
|
|
const struct l_queue_entry *entry;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0, entry = l_queue_get_entries(networks); entry;
|
|
|
|
entry = entry->next, n += 1) {
|
|
|
|
const struct network_info *info = entry->data;
|
|
|
|
|
|
|
|
if (info->type != security)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strcmp(info->ssid, ssid))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-18 13:11:14 +02:00
|
|
|
/* First 64 entries calculated by 1 / pow(n, 0.3) for n >= 1 */
|
|
|
|
static const double rankmod_table[] = {
|
2015-06-22 22:08:02 +02:00
|
|
|
1.0000000000, 0.8122523964, 0.7192230933, 0.6597539554,
|
2015-06-18 13:11:14 +02:00
|
|
|
0.6170338627, 0.5841906811, 0.5577898253, 0.5358867313,
|
|
|
|
0.5172818580, 0.5011872336, 0.4870596972, 0.4745102806,
|
|
|
|
0.4632516708, 0.4530661223, 0.4437850034, 0.4352752816,
|
|
|
|
0.4274303178, 0.4201634287, 0.4134032816, 0.4070905315,
|
|
|
|
0.4011753236, 0.3956154062, 0.3903746872, 0.3854221125,
|
|
|
|
0.3807307877, 0.3762772797, 0.3720410580, 0.3680040435,
|
|
|
|
0.3641502401, 0.3604654325, 0.3569369365, 0.3535533906,
|
|
|
|
0.3503045821, 0.3471812999, 0.3441752105, 0.3412787518,
|
|
|
|
0.3384850430, 0.3357878061, 0.3331812996, 0.3306602598,
|
|
|
|
0.3282198502, 0.3258556179, 0.3235634544, 0.3213395618,
|
|
|
|
0.3191804229, 0.3170827751, 0.3150435863, 0.3130600345,
|
|
|
|
0.3111294892, 0.3092494947, 0.3074177553, 0.3056321221,
|
|
|
|
0.3038905808, 0.3021912409, 0.3005323264, 0.2989121662,
|
|
|
|
0.2973291870, 0.2957819051, 0.2942689208, 0.2927889114,
|
|
|
|
0.2913406263, 0.2899228820, 0.2885345572, 0.2871745887,
|
|
|
|
};
|
|
|
|
|
2016-06-09 19:55:20 +02:00
|
|
|
bool network_rankmod(const struct network *network, double *rankmod)
|
2015-06-18 13:11:14 +02:00
|
|
|
{
|
2016-06-10 11:50:20 +02:00
|
|
|
unsigned int n;
|
|
|
|
unsigned int nmax;
|
|
|
|
const struct network_info *info = network_find_info(
|
|
|
|
network->ssid, network->security, &n);
|
2015-06-18 13:11:14 +02:00
|
|
|
|
2016-06-10 11:50:20 +02:00
|
|
|
if (!info)
|
|
|
|
return false;
|
2015-06-18 13:11:14 +02:00
|
|
|
|
2016-06-10 11:50:20 +02:00
|
|
|
nmax = L_ARRAY_SIZE(rankmod_table);
|
2015-06-18 13:11:14 +02:00
|
|
|
|
2016-06-10 11:50:20 +02:00
|
|
|
if (n >= nmax)
|
|
|
|
n = nmax - 1;
|
2015-06-18 13:11:14 +02:00
|
|
|
|
2016-06-10 11:50:20 +02:00
|
|
|
*rankmod = rankmod_table[n];
|
2015-06-18 13:11:14 +02:00
|
|
|
|
2016-06-10 11:50:20 +02:00
|
|
|
return true;
|
2015-06-18 13:11:14 +02:00
|
|
|
}
|
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
struct network *network_create(struct device *device,
|
2016-05-16 04:11:01 +02:00
|
|
|
uint8_t *ssid, uint8_t ssid_len,
|
|
|
|
enum security security)
|
|
|
|
{
|
|
|
|
struct network *network;
|
|
|
|
|
|
|
|
network = l_new(struct network, 1);
|
2016-05-31 19:57:24 +02:00
|
|
|
network->device = device;
|
2016-05-16 04:11:01 +02:00
|
|
|
memcpy(network->ssid, ssid, ssid_len);
|
|
|
|
network->security = security;
|
|
|
|
|
|
|
|
network->bss_list = l_queue_new();
|
|
|
|
|
|
|
|
return network;
|
|
|
|
}
|
|
|
|
|
2016-05-28 05:27:12 +02:00
|
|
|
const char *network_get_ssid(const struct network *network)
|
2016-05-12 05:00:58 +02:00
|
|
|
{
|
|
|
|
return network->ssid;
|
|
|
|
}
|
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
struct device *network_get_device(const struct network *network)
|
2016-05-12 05:02:49 +02:00
|
|
|
{
|
2016-05-31 19:57:24 +02:00
|
|
|
return network->device;
|
2016-05-12 05:02:49 +02:00
|
|
|
}
|
|
|
|
|
2016-05-28 05:27:12 +02:00
|
|
|
const char *network_get_path(const struct network *network)
|
2016-05-12 05:07:38 +02:00
|
|
|
{
|
|
|
|
return network->object_path;
|
|
|
|
}
|
|
|
|
|
2016-05-28 05:27:12 +02:00
|
|
|
enum security network_get_security(const struct network *network)
|
2016-05-12 05:10:18 +02:00
|
|
|
{
|
|
|
|
return network->security;
|
|
|
|
}
|
|
|
|
|
2016-05-28 05:27:12 +02:00
|
|
|
const unsigned char *network_get_psk(const struct network *network)
|
2016-05-16 21:22:24 +02:00
|
|
|
{
|
|
|
|
return network->psk;
|
|
|
|
}
|
|
|
|
|
2016-06-09 19:55:22 +02:00
|
|
|
int network_get_signal_strength(const struct network *network)
|
|
|
|
{
|
|
|
|
struct scan_bss *best_bss = l_queue_peek_head(network->bss_list);
|
|
|
|
|
|
|
|
return best_bss->signal_strength;
|
|
|
|
}
|
|
|
|
|
2016-05-28 05:27:12 +02:00
|
|
|
struct l_settings *network_get_settings(const struct network *network)
|
2016-05-16 21:36:32 +02:00
|
|
|
{
|
|
|
|
return network->settings;
|
|
|
|
}
|
|
|
|
|
2016-05-16 03:47:41 +02:00
|
|
|
bool network_settings_load(struct network *network)
|
|
|
|
{
|
2016-06-07 05:29:49 +02:00
|
|
|
const char *strtype;
|
|
|
|
|
2016-05-16 03:47:41 +02:00
|
|
|
if (network->settings)
|
|
|
|
return true;
|
|
|
|
|
2016-06-07 05:29:49 +02:00
|
|
|
strtype = security_to_str(network->security);
|
|
|
|
if (!strtype)
|
2016-05-16 03:47:41 +02:00
|
|
|
return false;
|
|
|
|
|
2016-06-07 05:29:49 +02:00
|
|
|
network->settings = storage_network_open(strtype, network->ssid);
|
|
|
|
|
|
|
|
return network->settings != NULL;
|
2016-05-16 03:47:41 +02:00
|
|
|
}
|
|
|
|
|
2016-05-16 04:04:02 +02:00
|
|
|
void network_sync_psk(struct network *network)
|
|
|
|
{
|
|
|
|
char *hex;
|
|
|
|
|
|
|
|
if (!network->update_psk)
|
|
|
|
return;
|
|
|
|
|
|
|
|
network->update_psk = false;
|
|
|
|
hex = l_util_hexstring(network->psk, 32);
|
|
|
|
l_settings_set_value(network->settings, "Security",
|
|
|
|
"PreSharedKey", hex);
|
|
|
|
l_free(hex);
|
|
|
|
storage_network_sync("psk", network->ssid, network->settings);
|
|
|
|
}
|
|
|
|
|
2016-05-16 03:47:41 +02:00
|
|
|
void network_settings_close(struct network *network)
|
|
|
|
{
|
|
|
|
if (!network->settings)
|
|
|
|
return;
|
|
|
|
|
|
|
|
l_settings_free(network->settings);
|
|
|
|
network->settings = NULL;
|
|
|
|
}
|
|
|
|
|
2016-05-16 21:24:21 +02:00
|
|
|
int network_autoconnect(struct network *network, struct scan_bss *bss)
|
|
|
|
{
|
2016-05-31 19:57:24 +02:00
|
|
|
struct wiphy *wiphy = device_get_wiphy(network->device);
|
2016-05-16 21:24:21 +02:00
|
|
|
|
|
|
|
switch (network_get_security(network)) {
|
|
|
|
case SECURITY_NONE:
|
|
|
|
break;
|
|
|
|
case SECURITY_PSK:
|
|
|
|
{
|
|
|
|
uint16_t pairwise_ciphers, group_ciphers;
|
|
|
|
const char *psk;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
bss_get_supported_ciphers(bss,
|
|
|
|
&pairwise_ciphers, &group_ciphers);
|
|
|
|
|
|
|
|
if (!wiphy_select_cipher(wiphy, pairwise_ciphers) ||
|
|
|
|
!wiphy_select_cipher(wiphy, group_ciphers)) {
|
|
|
|
l_debug("Cipher mis-match");
|
|
|
|
return -ENETUNREACH;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (network->ask_psk)
|
|
|
|
return -ENOKEY;
|
|
|
|
|
|
|
|
network_settings_load(network);
|
|
|
|
psk = l_settings_get_value(network->settings, "Security",
|
|
|
|
"PreSharedKey");
|
|
|
|
|
|
|
|
if (!psk)
|
|
|
|
return -ENOKEY;
|
|
|
|
|
|
|
|
l_free(network->psk);
|
|
|
|
network->psk = l_util_from_hexstring(psk, &len);
|
|
|
|
|
|
|
|
if (network->psk && len != 32) {
|
|
|
|
l_free(network->psk);
|
|
|
|
network->psk = NULL;
|
|
|
|
return -ENOKEY;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SECURITY_8021X:
|
|
|
|
network_settings_load(network);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
device_connect_network(network->device, network, bss, NULL);
|
2016-05-16 21:24:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-16 22:43:32 +02:00
|
|
|
void network_connect_failed(struct network *network)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Connection failed, if PSK try asking for the passphrase
|
|
|
|
* once more
|
|
|
|
*/
|
|
|
|
if (network->security == SECURITY_PSK) {
|
|
|
|
network->update_psk = false;
|
|
|
|
network->ask_psk = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-16 23:06:41 +02:00
|
|
|
bool network_bss_add(struct network *network, struct scan_bss *bss)
|
|
|
|
{
|
|
|
|
return l_queue_insert(network->bss_list, bss,
|
|
|
|
scan_bss_rank_compare, NULL);
|
|
|
|
}
|
|
|
|
|
2016-05-16 23:13:36 +02:00
|
|
|
bool network_bss_list_isempty(struct network *network)
|
|
|
|
{
|
|
|
|
return l_queue_isempty(network->bss_list);
|
|
|
|
}
|
|
|
|
|
2016-05-16 23:13:52 +02:00
|
|
|
void network_bss_list_clear(struct network *network)
|
|
|
|
{
|
|
|
|
l_queue_destroy(network->bss_list, NULL);
|
|
|
|
network->bss_list = l_queue_new();
|
|
|
|
}
|
|
|
|
|
2016-05-16 19:37:48 +02:00
|
|
|
static struct scan_bss *network_select_bss(struct wiphy *wiphy,
|
|
|
|
struct network *network)
|
|
|
|
{
|
|
|
|
struct l_queue *bss_list = network->bss_list;
|
|
|
|
const struct l_queue_entry *bss_entry;
|
|
|
|
|
|
|
|
switch (network->security) {
|
|
|
|
case SECURITY_NONE:
|
|
|
|
/* Pick the first bss (strongest signal) */
|
|
|
|
return l_queue_peek_head(bss_list);
|
|
|
|
|
|
|
|
case SECURITY_PSK:
|
|
|
|
case SECURITY_8021X:
|
|
|
|
/* Pick the first bss that advertises any cipher we support. */
|
|
|
|
for (bss_entry = l_queue_get_entries(bss_list); bss_entry;
|
|
|
|
bss_entry = bss_entry->next) {
|
|
|
|
struct scan_bss *bss = bss_entry->data;
|
|
|
|
uint16_t pairwise_ciphers, group_ciphers;
|
|
|
|
|
|
|
|
bss_get_supported_ciphers(bss, &pairwise_ciphers,
|
|
|
|
&group_ciphers);
|
|
|
|
|
|
|
|
if (wiphy_select_cipher(wiphy, pairwise_ciphers) &&
|
|
|
|
wiphy_select_cipher(wiphy,
|
|
|
|
group_ciphers))
|
|
|
|
return bss;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void passphrase_callback(enum agent_result result,
|
|
|
|
const char *passphrase,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct network *network = user_data;
|
2016-05-31 19:57:24 +02:00
|
|
|
struct wiphy *wiphy = device_get_wiphy(network->device);
|
2016-05-16 19:37:48 +02:00
|
|
|
struct scan_bss *bss;
|
|
|
|
|
|
|
|
l_debug("result %d", result);
|
|
|
|
|
|
|
|
network->agent_request = 0;
|
|
|
|
|
|
|
|
if (result != AGENT_RESULT_OK) {
|
|
|
|
dbus_pending_reply(&message, dbus_error_aborted(message));
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
bss = network_select_bss(wiphy, network);
|
|
|
|
|
|
|
|
/* Did all good BSSes go away while we waited */
|
|
|
|
if (!bss) {
|
|
|
|
dbus_pending_reply(&message, dbus_error_failed(message));
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
l_free(network->psk);
|
|
|
|
network->psk = l_malloc(32);
|
|
|
|
|
|
|
|
if (crypto_psk_from_passphrase(passphrase, (uint8_t *) network->ssid,
|
|
|
|
strlen(network->ssid),
|
|
|
|
network->psk) < 0) {
|
|
|
|
l_error("PMK generation failed. "
|
|
|
|
"Ensure Crypto Engine is properly configured");
|
|
|
|
dbus_pending_reply(&message, dbus_error_failed(message));
|
|
|
|
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need to store the PSK in our permanent store. However, before
|
|
|
|
* we do that, make sure the PSK works. We write to the store only
|
|
|
|
* when we are connected
|
|
|
|
*/
|
|
|
|
network->update_psk = true;
|
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
device_connect_network(network->device, network, bss, message);
|
2016-05-16 19:37:48 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
err:
|
|
|
|
network_settings_close(network);
|
|
|
|
|
|
|
|
l_free(network->psk);
|
|
|
|
network->psk = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct l_dbus_message *network_connect_psk(struct network *network,
|
|
|
|
struct scan_bss *bss,
|
|
|
|
struct l_dbus_message *message)
|
|
|
|
{
|
2016-05-31 19:57:24 +02:00
|
|
|
struct device *device = network->device;
|
2016-05-16 19:37:48 +02:00
|
|
|
const char *psk;
|
|
|
|
|
|
|
|
l_debug("");
|
|
|
|
|
|
|
|
network_settings_load(network);
|
|
|
|
|
|
|
|
psk = l_settings_get_value(network->settings, "Security",
|
|
|
|
"PreSharedKey");
|
|
|
|
|
|
|
|
if (psk) {
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
l_debug("psk: %s", psk);
|
|
|
|
|
|
|
|
l_free(network->psk);
|
|
|
|
network->psk = l_util_from_hexstring(psk, &len);
|
|
|
|
|
|
|
|
l_debug("len: %zd", len);
|
|
|
|
|
|
|
|
if (network->psk && len != 32) {
|
|
|
|
l_debug("Can't parse PSK");
|
|
|
|
l_free(network->psk);
|
|
|
|
network->psk = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
l_debug("ask_psk: %s", network->ask_psk ? "true" : "false");
|
|
|
|
|
|
|
|
if (network->ask_psk || !network->psk) {
|
|
|
|
network->ask_psk = false;
|
|
|
|
|
|
|
|
network->agent_request =
|
|
|
|
agent_request_passphrase(network->object_path,
|
|
|
|
passphrase_callback,
|
|
|
|
message,
|
|
|
|
network);
|
|
|
|
|
|
|
|
if (!network->agent_request)
|
|
|
|
return dbus_error_no_agent(message);
|
|
|
|
} else
|
2016-05-31 19:57:24 +02:00
|
|
|
device_connect_network(device, network, bss, message);
|
2016-05-16 19:37:48 +02:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct l_dbus_message *network_connect(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct network *network = user_data;
|
2016-05-31 19:57:24 +02:00
|
|
|
struct device *device = network->device;
|
2016-05-16 19:37:48 +02:00
|
|
|
struct scan_bss *bss;
|
|
|
|
|
|
|
|
l_debug("");
|
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
if (device_is_busy(device))
|
2016-05-16 19:37:48 +02:00
|
|
|
return dbus_error_busy(message);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Select the best BSS to use at this time. If we have to query the
|
|
|
|
* agent this may not be the final choice because BSS visibility can
|
|
|
|
* change while we wait for the agent.
|
|
|
|
*/
|
2016-05-31 19:57:24 +02:00
|
|
|
bss = network_select_bss(device_get_wiphy(device), network);
|
2016-05-16 19:37:48 +02:00
|
|
|
|
|
|
|
/* None of the BSSes is compatible with our stack */
|
|
|
|
if (!bss)
|
|
|
|
return dbus_error_not_supported(message);
|
|
|
|
|
|
|
|
switch (network->security) {
|
|
|
|
case SECURITY_PSK:
|
|
|
|
return network_connect_psk(network, bss, message);
|
|
|
|
case SECURITY_NONE:
|
2016-05-31 19:57:24 +02:00
|
|
|
device_connect_network(device, network, bss, message);
|
2016-05-16 19:37:48 +02:00
|
|
|
return NULL;
|
|
|
|
case SECURITY_8021X:
|
|
|
|
network_settings_load(network);
|
2016-05-31 19:57:24 +02:00
|
|
|
device_connect_network(device, network, bss, message);
|
2016-05-16 19:37:48 +02:00
|
|
|
return NULL;
|
|
|
|
default:
|
|
|
|
return dbus_error_not_supported(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool network_property_get_name(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_builder *builder,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct network *network = user_data;
|
|
|
|
|
|
|
|
l_dbus_message_builder_append_basic(builder, 's', network->ssid);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool network_property_is_connected(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_builder *builder,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct network *network = user_data;
|
|
|
|
bool connected;
|
|
|
|
|
2016-05-31 19:57:24 +02:00
|
|
|
connected = device_get_connected_network(network->device) == network;
|
2016-05-16 19:37:48 +02:00
|
|
|
l_dbus_message_builder_append_basic(builder, 'b', &connected);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setup_network_interface(struct l_dbus_interface *interface)
|
|
|
|
{
|
|
|
|
l_dbus_interface_method(interface, "Connect", 0,
|
|
|
|
network_connect,
|
|
|
|
"", "");
|
|
|
|
|
|
|
|
l_dbus_interface_property(interface, "Name", 0, "s",
|
|
|
|
network_property_get_name, NULL);
|
|
|
|
|
|
|
|
l_dbus_interface_property(interface, "Connected", 0, "b",
|
|
|
|
network_property_is_connected,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2016-05-16 04:30:10 +02:00
|
|
|
bool network_register(struct network *network, const char *path)
|
|
|
|
{
|
|
|
|
if (!l_dbus_object_add_interface(dbus_get_bus(), path,
|
|
|
|
IWD_NETWORK_INTERFACE, network)) {
|
|
|
|
l_info("Unable to register %s interface",
|
|
|
|
IWD_NETWORK_INTERFACE);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
network->object_path = strdup(path);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
static void network_unregister(struct network *network, int reason)
|
2016-05-16 04:37:12 +02:00
|
|
|
{
|
|
|
|
struct l_dbus *dbus = dbus_get_bus();
|
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
agent_request_cancel(network->agent_request, reason);
|
2016-05-16 04:37:12 +02:00
|
|
|
network_settings_close(network);
|
|
|
|
|
|
|
|
l_dbus_unregister_object(dbus, network->object_path);
|
|
|
|
|
|
|
|
l_free(network->object_path);
|
|
|
|
network->object_path = NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-10 11:49:34 +02:00
|
|
|
void network_remove(struct network *network, int reason)
|
2016-05-16 04:37:12 +02:00
|
|
|
{
|
|
|
|
if (network->object_path)
|
2016-06-10 11:49:34 +02:00
|
|
|
network_unregister(network, reason);
|
2016-05-16 04:37:12 +02:00
|
|
|
|
|
|
|
l_queue_destroy(network->bss_list, NULL);
|
|
|
|
l_free(network->psk);
|
|
|
|
l_free(network);
|
|
|
|
}
|
|
|
|
|
2015-06-18 12:18:26 +02:00
|
|
|
void network_init()
|
|
|
|
{
|
2016-05-16 19:37:48 +02:00
|
|
|
if (!l_dbus_register_interface(dbus_get_bus(), IWD_NETWORK_INTERFACE,
|
|
|
|
setup_network_interface, NULL, true))
|
|
|
|
l_error("Unable to register %s interface",
|
|
|
|
IWD_NETWORK_INTERFACE);
|
|
|
|
|
2015-06-18 12:18:26 +02:00
|
|
|
networks = l_queue_new();
|
|
|
|
}
|
|
|
|
|
|
|
|
void network_exit()
|
|
|
|
{
|
|
|
|
l_queue_destroy(networks, l_free);
|
2016-05-16 19:37:48 +02:00
|
|
|
l_dbus_unregister_interface(dbus_get_bus(), IWD_NETWORK_INTERFACE);
|
2015-06-18 12:18:26 +02:00
|
|
|
}
|
2016-06-10 11:50:20 +02:00
|
|
|
|
|
|
|
int network_rank_compare(const void *a, const void *b, void *user)
|
|
|
|
{
|
|
|
|
const struct network *new_network = a;
|
|
|
|
const struct network *network = b;
|
|
|
|
|
|
|
|
return network->rank - new_network->rank;
|
|
|
|
}
|
|
|
|
|
|
|
|
void network_rank_update(struct network *network)
|
|
|
|
{
|
|
|
|
bool connected;
|
|
|
|
unsigned int n;
|
|
|
|
const struct network_info *info = network_find_info(
|
|
|
|
network->ssid, network->security, &n);
|
|
|
|
int rank;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Theoretically there may be difference between the BSS selection
|
|
|
|
* here and in network_select_bss but those should be rare cases.
|
|
|
|
*/
|
|
|
|
struct scan_bss *best_bss = l_queue_peek_head(network->bss_list);
|
|
|
|
|
|
|
|
connected = device_get_connected_network(network->device) == network;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The rank should separate networks into four groups that use
|
|
|
|
* non-overlapping ranges for:
|
|
|
|
* - current connected network,
|
|
|
|
* - other networks we've connected to before,
|
|
|
|
* - networks with preprovisioned settings file that we haven't
|
|
|
|
* used yet,
|
|
|
|
* - other networks.
|
|
|
|
*
|
|
|
|
* Within the 2nd group the last connection time is the main factor,
|
|
|
|
* for the other two groups it's the BSS rank - mainly signal strength.
|
|
|
|
*/
|
|
|
|
if (connected)
|
|
|
|
rank = INT_MAX;
|
|
|
|
else if (info) {
|
|
|
|
if (info->connected_time.tv_sec != 0) {
|
|
|
|
if (n >= L_ARRAY_SIZE(rankmod_table))
|
|
|
|
n = L_ARRAY_SIZE(rankmod_table) - 1;
|
|
|
|
|
|
|
|
rank = rankmod_table[n] * best_bss->rank + USHRT_MAX;
|
|
|
|
} else
|
|
|
|
rank = best_bss->rank;
|
|
|
|
} else
|
|
|
|
rank = (int) best_bss->rank - USHRT_MAX; /* Negative rank */
|
|
|
|
|
|
|
|
network->rank = rank;
|
|
|
|
}
|