From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 05AF63E49F5; Tue, 21 Jul 2026 22:52:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784674338; cv=none; b=ULAfwv51nlr6LlfH3AZ0pAcGrlPC0fGylohsfQl7VA2zoT5JbobBtNQrW7TrwlQ4EUfueksW52vBxBzujXItsZXcFrHvfTCaurxjA2qzyOwELHBGQ5LEQkp/TRPk+n+IHSqE3VaW0ajim308NUqhmmDIECgZ2SPwQKvnkmRXIQM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784674338; c=relaxed/simple; bh=JmaUDif9Ralx3WrogGl233gyINEUq7FaOmDhv/K/f0U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RMiTll+RWgTKOJ0Cuh+b4T+WLDHIY7S/IQYcW+mPB3zv+CyVtjVpTfQEv0p7H82OiIgfVuuBdju9HcDXOwyVxLWRtlXeC5GJy7TXz89U6HjSwxRg2V2KYOFwrUnX9B0B8XL9p1aQP40l5YfTei01FzrLO8qvzJHLv6DTmvPNpgk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xzUBSlGg; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="xzUBSlGg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3F56D1F000E9; Tue, 21 Jul 2026 22:52:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784674336; bh=NBU5YzOuueGXPOwS7nDO1c1AtPafQ4AcFx0PKgf1Rao=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=xzUBSlGgmMPCpnF7busKZHnVWCpz3RLi6EOK/GyLBkmcoAXwgyYVBduYKGZkdC8zQ T8n2gTcOaWOQnppa5LA8NJvne0FejJQVAbiJI26xh5UCUEnk6IBP+tqbeheURZhpy0 nNetqvb06A5kT5uxCGtLqjwjA+skdnYvoZaxq+90= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Xiao Liang , Maoyi Xie , Kuniyuki Iwashima , Jakub Kicinski Subject: [PATCH 5.10 496/699] xfrm: xfrm_interface: require CAP_NET_ADMIN in the device netns for changelink Date: Tue, 21 Jul 2026 17:24:15 +0200 Message-ID: <20260721152406.882691953@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152355.667394603@linuxfoundation.org> References: <20260721152355.667394603@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Maoyi Xie commit 095515d89b19b6cc19dfcdc846f97403ed1ebce3 upstream. xfrmi_changelink() operates on at most two netns, dev_net(dev) and the interface link netns xi->net. They differ once the device is created in or moved to a netns other than the one the request runs in. The rtnl changelink path checks CAP_NET_ADMIN only against dev_net(dev), so a caller privileged there but not in xi->net can rewrite an interface that lives in xi->net. Gate xfrmi_changelink() on rtnl_dev_link_net_capable() at its top, before any attribute is parsed. Reported-by: Xiao Liang Closes: https://lore.kernel.org/netdev/CABAhCOSzP1vaThGV35_VnsRCb=87_CPjPVsTHbq905k8A+BuUg@mail.gmail.com/ Fixes: f203b76d7809 ("xfrm: Add virtual xfrm interfaces") Cc: stable@vger.kernel.org Signed-off-by: Maoyi Xie Reviewed-by: Kuniyuki Iwashima Link: https://patch.msgid.link/20260612085941.3158249-8-maoyixie.tju@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- net/xfrm/xfrm_interface_core.c | 3 +++ 1 file changed, 3 insertions(+) --- a/net/xfrm/xfrm_interface_core.c +++ b/net/xfrm/xfrm_interface_core.c @@ -726,6 +726,9 @@ static int xfrmi_changelink(struct net_d struct net *net = xi->net; struct xfrm_if_parms p = {}; + if (!rtnl_dev_link_net_capable(dev, net)) + return -EPERM; + xfrmi_netlink_parms(data, &p); if (!p.if_id) { NL_SET_ERR_MSG(extack, "if_id must be non zero");