2018-10-08 22:44:09 +02:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
2019-10-25 00:43:08 +02:00
|
|
|
* Copyright (C) 2018-2019 Intel Corporation. All rights reserved.
|
2018-10-08 22:44:09 +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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-04-04 14:02:38 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2019-09-20 04:29:27 +02:00
|
|
|
#include <errno.h>
|
2018-10-08 22:44:09 +02:00
|
|
|
#include <linux/if_ether.h>
|
|
|
|
#include <ell/ell.h>
|
|
|
|
|
|
|
|
#include "linux/nl80211.h"
|
|
|
|
|
2018-10-14 05:41:06 +02:00
|
|
|
#include "src/nl80211util.h"
|
2021-09-18 21:19:41 +02:00
|
|
|
#include "src/band.h"
|
2022-08-03 23:36:34 +02:00
|
|
|
#include "src/util.h"
|
2018-10-08 22:44:09 +02:00
|
|
|
|
2019-09-20 04:29:27 +02:00
|
|
|
typedef bool (*attr_handler)(const void *data, uint16_t len, void *o);
|
|
|
|
|
|
|
|
static bool extract_ifindex(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
uint32_t *out = o;
|
|
|
|
|
|
|
|
if (len != 4)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* ifindex cannot be 0 */
|
|
|
|
if (l_get_u32(data) == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*out = l_get_u32(data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-20 04:48:47 +02:00
|
|
|
static bool extract_name(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
const char **out = o;
|
|
|
|
|
|
|
|
if (len < 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!memchr(data + 1, 0, len - 1))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*out = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-23 18:24:34 +02:00
|
|
|
static bool extract_2_chars(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
char *out = o;
|
|
|
|
const char *in = data;
|
|
|
|
|
|
|
|
if (len != 3 || in[2] != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
out[0] = in[0];
|
|
|
|
out[1] = in[1];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-17 23:20:17 +01:00
|
|
|
static bool extract_mac(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
const uint8_t **out = o;
|
|
|
|
|
|
|
|
if (len != 6)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*out = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-20 04:48:47 +02:00
|
|
|
static bool extract_uint64(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
uint64_t *out = o;
|
|
|
|
|
|
|
|
if (len != 8)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*out = l_get_u64(data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-20 04:35:55 +02:00
|
|
|
static bool extract_uint32(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
uint32_t *out = o;
|
|
|
|
|
|
|
|
if (len != 4)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*out = l_get_u32(data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-07 12:39:10 +01:00
|
|
|
static bool extract_flag(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
if (len != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-01-12 19:08:39 +01:00
|
|
|
static bool extract_iovec(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
struct iovec *iov = o;
|
|
|
|
|
|
|
|
iov->iov_base = (void *) data;
|
|
|
|
iov->iov_len = len;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-26 19:09:20 +02:00
|
|
|
static bool extract_nested(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
const struct l_genl_attr *outer = data;
|
|
|
|
struct l_genl_attr *nested = o;
|
|
|
|
|
|
|
|
l_genl_attr_recurse(outer, nested);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-11-01 21:17:45 +01:00
|
|
|
static bool extract_u8(const void *data, uint16_t len, void *o)
|
|
|
|
{
|
|
|
|
uint8_t *out = o;
|
|
|
|
|
|
|
|
if (len != 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*out = l_get_u8(data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-20 04:29:27 +02:00
|
|
|
static attr_handler handler_for_type(enum nl80211_attrs type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_ATTR_IFINDEX:
|
|
|
|
return extract_ifindex;
|
2019-09-20 04:35:55 +02:00
|
|
|
case NL80211_ATTR_WIPHY:
|
2019-09-20 04:48:47 +02:00
|
|
|
case NL80211_ATTR_IFTYPE:
|
2022-11-01 21:17:45 +01:00
|
|
|
case NL80211_ATTR_KEY_TYPE:
|
2019-09-20 04:35:55 +02:00
|
|
|
return extract_uint32;
|
2019-09-20 04:48:47 +02:00
|
|
|
case NL80211_ATTR_WDEV:
|
2019-09-20 06:03:10 +02:00
|
|
|
case NL80211_ATTR_COOKIE:
|
2019-09-20 04:48:47 +02:00
|
|
|
return extract_uint64;
|
|
|
|
case NL80211_ATTR_IFNAME:
|
2019-09-20 05:54:07 +02:00
|
|
|
case NL80211_ATTR_WIPHY_NAME:
|
2019-09-20 04:48:47 +02:00
|
|
|
return extract_name;
|
2020-04-23 18:24:34 +02:00
|
|
|
case NL80211_ATTR_REG_ALPHA2:
|
|
|
|
return extract_2_chars;
|
2019-12-17 23:20:17 +01:00
|
|
|
case NL80211_ATTR_MAC:
|
|
|
|
return extract_mac;
|
2020-02-07 12:39:10 +01:00
|
|
|
case NL80211_ATTR_ACK:
|
|
|
|
return extract_flag;
|
2021-03-10 21:27:43 +01:00
|
|
|
case NL80211_ATTR_WIPHY_FREQ:
|
2021-09-18 21:19:41 +02:00
|
|
|
case NL80211_ATTR_WIPHY_FREQ_OFFSET:
|
|
|
|
case NL80211_ATTR_WIPHY_CHANNEL_TYPE:
|
|
|
|
case NL80211_ATTR_CHANNEL_WIDTH:
|
|
|
|
case NL80211_ATTR_CENTER_FREQ1:
|
|
|
|
case NL80211_ATTR_CENTER_FREQ2:
|
2021-03-10 21:27:43 +01:00
|
|
|
return extract_uint32;
|
2022-01-12 19:08:39 +01:00
|
|
|
case NL80211_ATTR_FRAME:
|
|
|
|
return extract_iovec;
|
2022-07-26 19:09:20 +02:00
|
|
|
case NL80211_ATTR_WIPHY_BANDS:
|
|
|
|
return extract_nested;
|
2022-11-01 21:17:45 +01:00
|
|
|
case NL80211_ATTR_KEY_IDX:
|
|
|
|
return extract_u8;
|
2019-09-20 04:29:27 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct attr_entry {
|
|
|
|
uint16_t type;
|
|
|
|
void *data;
|
|
|
|
attr_handler handler;
|
2019-10-25 20:46:58 +02:00
|
|
|
bool present : 1;
|
2019-09-20 04:29:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int nl80211_parse_attrs(struct l_genl_msg *msg, int tag, ...)
|
|
|
|
{
|
|
|
|
struct l_genl_attr attr;
|
|
|
|
va_list args;
|
|
|
|
struct l_queue *entries;
|
|
|
|
const struct l_queue_entry *e;
|
|
|
|
struct attr_entry *entry;
|
|
|
|
uint16_t type;
|
|
|
|
uint16_t len;
|
|
|
|
const void *data;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!l_genl_attr_init(&attr, msg))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
va_start(args, tag);
|
|
|
|
entries = l_queue_new();
|
|
|
|
ret = -ENOSYS;
|
|
|
|
|
|
|
|
while (tag != NL80211_ATTR_UNSPEC) {
|
|
|
|
entry = l_new(struct attr_entry, 1);
|
|
|
|
|
|
|
|
entry->type = tag;
|
|
|
|
entry->data = va_arg(args, void *);
|
|
|
|
entry->handler = handler_for_type(tag);
|
|
|
|
l_queue_push_tail(entries, entry);
|
|
|
|
|
|
|
|
if (!entry->handler)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
tag = va_arg(args, enum nl80211_attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
|
|
|
for (e = l_queue_get_entries(entries); e; e = e->next) {
|
|
|
|
entry = e->data;
|
|
|
|
|
|
|
|
if (entry->type == type)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!e)
|
|
|
|
continue;
|
|
|
|
|
2019-10-25 20:46:58 +02:00
|
|
|
if (entry->present) {
|
|
|
|
ret = -EALREADY;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2022-07-26 19:09:20 +02:00
|
|
|
/* For nested attributes use the outer attribute as data */
|
|
|
|
if (entry->handler == extract_nested)
|
|
|
|
data = &attr;
|
|
|
|
|
2019-09-20 04:29:27 +02:00
|
|
|
if (!entry->handler(data, len, entry->data)) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
2019-10-25 20:46:58 +02:00
|
|
|
|
|
|
|
entry->present = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = -ENOENT;
|
|
|
|
|
|
|
|
for (e = l_queue_get_entries(entries); e; e = e->next) {
|
|
|
|
entry = e->data;
|
|
|
|
|
2020-02-07 12:39:10 +01:00
|
|
|
if (entry->handler == extract_flag) {
|
|
|
|
*(bool *) entry->data = entry->present;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-10-25 20:46:58 +02:00
|
|
|
if (entry->present)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
goto done;
|
2019-09-20 04:29:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
done:
|
|
|
|
l_queue_destroy(entries, l_free);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2023-11-14 16:26:49 +01:00
|
|
|
struct l_genl_msg *nl80211_build_deauthenticate(uint32_t ifindex,
|
|
|
|
const uint8_t addr[static 6],
|
|
|
|
uint16_t reason_code)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_DEAUTHENTICATE, 128);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_REASON_CODE, 2, &reason_code);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2023-11-14 16:20:16 +01:00
|
|
|
struct l_genl_msg *nl80211_build_disconnect(uint32_t ifindex,
|
|
|
|
uint16_t reason_code)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_DISCONNECT, 64);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_REASON_CODE, 2, &reason_code);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2023-11-14 16:49:39 +01:00
|
|
|
struct l_genl_msg *nl80211_build_del_station(uint32_t ifindex,
|
|
|
|
const uint8_t addr[static 6],
|
|
|
|
uint16_t reason_code,
|
|
|
|
uint8_t subtype)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_DEL_STATION, 64);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_MAC, 6, addr);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_MGMT_SUBTYPE, 1, &subtype);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_REASON_CODE, 2, &reason_code);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2018-10-08 22:44:09 +02:00
|
|
|
struct l_genl_msg *nl80211_build_new_key_group(uint32_t ifindex, uint32_t cipher,
|
|
|
|
uint8_t key_id, const uint8_t *key,
|
|
|
|
size_t key_len, const uint8_t *ctr,
|
2018-10-08 22:44:12 +02:00
|
|
|
size_t ctr_len, const uint8_t *addr)
|
2018-10-08 22:44:09 +02:00
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
2021-10-07 22:49:53 +02:00
|
|
|
uint32_t type = NL80211_KEYTYPE_GROUP;
|
2018-10-08 22:44:09 +02:00
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_NEW_KEY, 512);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
|
2018-10-08 22:44:12 +02:00
|
|
|
if (addr)
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
|
|
|
|
l_genl_msg_enter_nested(msg, NL80211_ATTR_KEY);
|
2018-10-08 22:44:09 +02:00
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_DATA, key_len, key);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_CIPHER, 4, &cipher);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_IDX, 1, &key_id);
|
|
|
|
|
|
|
|
if (ctr)
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_SEQ, ctr_len, ctr);
|
|
|
|
|
2021-10-07 22:49:53 +02:00
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_TYPE, 4, &type);
|
|
|
|
l_genl_msg_enter_nested(msg, NL80211_KEY_DEFAULT_TYPES);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST,
|
2018-10-08 22:44:12 +02:00
|
|
|
0, NULL);
|
2021-10-07 22:49:53 +02:00
|
|
|
l_genl_msg_leave_nested(msg);
|
2018-10-08 22:44:09 +02:00
|
|
|
l_genl_msg_leave_nested(msg);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2023-11-14 16:57:36 +01:00
|
|
|
struct l_genl_msg *nl80211_build_new_key_pairwise(uint32_t ifindex,
|
|
|
|
uint32_t cipher,
|
|
|
|
const uint8_t addr[static 6],
|
|
|
|
const uint8_t *tk,
|
|
|
|
size_t tk_len,
|
|
|
|
uint8_t key_id)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_NEW_KEY, 512);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_KEY_DATA, tk_len, tk);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_KEY_CIPHER, 4, &cipher);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_KEY_IDX, 1, &key_id);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2023-11-14 17:03:58 +01:00
|
|
|
struct l_genl_msg *nl80211_build_new_rx_key_pairwise(uint32_t ifindex,
|
|
|
|
uint32_t cipher,
|
|
|
|
const uint8_t addr[static 6],
|
|
|
|
const uint8_t *tk,
|
|
|
|
size_t tk_len,
|
|
|
|
uint8_t key_id)
|
|
|
|
{
|
|
|
|
uint8_t key_mode = NL80211_KEY_NO_TX;
|
|
|
|
uint32_t key_type = NL80211_KEYTYPE_PAIRWISE;
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_NEW_KEY, 512);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
|
|
|
|
l_genl_msg_enter_nested(msg, NL80211_ATTR_KEY);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_DATA, tk_len, tk);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_CIPHER, 4, &cipher);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_IDX, 1, &key_id);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_MODE, 1, &key_mode);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_TYPE, 4, &key_type);
|
|
|
|
|
|
|
|
l_genl_msg_leave_nested(msg);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2023-11-14 17:09:07 +01:00
|
|
|
struct l_genl_msg *nl80211_build_rekey_offload(uint32_t ifindex,
|
|
|
|
const uint8_t *kek,
|
|
|
|
const uint8_t *kck,
|
|
|
|
uint64_t replay_ctr)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_SET_REKEY_OFFLOAD, 512);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
|
|
|
|
l_genl_msg_enter_nested(msg, NL80211_ATTR_REKEY_DATA);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_REKEY_DATA_KEK,
|
|
|
|
NL80211_KEK_LEN, kek);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_REKEY_DATA_KCK,
|
|
|
|
NL80211_KCK_LEN, kck);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_REKEY_DATA_REPLAY_CTR,
|
|
|
|
NL80211_REPLAY_CTR_LEN, &replay_ctr);
|
|
|
|
|
|
|
|
l_genl_msg_leave_nested(msg);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2018-10-08 22:44:09 +02:00
|
|
|
static struct l_genl_msg *nl80211_build_set_station(uint32_t ifindex,
|
|
|
|
const uint8_t *addr,
|
|
|
|
struct nl80211_sta_flag_update *flags)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_SET_STATION, 512);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_STA_FLAGS2,
|
|
|
|
sizeof(struct nl80211_sta_flag_update), flags);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_station_authorized(uint32_t ifindex,
|
|
|
|
const uint8_t *addr)
|
|
|
|
{
|
|
|
|
struct nl80211_sta_flag_update flags = {
|
|
|
|
.mask = (1 << NL80211_STA_FLAG_AUTHORIZED),
|
|
|
|
.set = (1 << NL80211_STA_FLAG_AUTHORIZED),
|
|
|
|
};
|
|
|
|
|
|
|
|
return nl80211_build_set_station(ifindex, addr, &flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_station_associated(uint32_t ifindex,
|
|
|
|
const uint8_t *addr)
|
|
|
|
{
|
|
|
|
struct nl80211_sta_flag_update flags = {
|
|
|
|
.mask = (1 << NL80211_STA_FLAG_AUTHENTICATED) |
|
|
|
|
(1 << NL80211_STA_FLAG_ASSOCIATED),
|
|
|
|
.set = (1 << NL80211_STA_FLAG_AUTHENTICATED) |
|
|
|
|
(1 << NL80211_STA_FLAG_ASSOCIATED),
|
|
|
|
};
|
|
|
|
|
|
|
|
return nl80211_build_set_station(ifindex, addr, &flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_station_unauthorized(uint32_t ifindex,
|
|
|
|
const uint8_t *addr)
|
|
|
|
{
|
|
|
|
struct nl80211_sta_flag_update flags = {
|
|
|
|
.mask = (1 << NL80211_STA_FLAG_AUTHORIZED),
|
|
|
|
.set = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
return nl80211_build_set_station(ifindex, addr, &flags);
|
|
|
|
}
|
2018-10-08 22:44:10 +02:00
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_set_key(uint32_t ifindex, uint8_t key_index)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_SET_KEY, 128);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
|
|
|
|
l_genl_msg_enter_nested(msg, NL80211_ATTR_KEY);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_IDX, 1, &key_index);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_DEFAULT, 0, NULL);
|
|
|
|
l_genl_msg_enter_nested(msg, NL80211_KEY_DEFAULT_TYPES);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST,
|
|
|
|
0, NULL);
|
|
|
|
l_genl_msg_leave_nested(msg);
|
|
|
|
l_genl_msg_leave_nested(msg);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_get_key(uint32_t ifindex, uint8_t key_index)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_GET_KEY, 128);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_KEY_IDX, 1, &key_index);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
2018-10-08 22:44:11 +02:00
|
|
|
|
|
|
|
const void *nl80211_parse_get_key_seq(struct l_genl_msg *msg)
|
|
|
|
{
|
|
|
|
struct l_genl_attr attr, nested;
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
|
|
|
|
if (l_genl_msg_get_error(msg) < 0 || !l_genl_attr_init(&attr, msg)) {
|
|
|
|
l_error("GET_KEY failed for the GTK: %i",
|
|
|
|
l_genl_msg_get_error(msg));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
|
|
|
if (type != NL80211_ATTR_KEY)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != NL80211_ATTR_KEY || !l_genl_attr_recurse(&attr, &nested)) {
|
|
|
|
l_error("Can't recurse into ATTR_KEY in GET_KEY reply");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&nested, &type, &len, &data)) {
|
|
|
|
if (type != NL80211_KEY_SEQ)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != NL80211_KEY_SEQ) {
|
|
|
|
l_error("KEY_SEQ not returned in GET_KEY reply");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len != 6) {
|
|
|
|
l_error("KEY_SEQ length != 6 in GET_KEY reply");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2019-06-27 00:15:53 +02:00
|
|
|
|
|
|
|
struct l_genl_msg *nl80211_build_cmd_frame(uint32_t ifindex,
|
2022-09-22 00:31:45 +02:00
|
|
|
uint16_t frame_type,
|
2019-06-27 00:15:53 +02:00
|
|
|
const uint8_t *addr,
|
|
|
|
const uint8_t *to,
|
|
|
|
uint32_t freq,
|
|
|
|
struct iovec *iov,
|
|
|
|
size_t iov_len)
|
|
|
|
{
|
|
|
|
struct l_genl_msg *msg;
|
|
|
|
struct iovec iovs[iov_len + 1];
|
2022-09-22 00:31:45 +02:00
|
|
|
uint8_t hdr[24];
|
2019-06-27 00:15:53 +02:00
|
|
|
|
2022-09-22 00:31:45 +02:00
|
|
|
memset(hdr, 0, 24);
|
2019-06-27 00:15:53 +02:00
|
|
|
|
2022-09-22 00:31:45 +02:00
|
|
|
l_put_le16(frame_type, hdr + 0);
|
|
|
|
memcpy(hdr + 4, to, 6);
|
|
|
|
memcpy(hdr + 10, addr, 6);
|
|
|
|
memcpy(hdr + 16, to, 6);
|
2019-06-27 00:15:53 +02:00
|
|
|
|
2022-09-22 00:31:45 +02:00
|
|
|
iovs[0].iov_base = hdr;
|
|
|
|
iovs[0].iov_len = sizeof(hdr);
|
2019-06-27 00:15:53 +02:00
|
|
|
memcpy(iovs + 1, iov, sizeof(*iov) * iov_len);
|
|
|
|
|
|
|
|
msg = l_genl_msg_new_sized(NL80211_CMD_FRAME, 128 + 512);
|
|
|
|
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &ifindex);
|
|
|
|
l_genl_msg_append_attr(msg, NL80211_ATTR_WIPHY_FREQ, 4, &freq);
|
|
|
|
l_genl_msg_append_attrv(msg, NL80211_ATTR_FRAME, iovs, iov_len + 1);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
2021-09-18 21:19:41 +02:00
|
|
|
|
|
|
|
int nl80211_parse_chandef(struct l_genl_msg *msg, struct band_chandef *out)
|
|
|
|
{
|
|
|
|
struct band_chandef t;
|
|
|
|
|
|
|
|
if (nl80211_parse_attrs(msg,
|
|
|
|
NL80211_ATTR_WIPHY_FREQ, &t.frequency,
|
|
|
|
NL80211_ATTR_CHANNEL_WIDTH, &t.channel_width,
|
|
|
|
NL80211_ATTR_CENTER_FREQ1, &t.center1_frequency,
|
|
|
|
NL80211_ATTR_UNSPEC) < 0)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
t.center2_frequency = 0;
|
|
|
|
|
|
|
|
/* Try to parse CENTER_FREQ2, but it is given only for 80P80 */
|
|
|
|
if (t.channel_width == NL80211_CHAN_WIDTH_80P80 &&
|
|
|
|
nl80211_parse_attrs(msg,
|
|
|
|
NL80211_ATTR_CENTER_FREQ2, &t.center2_frequency,
|
|
|
|
NL80211_ATTR_UNSPEC) < 0)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
memcpy(out, &t, sizeof(t));
|
|
|
|
return 0;
|
|
|
|
}
|
2022-08-03 23:36:34 +02:00
|
|
|
|
|
|
|
int nl80211_parse_supported_frequencies(struct l_genl_attr *band_freqs,
|
|
|
|
struct scan_freq_set *supported_list,
|
2022-12-16 22:27:35 +01:00
|
|
|
struct band_freq_attrs *list,
|
|
|
|
size_t num_channels)
|
2022-08-03 23:36:34 +02:00
|
|
|
{
|
|
|
|
uint16_t type, len;
|
|
|
|
const void *data;
|
|
|
|
struct l_genl_attr attr;
|
|
|
|
struct l_genl_attr nested;
|
2022-12-16 22:27:35 +01:00
|
|
|
uint8_t channel;
|
2022-08-03 23:36:34 +02:00
|
|
|
|
|
|
|
if (!l_genl_attr_recurse(band_freqs, &nested))
|
|
|
|
return -EBADMSG;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&nested, NULL, NULL, NULL)) {
|
|
|
|
uint32_t freq = 0;
|
2022-12-16 22:27:35 +01:00
|
|
|
struct band_freq_attrs freq_attr = { 0 };
|
2022-08-03 23:36:34 +02:00
|
|
|
|
|
|
|
if (!l_genl_attr_recurse(&nested, &attr))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
while (l_genl_attr_next(&attr, &type, &len, &data)) {
|
|
|
|
switch (type) {
|
|
|
|
case NL80211_FREQUENCY_ATTR_FREQ:
|
|
|
|
freq = *((uint32_t *) data);
|
2022-12-16 22:27:35 +01:00
|
|
|
freq_attr.supported = true;
|
2022-08-03 23:36:34 +02:00
|
|
|
break;
|
|
|
|
case NL80211_FREQUENCY_ATTR_DISABLED:
|
2022-12-16 22:27:35 +01:00
|
|
|
freq_attr.disabled = true;
|
|
|
|
break;
|
|
|
|
case NL80211_FREQUENCY_ATTR_NO_IR:
|
|
|
|
freq_attr.no_ir = true;
|
2022-08-03 23:36:34 +02:00
|
|
|
break;
|
2022-12-20 22:43:10 +01:00
|
|
|
case NL80211_FREQUENCY_ATTR_NO_HT40_MINUS:
|
|
|
|
freq_attr.no_ht40_minus = true;
|
|
|
|
break;
|
|
|
|
case NL80211_FREQUENCY_ATTR_NO_HT40_PLUS:
|
|
|
|
freq_attr.no_ht40_plus = true;
|
|
|
|
break;
|
|
|
|
case NL80211_FREQUENCY_ATTR_NO_80MHZ:
|
|
|
|
freq_attr.no_80mhz = true;
|
|
|
|
break;
|
|
|
|
case NL80211_FREQUENCY_ATTR_NO_160MHZ:
|
|
|
|
freq_attr.no_160mhz = true;
|
|
|
|
break;
|
|
|
|
case NL80211_FREQUENCY_ATTR_NO_HE:
|
|
|
|
freq_attr.no_he = true;
|
|
|
|
break;
|
2022-12-30 23:12:15 +01:00
|
|
|
case NL80211_FREQUENCY_ATTR_MAX_TX_POWER:
|
|
|
|
freq_attr.tx_power = *((uint32_t *) data) / 100;
|
|
|
|
break;
|
2022-08-03 23:36:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!freq)
|
|
|
|
continue;
|
|
|
|
|
2022-12-16 22:27:35 +01:00
|
|
|
channel = band_freq_to_channel(freq, NULL);
|
|
|
|
if (!channel)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (L_WARN_ON(channel > num_channels))
|
|
|
|
continue;
|
|
|
|
|
2022-08-03 23:36:34 +02:00
|
|
|
if (supported_list)
|
|
|
|
scan_freq_set_add(supported_list, freq);
|
|
|
|
|
2022-12-16 22:27:35 +01:00
|
|
|
list[channel] = freq_attr;
|
2022-08-03 23:36:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|