summaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorNikolay Aleksandrov <nikolay@cumulusnetworks.com>2015-10-04 08:23:37 -0400
committerDavid S. Miller <davem@davemloft.net>2015-10-04 19:46:01 -0400
commita9a6bc70f5f70b3835b081e401b469b88c7c8a3a (patch)
tree72828636c9ead1ac1d6ba8c28de85f8a825ef8a4 /net/bridge
parent150217c688217e549ef8a36ea4f6718977373765 (diff)
bridge: netlink: add support for multicast_router
Add IFLA_BR_MCAST_ROUTER to allow setting and retrieving br->multicast_router when igmp snooping is enabled. Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/br_netlink.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 5853c5737006..f4df609c1ad9 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -767,6 +767,7 @@ static const struct nla_policy br_policy[IFLA_BR_MAX + 1] = {
767 [IFLA_BR_GROUP_FWD_MASK] = { .type = NLA_U16 }, 767 [IFLA_BR_GROUP_FWD_MASK] = { .type = NLA_U16 },
768 [IFLA_BR_GROUP_ADDR] = { .type = NLA_BINARY, 768 [IFLA_BR_GROUP_ADDR] = { .type = NLA_BINARY,
769 .len = ETH_ALEN }, 769 .len = ETH_ALEN },
770 [IFLA_BR_MCAST_ROUTER] = { .type = NLA_U8 },
770}; 771};
771 772
772static int br_changelink(struct net_device *brdev, struct nlattr *tb[], 773static int br_changelink(struct net_device *brdev, struct nlattr *tb[],
@@ -862,6 +863,16 @@ static int br_changelink(struct net_device *brdev, struct nlattr *tb[],
862 if (data[IFLA_BR_FDB_FLUSH]) 863 if (data[IFLA_BR_FDB_FLUSH])
863 br_fdb_flush(br); 864 br_fdb_flush(br);
864 865
866#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
867 if (data[IFLA_BR_MCAST_ROUTER]) {
868 u8 multicast_router = nla_get_u8(data[IFLA_BR_MCAST_ROUTER]);
869
870 err = br_multicast_set_router(br, multicast_router);
871 if (err)
872 return err;
873 }
874#endif
875
865 return 0; 876 return 0;
866} 877}
867 878
@@ -889,6 +900,9 @@ static size_t br_get_size(const struct net_device *brdev)
889 nla_total_size(sizeof(u64)) + /* IFLA_BR_TOPOLOGY_CHANGE_TIMER */ 900 nla_total_size(sizeof(u64)) + /* IFLA_BR_TOPOLOGY_CHANGE_TIMER */
890 nla_total_size(sizeof(u64)) + /* IFLA_BR_GC_TIMER */ 901 nla_total_size(sizeof(u64)) + /* IFLA_BR_GC_TIMER */
891 nla_total_size(ETH_ALEN) + /* IFLA_BR_GROUP_ADDR */ 902 nla_total_size(ETH_ALEN) + /* IFLA_BR_GROUP_ADDR */
903#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
904 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_ROUTER */
905#endif
892 0; 906 0;
893} 907}
894 908
@@ -945,6 +959,11 @@ static int br_fill_info(struct sk_buff *skb, const struct net_device *brdev)
945 return -EMSGSIZE; 959 return -EMSGSIZE;
946#endif 960#endif
947 961
962#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
963 if (nla_put_u8(skb, IFLA_BR_MCAST_ROUTER, br->multicast_router))
964 return -EMSGSIZE;
965#endif
966
948 return 0; 967 return 0;
949} 968}
950 969