]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
ieee802154: 6lowpan: Validate link netns in newlink() of rtnl_link_ops
authorXiao Liang <shaw.leon@gmail.com>
Wed, 19 Feb 2025 12:50:30 +0000 (20:50 +0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 21 Feb 2025 23:28:02 +0000 (15:28 -0800)
commit3533717581dd72c9559b508e0feaede426d825aa
tree49c880ef3eb474f7a692ed0acff5a1464924c520
parentcf517ac16ad96f3953d65ea198c0b310a1ffa14f
ieee802154: 6lowpan: Validate link netns in newlink() of rtnl_link_ops

Device denoted by IFLA_LINK is in link_net (IFLA_LINK_NETNSID) or
source netns by design, but 6lowpan uses dev_net.

Note dev->netns_local is set to true and currently link_net is
implemented via a netns change. These together effectively reject
IFLA_LINK_NETNSID.

This patch adds a validation to ensure link_net is either NULL or
identical to dev_net. Thus it would be fine to continue using dev_net
when rtnetlink core begins to create devices directly in target netns.

Signed-off-by: Xiao Liang <shaw.leon@gmail.com>
Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Link: https://patch.msgid.link/20250219125039.18024-5-shaw.leon@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/ieee802154/6lowpan/core.c