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 E16E9440A13; Mon, 17 Aug 2026 15:19:39 +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=1786979981; cv=none; b=nOkpK5C29CH/rMprYEhGqPMVDcey9JyZWItdAsd6cvfbd45DQ1GmSwcZFWLIdTCJTwgkuBGKgn5xWMpPKAckfwqXQfBz+x0X2ofObw885duhOlQEd3qlccL6tZo2iyEESqDvXqUcsw+L1Qgm6L+Hj2jLsPZZbFTRN5XxjRBtSWw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786979981; c=relaxed/simple; bh=ywD9K81xckmO0iLyDKnEB6ry3MpjQZM9WWSNi05pWkY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZK2wpI+hOusH2PkQ4Redqynov1kPXp46E89/ubSAhP43PiH/sIvCDksdxor/pmfqI30uQjlw0PK3vFpUfqBtRnpceNRrpvFt0nn4kGVEAKhFEyIJFjGRai59ExXuVJxfJ2WXAxhV8YAuEMMQ1BZx9Dfk39rkPnyItJKsXvOqA4M= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=fImIWTWw; 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="fImIWTWw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4385E1F00A3A; Mon, 17 Aug 2026 15:19:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786979979; bh=NYDDIAfHT3TQJ8SswEp5LV40ibSWzeuoAIHBho8sfJo=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=fImIWTWwoDUh+KI/jXNOpvsl323KEQDKBlPOxiQEA3JoK6pYKkwZNWx+UAz4br7WR 30yKH1n7uT0B30bnwZi4GwZ/ZS+yM2oPmIkkxMGWR9X6uP1FeWAwd3k518N/5JZSDg PSUq5U7qZc8ST6czHQuSLCvazW3CyiFQAg3NcHdM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Vega , Zhiling Zou , Ren Wei , Nikolay Aleksandrov , Jakub Kicinski Subject: [PATCH 6.1 415/609] net: bridge: stop fast-leave after deleting a port group Date: Mon, 17 Aug 2026 15:31:51 +0200 Message-ID: <20260817132558.029213125@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132543.039278408@linuxfoundation.org> References: <20260817132543.039278408@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.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Zhiling Zou commit a39789f211b8a4125f0c70e05b30cf715f4f187d upstream. br_multicast_leave_group() iterates mp->ports with pp = &p->next in its fast-leave path. After br_multicast_del_pg() removes p, continuing the loop advances pp through the deleted entry. If multicast-to-unicast was enabled, the bridge can hold multiple port groups for the same port and group with different source MAC addresses. Once multicast-to-unicast is disabled, br_port_group_equal() matches those entries by port only. A fast leave can then delete one entry and continue from its stale next pointer, leaving mp->ports pointing at a deleted port group. Fast leave only needs to remove one matching port group. Break after br_multicast_del_pg() so the loop stops before dereferencing the removed entry. Fixes: 6db6f0eae605 ("bridge: multicast to unicast") Cc: stable@vger.kernel.org Reported-by: Vega Signed-off-by: Zhiling Zou Signed-off-by: Ren Wei Acked-by: Nikolay Aleksandrov Link: https://patch.msgid.link/1cf0898872ef7c72d5f4c0304414a192c6dac591.1784707712.git.zhilinz@nebusec.ai Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- net/bridge/br_multicast.c | 1 + 1 file changed, 1 insertion(+) --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c @@ -3511,6 +3511,7 @@ br_multicast_leave_group(struct net_brid p->flags |= MDB_PG_FLAGS_FAST_LEAVE; br_multicast_del_pg(mp, p, pp); + break; } goto out; }