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 */ |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 33 | + 0; |
| 34 | } |
| 35 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 36 | static inline size_t br_nlmsg_size(void) |
| 37 | { |
| 38 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 39 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ |
| 40 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ |
| 41 | + nla_total_size(4) /* IFLA_MASTER */ |
| 42 | + nla_total_size(4) /* IFLA_MTU */ |
| 43 | + nla_total_size(4) /* IFLA_LINK */ |
| 44 | + nla_total_size(1) /* IFLA_OPERSTATE */ |
| 45 | + nla_total_size(br_port_info_size()); /* IFLA_PROTINFO */ |
| 46 | } |
| 47 | |
| 48 | static int br_port_fill_attrs(struct sk_buff *skb, |
| 49 | const struct net_bridge_port *p) |
| 50 | { |
| 51 | u8 mode = !!(p->flags & BR_HAIRPIN_MODE); |
| 52 | |
| 53 | if (nla_put_u8(skb, IFLA_BRPORT_STATE, p->state) || |
| 54 | nla_put_u16(skb, IFLA_BRPORT_PRIORITY, p->priority) || |
| 55 | nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) || |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 56 | nla_put_u8(skb, IFLA_BRPORT_MODE, mode) || |
stephen hemminger | 1007dd1 | 2012-11-13 07:53:08 +0000 | [diff] [blame] | 57 | 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] | 58 | nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK)) || |
| 59 | nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE, !!(p->flags & BR_MULTICAST_FAST_LEAVE))) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 60 | return -EMSGSIZE; |
| 61 | |
| 62 | return 0; |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 63 | } |
| 64 | |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 65 | /* |
| 66 | * Create one netlink message for one interface |
| 67 | * Contains port and master info as well as carrier and bridge state. |
| 68 | */ |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 69 | static int br_fill_ifinfo(struct sk_buff *skb, |
| 70 | const struct net_bridge_port *port, |
| 71 | u32 pid, u32 seq, int event, unsigned int flags, |
| 72 | u32 filter_mask, const struct net_device *dev) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 73 | { |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 74 | const struct net_bridge *br; |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 75 | struct ifinfomsg *hdr; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 76 | struct nlmsghdr *nlh; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 77 | u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN; |
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 | if (port) |
| 80 | br = port->br; |
| 81 | else |
| 82 | br = netdev_priv(dev); |
| 83 | |
stephen hemminger | 28a16c9 | 2010-05-10 09:31:09 +0000 | [diff] [blame] | 84 | br_debug(br, "br_fill_info event %d port %s master %s\n", |
| 85 | event, dev->name, br->dev->name); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 86 | |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 87 | nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags); |
| 88 | if (nlh == NULL) |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 89 | return -EMSGSIZE; |
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 | hdr = nlmsg_data(nlh); |
| 92 | hdr->ifi_family = AF_BRIDGE; |
| 93 | hdr->__ifi_pad = 0; |
| 94 | hdr->ifi_type = dev->type; |
| 95 | hdr->ifi_index = dev->ifindex; |
| 96 | hdr->ifi_flags = dev_get_flags(dev); |
| 97 | hdr->ifi_change = 0; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 98 | |
David S. Miller | 2eb812e | 2012-04-01 20:49:54 -0400 | [diff] [blame] | 99 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
| 100 | nla_put_u32(skb, IFLA_MASTER, br->dev->ifindex) || |
| 101 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || |
| 102 | nla_put_u8(skb, IFLA_OPERSTATE, operstate) || |
| 103 | (dev->addr_len && |
| 104 | nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || |
| 105 | (dev->ifindex != dev->iflink && |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 106 | nla_put_u32(skb, IFLA_LINK, dev->iflink))) |
David S. Miller | 2eb812e | 2012-04-01 20:49:54 -0400 | [diff] [blame] | 107 | goto nla_put_failure; |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 108 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 109 | if (event == RTM_NEWLINK && port) { |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 110 | struct nlattr *nest |
| 111 | = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED); |
| 112 | |
| 113 | if (nest == NULL || br_port_fill_attrs(skb, port) < 0) |
| 114 | goto nla_put_failure; |
| 115 | nla_nest_end(skb, nest); |
| 116 | } |
| 117 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 118 | /* Check if the VID information is requested */ |
| 119 | if (filter_mask & RTEXT_FILTER_BRVLAN) { |
| 120 | struct nlattr *af; |
| 121 | const struct net_port_vlans *pv; |
| 122 | struct bridge_vlan_info vinfo; |
| 123 | u16 vid; |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 124 | u16 pvid; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 125 | |
| 126 | if (port) |
| 127 | pv = nbp_get_vlan_info(port); |
| 128 | else |
| 129 | pv = br_get_vlan_info(br); |
| 130 | |
| 131 | if (!pv || bitmap_empty(pv->vlan_bitmap, BR_VLAN_BITMAP_LEN)) |
| 132 | goto done; |
| 133 | |
| 134 | af = nla_nest_start(skb, IFLA_AF_SPEC); |
| 135 | if (!af) |
| 136 | goto nla_put_failure; |
| 137 | |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 138 | pvid = br_get_pvid(pv); |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 139 | for (vid = find_first_bit(pv->vlan_bitmap, BR_VLAN_BITMAP_LEN); |
| 140 | vid < BR_VLAN_BITMAP_LEN; |
| 141 | vid = find_next_bit(pv->vlan_bitmap, |
| 142 | BR_VLAN_BITMAP_LEN, vid+1)) { |
| 143 | vinfo.vid = vid; |
| 144 | vinfo.flags = 0; |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 145 | if (vid == pvid) |
| 146 | vinfo.flags |= BRIDGE_VLAN_INFO_PVID; |
Vlad Yasevich | 35e03f3 | 2013-02-13 12:00:20 +0000 | [diff] [blame] | 147 | |
| 148 | if (test_bit(vid, pv->untagged_bitmap)) |
| 149 | vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED; |
| 150 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 151 | if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO, |
| 152 | sizeof(vinfo), &vinfo)) |
| 153 | goto nla_put_failure; |
| 154 | } |
| 155 | |
| 156 | nla_nest_end(skb, af); |
| 157 | } |
| 158 | |
| 159 | done: |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 160 | return nlmsg_end(skb, nlh); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 161 | |
Thomas Graf | 7468596 | 2006-11-20 16:20:22 -0800 | [diff] [blame] | 162 | nla_put_failure: |
Patrick McHardy | 2693256 | 2007-01-31 23:16:40 -0800 | [diff] [blame] | 163 | nlmsg_cancel(skb, nlh); |
| 164 | return -EMSGSIZE; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | /* |
| 168 | * Notify listeners of a change in port information |
| 169 | */ |
| 170 | void br_ifinfo_notify(int event, struct net_bridge_port *port) |
| 171 | { |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 172 | struct net *net; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 173 | struct sk_buff *skb; |
Thomas Graf | 280a306 | 2006-08-15 00:36:28 -0700 | [diff] [blame] | 174 | int err = -ENOBUFS; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 175 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 176 | if (!port) |
| 177 | return; |
| 178 | |
| 179 | net = dev_net(port->dev); |
stephen hemminger | 28a16c9 | 2010-05-10 09:31:09 +0000 | [diff] [blame] | 180 | br_debug(port->br, "port %u(%s) event %d\n", |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 181 | (unsigned int)port->port_no, port->dev->name, event); |
stephen hemminger | 28a16c9 | 2010-05-10 09:31:09 +0000 | [diff] [blame] | 182 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 183 | skb = nlmsg_new(br_nlmsg_size(), GFP_ATOMIC); |
Thomas Graf | 280a306 | 2006-08-15 00:36:28 -0700 | [diff] [blame] | 184 | if (skb == NULL) |
| 185 | goto errout; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 186 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 187 | 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] | 188 | if (err < 0) { |
| 189 | /* -EMSGSIZE implies BUG in br_nlmsg_size() */ |
| 190 | WARN_ON(err == -EMSGSIZE); |
| 191 | kfree_skb(skb); |
| 192 | goto errout; |
| 193 | } |
Pablo Neira Ayuso | 1ce85fe | 2009-02-24 23:18:28 -0800 | [diff] [blame] | 194 | rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC); |
| 195 | return; |
Thomas Graf | 280a306 | 2006-08-15 00:36:28 -0700 | [diff] [blame] | 196 | errout: |
Stephen Hemminger | bea1b42 | 2006-08-03 16:24:02 -0700 | [diff] [blame] | 197 | if (err < 0) |
Alexey Dobriyan | 4aa678b | 2008-09-08 16:19:58 -0700 | [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; |
| 209 | struct net_bridge_port *port = br_port_get_rcu(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 | /* not a bridge port and */ |
| 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 | |
| 245 | if (vinfo->vid >= VLAN_N_VID) |
| 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 | |
| 261 | if (err) |
| 262 | break; |
| 263 | |
| 264 | break; |
| 265 | |
| 266 | case RTM_DELLINK: |
| 267 | if (p) { |
| 268 | nbp_vlan_delete(p, vinfo->vid); |
| 269 | if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER) |
| 270 | br_vlan_delete(p->br, vinfo->vid); |
| 271 | } else |
| 272 | br_vlan_delete(br, vinfo->vid); |
| 273 | break; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | return err; |
| 278 | } |
| 279 | |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 280 | static const struct nla_policy ifla_brport_policy[IFLA_BRPORT_MAX + 1] = { |
| 281 | [IFLA_BRPORT_STATE] = { .type = NLA_U8 }, |
| 282 | [IFLA_BRPORT_COST] = { .type = NLA_U32 }, |
| 283 | [IFLA_BRPORT_PRIORITY] = { .type = NLA_U16 }, |
| 284 | [IFLA_BRPORT_MODE] = { .type = NLA_U8 }, |
stephen hemminger | a2e01a6 | 2012-11-13 07:53:07 +0000 | [diff] [blame] | 285 | [IFLA_BRPORT_GUARD] = { .type = NLA_U8 }, |
stephen hemminger | 1007dd1 | 2012-11-13 07:53:08 +0000 | [diff] [blame] | 286 | [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 }, |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 287 | }; |
| 288 | |
| 289 | /* Change the state of the port and notify spanning tree */ |
| 290 | 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] | 291 | { |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 292 | if (state > BR_STATE_BLOCKING) |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 293 | return -EINVAL; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 294 | |
| 295 | /* if kernel STP is running, don't allow changes */ |
Stephen Hemminger | 9cde070 | 2007-03-21 14:22:44 -0700 | [diff] [blame] | 296 | if (p->br->stp_enabled == BR_KERNEL_STP) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 297 | return -EBUSY; |
| 298 | |
stephen hemminger | 576eb62 | 2012-12-28 18:15:22 +0000 | [diff] [blame] | 299 | /* if device is not up, change is not allowed |
| 300 | * if link is not present, only allowable state is disabled |
| 301 | */ |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 302 | if (!netif_running(p->dev) || |
stephen hemminger | 576eb62 | 2012-12-28 18:15:22 +0000 | [diff] [blame] | 303 | (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED)) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 304 | return -ENETDOWN; |
| 305 | |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 306 | p->state = state; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 307 | br_log_state(p); |
Vitalii Demianets | b03b6dd | 2011-11-25 00:16:37 +0000 | [diff] [blame] | 308 | br_port_state_selection(p->br); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 309 | return 0; |
| 310 | } |
| 311 | |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 312 | /* Set/clear or port flags based on attribute */ |
| 313 | static void br_set_port_flag(struct net_bridge_port *p, struct nlattr *tb[], |
| 314 | int attrtype, unsigned long mask) |
| 315 | { |
| 316 | if (tb[attrtype]) { |
| 317 | u8 flag = nla_get_u8(tb[attrtype]); |
| 318 | if (flag) |
| 319 | p->flags |= mask; |
| 320 | else |
| 321 | p->flags &= ~mask; |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | /* Process bridge protocol info on port */ |
| 326 | static int br_setport(struct net_bridge_port *p, struct nlattr *tb[]) |
| 327 | { |
| 328 | int err; |
| 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); |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 334 | |
| 335 | if (tb[IFLA_BRPORT_COST]) { |
| 336 | err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST])); |
| 337 | if (err) |
| 338 | return err; |
| 339 | } |
| 340 | |
| 341 | if (tb[IFLA_BRPORT_PRIORITY]) { |
| 342 | err = br_stp_set_port_priority(p, nla_get_u16(tb[IFLA_BRPORT_PRIORITY])); |
| 343 | if (err) |
| 344 | return err; |
| 345 | } |
| 346 | |
| 347 | if (tb[IFLA_BRPORT_STATE]) { |
| 348 | err = br_set_port_state(p, nla_get_u8(tb[IFLA_BRPORT_STATE])); |
| 349 | if (err) |
| 350 | return err; |
| 351 | } |
| 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | /* Change state and parameters on port. */ |
| 356 | int br_setlink(struct net_device *dev, struct nlmsghdr *nlh) |
| 357 | { |
| 358 | struct ifinfomsg *ifm; |
| 359 | struct nlattr *protinfo; |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 360 | struct nlattr *afspec; |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 361 | struct net_bridge_port *p; |
Dan Carpenter | 2062cc2 | 2012-12-07 01:10:46 +0000 | [diff] [blame] | 362 | struct nlattr *tb[IFLA_BRPORT_MAX + 1]; |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 363 | int err; |
| 364 | |
| 365 | ifm = nlmsg_data(nlh); |
| 366 | |
| 367 | protinfo = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_PROTINFO); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 368 | afspec = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_AF_SPEC); |
| 369 | if (!protinfo && !afspec) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 370 | return 0; |
| 371 | |
| 372 | p = br_port_get_rtnl(dev); |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 373 | /* We want to accept dev as bridge itself if the AF_SPEC |
| 374 | * is set to see if someone is setting vlan info on the brigde |
| 375 | */ |
| 376 | if (!p && ((dev->priv_flags & IFF_EBRIDGE) && !afspec)) |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 377 | return -EINVAL; |
| 378 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 379 | if (p && protinfo) { |
| 380 | if (protinfo->nla_type & NLA_F_NESTED) { |
| 381 | err = nla_parse_nested(tb, IFLA_BRPORT_MAX, |
| 382 | protinfo, ifla_brport_policy); |
| 383 | if (err) |
| 384 | return err; |
| 385 | |
| 386 | spin_lock_bh(&p->br->lock); |
| 387 | err = br_setport(p, tb); |
| 388 | spin_unlock_bh(&p->br->lock); |
| 389 | } else { |
| 390 | /* Binary compatability with old RSTP */ |
| 391 | if (nla_len(protinfo) < sizeof(u8)) |
| 392 | return -EINVAL; |
| 393 | |
| 394 | spin_lock_bh(&p->br->lock); |
| 395 | err = br_set_port_state(p, nla_get_u8(protinfo)); |
| 396 | spin_unlock_bh(&p->br->lock); |
| 397 | } |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 398 | if (err) |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 399 | goto out; |
| 400 | } |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 401 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 402 | if (afspec) { |
| 403 | err = br_afspec((struct net_bridge *)netdev_priv(dev), p, |
| 404 | afspec, RTM_SETLINK); |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | if (err == 0) |
| 408 | br_ifinfo_notify(RTM_NEWLINK, p); |
| 409 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 410 | out: |
stephen hemminger | 25c71c7 | 2012-11-13 07:53:05 +0000 | [diff] [blame] | 411 | return err; |
| 412 | } |
| 413 | |
Vlad Yasevich | 407af32 | 2013-02-13 12:00:12 +0000 | [diff] [blame] | 414 | /* Delete port information */ |
| 415 | int br_dellink(struct net_device *dev, struct nlmsghdr *nlh) |
| 416 | { |
| 417 | struct ifinfomsg *ifm; |
| 418 | struct nlattr *afspec; |
| 419 | struct net_bridge_port *p; |
| 420 | int err; |
| 421 | |
| 422 | ifm = nlmsg_data(nlh); |
| 423 | |
| 424 | afspec = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_AF_SPEC); |
| 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 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 450 | static size_t br_get_link_af_size(const struct net_device *dev) |
| 451 | { |
| 452 | struct net_port_vlans *pv; |
| 453 | |
| 454 | if (br_port_exists(dev)) |
| 455 | pv = nbp_get_vlan_info(br_port_get_rcu(dev)); |
| 456 | else if (dev->priv_flags & IFF_EBRIDGE) |
| 457 | pv = br_get_vlan_info((struct net_bridge *)netdev_priv(dev)); |
| 458 | else |
| 459 | return 0; |
| 460 | |
| 461 | if (!pv) |
| 462 | return 0; |
| 463 | |
| 464 | /* Each VLAN is returned in bridge_vlan_info along with flags */ |
| 465 | return pv->num_vlans * nla_total_size(sizeof(struct bridge_vlan_info)); |
| 466 | } |
| 467 | |
Cong Wang | 15004ca | 2013-02-13 19:57:12 +0000 | [diff] [blame] | 468 | static struct rtnl_af_ops br_af_ops = { |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 469 | .family = AF_BRIDGE, |
| 470 | .get_link_af_size = br_get_link_af_size, |
| 471 | }; |
| 472 | |
stephen hemminger | 149ddd8 | 2012-06-26 05:48:45 +0000 | [diff] [blame] | 473 | struct rtnl_link_ops br_link_ops __read_mostly = { |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 474 | .kind = "bridge", |
| 475 | .priv_size = sizeof(struct net_bridge), |
| 476 | .setup = br_dev_setup, |
| 477 | .validate = br_validate, |
stephen hemminger | 1ce5cce | 2011-10-06 11:19:41 +0000 | [diff] [blame] | 478 | .dellink = br_dev_delete, |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 479 | }; |
| 480 | |
| 481 | int __init br_netlink_init(void) |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 482 | { |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 483 | int err; |
| 484 | |
| 485 | br_mdb_init(); |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 486 | err = rtnl_af_register(&br_af_ops); |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 487 | if (err) |
| 488 | goto out; |
| 489 | |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 490 | err = rtnl_link_register(&br_link_ops); |
| 491 | if (err) |
| 492 | goto out_af; |
| 493 | |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 494 | return 0; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 495 | |
| 496 | out_af: |
| 497 | rtnl_af_unregister(&br_af_ops); |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 498 | out: |
| 499 | br_mdb_uninit(); |
| 500 | return err; |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 501 | } |
| 502 | |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 503 | void __exit br_netlink_fini(void) |
| 504 | { |
Vlad Yasevich | 3ec8e9f | 2013-01-02 09:41:25 +0000 | [diff] [blame] | 505 | br_mdb_uninit(); |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 506 | rtnl_af_unregister(&br_af_ops); |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 507 | rtnl_link_unregister(&br_link_ops); |
stephen hemminger | bb900b2 | 2011-04-04 14:03:32 +0000 | [diff] [blame] | 508 | } |