summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2024-07-11 15:11:07 +0200
committerGitHub <noreply@github.com>2024-07-11 15:11:07 +0200
commitb391fd7a77f5cb6fd34650dc7a90bb4f8c120131 (patch)
tree2e6530a171faa254b3e1a6e2d16f40b023592947
parent1a8a0bcf725520820802ad433db22d8f64fbed6c (diff)
parentbc13278eae5e49ce8bcf8cd964c97f05660e81b3 (diff)
Merge pull request #211 from jow-/hwsim-support
Hwsim support
-rw-r--r--include/linux/mac80211_hwsim.h83
-rw-r--r--lib/nl80211.c211
2 files changed, 275 insertions, 19 deletions
diff --git a/include/linux/mac80211_hwsim.h b/include/linux/mac80211_hwsim.h
new file mode 100644
index 0000000..0f21885
--- /dev/null
+++ b/include/linux/mac80211_hwsim.h
@@ -0,0 +1,83 @@
+/* Upstream source:
+ * https://github.com/torvalds/linux/blob/master/drivers/net/wireless/virtual/mac80211_hwsim.h
+ */
+
+#ifndef __LINUX_MAC80211_HWSIM_H
+#define __LINUX_MAC80211_HWSIM_H
+
+#include <stdint.h>
+#include <linux/nl80211.h>
+
+enum hwsim_commands {
+ HWSIM_CMD_OFFSET = NL80211_CMD_MAX,
+ HWSIM_CMD_REGISTER,
+ HWSIM_CMD_FRAME,
+ HWSIM_CMD_TX_INFO_FRAME,
+ HWSIM_CMD_NEW_RADIO,
+ HWSIM_CMD_DEL_RADIO,
+ HWSIM_CMD_GET_RADIO,
+ HWSIM_CMD_ADD_MAC_ADDR,
+ HWSIM_CMD_DEL_MAC_ADDR,
+ HWSIM_CMD_START_PMSR,
+ HWSIM_CMD_ABORT_PMSR,
+ HWSIM_CMD_REPORT_PMSR,
+};
+
+enum hwsim_attrs {
+ HWSIM_ATTR_UNSPEC,
+ HWSIM_ATTR_ADDR_RECEIVER,
+ HWSIM_ATTR_ADDR_TRANSMITTER,
+ HWSIM_ATTR_FRAME,
+ HWSIM_ATTR_FLAGS,
+ HWSIM_ATTR_RX_RATE,
+ HWSIM_ATTR_SIGNAL,
+ HWSIM_ATTR_TX_INFO,
+ HWSIM_ATTR_COOKIE,
+ HWSIM_ATTR_CHANNELS,
+ HWSIM_ATTR_RADIO_ID,
+ HWSIM_ATTR_REG_HINT_ALPHA2,
+ HWSIM_ATTR_REG_CUSTOM_REG,
+ HWSIM_ATTR_REG_STRICT_REG,
+ HWSIM_ATTR_SUPPORT_P2P_DEVICE,
+ HWSIM_ATTR_USE_CHANCTX,
+ HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE,
+ HWSIM_ATTR_RADIO_NAME,
+ HWSIM_ATTR_NO_VIF,
+ HWSIM_ATTR_FREQ,
+ HWSIM_ATTR_PAD,
+ HWSIM_ATTR_TX_INFO_FLAGS,
+ HWSIM_ATTR_PERM_ADDR,
+ HWSIM_ATTR_IFTYPE_SUPPORT,
+ HWSIM_ATTR_CIPHER_SUPPORT,
+ HWSIM_ATTR_MLO_SUPPORT,
+ HWSIM_ATTR_PMSR_SUPPORT,
+ HWSIM_ATTR_PMSR_REQUEST,
+ HWSIM_ATTR_PMSR_RESULT,
+};
+
+enum hwsim_rate_info_attributes {
+ HWSIM_RATE_INFO_ATTR_UNSPEC,
+ HWSIM_RATE_INFO_ATTR_FLAGS,
+ HWSIM_RATE_INFO_ATTR_MCS,
+ HWSIM_RATE_INFO_ATTR_LEGACY,
+ HWSIM_RATE_INFO_ATTR_NSS,
+ HWSIM_RATE_INFO_ATTR_BW,
+ HWSIM_RATE_INFO_ATTR_HE_GI,
+ HWSIM_RATE_INFO_ATTR_HE_DCM,
+ HWSIM_RATE_INFO_ATTR_HE_RU_ALLOC,
+ HWSIM_RATE_INFO_ATTR_N_BOUNDED_CH,
+ HWSIM_RATE_INFO_ATTR_EHT_GI,
+ HWSIM_RATE_INFO_ATTR_EHT_RU_ALLOC,
+};
+
+struct hwsim_tx_rate {
+ int8_t idx;
+ uint8_t count;
+} __attribute__((packed));
+
+struct hwsim_tx_rate_flag {
+ int8_t idx;
+ uint16_t flags;
+} __attribute__((packed));
+
+#endif /* __LINUX_MAC80211_HWSIM_H */
diff --git a/lib/nl80211.c b/lib/nl80211.c
index fcaffb7..feebaeb 100644
--- a/lib/nl80211.c
+++ b/lib/nl80211.c
@@ -39,6 +39,7 @@ limitations under the License.
#include <linux/nl80211.h>
#include <linux/ieee80211.h>
+#include <linux/mac80211_hwsim.h>
#include <libubox/uloop.h>
#include "ucode/module.h"
@@ -65,6 +66,9 @@ __attribute__((format(printf, 2, 3))) static void
set_error(int errcode, const char *fmt, ...) {
va_list ap;
+ if (errcode == -(NLE_MAX + 1))
+ return;
+
free(last_error.msg);
last_error.code = errcode;
@@ -371,7 +375,7 @@ static const uc_nl_nested_spec_t nl80211_nan_func_nla = {
}
};
-static const uc_nl_nested_spec_t nl80211_peer_measurements_peers_req_data_ftm_nla = {
+static const uc_nl_nested_spec_t nl80211_peer_measurements_type_ftm_nla = {
.headsize = 0,
.nattrs = 13,
.attrs = {
@@ -395,7 +399,7 @@ static const uc_nl_nested_spec_t nl80211_peer_measurements_peers_req_data_nla =
.headsize = 0,
.nattrs = 2,
.attrs = {
- { NL80211_PMSR_TYPE_FTM, "ftm", DT_NESTED, 0, &nl80211_peer_measurements_peers_req_data_ftm_nla },
+ { NL80211_PMSR_TYPE_FTM, "ftm", DT_NESTED, 0, &nl80211_peer_measurements_type_ftm_nla },
{ NL80211_PMSR_REQ_ATTR_GET_AP_TSF, "get_ap_tsf", DT_FLAG, 0, NULL },
}
};
@@ -419,13 +423,34 @@ static const uc_nl_nested_spec_t nl80211_peer_measurements_peers_chan_nla = {
}
};
+static const uc_nl_nested_spec_t nl80211_peer_measurements_peers_resp_data_nla = {
+ .headsize = 0,
+ .nattrs = 1,
+ .attrs = {
+ { NL80211_PMSR_TYPE_FTM, "ftm", DT_NESTED, 0, &nl80211_peer_measurements_type_ftm_nla },
+ }
+};
+
+static const uc_nl_nested_spec_t nl80211_peer_measurements_peers_resp_nla = {
+ .headsize = 0,
+ .nattrs = 5,
+ .attrs = {
+ { NL80211_PMSR_RESP_ATTR_STATUS, "status", DT_U32, 0, NULL },
+ { NL80211_PMSR_RESP_ATTR_HOST_TIME, "host_time", DT_U64, 0, NULL },
+ { NL80211_PMSR_RESP_ATTR_AP_TSF, "ap_tsf", DT_U64, 0, NULL },
+ { NL80211_PMSR_RESP_ATTR_FINAL, "final", DT_FLAG, 0, NULL },
+ { NL80211_PMSR_RESP_ATTR_DATA, "data", DT_NESTED, 0, &nl80211_peer_measurements_peers_resp_data_nla },
+ }
+};
+
static const uc_nl_nested_spec_t nl80211_peer_measurements_peers_nla = {
.headsize = 0,
- .nattrs = 3,
+ .nattrs = 4,
.attrs = {
{ NL80211_PMSR_PEER_ATTR_ADDR, "addr", DT_LLADDR, 0, NULL },
{ NL80211_PMSR_PEER_ATTR_REQ, "req", DT_NESTED, 0, &nl80211_peer_measurements_peers_req_nla },
- { NL80211_PMSR_PEER_ATTR_CHAN, "chan", DT_NESTED, 0, &nl80211_peer_measurements_peers_chan_nla }
+ { NL80211_PMSR_PEER_ATTR_CHAN, "chan", DT_NESTED, 0, &nl80211_peer_measurements_peers_chan_nla },
+ { NL80211_PMSR_PEER_ATTR_RESP, "resp", DT_NESTED, 0, &nl80211_peer_measurements_peers_resp_nla }
}
};
@@ -962,6 +987,78 @@ static const uc_nl_nested_spec_t nl80211_msg = {
}
};
+static const uc_nl_nested_spec_t hwsim_tx_info_struct = {
+ .headsize = sizeof(struct hwsim_tx_rate),
+ .nattrs = 2,
+ .attrs = {
+ { NLA_UNSPEC, "idx", DT_S8, 0, MEMBER(hwsim_tx_rate, idx) },
+ { NLA_UNSPEC, "count", DT_U8, 0, MEMBER(hwsim_tx_rate, count) },
+ }
+};
+
+static const uc_nl_nested_spec_t hwsim_tx_info_flags_struct = {
+ .headsize = sizeof(struct hwsim_tx_rate_flag),
+ .nattrs = 2,
+ .attrs = {
+ { NLA_UNSPEC, "idx", DT_S8, 0, MEMBER(hwsim_tx_rate_flag, idx) },
+ { NLA_UNSPEC, "flags", DT_U16, 0, MEMBER(hwsim_tx_rate_flag, flags) },
+ }
+};
+
+static const uc_nl_nested_spec_t hwsim_pmsr_support_nla = {
+ .headsize = 0,
+ .nattrs = 5,
+ .attrs = {
+ { NL80211_PMSR_ATTR_MAX_PEERS, "max_peers", DT_U32, 0, NULL },
+ { NL80211_PMSR_ATTR_REPORT_AP_TSF, "report_ap_tsf", DT_FLAG, 0, NULL },
+ { NL80211_PMSR_ATTR_RANDOMIZE_MAC_ADDR, "randomize_mac_addr", DT_FLAG, 0, NULL },
+ { NL80211_PMSR_ATTR_TYPE_CAPA, "type_capa", DT_U32, 0, NULL },
+ { NL80211_PMSR_ATTR_PEERS, "peers", DT_NESTED, DF_MULTIPLE|DF_AUTOIDX, &nl80211_peer_measurements_peers_nla },
+ }
+};
+
+static const uc_nl_nested_spec_t hwsim_pmsr_request_nla = {
+ .headsize = 0,
+ .nattrs = 1,
+ .attrs = {
+ { NL80211_ATTR_PEER_MEASUREMENTS, "peer_measurements", DT_NESTED, 0, &nl80211_peer_measurements_nla },
+ }
+};
+
+static const uc_nl_nested_spec_t hwsim_msg = {
+ .headsize = 0,
+ .nattrs = 27,
+ .attrs = {
+ { HWSIM_ATTR_ADDR_RECEIVER, "addr_receiver", DT_LLADDR, 0, NULL },
+ { HWSIM_ATTR_ADDR_TRANSMITTER, "addr_transmitter", DT_LLADDR, 0, NULL },
+ { HWSIM_ATTR_FRAME, "frame", DT_STRING, DF_BINARY, NULL },
+ { HWSIM_ATTR_FLAGS, "flags", DT_U32, 0, NULL },
+ { HWSIM_ATTR_RX_RATE, "rx_rate", DT_U32, 0, NULL },
+ { HWSIM_ATTR_SIGNAL, "signal", DT_U32, 0, NULL },
+ { HWSIM_ATTR_TX_INFO, "tx_info", DT_NESTED, DF_ARRAY, &hwsim_tx_info_struct },
+ { HWSIM_ATTR_COOKIE, "cookie", DT_U64, 0, NULL },
+ { HWSIM_ATTR_CHANNELS, "channels", DT_U32, 0, NULL },
+ { HWSIM_ATTR_RADIO_ID, "radio_id", DT_U32, 0, NULL },
+ { HWSIM_ATTR_REG_HINT_ALPHA2, "reg_hint_alpha2", DT_STRING, DF_BINARY, NULL },
+ { HWSIM_ATTR_REG_CUSTOM_REG, "reg_custom_reg", DT_U32, 0, NULL },
+ { HWSIM_ATTR_REG_STRICT_REG, "reg_strict_reg", DT_FLAG, 0, NULL },
+ { HWSIM_ATTR_SUPPORT_P2P_DEVICE, "support_p2p_device", DT_FLAG, 0, NULL },
+ { HWSIM_ATTR_USE_CHANCTX, "use_chanctx", DT_FLAG, 0, NULL },
+ { HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE, "destroy_radio_on_close", DT_FLAG, 0, NULL },
+ { HWSIM_ATTR_RADIO_NAME, "radio_name", DT_STRING, DF_BINARY, NULL },
+ { HWSIM_ATTR_NO_VIF, "no_vif", DT_FLAG, 0, NULL },
+ { HWSIM_ATTR_FREQ, "freq", DT_U32, 0, NULL },
+ { HWSIM_ATTR_TX_INFO_FLAGS, "tx_info_flags", DT_NESTED, DF_ARRAY, &hwsim_tx_info_flags_struct },
+ { HWSIM_ATTR_PERM_ADDR, "perm_addr", DT_LLADDR, 0, NULL },
+ { HWSIM_ATTR_IFTYPE_SUPPORT, "iftype_support", DT_U32, 0, NULL },
+ { HWSIM_ATTR_CIPHER_SUPPORT, "cipher_support", DT_U32, DF_ARRAY, NULL },
+ { HWSIM_ATTR_MLO_SUPPORT, "mlo_support", DT_FLAG, 0, NULL },
+ { HWSIM_ATTR_PMSR_SUPPORT, "pmsr_support", DT_NESTED, 0, &hwsim_pmsr_support_nla },
+ { HWSIM_ATTR_PMSR_REQUEST, "pmsr_request", DT_NESTED, 0, &hwsim_pmsr_request_nla },
+ { HWSIM_ATTR_PMSR_RESULT, "pmsr_result", DT_NESTED, 0, &hwsim_pmsr_support_nla },
+ }
+};
+
static bool
nla_check_len(struct nlattr *nla, size_t sz)
@@ -1682,6 +1779,30 @@ uc_nl_parse_attr(const uc_nl_attr_spec_t *spec, struct nl_msg *msg, char *base,
break;
case DT_NESTED:
+ if (spec->flags & DF_ARRAY) {
+ const uc_nl_nested_spec_t *nested = spec->auxdata;
+
+ assert(nested != NULL);
+ assert(nested->headsize > 0);
+
+ if (ucv_type(val) != UC_ARRAY)
+ return nla_parse_error(spec, vm, val, "not an array");
+
+ nla = nla_reserve(msg, spec->attr, ucv_array_length(val) * nested->headsize);
+ s = nla_data(nla);
+
+ for (i = 0; i < ucv_array_length(val); i++) {
+ item = ucv_array_get(val, i);
+
+ if (!uc_nl_parse_attrs(msg, s, nested->attrs, nested->nattrs, vm, item))
+ return false;
+
+ s += nested->headsize;
+ }
+
+ return true;
+ }
+
if (!uc_nl_parse_rta_nested(spec, msg, base, vm, val))
return false;
@@ -1821,6 +1942,34 @@ uc_nl_convert_attr(const uc_nl_attr_spec_t *spec, struct nl_msg *msg, char *base
return ucv_string_new(buf);
case DT_NESTED:
+ if (spec->flags & DF_ARRAY) {
+ const uc_nl_nested_spec_t *nested = spec->auxdata;
+
+ assert(nested != NULL);
+ assert(nested->headsize > 0);
+ assert((nla_len(attr) % nested->headsize) == 0);
+
+ v = ucv_array_new_length(vm, nla_len(attr) / nested->headsize);
+
+ for (i = 0; i < nla_len(attr); i += nested->headsize) {
+ uc_value_t *item = ucv_object_new(vm);
+
+ ucv_array_push(v, item);
+
+ bool rv = uc_nl_convert_attrs(msg,
+ nla_data(attr) + i, nla_len(attr) - i, nested->headsize,
+ nested->attrs, nested->nattrs, vm, item);
+
+ if (!rv) {
+ ucv_put(v);
+
+ return NULL;
+ }
+ }
+
+ return v;
+ }
+
return uc_nl_convert_rta_nested(spec, msg, attr, vm);
case DT_HT_MCS:
@@ -1850,8 +1999,6 @@ static struct {
struct nl_sock *sock;
struct nl_sock *evsock;
struct nl_cache *cache;
- struct genl_family *nl80211;
- struct genl_family *nlctrl;
struct uloop_fd evsock_fd;
struct nl_cb *evsock_cb;
} nl80211_conn;
@@ -1868,6 +2015,7 @@ typedef struct {
uc_vm_t *vm;
uc_value_t *res;
bool merge;
+ const uc_nl_nested_spec_t *spec;
} request_state_t;
@@ -1970,7 +2118,7 @@ cb_reply(struct nl_msg *msg, void *arg)
rv = uc_nl_convert_attrs(msg,
genlmsg_attrdata(gnlh, 0), genlmsg_attrlen(gnlh, 0),
- 0, nl80211_msg.attrs, nl80211_msg.nattrs, s->vm, o);
+ 0, s->spec->attrs, s->spec->nattrs, s->vm, o);
if (rv) {
if (hdr->nlmsg_flags & NLM_F_MULTI) {
@@ -2080,7 +2228,15 @@ cb_errno(struct sockaddr_nl *nla, struct nlmsgerr *err, void *arg)
{
int *ret = arg;
- *ret = err->error;
+ if (err->error > 0) {
+ set_error(NLE_RANGE,
+ "Illegal error code %d in netlink reply", err->error);
+
+ *ret = -(NLE_MAX + 1);
+ }
+ else {
+ *ret = -nl_syserr2nlerr(err->error);
+ }
return NL_STOP;
}
@@ -2413,7 +2569,7 @@ uc_nl_request(uc_vm_t *vm, size_t nargs)
uint16_t flagval = 0;
struct nl_msg *msg;
struct nl_cb *cb;
- int ret, id;
+ int ret, id, cid;
if (ucv_type(cmd) != UC_INTEGER || ucv_int64_get(cmd) < 0 ||
(flags != NULL && ucv_type(flags) != UC_INTEGER) ||
@@ -2435,25 +2591,30 @@ uc_nl_request(uc_vm_t *vm, size_t nargs)
if (!msg)
err_return(NLE_NOMEM, NULL);
- id = uc_nl_find_family_id("nl80211");
+ cid = ucv_int64_get(cmd);
+
+ if (cid >= HWSIM_CMD_OFFSET) {
+ id = uc_nl_find_family_id("MAC80211_HWSIM");
+ cid -= HWSIM_CMD_OFFSET;
+ st.spec = &hwsim_msg;
+ }
+ else {
+ id = uc_nl_find_family_id("nl80211");
+ st.merge = (cid == NL80211_CMD_GET_WIPHY);
+ st.spec = &nl80211_msg;
+ }
if (id < 0)
err_return(-id, NULL);
- genlmsg_put(msg, 0, 0, id, 0, flagval, ucv_int64_get(cmd), 0);
+ genlmsg_put(msg, 0, 0, id, 0, flagval, cid, 0);
- if (!uc_nl_parse_attrs(msg, nlmsg_data(nlmsg_hdr(msg)), nl80211_msg.attrs, nl80211_msg.nattrs, vm, payload)) {
+ if (!uc_nl_parse_attrs(msg, nlmsg_data(nlmsg_hdr(msg)), st.spec->attrs, st.spec->nattrs, vm, payload)) {
nlmsg_free(msg);
return NULL;
}
- switch (ucv_int64_get(cmd)) {
- case NL80211_CMD_GET_WIPHY:
- st.merge = true;
- break;
- }
-
cb = nl_cb_alloc(NL_CB_DEFAULT);
if (!cb) {
@@ -2477,7 +2638,7 @@ uc_nl_request(uc_vm_t *vm, size_t nargs)
nl_cb_put(cb);
if (ret < 0)
- err_return(nl_syserr2nlerr(ret), NULL);
+ err_return(ret, NULL);
switch (st.state) {
case STATE_REPLIED:
@@ -2743,6 +2904,18 @@ register_constants(uc_vm_t *vm, uc_value_t *scope)
ADD_CONST(NL80211_CMD_TDLS_CHANNEL_SWITCH);
ADD_CONST(NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH);
+ ADD_CONST(HWSIM_CMD_REGISTER),
+ ADD_CONST(HWSIM_CMD_FRAME),
+ ADD_CONST(HWSIM_CMD_TX_INFO_FRAME),
+ ADD_CONST(HWSIM_CMD_NEW_RADIO),
+ ADD_CONST(HWSIM_CMD_DEL_RADIO),
+ ADD_CONST(HWSIM_CMD_GET_RADIO),
+ ADD_CONST(HWSIM_CMD_ADD_MAC_ADDR),
+ ADD_CONST(HWSIM_CMD_DEL_MAC_ADDR),
+ ADD_CONST(HWSIM_CMD_START_PMSR),
+ ADD_CONST(HWSIM_CMD_ABORT_PMSR),
+ ADD_CONST(HWSIM_CMD_REPORT_PMSR),
+
ADD_CONST(NL80211_IFTYPE_ADHOC);
ADD_CONST(NL80211_IFTYPE_STATION);
ADD_CONST(NL80211_IFTYPE_AP);