2014-07-29 21:25:01 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
2019-10-25 00:43:08 +02:00
|
|
|
* Copyright (C) 2013-2019 Intel Corporation. All rights reserved.
|
2014-07-29 21:25:01 +02: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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2019-05-08 03:15:26 +02:00
|
|
|
#define _GNU_SOURCE
|
2014-08-07 01:06:51 +02:00
|
|
|
#include <stdlib.h>
|
2014-10-23 21:32:12 +02:00
|
|
|
#include <stdio.h>
|
2014-11-05 16:18:28 +01:00
|
|
|
#include <errno.h>
|
2014-08-07 05:15:20 +02:00
|
|
|
#include <linux/if_ether.h>
|
2017-03-16 22:45:10 +01:00
|
|
|
#include <fnmatch.h>
|
2019-05-08 03:15:26 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
2020-07-09 02:04:32 +02:00
|
|
|
#include <limits.h>
|
2015-03-20 18:29:50 +01:00
|
|
|
|
2014-07-29 21:25:01 +02:00
|
|
|
#include <ell/ell.h>
|
|
|
|
|
|
|
|
#include "linux/nl80211.h"
|
2016-06-16 22:40:38 +02:00
|
|
|
|
2021-03-12 04:55:57 +01:00
|
|
|
#include "ell/useful.h"
|
2020-02-03 18:54:28 +01:00
|
|
|
#include "src/missing.h"
|
2014-10-30 06:26:49 +01:00
|
|
|
#include "src/iwd.h"
|
2019-11-07 23:33:51 +01:00
|
|
|
#include "src/module.h"
|
2014-08-09 08:23:56 +02:00
|
|
|
#include "src/ie.h"
|
2016-06-16 22:40:38 +02:00
|
|
|
#include "src/crypto.h"
|
2015-01-12 16:52:37 +01:00
|
|
|
#include "src/scan.h"
|
2016-07-01 21:42:00 +02:00
|
|
|
#include "src/netdev.h"
|
2016-07-12 04:13:54 +02:00
|
|
|
#include "src/dbus.h"
|
2016-07-12 04:13:56 +02:00
|
|
|
#include "src/rfkill.h"
|
2016-06-16 22:40:38 +02:00
|
|
|
#include "src/wiphy.h"
|
2016-08-03 01:27:34 +02:00
|
|
|
#include "src/storage.h"
|
2017-05-19 03:39:31 +02:00
|
|
|
#include "src/util.h"
|
2018-09-24 23:29:53 +02:00
|
|
|
#include "src/common.h"
|
2018-11-29 18:22:50 +01:00
|
|
|
#include "src/watchlist.h"
|
2019-09-20 05:54:07 +02:00
|
|
|
#include "src/nl80211util.h"
|
2020-04-23 18:24:35 +02:00
|
|
|
#include "src/nl80211cmd.h"
|
2021-06-02 17:50:08 +02:00
|
|
|
#include "src/band.h"
|
2014-10-23 21:32:12 +02:00
|
|
|
|
2019-07-10 17:53:07 +02:00
|
|
|
#define EXT_CAP_LEN 10
|
|
|
|
|
2014-07-29 21:25:01 +02:00
|
|
|
static struct l_genl_family *nl80211 = NULL;
|
2016-08-03 01:27:34 +02:00
|
|
|
static struct l_hwdb *hwdb;
|
2017-03-16 22:45:10 +01:00
|
|
|
static char **whitelist_filter;
|
|
|
|
static char **blacklist_filter;
|
2019-07-02 01:28:26 +02:00
|
|
|
static int mac_randomize_bytes = 6;
|
2020-04-23 18:24:35 +02:00
|
|
|
static char regdom_country[2];
|
2020-07-09 02:04:32 +02:00
|
|
|
static uint32_t work_ids;
|
2014-07-29 21:25:01 +02:00
|
|
|
|
2014-08-07 05:15:20 +02:00
|
|
|
struct wiphy {
|
|
|
|
uint32_t id;
|
|
|
|
char name[20];
|
2019-07-01 21:42:12 +02:00
|
|
|
uint8_t permanent_addr[ETH_ALEN];
|
2014-08-08 00:41:30 +02:00
|
|
|
uint32_t feature_flags;
|
2018-05-02 03:45:32 +02:00
|
|
|
uint8_t ext_features[(NUM_NL80211_EXT_FEATURES + 7) / 8];
|
2018-05-09 00:54:40 +02:00
|
|
|
uint8_t max_num_ssids_per_scan;
|
2019-10-21 15:55:09 +02:00
|
|
|
uint32_t max_roc_duration;
|
2019-11-06 23:16:23 +01:00
|
|
|
uint16_t max_scan_ie_len;
|
2018-08-07 18:53:31 +02:00
|
|
|
uint16_t supported_iftypes;
|
2016-10-25 04:29:03 +02:00
|
|
|
uint16_t supported_ciphers;
|
2015-10-06 22:23:32 +02:00
|
|
|
struct scan_freq_set *supported_freqs;
|
2021-05-28 20:40:32 +02:00
|
|
|
struct band *band_2g;
|
|
|
|
struct band *band_5g;
|
2016-08-03 01:27:34 +02:00
|
|
|
char *model_str;
|
|
|
|
char *vendor_str;
|
2019-05-08 03:15:26 +02:00
|
|
|
char *driver_str;
|
2018-11-29 18:22:50 +01:00
|
|
|
struct watchlist state_watches;
|
2019-07-10 17:53:07 +02:00
|
|
|
uint8_t extended_capabilities[EXT_CAP_LEN + 2]; /* max bitmap size + IE header */
|
|
|
|
uint8_t *iftype_extended_capabilities[NUM_NL80211_IFTYPES];
|
2019-08-23 15:55:54 +02:00
|
|
|
uint8_t rm_enabled_capabilities[7]; /* 5 size max + header */
|
2020-04-23 18:24:35 +02:00
|
|
|
struct l_genl_family *nl80211;
|
|
|
|
char regdom_country[2];
|
2020-07-09 02:04:32 +02:00
|
|
|
/* Work queue for this radio */
|
|
|
|
struct l_queue *work;
|
2016-07-12 04:13:56 +02:00
|
|
|
|
2018-11-29 18:22:07 +01:00
|
|
|
bool support_scheduled_scan:1;
|
|
|
|
bool support_rekey_offload:1;
|
|
|
|
bool support_adhoc_rsn:1;
|
2019-09-14 00:26:30 +02:00
|
|
|
bool support_qos_set_map:1;
|
2020-03-23 17:18:21 +01:00
|
|
|
bool support_cmds_auth_assoc:1;
|
2021-03-15 18:29:30 +01:00
|
|
|
bool support_fw_roam:1;
|
2016-07-12 04:13:56 +02:00
|
|
|
bool soft_rfkill : 1;
|
|
|
|
bool hard_rfkill : 1;
|
2019-06-14 19:06:35 +02:00
|
|
|
bool offchannel_tx_ok : 1;
|
2020-02-03 23:25:07 +01:00
|
|
|
bool blacklisted : 1;
|
|
|
|
bool registered : 1;
|
2014-08-07 05:15:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct l_queue *wiphy_list = NULL;
|
|
|
|
|
2016-05-16 19:21:26 +02:00
|
|
|
enum ie_rsn_cipher_suite wiphy_select_cipher(struct wiphy *wiphy, uint16_t mask)
|
2015-05-26 19:51:23 +02:00
|
|
|
{
|
2017-10-21 01:27:19 +02:00
|
|
|
if (mask == IE_RSN_CIPHER_SUITE_NO_GROUP_TRAFFIC)
|
|
|
|
return IE_RSN_CIPHER_SUITE_NO_GROUP_TRAFFIC;
|
|
|
|
|
2016-10-25 04:29:03 +02:00
|
|
|
mask &= wiphy->supported_ciphers;
|
2015-05-26 19:51:23 +02:00
|
|
|
|
|
|
|
/* CCMP is our first choice, TKIP second */
|
|
|
|
if (mask & IE_RSN_CIPHER_SUITE_CCMP)
|
|
|
|
return IE_RSN_CIPHER_SUITE_CCMP;
|
|
|
|
|
|
|
|
if (mask & IE_RSN_CIPHER_SUITE_TKIP)
|
|
|
|
return IE_RSN_CIPHER_SUITE_TKIP;
|
|
|
|
|
2016-10-25 04:29:37 +02:00
|
|
|
if (mask & IE_RSN_CIPHER_SUITE_BIP)
|
|
|
|
return IE_RSN_CIPHER_SUITE_BIP;
|
|
|
|
|
2015-05-26 19:51:23 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2018-09-19 00:06:07 +02:00
|
|
|
|
2021-03-22 17:01:52 +01:00
|
|
|
static bool wiphy_can_connect_sae(struct wiphy *wiphy)
|
|
|
|
{
|
2021-07-06 02:53:52 +02:00
|
|
|
/*
|
|
|
|
* WPA3 Specification version 3, Section 2.2:
|
|
|
|
* A STA shall not enable WEP and TKIP
|
|
|
|
*/
|
|
|
|
if (!(wiphy->supported_ciphers & IE_RSN_CIPHER_SUITE_CCMP)) {
|
|
|
|
l_debug("HW not CCMP capable, can't use SAE");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* WPA3 Specification version 3, Section 2.3:
|
|
|
|
* A STA shall negotiate PMF when associating to an AP using SAE
|
|
|
|
*/
|
|
|
|
if (!(wiphy->supported_ciphers & IE_RSN_CIPHER_SUITE_BIP)) {
|
|
|
|
l_debug("HW not MFP capable, can't use SAE");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-22 17:01:52 +01:00
|
|
|
/*
|
|
|
|
* SAE support in the kernel is a complete mess in that there are 3
|
|
|
|
* different ways the hardware can support SAE:
|
|
|
|
*
|
|
|
|
* 1. Cards which allow SAE in userspace, meaning they support both
|
|
|
|
* CMD_AUTHENTICATE and CMD_ASSOCIATE as well as advertise support
|
|
|
|
* for FEATURE_SAE (SoftMAC).
|
|
|
|
*
|
|
|
|
* 2. Cards which allow SAE to be offloaded to hardware. These cards
|
|
|
|
* do not support AUTH/ASSOC commands, do not advertise FEATURE_SAE,
|
|
|
|
* but advertise support for EXT_FEATURE_SAE_OFFLOAD. With these
|
|
|
|
* cards the entire SAE protocol as well as the subsequent 4-way
|
|
|
|
* handshake are all done in the driver/firmware (fullMAC).
|
|
|
|
*
|
|
|
|
* 3. TODO: Cards which allow SAE in userspace via CMD_EXTERNAL_AUTH.
|
|
|
|
* These cards do not support AUTH/ASSOC commands but do implement
|
|
|
|
* CMD_EXTERNAL_AUTH which is supposed to allow userspace to
|
|
|
|
* generate Authenticate frames as it would for case (1). As it
|
|
|
|
* stands today only one driver actually uses CMD_EXTERNAL_AUTH and
|
|
|
|
* for now IWD will not allow connections to SAE networks using this
|
|
|
|
* mechanism.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (wiphy_has_feature(wiphy, NL80211_FEATURE_SAE)) {
|
|
|
|
/* Case (1) */
|
|
|
|
if (wiphy->support_cmds_auth_assoc)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Case (3)
|
|
|
|
*
|
|
|
|
* TODO: No support for CMD_EXTERNAL_AUTH yet.
|
|
|
|
*/
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
/* Case (2) */
|
|
|
|
if (wiphy_has_ext_feature(wiphy,
|
|
|
|
NL80211_EXT_FEATURE_SAE_OFFLOAD))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 23:29:53 +02:00
|
|
|
enum ie_rsn_akm_suite wiphy_select_akm(struct wiphy *wiphy,
|
2019-04-19 21:59:03 +02:00
|
|
|
struct scan_bss *bss,
|
|
|
|
bool fils_capable_hint)
|
2018-09-24 23:29:53 +02:00
|
|
|
{
|
|
|
|
struct ie_rsn_info info;
|
|
|
|
enum security security;
|
2021-04-03 00:06:16 +02:00
|
|
|
bool psk_offload = wiphy_has_ext_feature(wiphy,
|
|
|
|
NL80211_EXT_FEATURE_4WAY_HANDSHAKE_STA_PSK);
|
2018-09-24 23:29:53 +02:00
|
|
|
|
|
|
|
memset(&info, 0, sizeof(info));
|
|
|
|
scan_bss_get_rsn_info(bss, &info);
|
|
|
|
|
|
|
|
security = security_determine(bss->capability, &info);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If FT is available, use FT authentication to keep the door open
|
|
|
|
* for fast transitions. Otherwise use SHA256 version if present.
|
|
|
|
*/
|
|
|
|
if (security == SECURITY_8021X) {
|
2019-04-19 21:59:03 +02:00
|
|
|
if (wiphy_has_feature(wiphy, NL80211_EXT_FEATURE_FILS_STA) &&
|
|
|
|
fils_capable_hint) {
|
2019-05-23 00:24:02 +02:00
|
|
|
if ((info.akm_suites &
|
|
|
|
IE_RSN_AKM_SUITE_FT_OVER_FILS_SHA384) &&
|
|
|
|
bss->rsne && bss->mde_present)
|
|
|
|
return IE_RSN_AKM_SUITE_FT_OVER_FILS_SHA384;
|
|
|
|
|
|
|
|
if ((info.akm_suites &
|
|
|
|
IE_RSN_AKM_SUITE_FT_OVER_FILS_SHA256) &&
|
|
|
|
bss->rsne && bss->mde_present)
|
|
|
|
return IE_RSN_AKM_SUITE_FT_OVER_FILS_SHA256;
|
|
|
|
|
2019-04-19 21:59:03 +02:00
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_FILS_SHA384)
|
|
|
|
return IE_RSN_AKM_SUITE_FILS_SHA384;
|
|
|
|
|
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_FILS_SHA256)
|
|
|
|
return IE_RSN_AKM_SUITE_FILS_SHA256;
|
|
|
|
}
|
|
|
|
|
2018-09-24 23:29:53 +02:00
|
|
|
if ((info.akm_suites & IE_RSN_AKM_SUITE_FT_OVER_8021X) &&
|
2020-05-04 17:24:20 +02:00
|
|
|
bss->rsne && bss->mde_present &&
|
|
|
|
wiphy->support_cmds_auth_assoc)
|
2018-09-24 23:29:53 +02:00
|
|
|
return IE_RSN_AKM_SUITE_FT_OVER_8021X;
|
|
|
|
|
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_8021X_SHA256)
|
|
|
|
return IE_RSN_AKM_SUITE_8021X_SHA256;
|
|
|
|
|
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_8021X)
|
|
|
|
return IE_RSN_AKM_SUITE_8021X;
|
|
|
|
} else if (security == SECURITY_PSK) {
|
|
|
|
/*
|
|
|
|
* Prefer connecting to SAE/WPA3 network, but only if SAE is
|
2020-08-13 21:27:14 +02:00
|
|
|
* supported, we are MFP capable, and the AP has set the
|
|
|
|
* MFPR/MFPC bits correctly. If any of these conditions are not
|
|
|
|
* met, we can fallback to WPA2 (if the AKM is present).
|
2018-09-24 23:29:53 +02:00
|
|
|
*/
|
2020-08-13 21:27:14 +02:00
|
|
|
if (ie_rsne_is_wpa3_personal(&info)) {
|
|
|
|
l_debug("Network is WPA3-Personal...");
|
|
|
|
|
2021-03-22 17:01:52 +01:00
|
|
|
if (!wiphy_can_connect_sae(wiphy))
|
2020-08-13 21:27:14 +02:00
|
|
|
goto wpa2_personal;
|
|
|
|
|
|
|
|
if (info.akm_suites &
|
|
|
|
IE_RSN_AKM_SUITE_FT_OVER_SAE_SHA256)
|
2019-03-22 18:09:04 +01:00
|
|
|
return IE_RSN_AKM_SUITE_FT_OVER_SAE_SHA256;
|
|
|
|
|
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_SAE_SHA256)
|
|
|
|
return IE_RSN_AKM_SUITE_SAE_SHA256;
|
|
|
|
}
|
2018-09-24 23:29:53 +02:00
|
|
|
|
2020-08-13 21:27:14 +02:00
|
|
|
wpa2_personal:
|
2021-04-03 00:06:16 +02:00
|
|
|
/*
|
|
|
|
* Allow FT if either Auth/Assoc is supported OR if the card
|
|
|
|
* supports PSK offload. Without Auth/Assoc, PSK offload is the
|
|
|
|
* only mechanism to allow FT on these cards.
|
|
|
|
*/
|
2018-09-24 23:29:53 +02:00
|
|
|
if ((info.akm_suites & IE_RSN_AKM_SUITE_FT_USING_PSK) &&
|
2021-04-03 00:06:16 +02:00
|
|
|
bss->rsne && bss->mde_present) {
|
|
|
|
if (wiphy->support_cmds_auth_assoc ||
|
|
|
|
(psk_offload && wiphy->support_fw_roam))
|
|
|
|
return IE_RSN_AKM_SUITE_FT_USING_PSK;
|
|
|
|
}
|
2018-09-24 23:29:53 +02:00
|
|
|
|
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_PSK_SHA256)
|
|
|
|
return IE_RSN_AKM_SUITE_PSK_SHA256;
|
|
|
|
|
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_PSK)
|
|
|
|
return IE_RSN_AKM_SUITE_PSK;
|
2018-11-16 23:22:44 +01:00
|
|
|
} else if (security == SECURITY_NONE) {
|
|
|
|
if (info.akm_suites & IE_RSN_AKM_SUITE_OWE)
|
|
|
|
return IE_RSN_AKM_SUITE_OWE;
|
2018-09-24 23:29:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:22:07 +01:00
|
|
|
static struct wiphy *wiphy_new(uint32_t id)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = l_new(struct wiphy, 1);
|
|
|
|
|
|
|
|
wiphy->id = id;
|
|
|
|
wiphy->supported_freqs = scan_freq_set_new();
|
2018-11-29 18:22:50 +01:00
|
|
|
watchlist_init(&wiphy->state_watches, NULL);
|
2019-07-10 17:53:07 +02:00
|
|
|
wiphy->extended_capabilities[0] = IE_TYPE_EXTENDED_CAPABILITIES;
|
|
|
|
wiphy->extended_capabilities[1] = EXT_CAP_LEN;
|
2018-11-29 18:22:07 +01:00
|
|
|
|
|
|
|
return wiphy;
|
|
|
|
}
|
|
|
|
|
2020-07-09 02:04:32 +02:00
|
|
|
static void destroy_work(void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy_radio_work_item *work = user_data;
|
|
|
|
|
|
|
|
if (work->ops && work->ops->destroy)
|
|
|
|
work->ops->destroy(work);
|
|
|
|
}
|
|
|
|
|
2014-08-07 05:15:20 +02:00
|
|
|
static void wiphy_free(void *data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = data;
|
2019-07-10 17:53:07 +02:00
|
|
|
uint32_t i;
|
2014-08-07 05:15:20 +02:00
|
|
|
|
2016-06-25 06:31:02 +02:00
|
|
|
l_debug("Freeing wiphy %s[%u]", wiphy->name, wiphy->id);
|
2014-08-07 05:15:20 +02:00
|
|
|
|
2019-07-10 17:53:07 +02:00
|
|
|
for (i = 0; i < NUM_NL80211_IFTYPES; i++)
|
|
|
|
l_free(wiphy->iftype_extended_capabilities[i]);
|
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
if (wiphy->band_2g) {
|
|
|
|
band_free(wiphy->band_2g);
|
|
|
|
wiphy->band_2g = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wiphy->band_5g) {
|
|
|
|
band_free(wiphy->band_5g);
|
|
|
|
wiphy->band_5g = NULL;
|
|
|
|
}
|
2019-10-28 15:04:53 +01:00
|
|
|
|
2015-10-06 22:23:32 +02:00
|
|
|
scan_freq_set_free(wiphy->supported_freqs);
|
2018-11-29 18:22:50 +01:00
|
|
|
watchlist_destroy(&wiphy->state_watches);
|
2016-08-03 01:27:34 +02:00
|
|
|
l_free(wiphy->model_str);
|
|
|
|
l_free(wiphy->vendor_str);
|
2019-05-08 03:15:26 +02:00
|
|
|
l_free(wiphy->driver_str);
|
2020-04-23 18:24:35 +02:00
|
|
|
l_genl_family_free(wiphy->nl80211);
|
2020-07-09 02:04:32 +02:00
|
|
|
l_queue_destroy(wiphy->work, destroy_work);
|
2014-08-07 05:15:20 +02:00
|
|
|
l_free(wiphy);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool wiphy_match(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct wiphy *wiphy = a;
|
|
|
|
uint32_t id = L_PTR_TO_UINT(b);
|
|
|
|
|
|
|
|
return (wiphy->id == id);
|
|
|
|
}
|
|
|
|
|
2016-06-01 22:20:33 +02:00
|
|
|
struct wiphy *wiphy_find(int wiphy_id)
|
|
|
|
{
|
|
|
|
return l_queue_find(wiphy_list, wiphy_match, L_UINT_TO_PTR(wiphy_id));
|
|
|
|
}
|
|
|
|
|
2020-02-03 23:25:07 +01:00
|
|
|
bool wiphy_is_blacklisted(const struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->blacklisted;
|
|
|
|
}
|
|
|
|
|
2017-03-16 22:45:10 +01:00
|
|
|
static bool wiphy_is_managed(const char *phy)
|
|
|
|
{
|
|
|
|
char *pattern;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!whitelist_filter)
|
|
|
|
goto check_blacklist;
|
|
|
|
|
|
|
|
for (i = 0; (pattern = whitelist_filter[i]); i++) {
|
|
|
|
if (fnmatch(pattern, phy, 0) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
goto check_blacklist;
|
|
|
|
}
|
|
|
|
|
|
|
|
l_debug("whitelist filtered phy: %s", phy);
|
|
|
|
return false;
|
|
|
|
|
|
|
|
check_blacklist:
|
|
|
|
if (!blacklist_filter)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (i = 0; (pattern = blacklist_filter[i]); i++) {
|
|
|
|
if (fnmatch(pattern, phy, 0) == 0) {
|
|
|
|
l_debug("blacklist filtered ifname: %s", phy);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-12 04:13:54 +02:00
|
|
|
const char *wiphy_get_path(struct wiphy *wiphy)
|
|
|
|
{
|
2019-10-28 17:32:57 +01:00
|
|
|
static char path[256];
|
|
|
|
|
|
|
|
L_WARN_ON(snprintf(path, sizeof(path), "%s/%d", IWD_BASE_PATH,
|
|
|
|
wiphy->id) >= (int) sizeof(path));
|
|
|
|
path[sizeof(path) - 1] = '\0';
|
2016-07-12 04:13:54 +02:00
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2020-02-04 00:37:08 +01:00
|
|
|
uint32_t wiphy_get_id(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->id;
|
|
|
|
}
|
|
|
|
|
2016-09-13 21:36:46 +02:00
|
|
|
uint32_t wiphy_get_supported_bands(struct wiphy *wiphy)
|
|
|
|
{
|
2021-05-28 20:40:32 +02:00
|
|
|
uint32_t bands = 0;
|
|
|
|
|
|
|
|
if (wiphy->band_2g)
|
|
|
|
bands |= SCAN_BAND_2_4_GHZ;
|
2016-09-13 21:36:46 +02:00
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
if (wiphy->band_5g)
|
|
|
|
bands |= SCAN_BAND_5_GHZ;
|
|
|
|
|
|
|
|
return bands;
|
2016-09-13 21:36:46 +02:00
|
|
|
}
|
|
|
|
|
2019-02-28 01:44:17 +01:00
|
|
|
const struct scan_freq_set *wiphy_get_supported_freqs(
|
|
|
|
const struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->supported_freqs;
|
|
|
|
}
|
|
|
|
|
2021-04-27 20:06:26 +02:00
|
|
|
bool wiphy_can_connect(struct wiphy *wiphy, struct scan_bss *bss,
|
|
|
|
bool fils_hint)
|
2017-01-20 06:49:40 +01:00
|
|
|
{
|
|
|
|
struct ie_rsn_info rsn_info;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
memset(&rsn_info, 0, sizeof(rsn_info));
|
|
|
|
r = scan_bss_get_rsn_info(bss, &rsn_info);
|
|
|
|
|
|
|
|
if (r == 0) {
|
|
|
|
if (!wiphy_select_cipher(wiphy, rsn_info.pairwise_ciphers))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!wiphy_select_cipher(wiphy, rsn_info.group_cipher))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (rsn_info.mfpr && !wiphy_select_cipher(wiphy,
|
|
|
|
rsn_info.group_management_cipher))
|
|
|
|
return false;
|
2018-09-24 23:29:52 +02:00
|
|
|
|
2021-04-27 20:06:26 +02:00
|
|
|
return wiphy_select_akm(wiphy, bss, fils_hint);
|
2017-01-20 06:49:40 +01:00
|
|
|
} else if (r != -ENOENT)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-07-27 19:59:03 +02:00
|
|
|
bool wiphy_can_transition_disable(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* WPA3 Specification version 3, Section 2.2:
|
|
|
|
* A STA shall not enable WEP and TKIP
|
|
|
|
*/
|
|
|
|
if (!(wiphy->supported_ciphers & IE_RSN_CIPHER_SUITE_CCMP))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!(wiphy->supported_ciphers & IE_RSN_CIPHER_SUITE_BIP))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-22 17:01:51 +01:00
|
|
|
bool wiphy_supports_cmds_auth_assoc(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->support_cmds_auth_assoc;
|
|
|
|
}
|
|
|
|
|
2018-05-24 19:12:10 +02:00
|
|
|
bool wiphy_has_feature(struct wiphy *wiphy, uint32_t feature)
|
|
|
|
{
|
|
|
|
return wiphy->feature_flags & feature;
|
|
|
|
}
|
|
|
|
|
2019-01-16 04:14:54 +01:00
|
|
|
bool wiphy_can_randomize_mac_addr(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy_has_feature(wiphy, NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR);
|
|
|
|
}
|
|
|
|
|
2019-07-10 23:23:13 +02:00
|
|
|
bool wiphy_rrm_capable(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
if (wiphy_has_feature(wiphy,
|
|
|
|
NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) &&
|
|
|
|
wiphy_has_feature(wiphy, NL80211_FEATURE_QUIET))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (wiphy_has_ext_feature(wiphy, NL80211_EXT_FEATURE_RRM))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-24 20:12:36 +02:00
|
|
|
bool wiphy_has_ext_feature(struct wiphy *wiphy, uint32_t feature)
|
2017-05-19 03:39:31 +02:00
|
|
|
{
|
2018-05-24 20:12:36 +02:00
|
|
|
return feature < sizeof(wiphy->ext_features) * 8 &&
|
2021-03-12 20:49:23 +01:00
|
|
|
test_bit(wiphy->ext_features, feature);
|
2017-05-19 03:39:31 +02:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:54:40 +02:00
|
|
|
uint8_t wiphy_get_max_num_ssids_per_scan(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->max_num_ssids_per_scan;
|
|
|
|
}
|
|
|
|
|
2019-11-06 23:16:23 +01:00
|
|
|
uint16_t wiphy_get_max_scan_ie_len(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->max_scan_ie_len;
|
|
|
|
}
|
|
|
|
|
2019-10-21 15:55:09 +02:00
|
|
|
uint32_t wiphy_get_max_roc_duration(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->max_roc_duration;
|
|
|
|
}
|
|
|
|
|
2018-08-07 18:15:23 +02:00
|
|
|
bool wiphy_supports_adhoc_rsn(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->support_adhoc_rsn;
|
|
|
|
}
|
|
|
|
|
2019-06-14 19:06:35 +02:00
|
|
|
bool wiphy_can_offchannel_tx(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->offchannel_tx_ok;
|
|
|
|
}
|
|
|
|
|
2019-09-14 00:26:30 +02:00
|
|
|
bool wiphy_supports_qos_set_map(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->support_qos_set_map;
|
|
|
|
}
|
|
|
|
|
2021-03-15 18:29:30 +01:00
|
|
|
bool wiphy_supports_firmware_roam(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->support_fw_roam;
|
|
|
|
}
|
|
|
|
|
2019-05-08 03:15:26 +02:00
|
|
|
const char *wiphy_get_driver(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->driver_str;
|
|
|
|
}
|
|
|
|
|
2019-07-02 01:28:07 +02:00
|
|
|
const char *wiphy_get_name(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->name;
|
|
|
|
}
|
|
|
|
|
2019-07-01 21:42:12 +02:00
|
|
|
const uint8_t *wiphy_get_permanent_address(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
return wiphy->permanent_addr;
|
|
|
|
}
|
|
|
|
|
2019-07-10 17:53:07 +02:00
|
|
|
const uint8_t *wiphy_get_extended_capabilities(struct wiphy *wiphy,
|
|
|
|
uint32_t iftype)
|
|
|
|
{
|
|
|
|
if (wiphy->iftype_extended_capabilities[iftype])
|
|
|
|
return wiphy->iftype_extended_capabilities[iftype];
|
|
|
|
|
|
|
|
return wiphy->extended_capabilities;
|
|
|
|
}
|
|
|
|
|
2019-08-23 15:55:54 +02:00
|
|
|
const uint8_t *wiphy_get_rm_enabled_capabilities(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
if (!wiphy_rrm_capable(wiphy))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return wiphy->rm_enabled_capabilities;
|
|
|
|
}
|
|
|
|
|
2021-07-13 21:43:52 +02:00
|
|
|
bool wiphy_get_rsnxe(const struct wiphy *wiphy, uint8_t *buf, size_t len)
|
|
|
|
{
|
|
|
|
if (len < 3)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
buf[0] = IE_TYPE_RSNX;
|
|
|
|
buf[1] = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lower 4 bits of the first octet:
|
|
|
|
* The length of the Extended RSN Capabilities field, in octets,
|
|
|
|
* minus 1, i.e., n - 1.
|
|
|
|
*/
|
|
|
|
buf[2] = 0;
|
|
|
|
|
|
|
|
/* No other bits set for now */
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-03-18 19:54:17 +01:00
|
|
|
static void wiphy_address_constrain(struct wiphy *wiphy, uint8_t addr[static 6])
|
2019-07-02 01:28:26 +02:00
|
|
|
{
|
|
|
|
switch (mac_randomize_bytes) {
|
|
|
|
case 6:
|
|
|
|
/* Set the locally administered bit */
|
|
|
|
addr[0] |= 0x2;
|
|
|
|
|
|
|
|
/* Reset multicast bit */
|
|
|
|
addr[0] &= 0xfe;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
memcpy(addr, wiphy->permanent_addr, 3);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constrain the last NIC byte to 0x00 .. 0xfe, otherwise we might be
|
|
|
|
* able to generate an address of 0xff 0xff 0xff which might be
|
|
|
|
* interpreted as a vendor broadcast. Similarly, 0x00 0x00 0x00 is
|
|
|
|
* also not valid
|
|
|
|
*/
|
|
|
|
addr[5] &= 0xfe;
|
2021-03-09 22:40:35 +01:00
|
|
|
if (l_memeqzero(addr + 3, 3))
|
2019-07-02 01:28:26 +02:00
|
|
|
addr[5] = 0x01;
|
|
|
|
}
|
|
|
|
|
2020-03-18 19:54:17 +01:00
|
|
|
void wiphy_generate_random_address(struct wiphy *wiphy, uint8_t addr[static 6])
|
|
|
|
{
|
|
|
|
switch (mac_randomize_bytes) {
|
|
|
|
case 6:
|
|
|
|
l_getrandom(addr, 6);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
l_getrandom(addr + 3, 3);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
wiphy_address_constrain(wiphy, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void wiphy_generate_address_from_ssid(struct wiphy *wiphy, const char *ssid,
|
|
|
|
uint8_t addr[static 6])
|
|
|
|
{
|
|
|
|
struct l_checksum *sha = l_checksum_new(L_CHECKSUM_SHA256);
|
|
|
|
|
|
|
|
l_checksum_update(sha, ssid, strlen(ssid));
|
|
|
|
l_checksum_update(sha, wiphy->permanent_addr,
|
|
|
|
sizeof(wiphy->permanent_addr));
|
|
|
|
l_checksum_get_digest(sha, addr, mac_randomize_bytes);
|
|
|
|
|
|
|
|
l_checksum_free(sha);
|
|
|
|
|
|
|
|
wiphy_address_constrain(wiphy, addr);
|
|
|
|
}
|
|
|
|
|
2019-04-11 21:14:27 +02:00
|
|
|
bool wiphy_constrain_freq_set(const struct wiphy *wiphy,
|
|
|
|
struct scan_freq_set *set)
|
|
|
|
{
|
|
|
|
scan_freq_set_constrain(set, wiphy->supported_freqs);
|
|
|
|
|
|
|
|
if (!scan_freq_set_get_bands(set))
|
|
|
|
/* The set is empty. */
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-11 15:43:21 +01:00
|
|
|
static char **wiphy_get_supported_iftypes(struct wiphy *wiphy, uint16_t mask)
|
2018-08-07 18:53:31 +02:00
|
|
|
{
|
2019-03-11 15:43:21 +01:00
|
|
|
uint16_t supported_mask = wiphy->supported_iftypes & mask;
|
|
|
|
char **ret = l_new(char *, __builtin_popcount(supported_mask) + 1);
|
2018-08-07 18:53:31 +02:00
|
|
|
unsigned int i;
|
|
|
|
unsigned int j;
|
|
|
|
|
2019-03-11 15:43:21 +01:00
|
|
|
for (j = 0, i = 0; i < sizeof(supported_mask) * 8; i++) {
|
2019-03-11 15:43:20 +01:00
|
|
|
const char *str;
|
|
|
|
|
2019-03-11 15:43:21 +01:00
|
|
|
if (!(supported_mask & (1 << i)))
|
2018-08-07 18:53:31 +02:00
|
|
|
continue;
|
|
|
|
|
2021-04-16 22:16:33 +02:00
|
|
|
str = netdev_iftype_to_string(i + 1);
|
2019-03-11 15:43:20 +01:00
|
|
|
if (str)
|
|
|
|
ret[j++] = l_strdup(str);
|
2018-08-07 18:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wiphy_supports_iftype(struct wiphy *wiphy, uint32_t iftype)
|
|
|
|
{
|
|
|
|
if (iftype > sizeof(wiphy->supported_iftypes) * 8)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return wiphy->supported_iftypes & (1 << (iftype - 1));
|
|
|
|
}
|
|
|
|
|
2019-10-28 15:04:53 +01:00
|
|
|
const uint8_t *wiphy_get_supported_rates(struct wiphy *wiphy, unsigned int band,
|
|
|
|
unsigned int *out_num)
|
|
|
|
{
|
2021-05-28 20:40:32 +02:00
|
|
|
struct band *bandp;
|
|
|
|
|
|
|
|
switch (band) {
|
|
|
|
case NL80211_BAND_2GHZ:
|
|
|
|
bandp = wiphy->band_2g;
|
|
|
|
break;
|
|
|
|
case NL80211_BAND_5GHZ:
|
|
|
|
bandp = wiphy->band_5g;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bandp)
|
2019-10-28 15:04:53 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (out_num)
|
2021-05-28 20:40:32 +02:00
|
|
|
*out_num = bandp->supported_rates_len;
|
2019-10-28 15:04:53 +01:00
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
return bandp->supported_rates;
|
2019-10-28 15:04:53 +01:00
|
|
|
}
|
|
|
|
|
2020-04-23 18:24:35 +02:00
|
|
|
void wiphy_get_reg_domain_country(struct wiphy *wiphy, char *out)
|
|
|
|
{
|
|
|
|
char *country = wiphy->regdom_country;
|
|
|
|
|
|
|
|
if (!country[0])
|
|
|
|
/* Wiphy uses the global regulatory domain */
|
|
|
|
country = regdom_country;
|
|
|
|
|
|
|
|
out[0] = country[0];
|
|
|
|
out[1] = country[1];
|
|
|
|
}
|
|
|
|
|
2021-05-28 23:06:26 +02:00
|
|
|
int wiphy_estimate_data_rate(struct wiphy *wiphy,
|
|
|
|
const void *ies, uint16_t ies_len,
|
|
|
|
const struct scan_bss *bss,
|
|
|
|
uint64_t *out_data_rate)
|
|
|
|
{
|
|
|
|
struct ie_tlv_iter iter;
|
|
|
|
const void *supported_rates = NULL;
|
|
|
|
const void *ext_supported_rates = NULL;
|
|
|
|
const void *vht_capabilities = NULL;
|
2021-06-04 05:16:41 +02:00
|
|
|
const void *vht_operation = NULL;
|
2021-05-28 23:06:26 +02:00
|
|
|
const void *ht_capabilities = NULL;
|
2021-06-04 05:16:41 +02:00
|
|
|
const void *ht_operation = NULL;
|
|
|
|
const struct band *bandp;
|
|
|
|
enum scan_band band;
|
|
|
|
|
|
|
|
if (scan_freq_to_channel(bss->frequency, &band) == 0)
|
|
|
|
return -ENOTSUP;
|
|
|
|
|
|
|
|
switch (band) {
|
|
|
|
case SCAN_BAND_2_4_GHZ:
|
|
|
|
bandp = wiphy->band_2g;
|
|
|
|
break;
|
|
|
|
case SCAN_BAND_5_GHZ:
|
|
|
|
bandp = wiphy->band_5g;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
2021-05-28 23:06:26 +02:00
|
|
|
|
|
|
|
ie_tlv_iter_init(&iter, ies, ies_len);
|
|
|
|
|
|
|
|
while (ie_tlv_iter_next(&iter)) {
|
|
|
|
uint8_t tag = ie_tlv_iter_get_tag(&iter);
|
|
|
|
|
|
|
|
switch (tag) {
|
|
|
|
case IE_TYPE_SUPPORTED_RATES:
|
|
|
|
if (iter.len > 8)
|
|
|
|
return -EBADMSG;
|
|
|
|
|
|
|
|
supported_rates = iter.data - 2;
|
|
|
|
break;
|
|
|
|
case IE_TYPE_EXTENDED_SUPPORTED_RATES:
|
|
|
|
ext_supported_rates = iter.data - 2;
|
|
|
|
break;
|
|
|
|
case IE_TYPE_HT_CAPABILITIES:
|
|
|
|
if (iter.len != 26)
|
|
|
|
return -EBADMSG;
|
|
|
|
|
|
|
|
ht_capabilities = iter.data - 2;
|
|
|
|
break;
|
2021-06-04 05:16:41 +02:00
|
|
|
case IE_TYPE_HT_OPERATION:
|
|
|
|
if (iter.len != 22)
|
|
|
|
return -EBADMSG;
|
|
|
|
|
|
|
|
ht_operation = iter.data - 2;
|
|
|
|
break;
|
2021-05-28 23:06:26 +02:00
|
|
|
case IE_TYPE_VHT_CAPABILITIES:
|
|
|
|
if (iter.len != 12)
|
2021-06-01 23:46:23 +02:00
|
|
|
return -EBADMSG;
|
2021-05-28 23:06:26 +02:00
|
|
|
|
|
|
|
vht_capabilities = iter.data - 2;
|
|
|
|
break;
|
2021-06-04 05:16:41 +02:00
|
|
|
case IE_TYPE_VHT_OPERATION:
|
|
|
|
if (iter.len != 5)
|
|
|
|
return -EBADMSG;
|
|
|
|
|
|
|
|
vht_operation = iter.data - 2;
|
|
|
|
break;
|
2021-05-28 23:06:26 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-04 05:16:41 +02:00
|
|
|
if (!band_estimate_vht_rx_rate(bandp, vht_capabilities, vht_operation,
|
|
|
|
ht_capabilities, ht_operation,
|
2021-05-28 23:06:26 +02:00
|
|
|
bss->signal_strength / 100,
|
2021-06-04 05:16:41 +02:00
|
|
|
out_data_rate))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!band_estimate_ht_rx_rate(bandp, ht_capabilities, ht_operation,
|
|
|
|
bss->signal_strength / 100,
|
|
|
|
out_data_rate))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!band_estimate_nonht_rate(bandp, supported_rates,
|
|
|
|
ext_supported_rates,
|
|
|
|
bss->signal_strength / 100,
|
|
|
|
out_data_rate))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -ENOTSUP;
|
2021-05-28 23:06:26 +02:00
|
|
|
}
|
|
|
|
|
2018-11-29 18:22:50 +01:00
|
|
|
uint32_t wiphy_state_watch_add(struct wiphy *wiphy,
|
|
|
|
wiphy_state_watch_func_t func,
|
|
|
|
void *user_data, wiphy_destroy_func_t destroy)
|
|
|
|
{
|
|
|
|
return watchlist_add(&wiphy->state_watches, func, user_data, destroy);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wiphy_state_watch_remove(struct wiphy *wiphy, uint32_t id)
|
|
|
|
{
|
|
|
|
return watchlist_remove(&wiphy->state_watches, id);
|
|
|
|
}
|
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
static void wiphy_print_mcs_indexes(const uint8_t *mcs)
|
2016-06-25 02:12:13 +02:00
|
|
|
{
|
2021-05-29 05:14:01 +02:00
|
|
|
int i;
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
for (i = 0; i < 77; i++) {
|
|
|
|
int start;
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
if (!test_bit(mcs, i))
|
|
|
|
continue;
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
start = i;
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
while (i < 76 && test_bit(mcs, i + 1))
|
|
|
|
i += 1;
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
if (start != i)
|
|
|
|
l_info("\t\t\t%d-%d", start, i);
|
|
|
|
else
|
|
|
|
l_info("\t\t\t%d", start);
|
|
|
|
}
|
|
|
|
}
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2021-06-02 00:37:54 +02:00
|
|
|
static void wiphy_print_vht_mcs_info(const uint8_t *mcs_map,
|
|
|
|
const char *prefix)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 14; i >= 0; i -= 2) {
|
|
|
|
int mcs = bit_field(mcs_map[i / 8], i % 8, 2);
|
|
|
|
|
|
|
|
if (mcs == 0x3)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
l_info("\t\t\tMax %s MCS: 0-%d for NSS: %d", prefix,
|
|
|
|
mcs + 7, i / 2 + 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
static void wiphy_print_band_info(struct band *band, const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2021-05-29 05:14:01 +02:00
|
|
|
l_info("\t%s:", name);
|
|
|
|
l_info("\t\tBitrates (non-HT):");
|
|
|
|
|
|
|
|
for (i = 0; i < band->supported_rates_len; i++)
|
|
|
|
l_info("\t\t\t%2d.%d Mbps", band->supported_rates[i] / 2,
|
|
|
|
band->supported_rates[i] % 2 * 5);
|
|
|
|
|
|
|
|
if (band->ht_supported) {
|
|
|
|
uint8_t max_nss = bit_field(band->ht_mcs_set[12], 2, 2) + 1;
|
|
|
|
l_info("\t\tHT Capabilities:");
|
|
|
|
|
|
|
|
if (test_bit(band->ht_capabilities, 1))
|
|
|
|
l_info("\t\t\tHT40");
|
|
|
|
else
|
|
|
|
l_info("\t\t\tHT20");
|
|
|
|
|
|
|
|
if (test_bit(band->ht_capabilities, 5))
|
|
|
|
l_info("\t\t\tShort GI for 20Mhz");
|
|
|
|
|
|
|
|
if (test_bit(band->ht_capabilities, 6))
|
|
|
|
l_info("\t\t\tShort GI for 40Mhz");
|
|
|
|
|
|
|
|
l_info("\t\tHT RX MCS indexes:");
|
|
|
|
wiphy_print_mcs_indexes(band->ht_mcs_set);
|
|
|
|
|
|
|
|
if (test_bit(band->ht_mcs_set, 96)) {
|
|
|
|
if (test_bit(band->ht_mcs_set, 97))
|
|
|
|
l_info("\t\tHT TX MCS differ, max NSS: %d",
|
|
|
|
max_nss);
|
|
|
|
} else
|
|
|
|
l_info("\t\tHT TX MCS set undefined");
|
2016-06-25 02:12:13 +02:00
|
|
|
}
|
2021-06-02 00:37:54 +02:00
|
|
|
|
|
|
|
if (band->vht_supported) {
|
|
|
|
l_info("\t\tVHT Capabilities:");
|
|
|
|
|
|
|
|
switch (bit_field(band->vht_capabilities[0], 2, 2)) {
|
|
|
|
case 1:
|
|
|
|
l_info("\t\t\t160 Mhz operation");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
l_info("\t\t\t160 Mhz, 80+80 Mhz operation");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (test_bit(band->vht_capabilities, 5))
|
|
|
|
l_info("\t\t\tShort GI for 80Mhz");
|
|
|
|
|
|
|
|
if (test_bit(band->vht_capabilities, 6))
|
|
|
|
l_info("\t\t\tShort GI for 160 and 80 + 80 Mhz");
|
|
|
|
|
|
|
|
wiphy_print_vht_mcs_info(band->vht_mcs_set, "RX");
|
|
|
|
wiphy_print_vht_mcs_info(band->vht_mcs_set + 4, "TX");
|
|
|
|
}
|
2021-05-29 05:14:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wiphy_print_basic_info(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
l_info("Wiphy: %d, Name: %s", wiphy->id, wiphy->name);
|
|
|
|
l_info("\tPermanent Address: "MAC, MAC_STR(wiphy->permanent_addr));
|
|
|
|
|
|
|
|
if (wiphy->band_2g)
|
|
|
|
wiphy_print_band_info(wiphy->band_2g, "2.4Ghz Band");
|
|
|
|
|
|
|
|
if (wiphy->band_5g)
|
|
|
|
wiphy_print_band_info(wiphy->band_5g, "5Ghz Band");
|
2016-06-25 02:12:13 +02:00
|
|
|
|
2016-10-25 04:29:03 +02:00
|
|
|
if (wiphy->supported_ciphers) {
|
2016-06-25 02:12:13 +02:00
|
|
|
int len = 0;
|
|
|
|
|
|
|
|
len += sprintf(buf + len, "\tCiphers:");
|
|
|
|
|
2016-10-25 04:29:03 +02:00
|
|
|
if (wiphy->supported_ciphers & IE_RSN_CIPHER_SUITE_CCMP)
|
2016-06-25 02:12:13 +02:00
|
|
|
len += sprintf(buf + len, " CCMP");
|
|
|
|
|
2016-10-25 04:29:03 +02:00
|
|
|
if (wiphy->supported_ciphers & IE_RSN_CIPHER_SUITE_TKIP)
|
2016-06-25 02:12:13 +02:00
|
|
|
len += sprintf(buf + len, " TKIP");
|
|
|
|
|
2016-10-25 04:29:03 +02:00
|
|
|
if (wiphy->supported_ciphers & IE_RSN_CIPHER_SUITE_BIP)
|
2016-10-25 04:25:04 +02:00
|
|
|
len += sprintf(buf + len, " BIP");
|
|
|
|
|
2016-06-25 02:12:13 +02:00
|
|
|
l_info("%s", buf);
|
|
|
|
}
|
2018-08-07 18:53:31 +02:00
|
|
|
|
|
|
|
if (wiphy->supported_iftypes) {
|
2019-03-11 15:43:21 +01:00
|
|
|
char **iftypes = wiphy_get_supported_iftypes(wiphy, ~0);
|
2018-08-07 18:53:31 +02:00
|
|
|
char *joined = l_strjoinv(iftypes, ' ');
|
|
|
|
|
|
|
|
l_info("\tSupported iftypes: %s", joined);
|
|
|
|
|
|
|
|
l_free(joined);
|
|
|
|
l_strfreev(iftypes);
|
|
|
|
}
|
2016-06-25 02:12:13 +02:00
|
|
|
}
|
|
|
|
|
2014-11-05 16:18:28 +01:00
|
|
|
static void parse_supported_commands(struct wiphy *wiphy,
|
|
|
|
struct l_genl_attr *attr)
|
|
|
|
{
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
2020-03-23 17:18:21 +01:00
|
|
|
bool auth = false;
|
|
|
|
bool assoc = false;
|
2014-11-05 16:18:28 +01:00
|
|
|
|
|
|
|
while (l_genl_attr_next(attr, &type, &len, &data)) {
|
|
|
|
uint32_t cmd = *(uint32_t *)data;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case NL80211_CMD_START_SCHED_SCAN:
|
|
|
|
wiphy->support_scheduled_scan = true;
|
|
|
|
break;
|
2015-05-06 22:24:14 +02:00
|
|
|
case NL80211_CMD_SET_REKEY_OFFLOAD:
|
|
|
|
wiphy->support_rekey_offload = true;
|
2019-09-14 00:26:30 +02:00
|
|
|
break;
|
|
|
|
case NL80211_CMD_SET_QOS_MAP:
|
|
|
|
wiphy->support_qos_set_map = true;
|
|
|
|
break;
|
2020-03-23 17:18:21 +01:00
|
|
|
case NL80211_CMD_AUTHENTICATE:
|
|
|
|
auth = true;
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_ASSOCIATE:
|
|
|
|
assoc = true;
|
|
|
|
break;
|
2014-11-05 16:18:28 +01:00
|
|
|
}
|
|
|
|
}
|
2020-03-23 17:18:21 +01:00
|
|
|
|
|
|
|
if (auth && assoc)
|
|
|
|
wiphy->support_cmds_auth_assoc = true;
|
2014-11-05 16:18:28 +01:00
|
|
|
}
|
|
|
|
|
2015-04-17 20:02:32 +02:00
|
|
|
static void parse_supported_ciphers(struct wiphy *wiphy, const void *data,
|
|
|
|
uint16_t len)
|
|
|
|
{
|
|
|
|
while (len >= 4) {
|
|
|
|
uint32_t cipher = *(uint32_t *)data;
|
|
|
|
|
|
|
|
switch (cipher) {
|
|
|
|
case CRYPTO_CIPHER_CCMP:
|
2016-10-25 04:29:03 +02:00
|
|
|
wiphy->supported_ciphers |= IE_RSN_CIPHER_SUITE_CCMP;
|
2015-04-17 20:02:32 +02:00
|
|
|
break;
|
|
|
|
case CRYPTO_CIPHER_TKIP:
|
2016-10-25 04:29:03 +02:00
|
|
|
wiphy->supported_ciphers |= IE_RSN_CIPHER_SUITE_TKIP;
|
2015-04-17 20:02:32 +02:00
|
|
|
break;
|
|
|
|
case CRYPTO_CIPHER_WEP40:
|
2016-10-25 04:29:03 +02:00
|
|
|
wiphy->supported_ciphers |= IE_RSN_CIPHER_SUITE_WEP40;
|
2015-04-17 20:02:32 +02:00
|
|
|
break;
|
|
|
|
case CRYPTO_CIPHER_WEP104:
|
2016-10-25 04:29:03 +02:00
|
|
|
wiphy->supported_ciphers |= IE_RSN_CIPHER_SUITE_WEP104;
|
2015-04-17 20:02:32 +02:00
|
|
|
break;
|
|
|
|
case CRYPTO_CIPHER_BIP:
|
2016-10-25 04:29:03 +02:00
|
|
|
wiphy->supported_ciphers |= IE_RSN_CIPHER_SUITE_BIP;
|
2015-04-17 20:02:32 +02:00
|
|
|
break;
|
|
|
|
default: /* TODO: Support other ciphers */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
len -= 4;
|
|
|
|
data += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-06 22:23:32 +02:00
|
|
|
static void parse_supported_frequencies(struct wiphy *wiphy,
|
|
|
|
struct l_genl_attr *freqs)
|
|
|
|
{
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
struct l_genl_attr attr;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(freqs, NULL, NULL, NULL)) {
|
|
|
|
if (!l_genl_attr_recurse(freqs, &attr))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
|
|
|
uint32_t u32;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_FREQUENCY_ATTR_FREQ:
|
|
|
|
u32 = *((uint32_t *) data);
|
|
|
|
scan_freq_set_add(wiphy->supported_freqs, u32);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
static int parse_supported_rates(struct l_genl_attr *attr, struct band *band)
|
2019-10-28 15:04:53 +01:00
|
|
|
{
|
|
|
|
uint16_t type;
|
|
|
|
uint16_t len;
|
|
|
|
const void *data;
|
|
|
|
struct l_genl_attr nested;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
if (!l_genl_attr_recurse(attr, &nested))
|
2021-05-28 20:40:32 +02:00
|
|
|
return -EBADMSG;
|
2019-10-28 15:04:53 +01:00
|
|
|
|
|
|
|
while (l_genl_attr_next(&nested, NULL, NULL, NULL)) {
|
|
|
|
struct l_genl_attr nested2;
|
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
if (!l_genl_attr_recurse(&nested, &nested2))
|
|
|
|
return -EBADMSG;
|
2019-10-28 15:04:53 +01:00
|
|
|
|
|
|
|
while (l_genl_attr_next(&nested2, &type, &len, &data)) {
|
2021-05-28 20:40:32 +02:00
|
|
|
uint32_t rate;
|
|
|
|
|
2019-10-28 15:04:53 +01:00
|
|
|
if (type != NL80211_BITRATE_ATTR_RATE || len != 4)
|
|
|
|
continue;
|
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
rate = l_get_u32(data);
|
|
|
|
|
|
|
|
if (rate % 5)
|
|
|
|
continue;
|
|
|
|
|
2019-10-28 15:04:53 +01:00
|
|
|
/*
|
|
|
|
* Convert from the 100kb/s units reported by the
|
|
|
|
* kernel to the 500kb/s used in 802.11 IEs.
|
|
|
|
*/
|
2021-05-28 20:40:32 +02:00
|
|
|
rate /= 5;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Rates past 120 seem to be used for other purposes,
|
|
|
|
* BSS Membership Selector (HT/VHT), etc
|
|
|
|
*/
|
|
|
|
if (rate > 120)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
band->supported_rates[count++] = rate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
band->supported_rates_len = count;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct band *band_new_from_message(struct l_genl_attr *band)
|
|
|
|
{
|
|
|
|
uint16_t type;
|
|
|
|
struct l_genl_attr nested;
|
|
|
|
uint16_t count = 0;
|
|
|
|
struct band *ret;
|
|
|
|
size_t toalloc;
|
|
|
|
|
|
|
|
/* First find the number of supported rates */
|
|
|
|
while (l_genl_attr_next(band, &type, NULL, NULL)) {
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_BAND_ATTR_RATES:
|
|
|
|
if (!l_genl_attr_recurse(band, &nested))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&nested, NULL, NULL, NULL))
|
|
|
|
count++;
|
2019-10-28 15:04:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
toalloc = sizeof(struct band) + count * sizeof(uint8_t);
|
|
|
|
ret = l_malloc(toalloc);
|
|
|
|
memset(ret, 0, toalloc);
|
2021-05-28 21:10:55 +02:00
|
|
|
memset(ret->vht_mcs_set, 0xff, sizeof(ret->vht_mcs_set));
|
2021-05-28 20:40:32 +02:00
|
|
|
|
2019-10-28 15:04:53 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-06 22:23:32 +02:00
|
|
|
static void parse_supported_bands(struct wiphy *wiphy,
|
|
|
|
struct l_genl_attr *bands)
|
|
|
|
{
|
2019-10-28 15:04:53 +01:00
|
|
|
uint16_t type;
|
2021-05-28 21:10:55 +02:00
|
|
|
uint16_t len;
|
|
|
|
const void *data;
|
2015-10-06 22:23:32 +02:00
|
|
|
struct l_genl_attr attr;
|
|
|
|
|
2019-10-28 15:04:53 +01:00
|
|
|
while (l_genl_attr_next(bands, &type, NULL, NULL)) {
|
2021-05-28 20:40:32 +02:00
|
|
|
struct band **bandp;
|
|
|
|
struct band *band;
|
2019-10-28 15:04:53 +01:00
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
switch (type) {
|
|
|
|
case NL80211_BAND_2GHZ:
|
|
|
|
bandp = &wiphy->band_2g;
|
|
|
|
break;
|
|
|
|
case NL80211_BAND_5GHZ:
|
|
|
|
bandp = &wiphy->band_5g;
|
|
|
|
break;
|
|
|
|
default:
|
2019-10-28 15:04:53 +01:00
|
|
|
continue;
|
2021-05-28 20:40:32 +02:00
|
|
|
}
|
2019-10-28 15:04:53 +01:00
|
|
|
|
2015-10-06 22:23:32 +02:00
|
|
|
if (!l_genl_attr_recurse(bands, &attr))
|
|
|
|
continue;
|
|
|
|
|
2021-05-28 20:40:32 +02:00
|
|
|
if (*bandp == NULL) {
|
|
|
|
band = band_new_from_message(&attr);
|
|
|
|
if (!band)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Reset iter to beginning */
|
|
|
|
if (!l_genl_attr_recurse(bands, &attr)) {
|
|
|
|
band_free(band);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
band = *bandp;
|
|
|
|
|
2021-05-28 21:10:55 +02:00
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
2015-10-06 22:23:32 +02:00
|
|
|
struct l_genl_attr freqs;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_BAND_ATTR_FREQS:
|
|
|
|
if (!l_genl_attr_recurse(&attr, &freqs))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
parse_supported_frequencies(wiphy, &freqs);
|
|
|
|
break;
|
2019-10-28 15:04:53 +01:00
|
|
|
|
|
|
|
case NL80211_BAND_ATTR_RATES:
|
2021-05-28 20:40:32 +02:00
|
|
|
if (parse_supported_rates(&attr, band) < 0) {
|
|
|
|
band_free(band);
|
2019-10-28 15:04:53 +01:00
|
|
|
continue;
|
2021-05-28 20:40:32 +02:00
|
|
|
}
|
2019-10-28 15:04:53 +01:00
|
|
|
|
2021-05-28 21:10:55 +02:00
|
|
|
break;
|
|
|
|
case NL80211_BAND_ATTR_VHT_MCS_SET:
|
|
|
|
if (L_WARN_ON(len != sizeof(band->vht_mcs_set)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy(band->vht_mcs_set, data, len);
|
|
|
|
band->vht_supported = true;
|
|
|
|
break;
|
|
|
|
case NL80211_BAND_ATTR_VHT_CAPA:
|
|
|
|
if (L_WARN_ON(len !=
|
|
|
|
sizeof(band->vht_capabilities)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy(band->vht_capabilities, data, len);
|
|
|
|
band->vht_supported = true;
|
2019-10-28 15:04:53 +01:00
|
|
|
break;
|
2021-05-28 21:19:57 +02:00
|
|
|
case NL80211_BAND_ATTR_HT_MCS_SET:
|
|
|
|
if (L_WARN_ON(len != sizeof(band->ht_mcs_set)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy(band->ht_mcs_set, data, len);
|
|
|
|
band->ht_supported = true;
|
|
|
|
break;
|
|
|
|
case NL80211_BAND_ATTR_HT_CAPA:
|
|
|
|
if (L_WARN_ON(len !=
|
|
|
|
sizeof(band->ht_capabilities)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memcpy(band->ht_capabilities, data, len);
|
|
|
|
band->ht_supported = true;
|
|
|
|
break;
|
2015-10-06 22:23:32 +02:00
|
|
|
}
|
|
|
|
}
|
2021-05-28 20:40:32 +02:00
|
|
|
|
|
|
|
if (*bandp == NULL)
|
|
|
|
*bandp = band;
|
2015-10-06 22:23:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-07 18:53:31 +02:00
|
|
|
static void parse_supported_iftypes(struct wiphy *wiphy,
|
|
|
|
struct l_genl_attr *attr)
|
|
|
|
{
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(attr, &type, &len, &data)) {
|
|
|
|
/*
|
|
|
|
* NL80211_IFTYPE_UNSPECIFIED can be ignored, so we start
|
|
|
|
* at the first bit
|
|
|
|
*/
|
|
|
|
if (type > sizeof(wiphy->supported_iftypes) * 8) {
|
|
|
|
l_warn("unsupported iftype: %u", type);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
wiphy->supported_iftypes |= 1 << (type - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-10 17:53:07 +02:00
|
|
|
static void parse_iftype_extended_capabilities(struct wiphy *wiphy,
|
|
|
|
struct l_genl_attr *attr)
|
|
|
|
{
|
|
|
|
uint16_t type;
|
|
|
|
uint16_t len;
|
|
|
|
const void *data;
|
|
|
|
struct l_genl_attr nested;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(attr, &type, &len, &data)) {
|
|
|
|
uint32_t iftype;
|
|
|
|
|
|
|
|
if (!l_genl_attr_recurse(attr, &nested))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!l_genl_attr_next(&nested, &type, &len, &data))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (type != NL80211_ATTR_IFTYPE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
iftype = l_get_u32(data);
|
|
|
|
|
|
|
|
if (!l_genl_attr_next(&nested, &type, &len, &data))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (type != NL80211_ATTR_EXT_CAPA)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wiphy->iftype_extended_capabilities[iftype] =
|
|
|
|
l_new(uint8_t, EXT_CAP_LEN + 2);
|
|
|
|
wiphy->iftype_extended_capabilities[iftype][0] =
|
|
|
|
IE_TYPE_EXTENDED_CAPABILITIES;
|
|
|
|
wiphy->iftype_extended_capabilities[iftype][1] =
|
|
|
|
EXT_CAP_LEN;
|
|
|
|
memcpy(wiphy->iftype_extended_capabilities[iftype] + 2,
|
|
|
|
data, minsize(len, EXT_CAP_LEN));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-25 02:20:35 +02:00
|
|
|
static void wiphy_parse_attributes(struct wiphy *wiphy,
|
2019-09-20 05:54:07 +02:00
|
|
|
struct l_genl_msg *msg)
|
2014-08-07 05:15:20 +02:00
|
|
|
{
|
2019-09-20 05:54:07 +02:00
|
|
|
struct l_genl_attr attr;
|
2016-06-25 02:20:35 +02:00
|
|
|
struct l_genl_attr nested;
|
2014-08-07 05:15:20 +02:00
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
|
2019-09-20 05:54:07 +02:00
|
|
|
if (!l_genl_attr_init(&attr, msg))
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
2014-08-07 05:15:20 +02:00
|
|
|
switch (type) {
|
2014-08-08 00:41:30 +02:00
|
|
|
case NL80211_ATTR_FEATURE_FLAGS:
|
2016-06-25 02:20:35 +02:00
|
|
|
if (len != sizeof(uint32_t))
|
2014-08-08 00:41:30 +02:00
|
|
|
l_warn("Invalid feature flags attribute");
|
2016-06-25 02:20:35 +02:00
|
|
|
else
|
|
|
|
wiphy->feature_flags = *((uint32_t *) data);
|
2014-08-08 00:41:30 +02:00
|
|
|
|
2017-05-19 03:39:31 +02:00
|
|
|
break;
|
|
|
|
case NL80211_ATTR_EXT_FEATURES:
|
|
|
|
if (len > sizeof(wiphy->ext_features))
|
|
|
|
len = sizeof(wiphy->ext_features);
|
|
|
|
|
|
|
|
memcpy(wiphy->ext_features, data, len);
|
2014-08-08 00:41:30 +02:00
|
|
|
break;
|
2014-11-05 16:18:28 +01:00
|
|
|
case NL80211_ATTR_SUPPORTED_COMMANDS:
|
2019-09-20 05:54:07 +02:00
|
|
|
if (l_genl_attr_recurse(&attr, &nested))
|
2016-06-25 02:20:35 +02:00
|
|
|
parse_supported_commands(wiphy, &nested);
|
2014-11-05 16:18:28 +01:00
|
|
|
|
|
|
|
break;
|
2015-04-17 20:02:32 +02:00
|
|
|
case NL80211_ATTR_CIPHER_SUITES:
|
|
|
|
parse_supported_ciphers(wiphy, data, len);
|
|
|
|
break;
|
2015-10-06 22:23:32 +02:00
|
|
|
case NL80211_ATTR_WIPHY_BANDS:
|
2019-09-20 05:54:07 +02:00
|
|
|
if (l_genl_attr_recurse(&attr, &nested))
|
2016-06-25 02:20:35 +02:00
|
|
|
parse_supported_bands(wiphy, &nested);
|
2015-10-06 22:23:32 +02:00
|
|
|
|
|
|
|
break;
|
2018-05-09 00:54:40 +02:00
|
|
|
case NL80211_ATTR_MAX_NUM_SCAN_SSIDS:
|
|
|
|
if (len != sizeof(uint8_t))
|
|
|
|
l_warn("Invalid MAX_NUM_SCAN_SSIDS attribute");
|
|
|
|
else
|
|
|
|
wiphy->max_num_ssids_per_scan =
|
|
|
|
*((uint8_t *) data);
|
|
|
|
break;
|
2019-11-06 23:16:23 +01:00
|
|
|
case NL80211_ATTR_MAX_SCAN_IE_LEN:
|
|
|
|
if (len != sizeof(uint16_t))
|
|
|
|
l_warn("Invalid MAX_SCAN_IE_LEN attribute");
|
|
|
|
else
|
|
|
|
wiphy->max_scan_ie_len = *((uint16_t *) data);
|
|
|
|
break;
|
2018-08-07 18:15:23 +02:00
|
|
|
case NL80211_ATTR_SUPPORT_IBSS_RSN:
|
|
|
|
wiphy->support_adhoc_rsn = true;
|
|
|
|
break;
|
2018-08-07 18:53:31 +02:00
|
|
|
case NL80211_ATTR_SUPPORTED_IFTYPES:
|
2019-09-20 05:54:07 +02:00
|
|
|
if (l_genl_attr_recurse(&attr, &nested))
|
2018-08-07 18:53:31 +02:00
|
|
|
parse_supported_iftypes(wiphy, &nested);
|
|
|
|
break;
|
2019-06-14 19:06:35 +02:00
|
|
|
case NL80211_ATTR_OFFCHANNEL_TX_OK:
|
|
|
|
wiphy->offchannel_tx_ok = true;
|
|
|
|
break;
|
2019-07-10 17:53:07 +02:00
|
|
|
case NL80211_ATTR_EXT_CAPA:
|
|
|
|
memcpy(wiphy->extended_capabilities + 2,
|
|
|
|
data, minsize(EXT_CAP_LEN, len));
|
|
|
|
break;
|
|
|
|
case NL80211_ATTR_IFTYPE_EXT_CAPA:
|
2019-09-20 05:54:07 +02:00
|
|
|
if (!l_genl_attr_recurse(&attr, &nested))
|
2019-07-10 17:53:07 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
parse_iftype_extended_capabilities(wiphy, &nested);
|
|
|
|
break;
|
2019-10-21 15:55:09 +02:00
|
|
|
case NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION:
|
|
|
|
if (len != 4)
|
|
|
|
l_warn("Invalid MAX_ROC_DURATION attribute");
|
|
|
|
else
|
|
|
|
wiphy->max_roc_duration = *((uint32_t *) data);
|
|
|
|
break;
|
2021-03-15 18:29:30 +01:00
|
|
|
case NL80211_ATTR_ROAM_SUPPORT:
|
|
|
|
wiphy->support_fw_roam = true;
|
|
|
|
break;
|
2014-08-07 05:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-25 02:20:35 +02:00
|
|
|
}
|
|
|
|
|
2019-05-08 03:15:26 +02:00
|
|
|
static bool wiphy_get_driver_name(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
L_AUTO_FREE_VAR(char *, driver_link) = NULL;
|
|
|
|
char driver_path[256];
|
|
|
|
ssize_t len;
|
|
|
|
|
|
|
|
driver_link = l_strdup_printf("/sys/class/ieee80211/%s/device/driver",
|
|
|
|
wiphy->name);
|
|
|
|
len = readlink(driver_link, driver_path, sizeof(driver_path) - 1);
|
|
|
|
|
|
|
|
if (len == -1) {
|
|
|
|
l_error("Can't read %s: %s", driver_link, strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
driver_path[len] = '\0';
|
|
|
|
wiphy->driver_str = l_strdup(basename(driver_path));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-07-01 21:42:12 +02:00
|
|
|
static int wiphy_get_permanent_addr_from_sysfs(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
char addr[32];
|
|
|
|
ssize_t len;
|
|
|
|
|
|
|
|
len = read_file(addr, sizeof(addr),
|
|
|
|
"/sys/class/ieee80211/%s/macaddress",
|
|
|
|
wiphy->name);
|
|
|
|
if (len != 18) {
|
|
|
|
if (len < 0)
|
|
|
|
return -errno;
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sysfs appends a \n at the end, strip it */
|
|
|
|
addr[17] = '\0';
|
|
|
|
|
|
|
|
if (!util_string_to_address(addr, wiphy->permanent_addr))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-07-12 04:13:54 +02:00
|
|
|
static void wiphy_register(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
struct l_dbus *dbus = dbus_get_bus();
|
|
|
|
|
2016-07-12 04:13:56 +02:00
|
|
|
wiphy->soft_rfkill = rfkill_get_soft_state(wiphy->id);
|
|
|
|
wiphy->hard_rfkill = rfkill_get_hard_state(wiphy->id);
|
|
|
|
|
2016-12-16 13:50:11 +01:00
|
|
|
if (hwdb) {
|
2016-08-03 01:27:34 +02:00
|
|
|
char modalias[128];
|
|
|
|
ssize_t len;
|
|
|
|
struct l_hwdb_entry *entries = NULL, *kv;
|
|
|
|
|
|
|
|
len = read_file(modalias, sizeof(modalias) - 1,
|
|
|
|
"/sys/class/ieee80211/%s/device/modalias",
|
|
|
|
wiphy->name);
|
|
|
|
|
|
|
|
if (len > 0) {
|
|
|
|
modalias[len] = '\0';
|
|
|
|
entries = l_hwdb_lookup(hwdb, "%s", modalias);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (kv = entries; kv; kv = kv->next) {
|
|
|
|
if (!strcmp(kv->key, "ID_MODEL_FROM_DATABASE")) {
|
|
|
|
if (wiphy->model_str)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wiphy->model_str = l_strdup(kv->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(kv->key, "ID_VENDOR_FROM_DATABASE")) {
|
|
|
|
if (wiphy->vendor_str)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
wiphy->vendor_str = l_strdup(kv->value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
l_hwdb_lookup_free(entries);
|
|
|
|
}
|
|
|
|
|
2019-05-08 03:15:26 +02:00
|
|
|
wiphy_get_driver_name(wiphy);
|
|
|
|
|
2016-07-12 04:13:54 +02:00
|
|
|
if (!l_dbus_object_add_interface(dbus, wiphy_get_path(wiphy),
|
|
|
|
IWD_WIPHY_INTERFACE, wiphy))
|
|
|
|
l_info("Unable to add the %s interface to %s",
|
|
|
|
IWD_WIPHY_INTERFACE, wiphy_get_path(wiphy));
|
2016-09-21 18:51:55 +02:00
|
|
|
|
|
|
|
if (!l_dbus_object_add_interface(dbus, wiphy_get_path(wiphy),
|
|
|
|
L_DBUS_INTERFACE_PROPERTIES, NULL))
|
|
|
|
l_info("Unable to add the %s interface to %s",
|
|
|
|
L_DBUS_INTERFACE_PROPERTIES,
|
|
|
|
wiphy_get_path(wiphy));
|
2020-02-03 23:25:07 +01:00
|
|
|
|
|
|
|
wiphy->registered = true;
|
2016-07-12 04:13:54 +02:00
|
|
|
}
|
|
|
|
|
2019-04-11 03:10:23 +02:00
|
|
|
struct wiphy *wiphy_create(uint32_t wiphy_id, const char *name)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy;
|
2020-04-23 18:24:35 +02:00
|
|
|
struct l_genl *genl = iwd_get_genl();
|
2019-04-11 03:10:23 +02:00
|
|
|
|
|
|
|
wiphy = wiphy_new(wiphy_id);
|
|
|
|
l_strlcpy(wiphy->name, name, sizeof(wiphy->name));
|
2020-04-23 18:24:35 +02:00
|
|
|
wiphy->nl80211 = l_genl_family_new(genl, NL80211_GENL_NAME);
|
2019-04-11 03:10:23 +02:00
|
|
|
l_queue_push_head(wiphy_list, wiphy);
|
|
|
|
|
2020-02-03 23:25:07 +01:00
|
|
|
if (!wiphy_is_managed(name))
|
|
|
|
wiphy->blacklisted = true;
|
|
|
|
|
2020-07-09 02:04:32 +02:00
|
|
|
wiphy->work = l_queue_new();
|
|
|
|
|
2019-04-11 03:10:23 +02:00
|
|
|
return wiphy;
|
|
|
|
}
|
|
|
|
|
2020-02-03 23:25:07 +01:00
|
|
|
void wiphy_update_from_genl(struct wiphy *wiphy, struct l_genl_msg *msg)
|
2019-04-11 03:10:23 +02:00
|
|
|
{
|
2020-02-03 23:25:07 +01:00
|
|
|
if (wiphy->blacklisted)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wiphy_parse_attributes(wiphy, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void wiphy_update_name(struct wiphy *wiphy, const char *name)
|
|
|
|
{
|
|
|
|
bool updated = false;
|
|
|
|
|
2019-04-11 03:10:23 +02:00
|
|
|
if (strncmp(wiphy->name, name, sizeof(wiphy->name))) {
|
2020-02-03 23:25:07 +01:00
|
|
|
l_strlcpy(wiphy->name, name, sizeof(wiphy->name));
|
|
|
|
updated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (updated && wiphy->registered) {
|
2019-04-11 03:10:23 +02:00
|
|
|
struct l_dbus *dbus = dbus_get_bus();
|
|
|
|
|
|
|
|
l_dbus_property_changed(dbus, wiphy_get_path(wiphy),
|
|
|
|
IWD_WIPHY_INTERFACE, "Name");
|
|
|
|
}
|
2019-04-20 22:29:06 +02:00
|
|
|
}
|
|
|
|
|
2019-08-22 00:21:44 +02:00
|
|
|
static void wiphy_set_station_capability_bits(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
uint8_t *ext_capa;
|
|
|
|
bool anqp_disabled;
|
|
|
|
|
|
|
|
/* No per-type capabilities exist for station, just copy the global */
|
|
|
|
if (!wiphy->iftype_extended_capabilities[NL80211_IFTYPE_STATION]) {
|
|
|
|
wiphy->iftype_extended_capabilities[NL80211_IFTYPE_STATION] =
|
|
|
|
l_new(uint8_t, EXT_CAP_LEN + 2);
|
|
|
|
|
|
|
|
memcpy(wiphy->iftype_extended_capabilities[
|
|
|
|
NL80211_IFTYPE_STATION],
|
|
|
|
wiphy->extended_capabilities,
|
|
|
|
EXT_CAP_LEN + 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
ext_capa = wiphy->iftype_extended_capabilities[NL80211_IFTYPE_STATION];
|
|
|
|
|
2019-10-25 06:18:23 +02:00
|
|
|
if (!l_settings_get_bool(iwd_get_config(), "General", "DisableANQP",
|
2019-08-22 00:21:44 +02:00
|
|
|
&anqp_disabled))
|
|
|
|
anqp_disabled = true;
|
|
|
|
|
|
|
|
/* Set BSS Transition Management */
|
2021-03-12 05:23:52 +01:00
|
|
|
set_bit(ext_capa + 2, 19);
|
2019-08-22 00:21:44 +02:00
|
|
|
|
|
|
|
/* Set Interworking */
|
|
|
|
if (!anqp_disabled)
|
2021-03-12 05:23:52 +01:00
|
|
|
set_bit(ext_capa + 2, 31);
|
2019-08-22 00:21:44 +02:00
|
|
|
|
2019-09-14 00:26:30 +02:00
|
|
|
/* Set QoS Map */
|
|
|
|
if (wiphy->support_qos_set_map)
|
2021-03-12 05:23:52 +01:00
|
|
|
set_bit(ext_capa + 2, 32);
|
2019-09-14 00:26:30 +02:00
|
|
|
|
2019-08-22 00:21:44 +02:00
|
|
|
/* Set FILS */
|
2021-03-12 05:23:52 +01:00
|
|
|
set_bit(ext_capa + 2, 72);
|
2019-08-22 00:21:44 +02:00
|
|
|
}
|
|
|
|
|
2019-08-23 15:55:54 +02:00
|
|
|
static void wiphy_setup_rm_enabled_capabilities(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
/* Nothing to do */
|
|
|
|
if (!wiphy_rrm_capable(wiphy))
|
|
|
|
return;
|
|
|
|
|
|
|
|
wiphy->rm_enabled_capabilities[0] = IE_TYPE_RM_ENABLED_CAPABILITIES;
|
|
|
|
wiphy->rm_enabled_capabilities[1] = 5;
|
2019-11-07 01:59:13 +01:00
|
|
|
/* Bits: Passive (4), Active (5), and Beacon Table (6) capabilities */
|
|
|
|
wiphy->rm_enabled_capabilities[2] = 0x70;
|
2019-08-23 15:55:54 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Support at least Link Measurement if TX_POWER_INSERTION is
|
|
|
|
* available
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2020-04-23 18:24:35 +02:00
|
|
|
static void wiphy_update_reg_domain(struct wiphy *wiphy, bool global,
|
|
|
|
struct l_genl_msg *msg)
|
|
|
|
{
|
|
|
|
char *out_country;
|
|
|
|
|
|
|
|
if (global)
|
|
|
|
/*
|
|
|
|
* Leave @wiphy->regdom_country as all zeros to mean that it
|
|
|
|
* uses the global @regdom_country, i.e. is not self-managed.
|
|
|
|
*
|
|
|
|
* Even if we're called because we queried a new wiphy's
|
|
|
|
* reg domain, use the value we received here to update our
|
|
|
|
* global @regdom_country in case this is the first opportunity
|
|
|
|
* we have to update it -- possibly because this is the first
|
|
|
|
* wiphy created (that is not self-managed anyway) and we
|
|
|
|
* haven't received any REG_CHANGE events yet.
|
|
|
|
*/
|
|
|
|
out_country = regdom_country;
|
|
|
|
else
|
|
|
|
out_country = wiphy->regdom_country;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the new country code or XX if the reg domain is not a
|
|
|
|
* country domain.
|
|
|
|
*/
|
|
|
|
if (nl80211_parse_attrs(msg, NL80211_ATTR_REG_ALPHA2, out_country,
|
|
|
|
NL80211_ATTR_UNSPEC) < 0)
|
|
|
|
out_country[0] = out_country[1] = 'X';
|
|
|
|
|
|
|
|
l_debug("New reg domain country code for %s is %c%c",
|
|
|
|
global ? "(global)" : wiphy->name,
|
|
|
|
out_country[0], out_country[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wiphy_get_reg_cb(struct l_genl_msg *msg, void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = user_data;
|
|
|
|
uint32_t tmp;
|
|
|
|
bool global;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NL80211_CMD_GET_REG contains an NL80211_ATTR_WIPHY iff the wiphy
|
|
|
|
* uses a self-managed regulatory domain.
|
|
|
|
*/
|
|
|
|
global = nl80211_parse_attrs(msg, NL80211_ATTR_WIPHY, &tmp,
|
|
|
|
NL80211_ATTR_UNSPEC) < 0;
|
|
|
|
|
|
|
|
wiphy_update_reg_domain(wiphy, global, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wiphy_get_reg_domain(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new(NL80211_CMD_GET_REG);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_WIPHY, 4, &wiphy->id);
|
|
|
|
|
|
|
|
if (!l_genl_family_send(wiphy->nl80211, msg, wiphy_get_reg_cb, wiphy,
|
|
|
|
NULL)) {
|
|
|
|
l_error("Error sending NL80211_CMD_GET_REG for %s", wiphy->name);
|
|
|
|
l_genl_msg_unref(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 22:29:06 +02:00
|
|
|
void wiphy_create_complete(struct wiphy *wiphy)
|
|
|
|
{
|
2020-02-03 23:25:07 +01:00
|
|
|
wiphy_register(wiphy);
|
|
|
|
|
2021-03-09 22:40:35 +01:00
|
|
|
if (l_memeqzero(wiphy->permanent_addr, 6)) {
|
2019-07-01 21:42:12 +02:00
|
|
|
int err = wiphy_get_permanent_addr_from_sysfs(wiphy);
|
|
|
|
|
|
|
|
if (err < 0)
|
|
|
|
l_error("Can't read sysfs maccaddr for %s: %s",
|
|
|
|
wiphy->name, strerror(-err));
|
|
|
|
}
|
|
|
|
|
2019-08-22 00:21:44 +02:00
|
|
|
wiphy_set_station_capability_bits(wiphy);
|
2019-08-23 15:55:54 +02:00
|
|
|
wiphy_setup_rm_enabled_capabilities(wiphy);
|
2020-04-23 18:24:35 +02:00
|
|
|
wiphy_get_reg_domain(wiphy);
|
2019-08-22 00:21:44 +02:00
|
|
|
|
2019-04-20 22:29:06 +02:00
|
|
|
wiphy_print_basic_info(wiphy);
|
2019-04-11 03:10:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool wiphy_destroy(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
l_debug("");
|
|
|
|
|
|
|
|
if (!l_queue_remove(wiphy_list, wiphy))
|
|
|
|
return false;
|
|
|
|
|
2020-02-03 23:25:07 +01:00
|
|
|
if (wiphy->registered)
|
|
|
|
l_dbus_unregister_object(dbus_get_bus(), wiphy_get_path(wiphy));
|
2019-04-11 03:10:23 +02:00
|
|
|
|
|
|
|
wiphy_free(wiphy);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-12 04:13:56 +02:00
|
|
|
static void wiphy_rfkill_cb(unsigned int wiphy_id, bool soft, bool hard,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = wiphy_find(wiphy_id);
|
|
|
|
struct l_dbus *dbus = dbus_get_bus();
|
|
|
|
bool old_powered, new_powered;
|
2018-11-29 18:22:50 +01:00
|
|
|
enum wiphy_state_watch_event event;
|
2016-07-12 04:13:56 +02:00
|
|
|
|
|
|
|
if (!wiphy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
old_powered = !wiphy->soft_rfkill && !wiphy->hard_rfkill;
|
|
|
|
|
|
|
|
wiphy->soft_rfkill = soft;
|
|
|
|
wiphy->hard_rfkill = hard;
|
|
|
|
|
|
|
|
new_powered = !wiphy->soft_rfkill && !wiphy->hard_rfkill;
|
|
|
|
|
2018-11-29 18:22:50 +01:00
|
|
|
if (old_powered == new_powered)
|
|
|
|
return;
|
|
|
|
|
|
|
|
event = new_powered ? WIPHY_STATE_WATCH_EVENT_POWERED :
|
|
|
|
WIPHY_STATE_WATCH_EVENT_RFKILLED;
|
|
|
|
WATCHLIST_NOTIFY(&wiphy->state_watches, wiphy_state_watch_func_t,
|
|
|
|
wiphy, event);
|
|
|
|
|
|
|
|
l_dbus_property_changed(dbus, wiphy_get_path(wiphy),
|
2016-07-12 04:13:56 +02:00
|
|
|
IWD_WIPHY_INTERFACE, "Powered");
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool wiphy_property_get_powered(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_builder *builder,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = user_data;
|
|
|
|
bool value = !wiphy->soft_rfkill && !wiphy->hard_rfkill;
|
|
|
|
|
|
|
|
l_dbus_message_builder_append_basic(builder, 'b', &value);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-13 04:29:50 +02:00
|
|
|
static struct l_dbus_message *wiphy_property_set_powered(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_iter *new_value,
|
|
|
|
l_dbus_property_complete_cb_t complete,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = user_data;
|
|
|
|
bool old_powered, new_powered;
|
|
|
|
|
|
|
|
if (!l_dbus_message_iter_get_variant(new_value, "b", &new_powered))
|
|
|
|
return dbus_error_invalid_args(message);
|
|
|
|
|
|
|
|
old_powered = !wiphy->soft_rfkill && !wiphy->hard_rfkill;
|
|
|
|
|
|
|
|
if (old_powered == new_powered)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (wiphy->hard_rfkill)
|
|
|
|
return dbus_error_not_available(message);
|
|
|
|
|
|
|
|
if (!rfkill_set_soft_state(wiphy->id, !new_powered))
|
|
|
|
return dbus_error_failed(message);
|
|
|
|
|
|
|
|
done:
|
|
|
|
complete(dbus, message, NULL);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-03 01:27:34 +02:00
|
|
|
static bool wiphy_property_get_model(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_builder *builder,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = user_data;
|
|
|
|
|
|
|
|
if (!wiphy->model_str)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
l_dbus_message_builder_append_basic(builder, 's', wiphy->model_str);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool wiphy_property_get_vendor(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_builder *builder,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = user_data;
|
|
|
|
|
|
|
|
if (!wiphy->vendor_str)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
l_dbus_message_builder_append_basic(builder, 's', wiphy->vendor_str);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-02-21 20:11:22 +01:00
|
|
|
static bool wiphy_property_get_name(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_builder *builder,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = user_data;
|
2017-03-07 18:59:48 +01:00
|
|
|
char buf[20];
|
2017-02-21 20:11:22 +01:00
|
|
|
|
2017-03-07 18:59:48 +01:00
|
|
|
if (l_utf8_validate(wiphy->name, strlen(wiphy->name), NULL)) {
|
|
|
|
l_dbus_message_builder_append_basic(builder, 's', wiphy->name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In the highly unlikely scenario that the wiphy name is not utf8,
|
|
|
|
* we simply use the canonical name phy<index>. The kernel guarantees
|
|
|
|
* that this name cannot be taken by any other wiphy, so this should
|
|
|
|
* be safe enough.
|
|
|
|
*/
|
|
|
|
sprintf(buf, "phy%d", wiphy->id);
|
|
|
|
l_dbus_message_builder_append_basic(builder, 's', buf);
|
2017-02-21 20:11:22 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-11 15:43:21 +01:00
|
|
|
#define WIPHY_MODE_MASK ( \
|
|
|
|
(1 << (NL80211_IFTYPE_STATION - 1)) | \
|
|
|
|
(1 << (NL80211_IFTYPE_AP - 1)) | \
|
|
|
|
(1 << (NL80211_IFTYPE_ADHOC - 1)))
|
|
|
|
|
2018-08-08 00:08:06 +02:00
|
|
|
static bool wiphy_property_get_supported_modes(struct l_dbus *dbus,
|
|
|
|
struct l_dbus_message *message,
|
|
|
|
struct l_dbus_message_builder *builder,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct wiphy *wiphy = user_data;
|
|
|
|
unsigned int j = 0;
|
2019-03-11 15:43:21 +01:00
|
|
|
char **iftypes = wiphy_get_supported_iftypes(wiphy, WIPHY_MODE_MASK);
|
2018-08-08 00:08:06 +02:00
|
|
|
|
|
|
|
l_dbus_message_builder_enter_array(builder, "s");
|
|
|
|
|
|
|
|
while (iftypes[j])
|
|
|
|
l_dbus_message_builder_append_basic(builder, 's', iftypes[j++]);
|
|
|
|
|
|
|
|
l_dbus_message_builder_leave_array(builder);
|
|
|
|
l_strfreev(iftypes);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-12 04:13:54 +02:00
|
|
|
static void setup_wiphy_interface(struct l_dbus_interface *interface)
|
|
|
|
{
|
2016-07-12 04:13:56 +02:00
|
|
|
l_dbus_interface_property(interface, "Powered", 0, "b",
|
2016-07-13 04:29:50 +02:00
|
|
|
wiphy_property_get_powered,
|
|
|
|
wiphy_property_set_powered);
|
2016-08-03 01:27:34 +02:00
|
|
|
l_dbus_interface_property(interface, "Model", 0, "s",
|
|
|
|
wiphy_property_get_model, NULL);
|
|
|
|
l_dbus_interface_property(interface, "Vendor", 0, "s",
|
|
|
|
wiphy_property_get_vendor, NULL);
|
2017-02-21 20:11:22 +01:00
|
|
|
l_dbus_interface_property(interface, "Name", 0, "s",
|
|
|
|
wiphy_property_get_name, NULL);
|
2018-08-08 00:08:06 +02:00
|
|
|
l_dbus_interface_property(interface, "SupportedModes", 0, "as",
|
|
|
|
wiphy_property_get_supported_modes,
|
|
|
|
NULL);
|
2016-07-12 04:13:54 +02:00
|
|
|
}
|
|
|
|
|
2020-04-23 18:24:35 +02:00
|
|
|
static void wiphy_reg_notify(struct l_genl_msg *msg, void *user_data)
|
|
|
|
{
|
|
|
|
uint8_t cmd = l_genl_msg_get_command(msg);
|
|
|
|
|
|
|
|
l_debug("Notification of command %s(%u)",
|
|
|
|
nl80211cmd_to_string(cmd), cmd);
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case NL80211_CMD_REG_CHANGE:
|
|
|
|
wiphy_update_reg_domain(NULL, true, msg);
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_WIPHY_REG_CHANGE:
|
|
|
|
{
|
|
|
|
uint32_t wiphy_id;
|
|
|
|
struct wiphy *wiphy;
|
|
|
|
|
|
|
|
if (nl80211_parse_attrs(msg, NL80211_ATTR_WIPHY, &wiphy_id,
|
|
|
|
NL80211_ATTR_UNSPEC) < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
wiphy = wiphy_find(wiphy_id);
|
|
|
|
if (!wiphy)
|
|
|
|
break;
|
|
|
|
|
|
|
|
wiphy_update_reg_domain(wiphy, false, msg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 02:04:32 +02:00
|
|
|
static void wiphy_radio_work_next(struct wiphy *wiphy)
|
|
|
|
{
|
|
|
|
struct wiphy_radio_work_item *work;
|
|
|
|
bool done;
|
|
|
|
|
|
|
|
work = l_queue_peek_head(wiphy->work);
|
|
|
|
if (!work)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ensures no other work item will get inserted before this one while
|
|
|
|
* the work is being done.
|
|
|
|
*/
|
|
|
|
work->priority = INT_MIN;
|
|
|
|
|
|
|
|
l_debug("Starting work item %u", work->id);
|
|
|
|
done = work->ops->do_work(work);
|
|
|
|
|
|
|
|
if (done) {
|
|
|
|
work->id = 0;
|
|
|
|
|
|
|
|
l_queue_remove(wiphy->work, work);
|
|
|
|
|
|
|
|
destroy_work(work);
|
|
|
|
|
|
|
|
wiphy_radio_work_next(wiphy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int insert_by_priority(const void *a, const void *b, void *user_data)
|
|
|
|
{
|
|
|
|
const struct wiphy_radio_work_item *new = a;
|
|
|
|
const struct wiphy_radio_work_item *work = b;
|
|
|
|
|
|
|
|
if (work->priority <= new->priority)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t wiphy_radio_work_insert(struct wiphy *wiphy,
|
|
|
|
struct wiphy_radio_work_item *item,
|
|
|
|
int priority,
|
|
|
|
const struct wiphy_radio_work_item_ops *ops)
|
|
|
|
{
|
|
|
|
item->priority = priority;
|
|
|
|
item->ops = ops;
|
|
|
|
item->id = ++work_ids;
|
|
|
|
|
|
|
|
l_debug("Inserting work item %u", item->id);
|
|
|
|
|
|
|
|
l_queue_insert(wiphy->work, item, insert_by_priority, NULL);
|
|
|
|
|
|
|
|
if (l_queue_length(wiphy->work) == 1)
|
|
|
|
wiphy_radio_work_next(wiphy);
|
|
|
|
|
|
|
|
return item->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool match_id(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct wiphy_radio_work_item *item = a;
|
|
|
|
|
|
|
|
if (item->id == L_PTR_TO_UINT(b))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wiphy_radio_work_done(struct wiphy *wiphy, uint32_t id)
|
|
|
|
{
|
|
|
|
struct wiphy_radio_work_item *item;
|
|
|
|
bool next = false;
|
|
|
|
|
|
|
|
item = l_queue_peek_head(wiphy->work);
|
|
|
|
if (!item)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (item->id == id) {
|
|
|
|
next = true;
|
|
|
|
l_queue_pop_head(wiphy->work);
|
|
|
|
} else
|
|
|
|
item = l_queue_remove_if(wiphy->work, match_id,
|
|
|
|
L_UINT_TO_PTR(id));
|
|
|
|
if (!item)
|
|
|
|
return;
|
|
|
|
|
|
|
|
l_debug("Work item %u done", id);
|
|
|
|
|
|
|
|
item->id = 0;
|
|
|
|
|
|
|
|
destroy_work(item);
|
|
|
|
|
|
|
|
if (next)
|
|
|
|
wiphy_radio_work_next(wiphy);
|
|
|
|
}
|
|
|
|
|
2021-04-05 23:53:51 +02:00
|
|
|
bool wiphy_radio_work_is_running(struct wiphy *wiphy, uint32_t id)
|
|
|
|
{
|
|
|
|
struct wiphy_radio_work_item *item = l_queue_peek_head(wiphy->work);
|
|
|
|
|
|
|
|
if (!item)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return item->id == id;
|
|
|
|
}
|
|
|
|
|
2019-10-11 21:29:29 +02:00
|
|
|
static int wiphy_init(void)
|
2014-07-29 21:25:01 +02:00
|
|
|
{
|
2019-10-11 21:29:29 +02:00
|
|
|
struct l_genl *genl = iwd_get_genl();
|
2019-07-02 01:28:26 +02:00
|
|
|
const struct l_settings *config = iwd_get_config();
|
2019-10-11 21:29:28 +02:00
|
|
|
const char *whitelist = iwd_get_phy_whitelist();
|
|
|
|
const char *blacklist = iwd_get_phy_blacklist();
|
2019-10-25 18:16:28 +02:00
|
|
|
const char *s;
|
2019-07-02 01:28:26 +02:00
|
|
|
|
2019-10-11 21:29:29 +02:00
|
|
|
nl80211 = l_genl_family_new(genl, NL80211_GENL_NAME);
|
|
|
|
|
2014-08-07 05:15:20 +02:00
|
|
|
/*
|
|
|
|
* This is an extra sanity check so that no memory is leaked
|
|
|
|
* in case the generic netlink handling gets confused.
|
|
|
|
*/
|
|
|
|
if (wiphy_list) {
|
|
|
|
l_warn("Destroying existing list of wiphy devices");
|
|
|
|
l_queue_destroy(wiphy_list, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
wiphy_list = l_queue_new();
|
|
|
|
|
2016-07-12 04:13:56 +02:00
|
|
|
rfkill_watch_add(wiphy_rfkill_cb, NULL);
|
|
|
|
|
2016-07-12 04:13:54 +02:00
|
|
|
if (!l_dbus_register_interface(dbus_get_bus(),
|
|
|
|
IWD_WIPHY_INTERFACE,
|
|
|
|
setup_wiphy_interface,
|
2016-09-21 18:51:55 +02:00
|
|
|
NULL, false))
|
2016-07-12 04:13:54 +02:00
|
|
|
l_error("Unable to register the %s interface",
|
|
|
|
IWD_WIPHY_INTERFACE);
|
|
|
|
|
2016-08-03 01:27:34 +02:00
|
|
|
hwdb = l_hwdb_new_default();
|
|
|
|
|
2017-03-16 22:45:10 +01:00
|
|
|
if (whitelist)
|
|
|
|
whitelist_filter = l_strsplit(whitelist, ',');
|
|
|
|
|
|
|
|
if (blacklist)
|
|
|
|
blacklist_filter = l_strsplit(blacklist, ',');
|
|
|
|
|
2019-10-25 18:16:28 +02:00
|
|
|
s = l_settings_get_value(config, "General",
|
|
|
|
"AddressRandomizationRange");
|
|
|
|
if (s) {
|
|
|
|
if (!strcmp(s, "nic"))
|
|
|
|
mac_randomize_bytes = 3;
|
|
|
|
else if (!strcmp(s, "full"))
|
|
|
|
mac_randomize_bytes = 6;
|
|
|
|
else
|
|
|
|
l_warn("Invalid [General].AddressRandomizationRange"
|
|
|
|
" value: %s", s);
|
|
|
|
}
|
|
|
|
|
2020-04-23 18:24:35 +02:00
|
|
|
if (!l_genl_family_register(nl80211, NL80211_MULTICAST_GROUP_REG,
|
|
|
|
wiphy_reg_notify, NULL, NULL))
|
|
|
|
l_error("Registering for regulatory notifications failed");
|
|
|
|
|
2019-10-11 21:29:29 +02:00
|
|
|
return 0;
|
2014-07-29 21:25:01 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 21:29:29 +02:00
|
|
|
static void wiphy_exit(void)
|
2014-07-29 21:25:01 +02:00
|
|
|
{
|
2017-03-16 22:45:10 +01:00
|
|
|
l_strfreev(whitelist_filter);
|
|
|
|
l_strfreev(blacklist_filter);
|
|
|
|
|
2015-09-29 02:51:40 +02:00
|
|
|
l_queue_destroy(wiphy_list, wiphy_free);
|
|
|
|
wiphy_list = NULL;
|
2014-07-29 21:25:01 +02:00
|
|
|
|
2019-10-11 21:29:29 +02:00
|
|
|
l_genl_family_free(nl80211);
|
2015-09-29 02:51:40 +02:00
|
|
|
nl80211 = NULL;
|
2019-07-02 01:28:26 +02:00
|
|
|
mac_randomize_bytes = 6;
|
2014-08-07 05:15:20 +02:00
|
|
|
|
2016-07-12 04:13:54 +02:00
|
|
|
l_dbus_unregister_interface(dbus_get_bus(), IWD_WIPHY_INTERFACE);
|
|
|
|
|
2016-08-03 01:27:34 +02:00
|
|
|
l_hwdb_unref(hwdb);
|
2014-07-29 21:25:01 +02:00
|
|
|
}
|
2019-10-11 21:29:29 +02:00
|
|
|
|
|
|
|
IWD_MODULE(wiphy, wiphy_init, wiphy_exit);
|
|
|
|
IWD_MODULE_DEPENDS(wiphy, rfkill);
|