blob: 27aa3ee517ce56101e28fd37602356f1f43843ff [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 hemminger25c71c72012-11-13 07:53:05 +000032 + 0;
33}
34
Thomas Graf339bf982006-11-10 14:10:15 -080035static inline size_t br_nlmsg_size(void)
36{
37 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
stephen hemminger25c71c72012-11-13 07:53:05 +000038 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
39 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
40 + nla_total_size(4) /* IFLA_MASTER */
41 + nla_total_size(4) /* IFLA_MTU */
42 + nla_total_size(4) /* IFLA_LINK */
43 + nla_total_size(1) /* IFLA_OPERSTATE */
44 + nla_total_size(br_port_info_size()); /* IFLA_PROTINFO */
45}
46
47static int br_port_fill_attrs(struct sk_buff *skb,
48 const struct net_bridge_port *p)
49{
50 u8 mode = !!(p->flags & BR_HAIRPIN_MODE);
51
52 if (nla_put_u8(skb, IFLA_BRPORT_STATE, p->state) ||
53 nla_put_u16(skb, IFLA_BRPORT_PRIORITY, p->priority) ||
54 nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) ||
stephen hemmingera2e01a62012-11-13 07:53:07 +000055 nla_put_u8(skb, IFLA_BRPORT_MODE, mode) ||
stephen hemminger1007dd12012-11-13 07:53:08 +000056 nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) ||
David S. Millerc2d3bab2012-12-05 16:24:45 -050057 nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK)) ||
58 nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE, !!(p->flags & BR_MULTICAST_FAST_LEAVE)))
stephen hemminger25c71c72012-11-13 07:53:05 +000059 return -EMSGSIZE;
60
61 return 0;
Thomas Graf339bf982006-11-10 14:10:15 -080062}
63
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070064/*
65 * Create one netlink message for one interface
66 * Contains port and master info as well as carrier and bridge state.
67 */
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +000068static int br_fill_ifinfo(struct sk_buff *skb,
69 const struct net_bridge_port *port,
70 u32 pid, u32 seq, int event, unsigned int flags,
71 u32 filter_mask, const struct net_device *dev)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070072{
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +000073 const struct net_bridge *br;
Thomas Graf74685962006-11-20 16:20:22 -080074 struct ifinfomsg *hdr;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070075 struct nlmsghdr *nlh;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070076 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070077
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +000078 if (port)
79 br = port->br;
80 else
81 br = netdev_priv(dev);
82
stephen hemminger28a16c92010-05-10 09:31:09 +000083 br_debug(br, "br_fill_info event %d port %s master %s\n",
84 event, dev->name, br->dev->name);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070085
Thomas Graf74685962006-11-20 16:20:22 -080086 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
87 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -080088 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070089
Thomas Graf74685962006-11-20 16:20:22 -080090 hdr = nlmsg_data(nlh);
91 hdr->ifi_family = AF_BRIDGE;
92 hdr->__ifi_pad = 0;
93 hdr->ifi_type = dev->type;
94 hdr->ifi_index = dev->ifindex;
95 hdr->ifi_flags = dev_get_flags(dev);
96 hdr->ifi_change = 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070097
David S. Miller2eb812e2012-04-01 20:49:54 -040098 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
99 nla_put_u32(skb, IFLA_MASTER, br->dev->ifindex) ||
100 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
101 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
102 (dev->addr_len &&
103 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
104 (dev->ifindex != dev->iflink &&
stephen hemminger25c71c72012-11-13 07:53:05 +0000105 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
David S. Miller2eb812e2012-04-01 20:49:54 -0400106 goto nla_put_failure;
stephen hemminger25c71c72012-11-13 07:53:05 +0000107
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000108 if (event == RTM_NEWLINK && port) {
stephen hemminger25c71c72012-11-13 07:53:05 +0000109 struct nlattr *nest
110 = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED);
111
112 if (nest == NULL || br_port_fill_attrs(skb, port) < 0)
113 goto nla_put_failure;
114 nla_nest_end(skb, nest);
115 }
116
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000117 /* Check if the VID information is requested */
118 if (filter_mask & RTEXT_FILTER_BRVLAN) {
119 struct nlattr *af;
120 const struct net_port_vlans *pv;
121 struct bridge_vlan_info vinfo;
122 u16 vid;
Vlad Yasevich552406c2013-02-13 12:00:15 +0000123 u16 pvid;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000124
125 if (port)
126 pv = nbp_get_vlan_info(port);
127 else
128 pv = br_get_vlan_info(br);
129
130 if (!pv || bitmap_empty(pv->vlan_bitmap, BR_VLAN_BITMAP_LEN))
131 goto done;
132
133 af = nla_nest_start(skb, IFLA_AF_SPEC);
134 if (!af)
135 goto nla_put_failure;
136
Vlad Yasevich552406c2013-02-13 12:00:15 +0000137 pvid = br_get_pvid(pv);
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000138 for (vid = find_first_bit(pv->vlan_bitmap, BR_VLAN_BITMAP_LEN);
139 vid < BR_VLAN_BITMAP_LEN;
140 vid = find_next_bit(pv->vlan_bitmap,
141 BR_VLAN_BITMAP_LEN, vid+1)) {
142 vinfo.vid = vid;
143 vinfo.flags = 0;
Vlad Yasevich552406c2013-02-13 12:00:15 +0000144 if (vid == pvid)
145 vinfo.flags |= BRIDGE_VLAN_INFO_PVID;
Vlad Yasevich35e03f32013-02-13 12:00:20 +0000146
147 if (test_bit(vid, pv->untagged_bitmap))
148 vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED;
149
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000150 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
151 sizeof(vinfo), &vinfo))
152 goto nla_put_failure;
153 }
154
155 nla_nest_end(skb, af);
156 }
157
158done:
Thomas Graf74685962006-11-20 16:20:22 -0800159 return nlmsg_end(skb, nlh);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700160
Thomas Graf74685962006-11-20 16:20:22 -0800161nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800162 nlmsg_cancel(skb, nlh);
163 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700164}
165
166/*
167 * Notify listeners of a change in port information
168 */
169void br_ifinfo_notify(int event, struct net_bridge_port *port)
170{
Vlad Yasevich407af322013-02-13 12:00:12 +0000171 struct net *net;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700172 struct sk_buff *skb;
Thomas Graf280a3062006-08-15 00:36:28 -0700173 int err = -ENOBUFS;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700174
Vlad Yasevich407af322013-02-13 12:00:12 +0000175 if (!port)
176 return;
177
178 net = dev_net(port->dev);
stephen hemminger28a16c92010-05-10 09:31:09 +0000179 br_debug(port->br, "port %u(%s) event %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +0000180 (unsigned int)port->port_no, port->dev->name, event);
stephen hemminger28a16c92010-05-10 09:31:09 +0000181
Thomas Graf339bf982006-11-10 14:10:15 -0800182 skb = nlmsg_new(br_nlmsg_size(), GFP_ATOMIC);
Thomas Graf280a3062006-08-15 00:36:28 -0700183 if (skb == NULL)
184 goto errout;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700185
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000186 err = br_fill_ifinfo(skb, port, 0, 0, event, 0, 0, port->dev);
Patrick McHardy26932562007-01-31 23:16:40 -0800187 if (err < 0) {
188 /* -EMSGSIZE implies BUG in br_nlmsg_size() */
189 WARN_ON(err == -EMSGSIZE);
190 kfree_skb(skb);
191 goto errout;
192 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800193 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
194 return;
Thomas Graf280a3062006-08-15 00:36:28 -0700195errout:
Stephen Hemmingerbea1b422006-08-03 16:24:02 -0700196 if (err < 0)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700197 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700198}
199
Vlad Yasevich407af322013-02-13 12:00:12 +0000200
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700201/*
202 * Dump information about all ports, in response to GETLINK
203 */
John Fastabende5a55a82012-10-24 08:12:57 +0000204int br_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000205 struct net_device *dev, u32 filter_mask)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700206{
John Fastabende5a55a82012-10-24 08:12:57 +0000207 int err = 0;
208 struct net_bridge_port *port = br_port_get_rcu(dev);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700209
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000210 /* not a bridge port and */
211 if (!port && !(filter_mask & RTEXT_FILTER_BRVLAN))
John Fastabende5a55a82012-10-24 08:12:57 +0000212 goto out;
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000213
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000214 err = br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, NLM_F_MULTI,
215 filter_mask, dev);
John Fastabende5a55a82012-10-24 08:12:57 +0000216out:
217 return err;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700218}
219
Cong Wang15004ca2013-02-13 19:57:12 +0000220static const struct nla_policy ifla_br_policy[IFLA_MAX+1] = {
Vlad Yasevich407af322013-02-13 12:00:12 +0000221 [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
227static 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
244 if (vinfo->vid >= VLAN_N_VID)
245 return -EINVAL;
246
247 switch (cmd) {
248 case RTM_SETLINK:
249 if (p) {
Vlad Yasevich552406c2013-02-13 12:00:15 +0000250 err = nbp_vlan_add(p, vinfo->vid, vinfo->flags);
Vlad Yasevich407af322013-02-13 12:00:12 +0000251 if (err)
252 break;
253
254 if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER)
Vlad Yasevich552406c2013-02-13 12:00:15 +0000255 err = br_vlan_add(p->br, vinfo->vid,
256 vinfo->flags);
Vlad Yasevich407af322013-02-13 12:00:12 +0000257 } else
Vlad Yasevich552406c2013-02-13 12:00:15 +0000258 err = br_vlan_add(br, vinfo->vid, vinfo->flags);
Vlad Yasevich407af322013-02-13 12:00:12 +0000259
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 hemminger25c71c72012-11-13 07:53:05 +0000279static 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 hemmingera2e01a62012-11-13 07:53:07 +0000284 [IFLA_BRPORT_GUARD] = { .type = NLA_U8 },
stephen hemminger1007dd12012-11-13 07:53:08 +0000285 [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 },
stephen hemminger25c71c72012-11-13 07:53:05 +0000286};
287
288/* Change the state of the port and notify spanning tree */
289static int br_set_port_state(struct net_bridge_port *p, u8 state)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700290{
stephen hemminger25c71c72012-11-13 07:53:05 +0000291 if (state > BR_STATE_BLOCKING)
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000292 return -EINVAL;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700293
294 /* if kernel STP is running, don't allow changes */
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700295 if (p->br->stp_enabled == BR_KERNEL_STP)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700296 return -EBUSY;
297
stephen hemminger576eb622012-12-28 18:15:22 +0000298 /* if device is not up, change is not allowed
299 * if link is not present, only allowable state is disabled
300 */
stephen hemminger25c71c72012-11-13 07:53:05 +0000301 if (!netif_running(p->dev) ||
stephen hemminger576eb622012-12-28 18:15:22 +0000302 (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED))
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700303 return -ENETDOWN;
304
stephen hemminger25c71c72012-11-13 07:53:05 +0000305 p->state = state;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700306 br_log_state(p);
Vitalii Demianetsb03b6dd2011-11-25 00:16:37 +0000307 br_port_state_selection(p->br);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700308 return 0;
309}
310
stephen hemminger25c71c72012-11-13 07:53:05 +0000311/* Set/clear or port flags based on attribute */
312static 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 */
325static int br_setport(struct net_bridge_port *p, struct nlattr *tb[])
326{
327 int err;
328
329 br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE);
stephen hemmingera2e01a62012-11-13 07:53:07 +0000330 br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD);
David S. Millerc2d3bab2012-12-05 16:24:45 -0500331 br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE);
stephen hemminger25c71c72012-11-13 07:53:05 +0000332
333 if (tb[IFLA_BRPORT_COST]) {
334 err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST]));
335 if (err)
336 return err;
337 }
338
339 if (tb[IFLA_BRPORT_PRIORITY]) {
340 err = br_stp_set_port_priority(p, nla_get_u16(tb[IFLA_BRPORT_PRIORITY]));
341 if (err)
342 return err;
343 }
344
345 if (tb[IFLA_BRPORT_STATE]) {
346 err = br_set_port_state(p, nla_get_u8(tb[IFLA_BRPORT_STATE]));
347 if (err)
348 return err;
349 }
350 return 0;
351}
352
353/* Change state and parameters on port. */
354int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
355{
356 struct ifinfomsg *ifm;
357 struct nlattr *protinfo;
Vlad Yasevich407af322013-02-13 12:00:12 +0000358 struct nlattr *afspec;
stephen hemminger25c71c72012-11-13 07:53:05 +0000359 struct net_bridge_port *p;
Dan Carpenter2062cc22012-12-07 01:10:46 +0000360 struct nlattr *tb[IFLA_BRPORT_MAX + 1];
stephen hemminger25c71c72012-11-13 07:53:05 +0000361 int err;
362
363 ifm = nlmsg_data(nlh);
364
365 protinfo = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_PROTINFO);
Vlad Yasevich407af322013-02-13 12:00:12 +0000366 afspec = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_AF_SPEC);
367 if (!protinfo && !afspec)
stephen hemminger25c71c72012-11-13 07:53:05 +0000368 return 0;
369
370 p = br_port_get_rtnl(dev);
Vlad Yasevich407af322013-02-13 12:00:12 +0000371 /* We want to accept dev as bridge itself if the AF_SPEC
372 * is set to see if someone is setting vlan info on the brigde
373 */
374 if (!p && ((dev->priv_flags & IFF_EBRIDGE) && !afspec))
stephen hemminger25c71c72012-11-13 07:53:05 +0000375 return -EINVAL;
376
Vlad Yasevich407af322013-02-13 12:00:12 +0000377 if (p && protinfo) {
378 if (protinfo->nla_type & NLA_F_NESTED) {
379 err = nla_parse_nested(tb, IFLA_BRPORT_MAX,
380 protinfo, ifla_brport_policy);
381 if (err)
382 return err;
383
384 spin_lock_bh(&p->br->lock);
385 err = br_setport(p, tb);
386 spin_unlock_bh(&p->br->lock);
387 } else {
388 /* Binary compatability with old RSTP */
389 if (nla_len(protinfo) < sizeof(u8))
390 return -EINVAL;
391
392 spin_lock_bh(&p->br->lock);
393 err = br_set_port_state(p, nla_get_u8(protinfo));
394 spin_unlock_bh(&p->br->lock);
395 }
stephen hemminger25c71c72012-11-13 07:53:05 +0000396 if (err)
Vlad Yasevich407af322013-02-13 12:00:12 +0000397 goto out;
398 }
stephen hemminger25c71c72012-11-13 07:53:05 +0000399
Vlad Yasevich407af322013-02-13 12:00:12 +0000400 if (afspec) {
401 err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
402 afspec, RTM_SETLINK);
stephen hemminger25c71c72012-11-13 07:53:05 +0000403 }
404
405 if (err == 0)
406 br_ifinfo_notify(RTM_NEWLINK, p);
407
Vlad Yasevich407af322013-02-13 12:00:12 +0000408out:
stephen hemminger25c71c72012-11-13 07:53:05 +0000409 return err;
410}
411
Vlad Yasevich407af322013-02-13 12:00:12 +0000412/* Delete port information */
413int br_dellink(struct net_device *dev, struct nlmsghdr *nlh)
414{
415 struct ifinfomsg *ifm;
416 struct nlattr *afspec;
417 struct net_bridge_port *p;
418 int err;
419
420 ifm = nlmsg_data(nlh);
421
422 afspec = nlmsg_find_attr(nlh, sizeof(*ifm), IFLA_AF_SPEC);
423 if (!afspec)
424 return 0;
425
426 p = br_port_get_rtnl(dev);
427 /* We want to accept dev as bridge itself as well */
428 if (!p && !(dev->priv_flags & IFF_EBRIDGE))
429 return -EINVAL;
430
431 err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
432 afspec, RTM_DELLINK);
433
434 return err;
435}
stephen hemmingerbb900b22011-04-04 14:03:32 +0000436static int br_validate(struct nlattr *tb[], struct nlattr *data[])
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700437{
stephen hemmingerbb900b22011-04-04 14:03:32 +0000438 if (tb[IFLA_ADDRESS]) {
439 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
440 return -EINVAL;
441 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
442 return -EADDRNOTAVAIL;
443 }
Thomas Graf32fe21c2007-03-22 11:59:03 -0700444
445 return 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700446}
447
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000448static size_t br_get_link_af_size(const struct net_device *dev)
449{
450 struct net_port_vlans *pv;
451
452 if (br_port_exists(dev))
453 pv = nbp_get_vlan_info(br_port_get_rcu(dev));
454 else if (dev->priv_flags & IFF_EBRIDGE)
455 pv = br_get_vlan_info((struct net_bridge *)netdev_priv(dev));
456 else
457 return 0;
458
459 if (!pv)
460 return 0;
461
462 /* Each VLAN is returned in bridge_vlan_info along with flags */
463 return pv->num_vlans * nla_total_size(sizeof(struct bridge_vlan_info));
464}
465
Cong Wang15004ca2013-02-13 19:57:12 +0000466static struct rtnl_af_ops br_af_ops = {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000467 .family = AF_BRIDGE,
468 .get_link_af_size = br_get_link_af_size,
469};
470
stephen hemminger149ddd82012-06-26 05:48:45 +0000471struct rtnl_link_ops br_link_ops __read_mostly = {
stephen hemmingerbb900b22011-04-04 14:03:32 +0000472 .kind = "bridge",
473 .priv_size = sizeof(struct net_bridge),
474 .setup = br_dev_setup,
475 .validate = br_validate,
stephen hemminger1ce5cce2011-10-06 11:19:41 +0000476 .dellink = br_dev_delete,
stephen hemmingerbb900b22011-04-04 14:03:32 +0000477};
478
479int __init br_netlink_init(void)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700480{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000481 int err;
482
483 br_mdb_init();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000484 err = rtnl_af_register(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000485 if (err)
486 goto out;
487
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000488 err = rtnl_link_register(&br_link_ops);
489 if (err)
490 goto out_af;
491
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000492 return 0;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000493
494out_af:
495 rtnl_af_unregister(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000496out:
497 br_mdb_uninit();
498 return err;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700499}
500
stephen hemmingerbb900b22011-04-04 14:03:32 +0000501void __exit br_netlink_fini(void)
502{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +0000503 br_mdb_uninit();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000504 rtnl_af_unregister(&br_af_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +0000505 rtnl_link_unregister(&br_link_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +0000506}