Commit a4d68b16 authored by Geliang Tang's avatar Geliang Tang Committed by Jakub Kicinski

mptcp: set error messages for set_flags

In addition to returning the error value, this patch also sets an error
messages with GENL_SET_ERR_MSG or NL_SET_ERR_MSG_ATTR both for pm_netlink.c
and pm_userspace.c. It will help the userspace to identify the issue.
Signed-off-by: default avatarGeliang Tang <tanggeliang@kylinos.cn>
Reviewed-by: default avatarMatthieu Baerts (NGI0) <matttbe@kernel.org>
Signed-off-by: default avatarMatthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://lore.kernel.org/r/20240305-upstream-net-next-20240304-mptcp-misc-cleanup-v1-3-c436ba5e569b@kernel.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 6a42477f
...@@ -1908,8 +1908,10 @@ int mptcp_pm_nl_set_flags(struct sk_buff *skb, struct genl_info *info) ...@@ -1908,8 +1908,10 @@ int mptcp_pm_nl_set_flags(struct sk_buff *skb, struct genl_info *info)
if (addr.addr.family == AF_UNSPEC) { if (addr.addr.family == AF_UNSPEC) {
lookup_by_id = 1; lookup_by_id = 1;
if (!addr.addr.id) if (!addr.addr.id) {
GENL_SET_ERR_MSG(info, "missing required inputs");
return -EOPNOTSUPP; return -EOPNOTSUPP;
}
} }
if (addr.flags & MPTCP_PM_ADDR_FLAG_BACKUP) if (addr.flags & MPTCP_PM_ADDR_FLAG_BACKUP)
...@@ -1919,11 +1921,13 @@ int mptcp_pm_nl_set_flags(struct sk_buff *skb, struct genl_info *info) ...@@ -1919,11 +1921,13 @@ int mptcp_pm_nl_set_flags(struct sk_buff *skb, struct genl_info *info)
entry = __lookup_addr(pernet, &addr.addr, lookup_by_id); entry = __lookup_addr(pernet, &addr.addr, lookup_by_id);
if (!entry) { if (!entry) {
spin_unlock_bh(&pernet->lock); spin_unlock_bh(&pernet->lock);
GENL_SET_ERR_MSG(info, "address not found");
return -EINVAL; return -EINVAL;
} }
if ((addr.flags & MPTCP_PM_ADDR_FLAG_FULLMESH) && if ((addr.flags & MPTCP_PM_ADDR_FLAG_FULLMESH) &&
(entry->flags & MPTCP_PM_ADDR_FLAG_SIGNAL)) { (entry->flags & MPTCP_PM_ADDR_FLAG_SIGNAL)) {
spin_unlock_bh(&pernet->lock); spin_unlock_bh(&pernet->lock);
GENL_SET_ERR_MSG(info, "invalid addr flags");
return -EINVAL; return -EINVAL;
} }
......
...@@ -563,13 +563,17 @@ int mptcp_userspace_pm_set_flags(struct sk_buff *skb, struct genl_info *info) ...@@ -563,13 +563,17 @@ int mptcp_userspace_pm_set_flags(struct sk_buff *skb, struct genl_info *info)
token_val = nla_get_u32(token); token_val = nla_get_u32(token);
msk = mptcp_token_get_sock(net, token_val); msk = mptcp_token_get_sock(net, token_val);
if (!msk) if (!msk) {
NL_SET_ERR_MSG_ATTR(info->extack, token, "invalid token");
return ret; return ret;
}
sk = (struct sock *)msk; sk = (struct sock *)msk;
if (!mptcp_pm_is_userspace(msk)) if (!mptcp_pm_is_userspace(msk)) {
GENL_SET_ERR_MSG(info, "userspace PM not selected");
goto set_flags_err; goto set_flags_err;
}
ret = mptcp_pm_parse_entry(attr, info, false, &loc); ret = mptcp_pm_parse_entry(attr, info, false, &loc);
if (ret < 0) if (ret < 0)
...@@ -583,6 +587,7 @@ int mptcp_userspace_pm_set_flags(struct sk_buff *skb, struct genl_info *info) ...@@ -583,6 +587,7 @@ int mptcp_userspace_pm_set_flags(struct sk_buff *skb, struct genl_info *info)
if (loc.addr.family == AF_UNSPEC || if (loc.addr.family == AF_UNSPEC ||
rem.addr.family == AF_UNSPEC) { rem.addr.family == AF_UNSPEC) {
GENL_SET_ERR_MSG(info, "invalid address families");
ret = -EINVAL; ret = -EINVAL;
goto set_flags_err; goto set_flags_err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment