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