From: "Linus Lüssing" <linus.luessing@c0d3.blue>
To: bridge@lists.linux.dev
Cc: netdev@vger.kernel.org, openwrt-devel@lists.openwrt.org,
linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org,
"Nikolay Aleksandrov" <razor@blackwall.org>,
"Ido Schimmel" <idosch@nvidia.com>,
"Ivan Vecera" <ivecera@redhat.com>,
"Jiri Pirko" <jiri@resnulli.us>,
"Vladimir Oltean" <olteanv@gmail.com>,
"Andrew Lunn" <andrew@lunn.ch>,
"Jonathan Corbet" <corbet@lwn.net>,
"Simon Horman" <horms@kernel.org>,
"Paolo Abeni" <pabeni@redhat.com>,
"Jakub Kicinski" <kuba@kernel.org>,
"Eric Dumazet" <edumazet@google.com>,
"David S . Miller" <davem@davemloft.net>,
"Kuniyuki Iwashima" <kuniyu@amazon.com>,
"Stanislav Fomichev" <sdf@fomichev.me>,
"Xiao Liang" <shaw.leon@gmail.com>,
"Markus Stockhausen" <markus.stockhausen@gmx.de>,
"Jan Hoffmann" <jan.christian.hoffmann@gmail.com>,
"Birger Koblitz" <git@birger-koblitz.de>,
"Bjørn Mork" <bjorn@mork.no>,
"Linus Lüssing" <linus.luessing@c0d3.blue>
Subject: [PATCH net-next 4/5] net: bridge: switchdev: notify on mcast active changes
Date: Thu, 22 May 2025 21:17:06 +0200 [thread overview]
Message-ID: <20250522195952.29265-5-linus.luessing@c0d3.blue> (raw)
In-Reply-To: <20250522195952.29265-1-linus.luessing@c0d3.blue>
Let the bridge notify switchdev if the multicast
active state toggles. So that switch drivers can act on it
accordingly, especially to avoid packetloss.
Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
---
Documentation/networking/switchdev.rst | 8 +++----
include/net/switchdev.h | 10 ++++++++
net/bridge/br_multicast.c | 33 ++++++++++++++++++++++++++
3 files changed, 47 insertions(+), 4 deletions(-)
diff --git a/Documentation/networking/switchdev.rst b/Documentation/networking/switchdev.rst
index 2966b7122f05..130f7a36fc73 100644
--- a/Documentation/networking/switchdev.rst
+++ b/Documentation/networking/switchdev.rst
@@ -558,7 +558,7 @@ Because IGMP snooping can be turned on/off at runtime, the switchdev driver
must be able to reconfigure the underlying hardware on the fly to honor the
toggling of that option and behave appropriately.
-A switchdev driver can also refuse to support dynamic toggling of the multicast
-snooping knob at runtime and require the destruction of the bridge device(s)
-and creation of a new bridge device(s) with a different multicast snooping
-value.
+A switchdev driver must also be able to react to vanishing or appearing
+IGMP/MLD queriers. If no querier is present then, even if IGMP/MLD snooping
+is enabled, the switch must treat this as if IGMP/MLD snooping were disabled.
+The SWITCHDEV_ATTR_ID_BRIDGE_MC_ACTIVE notification allows to track this.
diff --git a/include/net/switchdev.h b/include/net/switchdev.h
index 8346b0d29542..abcc34a81e00 100644
--- a/include/net/switchdev.h
+++ b/include/net/switchdev.h
@@ -27,6 +27,7 @@ enum switchdev_attr_id {
SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING,
SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL,
SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED,
+ SWITCHDEV_ATTR_ID_BRIDGE_MC_ACTIVE,
SWITCHDEV_ATTR_ID_BRIDGE_MROUTER,
SWITCHDEV_ATTR_ID_BRIDGE_MST,
SWITCHDEV_ATTR_ID_MRP_PORT_ROLE,
@@ -43,6 +44,14 @@ struct switchdev_brport_flags {
unsigned long mask;
};
+struct switchdev_mc_active {
+ short vid;
+ u8 ip4:1,
+ ip6:1,
+ ip4_changed:1,
+ ip6_changed:1;
+};
+
struct switchdev_vlan_msti {
u16 vid;
u16 msti;
@@ -64,6 +73,7 @@ struct switchdev_attr {
u16 vlan_protocol; /* BRIDGE_VLAN_PROTOCOL */
bool mst; /* BRIDGE_MST */
bool mc_disabled; /* MC_DISABLED */
+ struct switchdev_mc_active mc_active; /* MC_ACTIVE */
u8 mrp_port_role; /* MRP_PORT_ROLE */
struct switchdev_vlan_msti vlan_msti; /* VLAN_MSTI */
} u;
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c
index 0bbaa21c1479..aec106f9c17d 100644
--- a/net/bridge/br_multicast.c
+++ b/net/bridge/br_multicast.c
@@ -1138,6 +1138,27 @@ static int br_ip6_multicast_check_active(struct net_bridge_mcast *brmctx,
#endif
}
+static int br_multicast_notify_active(struct net_bridge_mcast *brmctx,
+ bool ip4_active, bool ip6_active,
+ bool ip4_changed, bool ip6_changed,
+ struct netlink_ext_ack *extack)
+{
+ struct switchdev_attr attr = {
+ .orig_dev = brmctx->br->dev,
+ .id = SWITCHDEV_ATTR_ID_BRIDGE_MC_ACTIVE,
+ .flags = SWITCHDEV_F_DEFER,
+ .u.mc_active = {
+ .vid = brmctx->vlan ? brmctx->vlan->vid : -1,
+ .ip4 = ip4_active,
+ .ip6 = ip6_active,
+ .ip4_changed = ip4_changed,
+ .ip6_changed = ip6_changed,
+ },
+ };
+
+ return switchdev_port_attr_set(brmctx->br->dev, &attr, extack);
+}
+
/**
* __br_multicast_update_active() - update mcast active state
* @brmctx: the bridge multicast context to check
@@ -1159,6 +1180,8 @@ static int br_ip6_multicast_check_active(struct net_bridge_mcast *brmctx,
* This function should be called by anything that changes one of the
* above prerequisites.
*
+ * Any multicast active state toggling is further notified to switchdev.
+ *
* Return: 0 on success, a negative value otherwise.
*/
static int __br_multicast_update_active(struct net_bridge_mcast *brmctx,
@@ -1182,11 +1205,21 @@ static int __br_multicast_update_active(struct net_bridge_mcast *brmctx,
ip4_changed = br_ip4_multicast_check_active(brmctx, &ip4_active);
ip6_changed = br_ip6_multicast_check_active(brmctx, &ip6_active);
+ if (!ip4_changed && !ip6_changed)
+ goto out;
+
+ ret = br_multicast_notify_active(brmctx, ip4_active, ip6_active,
+ ip4_changed, ip6_changed,
+ extack);
+ if (ret && ret != -EOPNOTSUPP)
+ goto out;
+
if (ip4_changed)
brmctx->ip4_active = ip4_active;
if (ip6_changed)
brmctx->ip6_active = ip6_active;
+out:
return ret;
}
--
2.49.0
next prev parent reply other threads:[~2025-05-22 20:07 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-22 19:17 [PATCH net-next 0/5] net: bridge: propagate safe mcast snooping to switchdev + DSA Linus Lüssing
2025-05-22 19:17 ` [PATCH net-next 1/5] net: bridge: mcast: explicitly track active state Linus Lüssing
2025-05-23 9:44 ` kernel test robot
2025-05-25 17:13 ` Ido Schimmel
2025-05-22 19:17 ` [PATCH net-next 2/5] net: bridge: mcast: export ip{4,6}_active state to netlink Linus Lüssing
2025-05-25 17:20 ` Ido Schimmel
2025-05-22 19:17 ` [PATCH net-next 3/5] net: bridge: mcast: check if snooping is enabled for active state Linus Lüssing
2025-05-23 13:02 ` Simon Horman
2025-05-22 19:17 ` Linus Lüssing [this message]
2025-05-22 19:17 ` [PATCH net-next 5/5] net: dsa: forward bridge/switchdev mcast active notification Linus Lüssing
2025-05-23 9:24 ` kernel test robot
2025-05-23 9:44 ` kernel test robot
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=20250522195952.29265-5-linus.luessing@c0d3.blue \
--to=linus.luessing@c0d3.blue \
--cc=andrew@lunn.ch \
--cc=bjorn@mork.no \
--cc=bridge@lists.linux.dev \
--cc=corbet@lwn.net \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=git@birger-koblitz.de \
--cc=horms@kernel.org \
--cc=idosch@nvidia.com \
--cc=ivecera@redhat.com \
--cc=jan.christian.hoffmann@gmail.com \
--cc=jiri@resnulli.us \
--cc=kuba@kernel.org \
--cc=kuniyu@amazon.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=markus.stockhausen@gmx.de \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=openwrt-devel@lists.openwrt.org \
--cc=pabeni@redhat.com \
--cc=razor@blackwall.org \
--cc=sdf@fomichev.me \
--cc=shaw.leon@gmail.com \
/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).