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 61EC0446070; Thu, 30 Jul 2026 16:06: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=1785427577; cv=none; b=Lk0nBeL8W4KP/FkrutVXM1g08ZfPqK2dLzgY5P6xlAX5qzga1e83sROCniuPaoo/OJ6jm26I1XMJjLzAWgKn1GDMVnQx6m204hDlM1AVWA04I/gT6mS4C1Tg/LukPNIFTFWbAP/CJsq1NPWSBUQK7DHgiz4CgQM8+JvZERNi0Pc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785427577; c=relaxed/simple; bh=YgVlJ7faYg1NVujdDfE9QluuOyOyQJNyFkNDgo932z8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=esfPEaGwpCO94mrul/UlvLbh54FK4ynzaHmy5OrKzL7MUktcfKcZT0UmZLgAC/HzA9mj5NAny62GC2qxnI+k/+qd9HeGSgE3YAe5gHCv4bJcjib3YoEbOONJrqM04nFQ+Wlv+8Zu5lBJitbh5kCGcO618Tz+v9W6B2vk/2KFy5U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TUGohFIG; 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="TUGohFIG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C4B901F000E9; Thu, 30 Jul 2026 16:06:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785427576; bh=WJS66/EvLsymgCN1WWSPLBc3mLZe/OLsRRN7cF8Ieag=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=TUGohFIGZdTwV4vN5nmHbJUtTeQAEyUs22YE915VDXpCHvjzibjHiXjStUQ7Y/LQ+ TCZq9fUI0/Jh31uWHGVHs7G6Aez/RS0HkqO7D4oRDt9Hlob0emRpy5Vjma3Wnkcixm 8gn+a9wYFR6obXFamyVf+EuSS2pXrwO/hx30XPz4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, syzbot+456957213f32970c0762@syzkaller.appspotmail.com, Eric Dumazet , Fernando Fernandez Mancera , Felix Maurer , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.6 182/484] net: hsr: fix memory leak on slave unregistration by removing synced VLANs Date: Thu, 30 Jul 2026 16:11:19 +0200 Message-ID: <20260730141427.421273179@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141423.392222816@linuxfoundation.org> References: <20260730141423.392222816@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 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Eric Dumazet [ Upstream commit dcf15eaf5641812f1cfc5e96537380132a7da89d ] When an HSR master device is brought UP, it auto-adds VLAN 0 via vlan_vid0_add(), which propagates VID 0 to its slave devices (slave A and B). If a slave device is later unregistered while HSR is active (e.g., during netns cleanup or interface destruction), hsr_del_port() is called to detach the slave port from the HSR master. However, hsr_del_port() currently does not delete the VLAN IDs that were synced to the slave device by HSR. As a result, the slave device retains a refcount on VID 0 (and any other synced VLANs). When the slave device is destroyed, its vlan_info / vlan_vid_info structure remains allocated, leading to a memory leak. Fix this by calling vlan_vids_del_by_dev(port->dev, master->dev) in hsr_del_port() before unlinking slave A or slave B ports, matching the propagation logic in hsr_ndo_vlan_rx_add_vid() / hsr_ndo_vlan_rx_kill_vid() and the cleanup behavior in bonding and team drivers. Fixes: 1a8a63a5305e ("net: hsr: Add VLAN CTAG filter support") Reported-by: syzbot+456957213f32970c0762@syzkaller.appspotmail.com Closes: https://lore.kernel.org/netdev/6a4cb6ca.57639fcc.86d58.000b.GAE@google.com/T/#u Signed-off-by: Eric Dumazet Reviewed-by: Fernando Fernandez Mancera Reviewed-by: Felix Maurer Link: https://patch.msgid.link/20260721101240.995597-1-edumazet@google.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/hsr/hsr_slave.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/hsr/hsr_slave.c b/net/hsr/hsr_slave.c index b8230faa567f77..58e757dc555461 100644 --- a/net/hsr/hsr_slave.c +++ b/net/hsr/hsr_slave.c @@ -228,6 +228,8 @@ void hsr_del_port(struct hsr_port *port) netdev_rx_handler_unregister(port->dev); if (!port->hsr->fwd_offloaded) dev_set_promiscuity(port->dev, -1); + if (port->type == HSR_PT_SLAVE_A || port->type == HSR_PT_SLAVE_B) + vlan_vids_del_by_dev(port->dev, master->dev); netdev_upper_dev_unlink(port->dev, master->dev); } -- 2.53.0