aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Kicinski <kuba@kernel.org>2023-04-24 17:07:42 -0700
committerMichal Kubecek <mkubecek@suse.cz>2023-05-08 00:05:49 +0200
commit3d1f1c1e5070ce37190ada00fdf0440523020780 (patch)
tree8d79119a6a1607e855cfae026355869727cba18f
parentf9bbc93838d56f47ce3f2bb7f585df3e5d33abf1 (diff)
downloadethtool-3d1f1c1e5070ce37190ada00fdf0440523020780.tar.gz
netlink: settings: fix netlink support when PLCA is not present
PLCA support threw the PLCA commands as required into the initial support check at the start of nl_gset(). That's not correct. The initial check (AFAIU) queries for the base support in the kernel i.e. support for the commands which correspond to ioctls. If those are not available (presumably very old kernel or kernel without ethtool-netlink) we're better off using the ioctl. For new functionality, however, falling back to ioctl is counterproductive. New functionality (like PLCA) isn't supported via the ioctl, anyway, and we're losing all the other netlink-only functionality (I noticed that the link down statistics are gone). After much deliberation I decided to add a second check for command support in gset_request(). Seems cleanest and if any of the non-required commands narrows the capabilities (e.g. does not support dump) we should just skip it too. Falling back to ioctl would again be a regression. Fixes: cf02fc1b1095 ("add support for IEEE 802.3cg-2019 Clause 148") Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r--netlink/settings.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/netlink/settings.c b/netlink/settings.c
index 168b182..4fd75d2 100644
--- a/netlink/settings.c
+++ b/netlink/settings.c
@@ -963,13 +963,17 @@ int plca_status_reply_cb(const struct nlmsghdr *nlhdr, void *data)
return MNL_CB_OK;
}
-static int gset_request(struct nl_context *nlctx, uint8_t msg_type,
+static int gset_request(struct cmd_context *ctx, uint8_t msg_type,
uint16_t hdr_attr, mnl_cb_t cb)
{
+ struct nl_context *nlctx = ctx->nlctx;
struct nl_socket *nlsk = nlctx->ethnl_socket;
u32 flags;
int ret;
+ if (netlink_cmd_check(ctx, msg_type, true))
+ return 0;
+
flags = get_stats_flag(nlctx, msg_type, hdr_attr);
ret = nlsock_prep_get_request(nlsk, msg_type, hdr_attr, flags);
@@ -980,61 +984,58 @@ static int gset_request(struct nl_context *nlctx, uint8_t msg_type,
int nl_gset(struct cmd_context *ctx)
{
- struct nl_context *nlctx = ctx->nlctx;
int ret;
+ /* Check for the base set of commands */
if (netlink_cmd_check(ctx, ETHTOOL_MSG_LINKMODES_GET, true) ||
netlink_cmd_check(ctx, ETHTOOL_MSG_LINKINFO_GET, true) ||
netlink_cmd_check(ctx, ETHTOOL_MSG_WOL_GET, true) ||
netlink_cmd_check(ctx, ETHTOOL_MSG_DEBUG_GET, true) ||
- netlink_cmd_check(ctx, ETHTOOL_MSG_LINKSTATE_GET, true) ||
- netlink_cmd_check(ctx, ETHTOOL_MSG_PLCA_GET_CFG, true) ||
- netlink_cmd_check(ctx, ETHTOOL_MSG_PLCA_GET_STATUS, true))
+ netlink_cmd_check(ctx, ETHTOOL_MSG_LINKSTATE_GET, true))
return -EOPNOTSUPP;
- nlctx->suppress_nlerr = 1;
+ ctx->nlctx->suppress_nlerr = 1;
- ret = gset_request(nlctx, ETHTOOL_MSG_LINKMODES_GET,
+ ret = gset_request(ctx, ETHTOOL_MSG_LINKMODES_GET,
ETHTOOL_A_LINKMODES_HEADER, linkmodes_reply_cb);
if (ret == -ENODEV)
return ret;
- ret = gset_request(nlctx, ETHTOOL_MSG_LINKINFO_GET,
+ ret = gset_request(ctx, ETHTOOL_MSG_LINKINFO_GET,
ETHTOOL_A_LINKINFO_HEADER, linkinfo_reply_cb);
if (ret == -ENODEV)
return ret;
- ret = gset_request(nlctx, ETHTOOL_MSG_WOL_GET, ETHTOOL_A_WOL_HEADER,
+ ret = gset_request(ctx, ETHTOOL_MSG_WOL_GET, ETHTOOL_A_WOL_HEADER,
wol_reply_cb);
if (ret == -ENODEV)
return ret;
- ret = gset_request(nlctx, ETHTOOL_MSG_PLCA_GET_CFG,
+ ret = gset_request(ctx, ETHTOOL_MSG_PLCA_GET_CFG,
ETHTOOL_A_PLCA_HEADER, plca_cfg_reply_cb);
if (ret == -ENODEV)
return ret;
- ret = gset_request(nlctx, ETHTOOL_MSG_DEBUG_GET, ETHTOOL_A_DEBUG_HEADER,
+ ret = gset_request(ctx, ETHTOOL_MSG_DEBUG_GET, ETHTOOL_A_DEBUG_HEADER,
debug_reply_cb);
if (ret == -ENODEV)
return ret;
- ret = gset_request(nlctx, ETHTOOL_MSG_LINKSTATE_GET,
+ ret = gset_request(ctx, ETHTOOL_MSG_LINKSTATE_GET,
ETHTOOL_A_LINKSTATE_HEADER, linkstate_reply_cb);
if (ret == -ENODEV)
return ret;
- ret = gset_request(nlctx, ETHTOOL_MSG_PLCA_GET_STATUS,
+ ret = gset_request(ctx, ETHTOOL_MSG_PLCA_GET_STATUS,
ETHTOOL_A_PLCA_HEADER, plca_status_reply_cb);
if (ret == -ENODEV)
return ret;
- if (!nlctx->no_banner) {
+ if (!ctx->nlctx->no_banner) {
printf("No data available\n");
return 75;
}
-
return 0;
}