Merge branch 'bridge-vlan'
Nikolay Aleksandrov says: ==================== net: bridge: mcast: add support for port/vlan router control This small set adds control over port/vlan mcast router config. Initially I had added host vlan entry router control via vlan's global options but that is really unnecessary and we can use a single per-vlan option to control it both for port/vlan and host/vlan entries. Since it's all still in net-next we can convert BRIDGE_VLANDB_GOPTS_MCAST_ROUTER to BRIDGE_VLANDB_ENTRY_MCAST_ROUTER and use it for both. That makes much more sense and is easier for user-space. Patch 01 prepares the port router function to be used with port mcast context instead of port and then patch 02 converts the global vlan mcast router option to per-vlan mcast router option which directly gives us both host/vlan and port/vlan mcast router control without any additional changes. This way we get the following coherent syntax: [ port/vlan mcast router] $ bridge vlan set vid 100 dev ens20 mcast_router 2 [ bridge/vlan mcast router ] $ bridge vlan set vid 100 dev bridge mcast_router 2 instead of: $ bridge vlan set vid 100 dev bridge mcast_router 1 global The mcast_router should not be regarded as a global option, it controls the port/vlan and bridge/vlan mcast router behaviour. This is the last set needed for the initial per-vlan mcast support. Next patch-sets: - iproute2 support - selftests ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
0ba218e253
|
@ -506,6 +506,7 @@ enum {
|
|||
BRIDGE_VLANDB_ENTRY_STATE,
|
||||
BRIDGE_VLANDB_ENTRY_TUNNEL_INFO,
|
||||
BRIDGE_VLANDB_ENTRY_STATS,
|
||||
BRIDGE_VLANDB_ENTRY_MCAST_ROUTER,
|
||||
__BRIDGE_VLANDB_ENTRY_MAX,
|
||||
};
|
||||
#define BRIDGE_VLANDB_ENTRY_MAX (__BRIDGE_VLANDB_ENTRY_MAX - 1)
|
||||
|
@ -561,7 +562,6 @@ enum {
|
|||
BRIDGE_VLANDB_GOPTS_MCAST_QUERY_RESPONSE_INTVL,
|
||||
BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_INTVL,
|
||||
BRIDGE_VLANDB_GOPTS_MCAST_QUERIER,
|
||||
BRIDGE_VLANDB_GOPTS_MCAST_ROUTER,
|
||||
BRIDGE_VLANDB_GOPTS_MCAST_ROUTER_PORTS,
|
||||
BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_STATE,
|
||||
__BRIDGE_VLANDB_GOPTS_MAX
|
||||
|
|
|
@ -4246,15 +4246,16 @@ br_multicast_rport_del_notify(struct net_bridge_mcast_port *pmctx, bool deleted)
|
|||
pmctx->multicast_router = MDB_RTR_TYPE_TEMP_QUERY;
|
||||
}
|
||||
|
||||
int br_multicast_set_port_router(struct net_bridge_port *p, unsigned long val)
|
||||
int br_multicast_set_port_router(struct net_bridge_mcast_port *pmctx,
|
||||
unsigned long val)
|
||||
{
|
||||
struct net_bridge_mcast *brmctx = &p->br->multicast_ctx;
|
||||
struct net_bridge_mcast_port *pmctx = &p->multicast_ctx;
|
||||
struct net_bridge_mcast *brmctx;
|
||||
unsigned long now = jiffies;
|
||||
int err = -EINVAL;
|
||||
bool del = false;
|
||||
|
||||
spin_lock(&p->br->multicast_lock);
|
||||
brmctx = br_multicast_port_ctx_get_global(pmctx);
|
||||
spin_lock(&brmctx->br->multicast_lock);
|
||||
if (pmctx->multicast_router == val) {
|
||||
/* Refresh the temp router port timer */
|
||||
if (pmctx->multicast_router == MDB_RTR_TYPE_TEMP) {
|
||||
|
@ -4304,7 +4305,20 @@ int br_multicast_set_port_router(struct net_bridge_port *p, unsigned long val)
|
|||
}
|
||||
err = 0;
|
||||
unlock:
|
||||
spin_unlock(&p->br->multicast_lock);
|
||||
spin_unlock(&brmctx->br->multicast_lock);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
int br_multicast_set_vlan_router(struct net_bridge_vlan *v, u8 mcast_router)
|
||||
{
|
||||
int err;
|
||||
|
||||
if (br_vlan_is_master(v))
|
||||
err = br_multicast_set_router(&v->br_mcast_ctx, mcast_router);
|
||||
else
|
||||
err = br_multicast_set_port_router(&v->port_mcast_ctx,
|
||||
mcast_router);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
|
|
@ -932,7 +932,8 @@ static int br_setport(struct net_bridge_port *p, struct nlattr *tb[],
|
|||
if (tb[IFLA_BRPORT_MULTICAST_ROUTER]) {
|
||||
u8 mcast_router = nla_get_u8(tb[IFLA_BRPORT_MULTICAST_ROUTER]);
|
||||
|
||||
err = br_multicast_set_port_router(p, mcast_router);
|
||||
err = br_multicast_set_port_router(&p->multicast_ctx,
|
||||
mcast_router);
|
||||
if (err)
|
||||
return err;
|
||||
}
|
||||
|
|
|
@ -676,6 +676,20 @@ static inline bool br_vlan_valid_range(const struct bridge_vlan_info *cur,
|
|||
return true;
|
||||
}
|
||||
|
||||
static inline u8 br_vlan_multicast_router(const struct net_bridge_vlan *v)
|
||||
{
|
||||
u8 mcast_router = MDB_RTR_TYPE_DISABLED;
|
||||
|
||||
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
|
||||
if (!br_vlan_is_master(v))
|
||||
mcast_router = v->port_mcast_ctx.multicast_router;
|
||||
else
|
||||
mcast_router = v->br_mcast_ctx.multicast_router;
|
||||
#endif
|
||||
|
||||
return mcast_router;
|
||||
}
|
||||
|
||||
static inline int br_afspec_cmd_to_rtm(int cmd)
|
||||
{
|
||||
switch (cmd) {
|
||||
|
@ -879,7 +893,9 @@ void br_multicast_flood(struct net_bridge_mdb_entry *mdst, struct sk_buff *skb,
|
|||
struct net_bridge_mcast *brmctx,
|
||||
bool local_rcv, bool local_orig);
|
||||
int br_multicast_set_router(struct net_bridge_mcast *brmctx, unsigned long val);
|
||||
int br_multicast_set_port_router(struct net_bridge_port *p, unsigned long val);
|
||||
int br_multicast_set_port_router(struct net_bridge_mcast_port *pmctx,
|
||||
unsigned long val);
|
||||
int br_multicast_set_vlan_router(struct net_bridge_vlan *v, u8 mcast_router);
|
||||
int br_multicast_toggle(struct net_bridge *br, unsigned long val,
|
||||
struct netlink_ext_ack *extack);
|
||||
int br_multicast_set_querier(struct net_bridge_mcast *brmctx, unsigned long val);
|
||||
|
|
|
@ -250,7 +250,7 @@ static ssize_t show_multicast_router(struct net_bridge_port *p, char *buf)
|
|||
static int store_multicast_router(struct net_bridge_port *p,
|
||||
unsigned long v)
|
||||
{
|
||||
return br_multicast_set_port_router(p, v);
|
||||
return br_multicast_set_port_router(&p->multicast_ctx, v);
|
||||
}
|
||||
static BRPORT_ATTR(multicast_router, 0644, show_multicast_router,
|
||||
store_multicast_router);
|
||||
|
|
|
@ -2136,6 +2136,7 @@ static const struct nla_policy br_vlan_db_policy[BRIDGE_VLANDB_ENTRY_MAX + 1] =
|
|||
[BRIDGE_VLANDB_ENTRY_RANGE] = { .type = NLA_U16 },
|
||||
[BRIDGE_VLANDB_ENTRY_STATE] = { .type = NLA_U8 },
|
||||
[BRIDGE_VLANDB_ENTRY_TUNNEL_INFO] = { .type = NLA_NESTED },
|
||||
[BRIDGE_VLANDB_ENTRY_MCAST_ROUTER] = { .type = NLA_U8 },
|
||||
};
|
||||
|
||||
static int br_vlan_rtm_process_one(struct net_device *dev,
|
||||
|
|
|
@ -40,22 +40,38 @@ static bool __vlan_tun_can_enter_range(const struct net_bridge_vlan *v_curr,
|
|||
bool br_vlan_opts_eq_range(const struct net_bridge_vlan *v_curr,
|
||||
const struct net_bridge_vlan *range_end)
|
||||
{
|
||||
u8 range_mc_rtr = br_vlan_multicast_router(range_end);
|
||||
u8 curr_mc_rtr = br_vlan_multicast_router(v_curr);
|
||||
|
||||
return v_curr->state == range_end->state &&
|
||||
__vlan_tun_can_enter_range(v_curr, range_end);
|
||||
__vlan_tun_can_enter_range(v_curr, range_end) &&
|
||||
curr_mc_rtr == range_mc_rtr;
|
||||
}
|
||||
|
||||
bool br_vlan_opts_fill(struct sk_buff *skb, const struct net_bridge_vlan *v)
|
||||
{
|
||||
return !nla_put_u8(skb, BRIDGE_VLANDB_ENTRY_STATE,
|
||||
br_vlan_get_state(v)) &&
|
||||
__vlan_tun_put(skb, v);
|
||||
if (nla_put_u8(skb, BRIDGE_VLANDB_ENTRY_STATE, br_vlan_get_state(v)) ||
|
||||
!__vlan_tun_put(skb, v))
|
||||
return false;
|
||||
|
||||
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
|
||||
if (nla_put_u8(skb, BRIDGE_VLANDB_ENTRY_MCAST_ROUTER,
|
||||
br_vlan_multicast_router(v)))
|
||||
return false;
|
||||
#endif
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
size_t br_vlan_opts_nl_size(void)
|
||||
{
|
||||
return nla_total_size(sizeof(u8)) /* BRIDGE_VLANDB_ENTRY_STATE */
|
||||
+ nla_total_size(0) /* BRIDGE_VLANDB_ENTRY_TUNNEL_INFO */
|
||||
+ nla_total_size(sizeof(u32)); /* BRIDGE_VLANDB_TINFO_ID */
|
||||
+ nla_total_size(sizeof(u32)) /* BRIDGE_VLANDB_TINFO_ID */
|
||||
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
|
||||
+ nla_total_size(sizeof(u8)) /* BRIDGE_VLANDB_ENTRY_MCAST_ROUTER */
|
||||
#endif
|
||||
+ 0;
|
||||
}
|
||||
|
||||
static int br_vlan_modify_state(struct net_bridge_vlan_group *vg,
|
||||
|
@ -181,6 +197,18 @@ static int br_vlan_process_one_opts(const struct net_bridge *br,
|
|||
return err;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
|
||||
if (tb[BRIDGE_VLANDB_ENTRY_MCAST_ROUTER]) {
|
||||
u8 val;
|
||||
|
||||
val = nla_get_u8(tb[BRIDGE_VLANDB_ENTRY_MCAST_ROUTER]);
|
||||
err = br_multicast_set_vlan_router(v, val);
|
||||
if (err)
|
||||
return err;
|
||||
*changed = true;
|
||||
}
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -298,8 +326,6 @@ bool br_vlan_global_opts_fill(struct sk_buff *skb, u16 vid, u16 vid_range,
|
|||
v_opts->br_mcast_ctx.multicast_startup_query_count) ||
|
||||
nla_put_u8(skb, BRIDGE_VLANDB_GOPTS_MCAST_QUERIER,
|
||||
v_opts->br_mcast_ctx.multicast_querier) ||
|
||||
nla_put_u8(skb, BRIDGE_VLANDB_GOPTS_MCAST_ROUTER,
|
||||
v_opts->br_mcast_ctx.multicast_router) ||
|
||||
br_multicast_dump_querier_state(skb, &v_opts->br_mcast_ctx,
|
||||
BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_STATE))
|
||||
goto out_err;
|
||||
|
@ -380,7 +406,6 @@ static size_t rtnl_vlan_global_opts_nlmsg_size(const struct net_bridge_vlan *v)
|
|||
+ nla_total_size(sizeof(u64)) /* BRIDGE_VLANDB_GOPTS_MCAST_QUERY_RESPONSE_INTVL */
|
||||
+ nla_total_size(sizeof(u64)) /* BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_INTVL */
|
||||
+ nla_total_size(sizeof(u8)) /* BRIDGE_VLANDB_GOPTS_MCAST_QUERIER */
|
||||
+ nla_total_size(sizeof(u8)) /* BRIDGE_VLANDB_GOPTS_MCAST_ROUTER */
|
||||
+ br_multicast_querier_state_size() /* BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_STATE */
|
||||
+ nla_total_size(0) /* BRIDGE_VLANDB_GOPTS_MCAST_ROUTER_PORTS */
|
||||
+ br_rports_size(&v->br_mcast_ctx) /* BRIDGE_VLANDB_GOPTS_MCAST_ROUTER_PORTS */
|
||||
|
@ -522,15 +547,6 @@ static int br_vlan_process_global_one_opts(const struct net_bridge *br,
|
|||
return err;
|
||||
*changed = true;
|
||||
}
|
||||
if (tb[BRIDGE_VLANDB_GOPTS_MCAST_ROUTER]) {
|
||||
u8 val;
|
||||
|
||||
val = nla_get_u8(tb[BRIDGE_VLANDB_GOPTS_MCAST_ROUTER]);
|
||||
err = br_multicast_set_router(&v->br_mcast_ctx, val);
|
||||
if (err)
|
||||
return err;
|
||||
*changed = true;
|
||||
}
|
||||
#if IS_ENABLED(CONFIG_IPV6)
|
||||
if (tb[BRIDGE_VLANDB_GOPTS_MCAST_MLD_VERSION]) {
|
||||
u8 ver;
|
||||
|
@ -554,7 +570,6 @@ static const struct nla_policy br_vlan_db_gpol[BRIDGE_VLANDB_GOPTS_MAX + 1] = {
|
|||
[BRIDGE_VLANDB_GOPTS_MCAST_MLD_VERSION] = { .type = NLA_U8 },
|
||||
[BRIDGE_VLANDB_GOPTS_MCAST_QUERY_INTVL] = { .type = NLA_U64 },
|
||||
[BRIDGE_VLANDB_GOPTS_MCAST_QUERIER] = { .type = NLA_U8 },
|
||||
[BRIDGE_VLANDB_GOPTS_MCAST_ROUTER] = { .type = NLA_U8 },
|
||||
[BRIDGE_VLANDB_GOPTS_MCAST_IGMP_VERSION] = { .type = NLA_U8 },
|
||||
[BRIDGE_VLANDB_GOPTS_MCAST_LAST_MEMBER_CNT] = { .type = NLA_U32 },
|
||||
[BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_CNT] = { .type = NLA_U32 },
|
||||
|
|
Loading…
Reference in New Issue