blob: e74ddc1c29a8be20f1a093fcc8e27b11bca6f03e [file] [log] [blame]
Stephen Hemminger11dc1f32006-05-25 16:00:12 -07001/*
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 Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
stephen hemmingerbb900b22011-04-04 14:03:32 +000015#include <linux/etherdevice.h>
Thomas Graf32fe21c2007-03-22 11:59:03 -070016#include <net/rtnetlink.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070017#include <net/net_namespace.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110018#include <net/sock.h>
Vlad Yasevich407af322013-02-13 12:00:12 +000019#include <uapi/linux/if_bridge.h>
stephen hemmingerbb900b22011-04-04 14:03:32 +000020
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070021#include "br_private.h"
Vitalii Demianetsb03b6dd2011-11-25 00:16:37 +000022#include "br_private_stp.h"
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070023
stephen hemminger25c71c72012-11-13 07:53:05 +000024static 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 hemmingera2e01a62012-11-13 07:53:07 +000030 + nla_total_size(1) /* IFLA_BRPORT_GUARD */
stephen hemminger1007dd12012-11-13 07:53:08 +000031 + nla_total_size(1) /* IFLA_BRPORT_PROTECT */
stephen hemminger3da889b2013-03-11 13:52:17 +000032 + nla_total_size(1) /* IFLA_BRPORT_FAST_LEAVE */
Vlad Yasevich9ba18892013-06-05 10:08:00 -040033 + nla_total_size(1) /* IFLA_BRPORT_LEARNING */
Vlad Yasevich867a5942013-06-05 10:08:01 -040034 + nla_total_size(1) /* IFLA_BRPORT_UNICAST_FLOOD */
stephen hemminger25c71c72012-11-13 07:53:05 +000035 + 0;
36}
37
Thomas Graf339bf982006-11-10 14:10:15 -080038static inline size_t br_nlmsg_size(void)
39{
40 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
stephen hemminger25c71c72012-11-13 07:53:05 +000041 + 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
50static 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 hemmingera2e01a62012-11-13 07:53:07 +000058 nla_put_u8(skb, IFLA_BRPORT_MODE, mode) ||
stephen hemminger1007dd12012-11-13 07:53:08 +000059 nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) ||
David S. Millerc2d3bab2012-12-05 16:24:45 -050060 nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK)) ||
Vlad Yasevich9ba18892013-06-05 10:08:00 -040061 nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE, !!(p->flags & BR_MULTICAST_FAST_LEAVE)) ||
Vlad Yasevich867a5942013-06-05 10:08:01 -040062 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 hemminger25c71c72012-11-13 07:53:05 +000064 return -EMSGSIZE;
65
66 return 0;
Thomas Graf339bf982006-11-10 14:10:15 -080067}
68
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070069/*
70 * Create one netlink message for one interface
71 * Contains port and master info as well as carrier and bridge state.
72 */
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +000073static 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 Hemminger11dc1f32006-05-25 16:00:12 -070077{
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +000078 const struct net_bridge *br;
Thomas Graf74685962006-11-20 16:20:22 -080079 struct ifinfomsg *hdr;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070080 struct nlmsghdr *nlh;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070081 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070082
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +000083 if (port)
84 br = port->br;
85 else
86 br = netdev_priv(dev);
87
stephen hemminger28a16c92010-05-10 09:31:09 +000088 br_debug(br, "br_fill_info event %d port %s master %s\n",
89 event, dev->name, br->dev->name);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070090
Thomas Graf74685962006-11-20 16:20:22 -080091 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
92 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -080093 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070094
Thomas Graf74685962006-11-20 16:20:22 -080095 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 Hemminger11dc1f32006-05-25 16:00:12 -0700102
David S. Miller2eb812e2012-04-01 20:49:54 -0400103 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 hemminger25c71c72012-11-13 07:53:05 +0000110 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
David S. Miller2eb812e2012-04-01 20:49:54 -0400111 goto nla_put_failure;
stephen hemminger25c71c72012-11-13 07:53:05 +0000112
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000113 if (event == RTM_NEWLINK && port) {
stephen hemminger25c71c72012-11-13 07:53:05 +0000114 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 Yasevich6cbdcee2013-02-13 12:00:13 +0000122 /* 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 Yasevich552406c2013-02-13 12:00:15 +0000128 u16 pvid;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000129
130 if (port)
131 pv = nbp_get_vlan_info(port);
132 else
133 pv = br_get_vlan_info(br);
134
Toshiaki Makitaef40b7e2013-08-20 17:10:18 +0900135 if (!pv || bitmap_empty(pv->vlan_bitmap, VLAN_N_VID))
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000136 goto done;
137
138 af = nla_nest_start(skb, IFLA_AF_SPEC);
139 if (!af)
140 goto nla_put_failure;
141
Vlad Yasevich552406c2013-02-13 12:00:15 +0000142 pvid = br_get_pvid(pv);
Toshiaki Makitaef40b7e2013-08-20 17:10:18 +0900143 for_each_set_bit(vid, pv->vlan_bitmap, VLAN_N_VID) {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000144 vinfo.vid = vid;
145 vinfo.flags = 0;
Vlad Yasevich552406c2013-02-13 12:00:15 +0000146 if (vid == pvid)
147 vinfo.flags |= BRIDGE_VLAN_INFO_PVID;
Vlad Yasevich35e03f32013-02-13 12:00:20 +0000148
149 if (test_bit(vid, pv->untagged_bitmap))
150 vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED;
151
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000152 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
160done:
Thomas Graf74685962006-11-20 16:20:22 -0800161 return nlmsg_end(skb, nlh);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700162
Thomas Graf74685962006-11-20 16:20:22 -0800163nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800164 nlmsg_cancel(skb, nlh);
165 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700166}
167
168/*
169 * Notify listeners of a change in port information
170 */
171void br_ifinfo_notify(int event, struct net_bridge_port *port)
172{
Vlad Yasevich407af322013-02-13 12:00:12 +0000173 struct net *net;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700174 struct sk_buff *skb;
Thomas Graf280a3062006-08-15 00:36:28 -0700175 int err = -ENOBUFS;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700176
Vlad Yasevich407af322013-02-13 12:00:12 +0000177 if (!port)
178 return;
179
180 net = dev_net(port->dev);
stephen hemminger28a16c92010-05-10 09:31:09 +0000181 br_debug(port->br, "port %u(%s) event %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +0000182 (unsigned int)port->port_no, port->dev->name, event);
stephen hemminger28a16c92010-05-10 09:31:09 +0000183
Thomas Graf339bf982006-11-10 14:10:15 -0800184 skb = nlmsg_new(br_nlmsg_size(), GFP_ATOMIC);
Thomas Graf280a3062006-08-15 00:36:28 -0700185 if (skb == NULL)
186 goto errout;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700187
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000188 err = br_fill_ifinfo(skb, port, 0, 0, event, 0, 0, port->dev);
Patrick McHardy26932562007-01-31 23:16:40 -0800189 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 Ayuso1ce85fe2009-02-24 23:18:28 -0800195 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
196 return;
Thomas Graf280a3062006-08-15 00:36:28 -0700197errout:
Stephen Hemmingerbea1b422006-08-03 16:24:02 -0700198 if (err < 0)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700199 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700200}
201
Vlad Yasevich407af322013-02-13 12:00:12 +0000202
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700203/*
204 * Dump information about all ports, in response to GETLINK
205 */
John Fastabende5a55a82012-10-24 08:12:57 +0000206int br_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000207 struct net_device *dev, u32 filter_mask)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700208{
John Fastabende5a55a82012-10-24 08:12:57 +0000209 int err = 0;
Hong Zhiguo1fb17542013-09-14 22:42:27 +0800210 struct net_bridge_port *port = br_port_get_rtnl(dev);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700211
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000212 /* not a bridge port and */
213 if (!port && !(filter_mask & RTEXT_FILTER_BRVLAN))
John Fastabende5a55a82012-10-24 08:12:57 +0000214 goto out;
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000215
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000216 err = br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, NLM_F_MULTI,
217 filter_mask, dev);
John Fastabende5a55a82012-10-24 08:12:57 +0000218out:
219 return err;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700220}
221
Cong Wang15004ca2013-02-13 19:57:12 +0000222static const struct nla_policy ifla_br_policy[IFLA_MAX+1] = {
Vlad Yasevich407af322013-02-13 12:00:12 +0000223 [IFLA_BRIDGE_FLAGS] = { .type = NLA_U16 },
224 [IFLA_BRIDGE_MODE] = { .type = NLA_U16 },
225 [IFLA_BRIDGE_VLAN_INFO] = { .type = NLA_BINARY,
226 .len = sizeof(struct bridge_vlan_info), },
227};
228
229static int br_afspec(struct net_bridge *br,
230 struct net_bridge_port *p,
231 struct nlattr *af_spec,
232 int cmd)
233{
234 struct nlattr *tb[IFLA_BRIDGE_MAX+1];
235 int err = 0;
236
237 err = nla_parse_nested(tb, IFLA_BRIDGE_MAX, af_spec, ifla_br_policy);
238 if (err)
239 return err;
240
241 if (tb[IFLA_BRIDGE_VLAN_INFO]) {
242 struct bridge_vlan_info *vinfo;
243
244 vinfo = nla_data(tb[IFLA_BRIDGE_VLAN_INFO]);
245
246 if (vinfo->vid >= VLAN_N_VID)
247 return -EINVAL;
248
249 switch (cmd) {
250 case RTM_SETLINK:
251 if (p) {
Vlad Yasevich552406c2013-02-13 12:00:15 +0000252 err = nbp_vlan_add(p, vinfo->vid, vinfo->flags);
Vlad Yasevich407af322013-02-13 12:00:12 +0000253 if (err)
254 break;
255
256 if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER)
Vlad Yasevich552406c2013-02-13 12:00:15 +0000257 err = br_vlan_add(p->br, vinfo->vid,
258 vinfo->flags);
Vlad Yasevich407af322013-02-13 12:00:12 +0000259 } else
Vlad Yasevich552406c2013-02-13 12:00:15 +0000260 err = br_vlan_add(br, vinfo->vid, vinfo->flags);
Vlad Yasevich407af322013-02-13 12:00:12 +0000261
262 if (err)
263 break;
264
265 break;
266
267 case RTM_DELLINK:
268 if (p) {
269 nbp_vlan_delete(p, vinfo->vid);
270 if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER)
271 br_vlan_delete(p->br, vinfo->vid);
272 } else
273 br_vlan_delete(br, vinfo->vid);
274 break;
275 }
276 }
277
278 return err;
279}
280
stephen hemminger25c71c72012-11-13 07:53:05 +0000281static const struct nla_policy ifla_brport_policy[IFLA_BRPORT_MAX + 1] = {
282 [IFLA_BRPORT_STATE] = { .type = NLA_U8 },
283 [IFLA_BRPORT_COST] = { .type = NLA_U32 },
284 [IFLA_BRPORT_PRIORITY] = { .type = NLA_U16 },
285 [IFLA_BRPORT_MODE] = { .type = NLA_U8 },
stephen hemmingera2e01a62012-11-13 07:53:07 +0000286 [IFLA_BRPORT_GUARD] = { .type = NLA_U8 },
stephen hemminger1007dd12012-11-13 07:53:08 +0000287 [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 },
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400288 [IFLA_BRPORT_LEARNING] = { .type = NLA_U8 },
Vlad Yasevich867a5942013-06-05 10:08:01 -0400289 [IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 },
stephen hemminger25c71c72012-11-13 07:53:05 +0000290};
291
292/* Change the state of the port and notify spanning tree */
293static int br_set_port_state(struct net_bridge_port *p, u8 state)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700294{
stephen hemminger25c71c72012-11-13 07:53:05 +0000295 if (state > BR_STATE_BLOCKING)
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000296 return -EINVAL;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700297
298 /* if kernel STP is running, don't allow changes */
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700299 if (p->br->stp_enabled == BR_KERNEL_STP)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700300 return -EBUSY;
301
stephen hemminger576eb622012-12-28 18:15:22 +0000302 /* if device is not up, change is not allowed
303 * if link is not present, only allowable state is disabled
304 */
stephen hemminger25c71c72012-11-13 07:53:05 +0000305 if (!netif_running(p->dev) ||
stephen hemminger576eb622012-12-28 18:15:22 +0000306 (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED))
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700307 return -ENETDOWN;
308
stephen hemminger25c71c72012-11-13 07:53:05 +0000309 p->state = state;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700310 br_log_state(p);
Vitalii Demianetsb03b6dd2011-11-25 00:16:37 +0000311 br_port_state_selection(p->br);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700312 return 0;
313}
314
stephen hemminger25c71c72012-11-13 07:53:05 +0000315/* Set/clear or port flags based on attribute */
316static void br_set_port_flag(struct net_bridge_port *p, struct nlattr *tb[],
317 int attrtype, unsigned long mask)
318{
319 if (tb[attrtype]) {
320 u8 flag = nla_get_u8(tb[attrtype]);
321 if (flag)
322 p->flags |= mask;
323 else
324 p->flags &= ~mask;
325 }
326}
327
328/* Process bridge protocol info on port */
329static int br_setport(struct net_bridge_port *p, struct nlattr *tb[])
330{
331 int err;
332
333 br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE);
stephen hemmingera2e01a62012-11-13 07:53:07 +0000334 br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD);
David S. Millerc2d3bab2012-12-05 16:24:45 -0500335 br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE);
Vlad Yasevich3d84fa92013-03-15 06:39:12 +0000336 br_set_port_flag(p, tb, IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK);
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400337 br_set_port_flag(p, tb, IFLA_BRPORT_LEARNING, BR_LEARNING);
Vlad Yasevich867a5942013-06-05 10:08:01 -0400338 br_set_port_flag(p, tb, IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD);
stephen hemminger25c71c72012-11-13 07:53:05 +0000339
340 if (tb[IFLA_BRPORT_COST]) {
341 err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST]));
342 if (err)
343 return err;
344 }
345
346 if (tb[IFLA_BRPORT_PRIORITY]) {
347 err = br_stp_set_port_priority(p, nla_get_u16(tb[IFLA_BRPORT_PRIORITY]));
348 if (err)
349 return err;
350 }
351
352 if (tb[IFLA_BRPORT_STATE]) {
353 err = br_set_port_state(p, nla_get_u8(tb[IFLA_BRPORT_STATE]));
354 if (err)
355 return err;
356 }
357 return 0;
358}
359
360/* Change state and parameters on port. */
361int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
362{
stephen hemminger25c71c72012-11-13 07:53:05 +0000363 struct nlattr *protinfo;
Vlad Yasevich407af322013-02-13 12:00:12 +0000364 struct nlattr *afspec;
stephen hemminger25c71c72012-11-13 07:53:05 +0000365 struct net_bridge_port *p;
Dan Carpenter2062cc22012-12-07 01:10:46 +0000366 struct nlattr *tb[IFLA_BRPORT_MAX + 1];
Hong zhi guo7b99a992013-03-24 03:26:47 +0000367 int err = 0;
stephen hemminger25c71c72012-11-13 07:53:05 +0000368
Hong zhi guoc60ee672013-03-28 06:21:22 +0000369 protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_PROTINFO);
370 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Vlad Yasevich407af322013-02-13 12:00:12 +0000371 if (!protinfo && !afspec)
stephen hemminger25c71c72012-11-13 07:53:05 +0000372 return 0;
373
374 p = br_port_get_rtnl(dev);
Vlad Yasevich407af322013-02-13 12:00:12 +0000375 /* We want to accept dev as bridge itself if the AF_SPEC
376 * is set to see if someone is setting vlan info on the brigde
377 */
Hong zhi guo7b99a992013-03-24 03:26:47 +0000378 if (!p && !afspec)
stephen hemminger25c71c72012-11-13 07:53:05 +0000379 return -EINVAL;
380
Vlad Yasevich407af322013-02-13 12:00:12 +0000381 if (p && protinfo) {
382 if (protinfo->nla_type & NLA_F_NESTED) {
383 err = nla_parse_nested(tb, IFLA_BRPORT_MAX,
384 protinfo, ifla_brport_policy);
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 {
392 /* Binary compatability with old RSTP */
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 hemminger25c71c72012-11-13 07:53:05 +0000400 if (err)
Vlad Yasevich407af322013-02-13 12:00:12 +0000401 goto out;
402 }
stephen hemminger25c71c72012-11-13 07:53:05 +0000403
Vlad Yasevich407af322013-02-13 12:00:12 +0000404 if (afspec) {
405 err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
406 afspec, RTM_SETLINK);
stephen hemminger25c71c72012-11-13 07:53:05 +0000407 }
408
409 if (err == 0)
410 br_ifinfo_notify(RTM_NEWLINK, p);
411
Vlad Yasevich407af322013-02-13 12:00:12 +0000412out:
stephen hemminger25c71c72012-11-13 07:53:05 +0000413 return err;
414}
415
Vlad Yasevich407af322013-02-13 12:00:12 +0000416/* Delete port information */
417int br_dellink(struct net_device *dev, struct nlmsghdr *nlh)
418{
Vlad Yasevich407af322013-02-13 12:00:12 +0000419 struct nlattr *afspec;
420 struct net_bridge_port *p;
421 int err;
422
Hong zhi guoc60ee672013-03-28 06:21:22 +0000423 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Vlad Yasevich407af322013-02-13 12:00:12 +0000424 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 hemmingerbb900b22011-04-04 14:03:32 +0000437static int br_validate(struct nlattr *tb[], struct nlattr *data[])
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700438{
stephen hemmingerbb900b22011-04-04 14:03:32 +0000439 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 Graf32fe21c2007-03-22 11:59:03 -0700445
446 return 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700447}
448
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000449static size_t br_get_link_af_size(const struct net_device *dev)
450{
451 struct net_port_vlans *pv;
452
453 if (br_port_exists(dev))
Hong Zhiguo1fb17542013-09-14 22:42:27 +0800454 pv = nbp_get_vlan_info(br_port_get_rtnl(dev));
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000455 else if (dev->priv_flags & IFF_EBRIDGE)
456 pv = br_get_vlan_info((struct net_bridge *)netdev_priv(dev));
457 else
458 return 0;
459
460 if (!pv)
461 return 0;
462
463 /* Each VLAN is returned in bridge_vlan_info along with flags */
464 return pv->num_vlans * nla_total_size(sizeof(struct bridge_vlan_info));
465}
466
Cong Wang15004ca2013-02-13 19:57:12 +0000467static struct rtnl_af_ops br_af_ops = {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000468 .family = AF_BRIDGE,
469 .get_link_af_size = br_get_link_af_size,
470};
471
stephen hemminger149ddd82012-06-26 05:48:45 +0000472struct rtnl_link_ops br_link_ops __read_mostly = {
stephen hemmingerbb900b22011-04-04 14:03:32 +0000473 .kind = "bridge",
474 .priv_size = sizeof(struct net_bridge),
475 .setup = br_dev_setup,
476 .validate = br_validate,
stephen hemminger1ce5cce2011-10-06 11:19:41 +0000477 .dellink = br_dev_delete,
stephen hemmingerbb900b22011-04-04 14:03:32 +0000478};
479
480int __init br_netlink_init(void)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700481{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000482 int err;
483
484 br_mdb_init();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000485 err = rtnl_af_register(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000486 if (err)
487 goto out;
488
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000489 err = rtnl_link_register(&br_link_ops);
490 if (err)
491 goto out_af;
492
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000493 return 0;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000494
495out_af:
496 rtnl_af_unregister(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000497out:
498 br_mdb_uninit();
499 return err;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700500}
501
stephen hemmingerbb900b22011-04-04 14:03:32 +0000502void __exit br_netlink_fini(void)
503{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000504 br_mdb_uninit();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000505 rtnl_af_unregister(&br_af_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +0000506 rtnl_link_unregister(&br_link_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +0000507}