From: Jakub Kicinski <kuba@kernel.org>
To: Florent Fourcot <florent.fourcot@wifirst.fr>, netdev@vger.kernel.org
Cc: Brian Baboch <brian.baboch@wifirst.fr>
Subject: Re: [PATCH net-next] rtnetlink: return ENODEV when ifname does not exist and group is given
Date: Thu, 31 Mar 2022 20:36:37 -0700 [thread overview]
Message-ID: <20220331203637.004709d4@kernel.org> (raw)
In-Reply-To: <20220331123502.6472-1-florent.fourcot@wifirst.fr>
On Thu, 31 Mar 2022 14:35:02 +0200 Florent Fourcot wrote:
> From: Florent Fourcot <florent.fourcot@wifirst.fr>
> To: netdev@vger.kernel.org
> Cc: Florent Fourcot <florent.fourcot@wifirst.fr>, Brian Baboch <brian.baboch@wifirst.fr>
Please run the patches thru ./scripts/get_maintainer.pl.
netdev is high volume (and Gmail hates it), we really need people
to CC potential reviewers.
> When the interface does not exist, and a group is given, the given
> parameters are being set to all interfaces of the given group. The given
> IFNAME/ALT_IF_NAME are being ignored in that case.
>
> That can be dangerous since a typo (or a deleted interface) can produce
> weird side effects for caller:
>
> Case 1:
>
> IFLA_IFNAME=valid_interface
> IFLA_GROUP=1
> MTU=1234
>
> Case 1 will update MTU and group of the given interface "valid_interface".
>
> Case 2:
>
> IFLA_IFNAME=doesnotexist
> IFLA_GROUP=1
> MTU=1234
>
> Case 2 will update MTU of all interfaces in group 1. IFLA_IFNAME is
> ignored in this case
>
> This behaviour is not consistent and dangerous. In order to fix this issue,
> we now return ENODEV when the given IFNAME does not exist.
> diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
> index 159c9c61e6af..3313419bbcba 100644
> --- a/net/core/rtnetlink.c
> +++ b/net/core/rtnetlink.c
> @@ -3417,10 +3417,15 @@ static int __rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh,
> }
>
> if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
> - if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
> + if (ifm->ifi_index == 0 && tb[IFLA_GROUP]) {
> + if (tb[IFLA_IFNAME] || tb[IFLA_ALT_IFNAME]) {
> + NL_SET_ERR_MSG(extack, "Cannot find interface with given name");
> + return -ENODEV;
> + }
> return rtnl_group_changelink(skb, net,
> nla_get_u32(tb[IFLA_GROUP]),
> ifm, extack, tb);
> + }
> return -ENODEV;
> }
Would it be slightly cleaner to have a similar check in
validate_linkmsg()? Something like:
if (!dev && !ifm->ifi_index && tb[IFLA_GROUP] &&
(tb[IFLA_IFNAME] || tb[IFLA_ALT_IFNAME]))
next prev parent reply other threads:[~2022-04-01 3:36 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-31 12:35 [PATCH net-next] rtnetlink: return ENODEV when ifname does not exist and group is given Florent Fourcot
2022-04-01 3:36 ` Jakub Kicinski [this message]
2022-04-01 13:57 ` Florent Fourcot
2022-04-01 17:25 ` Jakub Kicinski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220331203637.004709d4@kernel.org \
--to=kuba@kernel.org \
--cc=brian.baboch@wifirst.fr \
--cc=florent.fourcot@wifirst.fr \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).