Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Bridge netlink control interface |
| 3 | * |
| 4 | * Authors: |
| 5 | * Stephen Hemminger <shemminger@osdl.org> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 15 | #include <linux/etherdevice.h> |
Thomas Graf | 32fe21c | 2007-03-22 11:59:03 -0700 | [diff] [blame] | 16 | #include <net/rtnetlink.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 17 | #include <net/net_namespace.h> |
Denis V. Lunev | b854272 | 2007-12-01 00:21:31 +1100 | [diff] [blame] | 18 | #include <net/sock.h> |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 19 | #include <uapi/linux/if_bridge.h> |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 20 | |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 21 | #include "br_private.h" |
Vitalii Demianets | b03b6dd | 2011-11-25 00:16:37 +0000 | [diff] [blame] | 22 | #include "br_private_stp.h" |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 23 | |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 24 | static inline size_t br_port_info_size(void) |
| 25 | { |
| 26 | return nla_total_size(1) /* IFLA_BRPORT_STATE */ |
| 27 | + nla_total_size(2) /* IFLA_BRPORT_PRIORITY */ |
| 28 | + nla_total_size(4) /* IFLA_BRPORT_COST */ |
| 29 | + nla_total_size(1) /* IFLA_BRPORT_MODE */ |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 30 | + nla_total_size(1) /* IFLA_BRPORT_GUARD */ |
stephen hemminger | 1007dd1 | 2012-11-13 07:53:08 +0000 | [diff] [blame] | 31 | + nla_total_size(1) /* IFLA_BRPORT_PROTECT */ |
stephen hemminger | 3da889b | 2013-03-11 13:52:17 +0000 | [diff] [blame] | 32 | + nla_total_size(1) /* IFLA_BRPORT_FAST_LEAVE */ |
Vlad Yasevich | 9ba1889 | 2013-06-05 10:08:00 -0400 | [diff] [blame] | 33 | + nla_total_size(1) /* IFLA_BRPORT_LEARNING */ |
Vlad Yasevich | 867a594 | 2013-06-05 10:08:01 -0400 | [diff] [blame] | 34 | + nla_total_size(1) /* IFLA_BRPORT_UNICAST_FLOOD */ |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 35 | + 0; |
| 36 | } |
| 37 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 38 | static inline size_t br_nlmsg_size(void) |
| 39 | { |
| 40 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 41 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
| 42 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 43 | + nla_total_size(4) /* IFLA_MASTER */ |
| 44 | + nla_total_size(4) /* IFLA_MTU */ |
| 45 | + nla_total_size(4) /* IFLA_LINK */ |
| 46 | + nla_total_size(1) /* IFLA_OPERSTATE */ |
| 47 | + nla_total_size(br_port_info_size()); /* IFLA_PROTINFO */ |
| 48 | } |
| 49 | |
| 50 | static int br_port_fill_attrs(struct sk_buff *skb, |
| 51 | const struct net_bridge_port *p) |
| 52 | { |
| 53 | u8 mode = !!(p->flags & BR_HAIRPIN_MODE); |
| 54 | |
| 55 | if (nla_put_u8(skb, IFLA_BRPORT_STATE, p->state) || |
| 56 | nla_put_u16(skb, IFLA_BRPORT_PRIORITY, p->priority) || |
| 57 | nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) || |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 58 | nla_put_u8(skb, IFLA_BRPORT_MODE, mode) || |
stephen hemminger | 1007dd1 | 2012-11-13 07:53:08 +0000 | [diff] [blame] | 59 | nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) || |
David S. Miller | c2d3bab | 2012-12-05 16:24:45 -0500 | [diff] [blame] | 60 | nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK)) || |
Vlad Yasevich | 9ba1889 | 2013-06-05 10:08:00 -0400 | [diff] [blame] | 61 | nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE, !!(p->flags & BR_MULTICAST_FAST_LEAVE)) || |
Vlad Yasevich | 867a594 | 2013-06-05 10:08:01 -0400 | [diff] [blame] | 62 | nla_put_u8(skb, IFLA_BRPORT_LEARNING, !!(p->flags & BR_LEARNING)) || |
Kyeyoon Park | 9585011 | 2014-10-23 14:49:17 -0700 | [diff] [blame^] | 63 | nla_put_u8(skb, IFLA_BRPORT_UNICAST_FLOOD, !!(p->flags & BR_FLOOD)) || |
| 64 | nla_put_u8(skb, IFLA_BRPORT_PROXYARP, !!(p->flags & BR_PROXYARP))) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 65 | return -EMSGSIZE; |
| 66 | |
| 67 | return 0; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 68 | } |
| 69 | |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 70 | /* |
| 71 | * Create one netlink message for one interface |
| 72 | * Contains port and master info as well as carrier and bridge state. |
| 73 | */ |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 74 | static int br_fill_ifinfo(struct sk_buff *skb, |
| 75 | const struct net_bridge_port *port, |
| 76 | u32 pid, u32 seq, int event, unsigned int flags, |
| 77 | u32 filter_mask, const struct net_device *dev) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 78 | { |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 79 | const struct net_bridge *br; |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 80 | struct ifinfomsg *hdr; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 81 | struct nlmsghdr *nlh; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 82 | u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 83 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 84 | if (port) |
| 85 | br = port->br; |
| 86 | else |
| 87 | br = netdev_priv(dev); |
| 88 | |
stephen hemminger | 28a16c9 | 2010-05-10 09:31:09 +0000 | [diff] [blame] | 89 | br_debug(br, "br_fill_info event %d port %s master %s\n", |
| 90 | event, dev->name, br->dev->name); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 91 | |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 92 | nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags); |
| 93 | if (nlh == NULL) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 94 | return -EMSGSIZE; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 95 | |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 96 | hdr = nlmsg_data(nlh); |
| 97 | hdr->ifi_family = AF_BRIDGE; |
| 98 | hdr->__ifi_pad = 0; |
| 99 | hdr->ifi_type = dev->type; |
| 100 | hdr->ifi_index = dev->ifindex; |
| 101 | hdr->ifi_flags = dev_get_flags(dev); |
| 102 | hdr->ifi_change = 0; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 103 | |
David S. Miller | 2eb812e | 2012-04-01 20:49:54 -0400 | [diff] [blame] | 104 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 105 | nla_put_u32(skb, IFLA_MASTER, br->dev->ifindex) || |
| 106 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
| 107 | nla_put_u8(skb, IFLA_OPERSTATE, operstate) || |
| 108 | (dev->addr_len && |
| 109 | nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || |
| 110 | (dev->ifindex != dev->iflink && |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 111 | nla_put_u32(skb, IFLA_LINK, dev->iflink))) |
David S. Miller | 2eb812e | 2012-04-01 20:49:54 -0400 | [diff] [blame] | 112 | goto nla_put_failure; |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 113 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 114 | if (event == RTM_NEWLINK && port) { |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 115 | struct nlattr *nest |
| 116 | = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED); |
| 117 | |
| 118 | if (nest == NULL || br_port_fill_attrs(skb, port) < 0) |
| 119 | goto nla_put_failure; |
| 120 | nla_nest_end(skb, nest); |
| 121 | } |
| 122 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 123 | /* Check if the VID information is requested */ |
| 124 | if (filter_mask & RTEXT_FILTER_BRVLAN) { |
| 125 | struct nlattr *af; |
| 126 | const struct net_port_vlans *pv; |
| 127 | struct bridge_vlan_info vinfo; |
| 128 | u16 vid; |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 129 | u16 pvid; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 130 | |
| 131 | if (port) |
| 132 | pv = nbp_get_vlan_info(port); |
| 133 | else |
| 134 | pv = br_get_vlan_info(br); |
| 135 | |
Toshiaki Makita | ef40b7e | 2013-08-20 17:10:18 +0900 | [diff] [blame] | 136 | if (!pv || bitmap_empty(pv->vlan_bitmap, VLAN_N_VID)) |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 137 | goto done; |
| 138 | |
| 139 | af = nla_nest_start(skb, IFLA_AF_SPEC); |
| 140 | if (!af) |
| 141 | goto nla_put_failure; |
| 142 | |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 143 | pvid = br_get_pvid(pv); |
Toshiaki Makita | ef40b7e | 2013-08-20 17:10:18 +0900 | [diff] [blame] | 144 | for_each_set_bit(vid, pv->vlan_bitmap, VLAN_N_VID) { |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 145 | vinfo.vid = vid; |
| 146 | vinfo.flags = 0; |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 147 | if (vid == pvid) |
| 148 | vinfo.flags |= BRIDGE_VLAN_INFO_PVID; |
Vlad Yasevich | 35e03f3 | 2013-02-13 12:00:20 +0000 | [diff] [blame] | 149 | |
| 150 | if (test_bit(vid, pv->untagged_bitmap)) |
| 151 | vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED; |
| 152 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 153 | if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO, |
| 154 | sizeof(vinfo), &vinfo)) |
| 155 | goto nla_put_failure; |
| 156 | } |
| 157 | |
| 158 | nla_nest_end(skb, af); |
| 159 | } |
| 160 | |
| 161 | done: |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 162 | return nlmsg_end(skb, nlh); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 163 | |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 164 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 165 | nlmsg_cancel(skb, nlh); |
| 166 | return -EMSGSIZE; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | /* |
| 170 | * Notify listeners of a change in port information |
| 171 | */ |
| 172 | void br_ifinfo_notify(int event, struct net_bridge_port *port) |
| 173 | { |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 174 | struct net *net; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 175 | struct sk_buff *skb; |
Thomas Graf | 280a306 | 2006-08-15 00:36:28 -0700 | [diff] [blame] | 176 | int err = -ENOBUFS; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 177 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 178 | if (!port) |
| 179 | return; |
| 180 | |
| 181 | net = dev_net(port->dev); |
stephen hemminger | 28a16c9 | 2010-05-10 09:31:09 +0000 | [diff] [blame] | 182 | br_debug(port->br, "port %u(%s) event %d\n", |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 183 | (unsigned int)port->port_no, port->dev->name, event); |
stephen hemminger | 28a16c9 | 2010-05-10 09:31:09 +0000 | [diff] [blame] | 184 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 185 | skb = nlmsg_new(br_nlmsg_size(), GFP_ATOMIC); |
Thomas Graf | 280a306 | 2006-08-15 00:36:28 -0700 | [diff] [blame] | 186 | if (skb == NULL) |
| 187 | goto errout; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 188 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 189 | err = br_fill_ifinfo(skb, port, 0, 0, event, 0, 0, port->dev); |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 190 | if (err < 0) { |
| 191 | /* -EMSGSIZE implies BUG in br_nlmsg_size() */ |
| 192 | WARN_ON(err == -EMSGSIZE); |
| 193 | kfree_skb(skb); |
| 194 | goto errout; |
| 195 | } |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 196 | rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC); |
| 197 | return; |
Thomas Graf | 280a306 | 2006-08-15 00:36:28 -0700 | [diff] [blame] | 198 | errout: |
tanxiaojun | 87e823b | 2013-12-19 13:28:10 +0800 | [diff] [blame] | 199 | rtnl_set_sk_err(net, RTNLGRP_LINK, err); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 202 | |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 203 | /* |
| 204 | * Dump information about all ports, in response to GETLINK |
| 205 | */ |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 206 | int br_getlink(struct sk_buff *skb, u32 pid, u32 seq, |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 207 | struct net_device *dev, u32 filter_mask) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 208 | { |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 209 | int err = 0; |
Hong Zhiguo | 1fb1754 | 2013-09-14 22:42:27 +0800 | [diff] [blame] | 210 | struct net_bridge_port *port = br_port_get_rtnl(dev); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 211 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 212 | if (!port && !(filter_mask & RTEXT_FILTER_BRVLAN)) |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 213 | goto out; |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 214 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 215 | err = br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, NLM_F_MULTI, |
| 216 | filter_mask, dev); |
John Fastabend | e5a55a8 | 2012-10-24 08:12:57 +0000 | [diff] [blame] | 217 | out: |
| 218 | return err; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Cong Wang | 15004ca | 2013-02-13 19:57:12 +0000 | [diff] [blame] | 221 | static const struct nla_policy ifla_br_policy[IFLA_MAX+1] = { |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 222 | [IFLA_BRIDGE_FLAGS] = { .type = NLA_U16 }, |
| 223 | [IFLA_BRIDGE_MODE] = { .type = NLA_U16 }, |
| 224 | [IFLA_BRIDGE_VLAN_INFO] = { .type = NLA_BINARY, |
| 225 | .len = sizeof(struct bridge_vlan_info), }, |
| 226 | }; |
| 227 | |
| 228 | static int br_afspec(struct net_bridge *br, |
| 229 | struct net_bridge_port *p, |
| 230 | struct nlattr *af_spec, |
| 231 | int cmd) |
| 232 | { |
| 233 | struct nlattr *tb[IFLA_BRIDGE_MAX+1]; |
| 234 | int err = 0; |
| 235 | |
| 236 | err = nla_parse_nested(tb, IFLA_BRIDGE_MAX, af_spec, ifla_br_policy); |
| 237 | if (err) |
| 238 | return err; |
| 239 | |
| 240 | if (tb[IFLA_BRIDGE_VLAN_INFO]) { |
| 241 | struct bridge_vlan_info *vinfo; |
| 242 | |
| 243 | vinfo = nla_data(tb[IFLA_BRIDGE_VLAN_INFO]); |
| 244 | |
Toshiaki Makita | 8adff41 | 2013-10-16 17:07:13 +0900 | [diff] [blame] | 245 | if (!vinfo->vid || vinfo->vid >= VLAN_VID_MASK) |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 246 | return -EINVAL; |
| 247 | |
| 248 | switch (cmd) { |
| 249 | case RTM_SETLINK: |
| 250 | if (p) { |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 251 | err = nbp_vlan_add(p, vinfo->vid, vinfo->flags); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 252 | if (err) |
| 253 | break; |
| 254 | |
| 255 | if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER) |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 256 | err = br_vlan_add(p->br, vinfo->vid, |
| 257 | vinfo->flags); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 258 | } else |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 259 | err = br_vlan_add(br, vinfo->vid, vinfo->flags); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 260 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 261 | break; |
| 262 | |
| 263 | case RTM_DELLINK: |
| 264 | if (p) { |
| 265 | nbp_vlan_delete(p, vinfo->vid); |
| 266 | if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER) |
| 267 | br_vlan_delete(p->br, vinfo->vid); |
| 268 | } else |
| 269 | br_vlan_delete(br, vinfo->vid); |
| 270 | break; |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | return err; |
| 275 | } |
| 276 | |
Jiri Pirko | 3ac636b | 2014-09-05 15:51:30 +0200 | [diff] [blame] | 277 | static const struct nla_policy br_port_policy[IFLA_BRPORT_MAX + 1] = { |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 278 | [IFLA_BRPORT_STATE] = { .type = NLA_U8 }, |
| 279 | [IFLA_BRPORT_COST] = { .type = NLA_U32 }, |
| 280 | [IFLA_BRPORT_PRIORITY] = { .type = NLA_U16 }, |
| 281 | [IFLA_BRPORT_MODE] = { .type = NLA_U8 }, |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 282 | [IFLA_BRPORT_GUARD] = { .type = NLA_U8 }, |
stephen hemminger | 1007dd1 | 2012-11-13 07:53:08 +0000 | [diff] [blame] | 283 | [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 }, |
Vlad Yasevich | 9ba1889 | 2013-06-05 10:08:00 -0400 | [diff] [blame] | 284 | [IFLA_BRPORT_LEARNING] = { .type = NLA_U8 }, |
Vlad Yasevich | 867a594 | 2013-06-05 10:08:01 -0400 | [diff] [blame] | 285 | [IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 }, |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 286 | }; |
| 287 | |
| 288 | /* Change the state of the port and notify spanning tree */ |
| 289 | static int br_set_port_state(struct net_bridge_port *p, u8 state) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 290 | { |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 291 | if (state > BR_STATE_BLOCKING) |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 292 | return -EINVAL; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 293 | |
| 294 | /* if kernel STP is running, don't allow changes */ |
Stephen Hemminger | 9cde070 | 2007-03-21 14:22:44 -0700 | [diff] [blame] | 295 | if (p->br->stp_enabled == BR_KERNEL_STP) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 296 | return -EBUSY; |
| 297 | |
stephen hemminger | 576eb62 | 2012-12-28 18:15:22 +0000 | [diff] [blame] | 298 | /* if device is not up, change is not allowed |
| 299 | * if link is not present, only allowable state is disabled |
| 300 | */ |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 301 | if (!netif_running(p->dev) || |
stephen hemminger | 576eb62 | 2012-12-28 18:15:22 +0000 | [diff] [blame] | 302 | (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED)) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 303 | return -ENETDOWN; |
| 304 | |
Florian Fainelli | 775dd69 | 2014-09-30 16:13:19 -0700 | [diff] [blame] | 305 | br_set_state(p, state); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 306 | br_log_state(p); |
Vitalii Demianets | b03b6dd | 2011-11-25 00:16:37 +0000 | [diff] [blame] | 307 | br_port_state_selection(p->br); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 308 | return 0; |
| 309 | } |
| 310 | |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 311 | /* Set/clear or port flags based on attribute */ |
| 312 | static void br_set_port_flag(struct net_bridge_port *p, struct nlattr *tb[], |
| 313 | int attrtype, unsigned long mask) |
| 314 | { |
| 315 | if (tb[attrtype]) { |
| 316 | u8 flag = nla_get_u8(tb[attrtype]); |
| 317 | if (flag) |
| 318 | p->flags |= mask; |
| 319 | else |
| 320 | p->flags &= ~mask; |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | /* Process bridge protocol info on port */ |
| 325 | static int br_setport(struct net_bridge_port *p, struct nlattr *tb[]) |
| 326 | { |
| 327 | int err; |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 328 | unsigned long old_flags = p->flags; |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 329 | |
| 330 | br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE); |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 331 | br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD); |
David S. Miller | c2d3bab | 2012-12-05 16:24:45 -0500 | [diff] [blame] | 332 | br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE); |
Vlad Yasevich | 3d84fa9 | 2013-03-15 06:39:12 +0000 | [diff] [blame] | 333 | br_set_port_flag(p, tb, IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK); |
Vlad Yasevich | 9ba1889 | 2013-06-05 10:08:00 -0400 | [diff] [blame] | 334 | br_set_port_flag(p, tb, IFLA_BRPORT_LEARNING, BR_LEARNING); |
Vlad Yasevich | 867a594 | 2013-06-05 10:08:01 -0400 | [diff] [blame] | 335 | br_set_port_flag(p, tb, IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD); |
Kyeyoon Park | 9585011 | 2014-10-23 14:49:17 -0700 | [diff] [blame^] | 336 | br_set_port_flag(p, tb, IFLA_BRPORT_PROXYARP, BR_PROXYARP); |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 337 | |
| 338 | if (tb[IFLA_BRPORT_COST]) { |
| 339 | err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST])); |
| 340 | if (err) |
| 341 | return err; |
| 342 | } |
| 343 | |
| 344 | if (tb[IFLA_BRPORT_PRIORITY]) { |
| 345 | err = br_stp_set_port_priority(p, nla_get_u16(tb[IFLA_BRPORT_PRIORITY])); |
| 346 | if (err) |
| 347 | return err; |
| 348 | } |
| 349 | |
| 350 | if (tb[IFLA_BRPORT_STATE]) { |
| 351 | err = br_set_port_state(p, nla_get_u8(tb[IFLA_BRPORT_STATE])); |
| 352 | if (err) |
| 353 | return err; |
| 354 | } |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 355 | |
| 356 | br_port_flags_change(p, old_flags ^ p->flags); |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 357 | return 0; |
| 358 | } |
| 359 | |
| 360 | /* Change state and parameters on port. */ |
| 361 | int br_setlink(struct net_device *dev, struct nlmsghdr *nlh) |
| 362 | { |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 363 | struct nlattr *protinfo; |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 364 | struct nlattr *afspec; |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 365 | struct net_bridge_port *p; |
Dan Carpenter | 2062cc2 | 2012-12-07 01:10:46 +0000 | [diff] [blame] | 366 | struct nlattr *tb[IFLA_BRPORT_MAX + 1]; |
Hong zhi guo | 7b99a99 | 2013-03-24 03:26:47 +0000 | [diff] [blame] | 367 | int err = 0; |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 368 | |
Hong zhi guo | c60ee67 | 2013-03-28 06:21:22 +0000 | [diff] [blame] | 369 | protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_PROTINFO); |
| 370 | afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 371 | if (!protinfo && !afspec) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 372 | return 0; |
| 373 | |
| 374 | p = br_port_get_rtnl(dev); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 375 | /* We want to accept dev as bridge itself if the AF_SPEC |
stephen hemminger | 8e3bff9 | 2013-12-08 12:15:44 -0800 | [diff] [blame] | 376 | * is set to see if someone is setting vlan info on the bridge |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 377 | */ |
Hong zhi guo | 7b99a99 | 2013-03-24 03:26:47 +0000 | [diff] [blame] | 378 | if (!p && !afspec) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 379 | return -EINVAL; |
| 380 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 381 | if (p && protinfo) { |
| 382 | if (protinfo->nla_type & NLA_F_NESTED) { |
| 383 | err = nla_parse_nested(tb, IFLA_BRPORT_MAX, |
Jiri Pirko | 3ac636b | 2014-09-05 15:51:30 +0200 | [diff] [blame] | 384 | protinfo, br_port_policy); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 385 | if (err) |
| 386 | return err; |
| 387 | |
| 388 | spin_lock_bh(&p->br->lock); |
| 389 | err = br_setport(p, tb); |
| 390 | spin_unlock_bh(&p->br->lock); |
| 391 | } else { |
stephen hemminger | 8e3bff9 | 2013-12-08 12:15:44 -0800 | [diff] [blame] | 392 | /* Binary compatibility with old RSTP */ |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 393 | if (nla_len(protinfo) < sizeof(u8)) |
| 394 | return -EINVAL; |
| 395 | |
| 396 | spin_lock_bh(&p->br->lock); |
| 397 | err = br_set_port_state(p, nla_get_u8(protinfo)); |
| 398 | spin_unlock_bh(&p->br->lock); |
| 399 | } |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 400 | if (err) |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 401 | goto out; |
| 402 | } |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 403 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 404 | if (afspec) { |
| 405 | err = br_afspec((struct net_bridge *)netdev_priv(dev), p, |
| 406 | afspec, RTM_SETLINK); |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | if (err == 0) |
| 410 | br_ifinfo_notify(RTM_NEWLINK, p); |
| 411 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 412 | out: |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 413 | return err; |
| 414 | } |
| 415 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 416 | /* Delete port information */ |
| 417 | int br_dellink(struct net_device *dev, struct nlmsghdr *nlh) |
| 418 | { |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 419 | struct nlattr *afspec; |
| 420 | struct net_bridge_port *p; |
| 421 | int err; |
| 422 | |
Hong zhi guo | c60ee67 | 2013-03-28 06:21:22 +0000 | [diff] [blame] | 423 | afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 424 | if (!afspec) |
| 425 | return 0; |
| 426 | |
| 427 | p = br_port_get_rtnl(dev); |
| 428 | /* We want to accept dev as bridge itself as well */ |
| 429 | if (!p && !(dev->priv_flags & IFF_EBRIDGE)) |
| 430 | return -EINVAL; |
| 431 | |
| 432 | err = br_afspec((struct net_bridge *)netdev_priv(dev), p, |
| 433 | afspec, RTM_DELLINK); |
| 434 | |
| 435 | return err; |
| 436 | } |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 437 | static int br_validate(struct nlattr *tb[], struct nlattr *data[]) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 438 | { |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 439 | if (tb[IFLA_ADDRESS]) { |
| 440 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) |
| 441 | return -EINVAL; |
| 442 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) |
| 443 | return -EADDRNOTAVAIL; |
| 444 | } |
Thomas Graf | 32fe21c | 2007-03-22 11:59:03 -0700 | [diff] [blame] | 445 | |
| 446 | return 0; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 447 | } |
| 448 | |
Toshiaki Makita | 30313a3 | 2014-04-25 17:01:18 +0900 | [diff] [blame] | 449 | static int br_dev_newlink(struct net *src_net, struct net_device *dev, |
| 450 | struct nlattr *tb[], struct nlattr *data[]) |
| 451 | { |
| 452 | struct net_bridge *br = netdev_priv(dev); |
| 453 | |
| 454 | if (tb[IFLA_ADDRESS]) { |
| 455 | spin_lock_bh(&br->lock); |
| 456 | br_stp_change_bridge_id(br, nla_data(tb[IFLA_ADDRESS])); |
| 457 | spin_unlock_bh(&br->lock); |
| 458 | } |
| 459 | |
| 460 | return register_netdevice(dev); |
| 461 | } |
| 462 | |
Jiri Pirko | 3ac636b | 2014-09-05 15:51:30 +0200 | [diff] [blame] | 463 | static int br_port_slave_changelink(struct net_device *brdev, |
| 464 | struct net_device *dev, |
| 465 | struct nlattr *tb[], |
| 466 | struct nlattr *data[]) |
| 467 | { |
| 468 | if (!data) |
| 469 | return 0; |
| 470 | return br_setport(br_port_get_rtnl(dev), data); |
| 471 | } |
| 472 | |
Jiri Pirko | ced8283 | 2014-09-05 15:51:29 +0200 | [diff] [blame] | 473 | static int br_port_fill_slave_info(struct sk_buff *skb, |
| 474 | const struct net_device *brdev, |
| 475 | const struct net_device *dev) |
| 476 | { |
| 477 | return br_port_fill_attrs(skb, br_port_get_rtnl(dev)); |
| 478 | } |
| 479 | |
| 480 | static size_t br_port_get_slave_size(const struct net_device *brdev, |
| 481 | const struct net_device *dev) |
| 482 | { |
| 483 | return br_port_info_size(); |
| 484 | } |
| 485 | |
Jiri Pirko | 1332351 | 2014-09-05 15:51:32 +0200 | [diff] [blame] | 486 | static const struct nla_policy br_policy[IFLA_BR_MAX + 1] = { |
| 487 | [IFLA_BR_FORWARD_DELAY] = { .type = NLA_U32 }, |
| 488 | [IFLA_BR_HELLO_TIME] = { .type = NLA_U32 }, |
| 489 | [IFLA_BR_MAX_AGE] = { .type = NLA_U32 }, |
| 490 | }; |
| 491 | |
| 492 | static int br_changelink(struct net_device *brdev, struct nlattr *tb[], |
| 493 | struct nlattr *data[]) |
| 494 | { |
| 495 | struct net_bridge *br = netdev_priv(brdev); |
| 496 | int err; |
| 497 | |
| 498 | if (!data) |
| 499 | return 0; |
| 500 | |
| 501 | if (data[IFLA_BR_FORWARD_DELAY]) { |
| 502 | err = br_set_forward_delay(br, nla_get_u32(data[IFLA_BR_FORWARD_DELAY])); |
| 503 | if (err) |
| 504 | return err; |
| 505 | } |
| 506 | |
| 507 | if (data[IFLA_BR_HELLO_TIME]) { |
| 508 | err = br_set_hello_time(br, nla_get_u32(data[IFLA_BR_HELLO_TIME])); |
| 509 | if (err) |
| 510 | return err; |
| 511 | } |
| 512 | |
| 513 | if (data[IFLA_BR_MAX_AGE]) { |
| 514 | err = br_set_max_age(br, nla_get_u32(data[IFLA_BR_MAX_AGE])); |
| 515 | if (err) |
| 516 | return err; |
| 517 | } |
| 518 | |
| 519 | return 0; |
| 520 | } |
| 521 | |
Jiri Pirko | e5c3ea5 | 2014-09-05 15:51:31 +0200 | [diff] [blame] | 522 | static size_t br_get_size(const struct net_device *brdev) |
| 523 | { |
| 524 | return nla_total_size(sizeof(u32)) + /* IFLA_BR_FORWARD_DELAY */ |
| 525 | nla_total_size(sizeof(u32)) + /* IFLA_BR_HELLO_TIME */ |
| 526 | nla_total_size(sizeof(u32)) + /* IFLA_BR_MAX_AGE */ |
| 527 | 0; |
| 528 | } |
| 529 | |
| 530 | static int br_fill_info(struct sk_buff *skb, const struct net_device *brdev) |
| 531 | { |
| 532 | struct net_bridge *br = netdev_priv(brdev); |
| 533 | u32 forward_delay = jiffies_to_clock_t(br->forward_delay); |
| 534 | u32 hello_time = jiffies_to_clock_t(br->hello_time); |
| 535 | u32 age_time = jiffies_to_clock_t(br->max_age); |
| 536 | |
| 537 | if (nla_put_u32(skb, IFLA_BR_FORWARD_DELAY, forward_delay) || |
| 538 | nla_put_u32(skb, IFLA_BR_HELLO_TIME, hello_time) || |
| 539 | nla_put_u32(skb, IFLA_BR_MAX_AGE, age_time)) |
| 540 | return -EMSGSIZE; |
| 541 | |
| 542 | return 0; |
| 543 | } |
| 544 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 545 | static size_t br_get_link_af_size(const struct net_device *dev) |
| 546 | { |
| 547 | struct net_port_vlans *pv; |
| 548 | |
| 549 | if (br_port_exists(dev)) |
Hong Zhiguo | 1fb1754 | 2013-09-14 22:42:27 +0800 | [diff] [blame] | 550 | pv = nbp_get_vlan_info(br_port_get_rtnl(dev)); |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 551 | else if (dev->priv_flags & IFF_EBRIDGE) |
| 552 | pv = br_get_vlan_info((struct net_bridge *)netdev_priv(dev)); |
| 553 | else |
| 554 | return 0; |
| 555 | |
| 556 | if (!pv) |
| 557 | return 0; |
| 558 | |
| 559 | /* Each VLAN is returned in bridge_vlan_info along with flags */ |
| 560 | return pv->num_vlans * nla_total_size(sizeof(struct bridge_vlan_info)); |
| 561 | } |
| 562 | |
Cong Wang | 15004ca | 2013-02-13 19:57:12 +0000 | [diff] [blame] | 563 | static struct rtnl_af_ops br_af_ops = { |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 564 | .family = AF_BRIDGE, |
| 565 | .get_link_af_size = br_get_link_af_size, |
| 566 | }; |
| 567 | |
stephen hemminger | 149ddd8 | 2012-06-26 05:48:45 +0000 | [diff] [blame] | 568 | struct rtnl_link_ops br_link_ops __read_mostly = { |
Jiri Pirko | ced8283 | 2014-09-05 15:51:29 +0200 | [diff] [blame] | 569 | .kind = "bridge", |
| 570 | .priv_size = sizeof(struct net_bridge), |
| 571 | .setup = br_dev_setup, |
Jiri Pirko | 1332351 | 2014-09-05 15:51:32 +0200 | [diff] [blame] | 572 | .maxtype = IFLA_BRPORT_MAX, |
| 573 | .policy = br_policy, |
Jiri Pirko | ced8283 | 2014-09-05 15:51:29 +0200 | [diff] [blame] | 574 | .validate = br_validate, |
| 575 | .newlink = br_dev_newlink, |
Jiri Pirko | 1332351 | 2014-09-05 15:51:32 +0200 | [diff] [blame] | 576 | .changelink = br_changelink, |
Jiri Pirko | ced8283 | 2014-09-05 15:51:29 +0200 | [diff] [blame] | 577 | .dellink = br_dev_delete, |
Jiri Pirko | e5c3ea5 | 2014-09-05 15:51:31 +0200 | [diff] [blame] | 578 | .get_size = br_get_size, |
| 579 | .fill_info = br_fill_info, |
Jiri Pirko | 3ac636b | 2014-09-05 15:51:30 +0200 | [diff] [blame] | 580 | |
| 581 | .slave_maxtype = IFLA_BRPORT_MAX, |
| 582 | .slave_policy = br_port_policy, |
| 583 | .slave_changelink = br_port_slave_changelink, |
Jiri Pirko | ced8283 | 2014-09-05 15:51:29 +0200 | [diff] [blame] | 584 | .get_slave_size = br_port_get_slave_size, |
| 585 | .fill_slave_info = br_port_fill_slave_info, |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 586 | }; |
| 587 | |
| 588 | int __init br_netlink_init(void) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 589 | { |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 590 | int err; |
| 591 | |
| 592 | br_mdb_init(); |
stephen hemminger | 3678a9d | 2013-12-30 10:41:32 -0800 | [diff] [blame] | 593 | rtnl_af_register(&br_af_ops); |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 594 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 595 | err = rtnl_link_register(&br_link_ops); |
| 596 | if (err) |
| 597 | goto out_af; |
| 598 | |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 599 | return 0; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 600 | |
| 601 | out_af: |
| 602 | rtnl_af_unregister(&br_af_ops); |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 603 | br_mdb_uninit(); |
| 604 | return err; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 605 | } |
| 606 | |
Pablo Neira Ayuso | 34666d4 | 2014-09-18 11:29:03 +0200 | [diff] [blame] | 607 | void br_netlink_fini(void) |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 608 | { |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 609 | br_mdb_uninit(); |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 610 | rtnl_af_unregister(&br_af_ops); |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 611 | rtnl_link_unregister(&br_link_ops); |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 612 | } |