br_netlink.c 12.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 *	Bridge netlink control interface
 *
 *	Authors:
 *	Stephen Hemminger		<shemminger@osdl.org>
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 */

#include <linux/kernel.h>
14
#include <linux/slab.h>
15
#include <linux/etherdevice.h>
16
#include <net/rtnetlink.h>
17
#include <net/net_namespace.h>
18
#include <net/sock.h>
19
#include <uapi/linux/if_bridge.h>
20

21
#include "br_private.h"
22
#include "br_private_stp.h"
23

24 25 26 27 28 29
static inline size_t br_port_info_size(void)
{
	return nla_total_size(1)	/* IFLA_BRPORT_STATE  */
		+ nla_total_size(2)	/* IFLA_BRPORT_PRIORITY */
		+ nla_total_size(4)	/* IFLA_BRPORT_COST */
		+ nla_total_size(1)	/* IFLA_BRPORT_MODE */
30
		+ nla_total_size(1)	/* IFLA_BRPORT_GUARD */
S
stephen hemminger 已提交
31
		+ nla_total_size(1)	/* IFLA_BRPORT_PROTECT */
32
		+ nla_total_size(1)	/* IFLA_BRPORT_FAST_LEAVE */
33
		+ nla_total_size(1)	/* IFLA_BRPORT_LEARNING */
34
		+ nla_total_size(1)	/* IFLA_BRPORT_UNICAST_FLOOD */
35 36 37
		+ 0;
}

38 39 40
static inline size_t br_nlmsg_size(void)
{
	return NLMSG_ALIGN(sizeof(struct ifinfomsg))
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
		+ nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
		+ nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
		+ nla_total_size(4) /* IFLA_MASTER */
		+ nla_total_size(4) /* IFLA_MTU */
		+ nla_total_size(4) /* IFLA_LINK */
		+ nla_total_size(1) /* IFLA_OPERSTATE */
		+ nla_total_size(br_port_info_size()); /* IFLA_PROTINFO */
}

static int br_port_fill_attrs(struct sk_buff *skb,
			      const struct net_bridge_port *p)
{
	u8 mode = !!(p->flags & BR_HAIRPIN_MODE);

	if (nla_put_u8(skb, IFLA_BRPORT_STATE, p->state) ||
	    nla_put_u16(skb, IFLA_BRPORT_PRIORITY, p->priority) ||
	    nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) ||
58
	    nla_put_u8(skb, IFLA_BRPORT_MODE, mode) ||
S
stephen hemminger 已提交
59
	    nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) ||
60
	    nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK)) ||
61
	    nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE, !!(p->flags & BR_MULTICAST_FAST_LEAVE)) ||
62 63
	    nla_put_u8(skb, IFLA_BRPORT_LEARNING, !!(p->flags & BR_LEARNING)) ||
	    nla_put_u8(skb, IFLA_BRPORT_UNICAST_FLOOD, !!(p->flags & BR_FLOOD)))
64 65 66
		return -EMSGSIZE;

	return 0;
67 68
}

69 70 71 72
/*
 * Create one netlink message for one interface
 * Contains port and master info as well as carrier and bridge state.
 */
73 74 75 76
static int br_fill_ifinfo(struct sk_buff *skb,
			  const struct net_bridge_port *port,
			  u32 pid, u32 seq, int event, unsigned int flags,
			  u32 filter_mask, const struct net_device *dev)
77
{
78
	const struct net_bridge *br;
79
	struct ifinfomsg *hdr;
80 81 82
	struct nlmsghdr *nlh;
	u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;

83 84 85 86 87
	if (port)
		br = port->br;
	else
		br = netdev_priv(dev);

88 89
	br_debug(br, "br_fill_info event %d port %s master %s\n",
		     event, dev->name, br->dev->name);
90

91 92
	nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
	if (nlh == NULL)
93
		return -EMSGSIZE;
94

95 96 97 98 99 100 101
	hdr = nlmsg_data(nlh);
	hdr->ifi_family = AF_BRIDGE;
	hdr->__ifi_pad = 0;
	hdr->ifi_type = dev->type;
	hdr->ifi_index = dev->ifindex;
	hdr->ifi_flags = dev_get_flags(dev);
	hdr->ifi_change = 0;
102

D
David S. Miller 已提交
103 104 105 106 107 108 109
	if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
	    nla_put_u32(skb, IFLA_MASTER, br->dev->ifindex) ||
	    nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
	    nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
	    (dev->addr_len &&
	     nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
	    (dev->ifindex != dev->iflink &&
110
	     nla_put_u32(skb, IFLA_LINK, dev->iflink)))
D
David S. Miller 已提交
111
		goto nla_put_failure;
112

113
	if (event == RTM_NEWLINK && port) {
114 115 116 117 118 119 120 121
		struct nlattr *nest
			= nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED);

		if (nest == NULL || br_port_fill_attrs(skb, port) < 0)
			goto nla_put_failure;
		nla_nest_end(skb, nest);
	}

122 123 124 125 126 127
	/* Check if  the VID information is requested */
	if (filter_mask & RTEXT_FILTER_BRVLAN) {
		struct nlattr *af;
		const struct net_port_vlans *pv;
		struct bridge_vlan_info vinfo;
		u16 vid;
128
		u16 pvid;
129 130 131 132 133 134

		if (port)
			pv = nbp_get_vlan_info(port);
		else
			pv = br_get_vlan_info(br);

135
		if (!pv || bitmap_empty(pv->vlan_bitmap, VLAN_N_VID))
136 137 138 139 140 141
			goto done;

		af = nla_nest_start(skb, IFLA_AF_SPEC);
		if (!af)
			goto nla_put_failure;

142
		pvid = br_get_pvid(pv);
143
		for_each_set_bit(vid, pv->vlan_bitmap, VLAN_N_VID) {
144 145
			vinfo.vid = vid;
			vinfo.flags = 0;
146 147
			if (vid == pvid)
				vinfo.flags |= BRIDGE_VLAN_INFO_PVID;
148 149 150 151

			if (test_bit(vid, pv->untagged_bitmap))
				vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED;

152 153 154 155 156 157 158 159 160
			if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
				    sizeof(vinfo), &vinfo))
				goto nla_put_failure;
		}

		nla_nest_end(skb, af);
	}

done:
161
	return nlmsg_end(skb, nlh);
162

163
nla_put_failure:
164 165
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
166 167 168 169 170 171 172
}

/*
 * Notify listeners of a change in port information
 */
void br_ifinfo_notify(int event, struct net_bridge_port *port)
{
173
	struct net *net;
174
	struct sk_buff *skb;
175
	int err = -ENOBUFS;
176

177 178 179 180
	if (!port)
		return;

	net = dev_net(port->dev);
181
	br_debug(port->br, "port %u(%s) event %d\n",
182
		 (unsigned int)port->port_no, port->dev->name, event);
183

184
	skb = nlmsg_new(br_nlmsg_size(), GFP_ATOMIC);
185 186 187
	if (skb == NULL)
		goto errout;

188
	err = br_fill_ifinfo(skb, port, 0, 0, event, 0, 0, port->dev);
189 190 191 192 193 194
	if (err < 0) {
		/* -EMSGSIZE implies BUG in br_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
195 196
	rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
	return;
197
errout:
198
	rtnl_set_sk_err(net, RTNLGRP_LINK, err);
199 200
}

201

202 203 204
/*
 * Dump information about all ports, in response to GETLINK
 */
J
John Fastabend 已提交
205
int br_getlink(struct sk_buff *skb, u32 pid, u32 seq,
206
	       struct net_device *dev, u32 filter_mask)
207
{
J
John Fastabend 已提交
208
	int err = 0;
209
	struct net_bridge_port *port = br_port_get_rtnl(dev);
J
John Fastabend 已提交
210

211
	if (!port && !(filter_mask & RTEXT_FILTER_BRVLAN))
J
John Fastabend 已提交
212
		goto out;
213

214 215
	err = br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, NLM_F_MULTI,
			     filter_mask, dev);
J
John Fastabend 已提交
216 217
out:
	return err;
218 219
}

220
static const struct nla_policy ifla_br_policy[IFLA_MAX+1] = {
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
	[IFLA_BRIDGE_FLAGS]	= { .type = NLA_U16 },
	[IFLA_BRIDGE_MODE]	= { .type = NLA_U16 },
	[IFLA_BRIDGE_VLAN_INFO]	= { .type = NLA_BINARY,
				    .len = sizeof(struct bridge_vlan_info), },
};

static int br_afspec(struct net_bridge *br,
		     struct net_bridge_port *p,
		     struct nlattr *af_spec,
		     int cmd)
{
	struct nlattr *tb[IFLA_BRIDGE_MAX+1];
	int err = 0;

	err = nla_parse_nested(tb, IFLA_BRIDGE_MAX, af_spec, ifla_br_policy);
	if (err)
		return err;

	if (tb[IFLA_BRIDGE_VLAN_INFO]) {
		struct bridge_vlan_info *vinfo;

		vinfo = nla_data(tb[IFLA_BRIDGE_VLAN_INFO]);

244
		if (!vinfo->vid || vinfo->vid >= VLAN_VID_MASK)
245 246 247 248 249
			return -EINVAL;

		switch (cmd) {
		case RTM_SETLINK:
			if (p) {
250
				err = nbp_vlan_add(p, vinfo->vid, vinfo->flags);
251 252 253 254
				if (err)
					break;

				if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER)
255 256
					err = br_vlan_add(p->br, vinfo->vid,
							  vinfo->flags);
257
			} else
258
				err = br_vlan_add(br, vinfo->vid, vinfo->flags);
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278

			if (err)
				break;

			break;

		case RTM_DELLINK:
			if (p) {
				nbp_vlan_delete(p, vinfo->vid);
				if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER)
					br_vlan_delete(p->br, vinfo->vid);
			} else
				br_vlan_delete(br, vinfo->vid);
			break;
		}
	}

	return err;
}

279 280 281 282 283
static const struct nla_policy ifla_brport_policy[IFLA_BRPORT_MAX + 1] = {
	[IFLA_BRPORT_STATE]	= { .type = NLA_U8 },
	[IFLA_BRPORT_COST]	= { .type = NLA_U32 },
	[IFLA_BRPORT_PRIORITY]	= { .type = NLA_U16 },
	[IFLA_BRPORT_MODE]	= { .type = NLA_U8 },
284
	[IFLA_BRPORT_GUARD]	= { .type = NLA_U8 },
S
stephen hemminger 已提交
285
	[IFLA_BRPORT_PROTECT]	= { .type = NLA_U8 },
286
	[IFLA_BRPORT_LEARNING]	= { .type = NLA_U8 },
287
	[IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 },
288 289 290 291 292 293 294 295 296 297 298 299
};

/* Change the state of the port and notify spanning tree */
static int br_set_port_state(struct net_bridge_port *p, u8 state)
{
	if (state > BR_STATE_BLOCKING)
		return -EINVAL;

	/* if kernel STP is running, don't allow changes */
	if (p->br->stp_enabled == BR_KERNEL_STP)
		return -EBUSY;

300 301 302
	/* if device is not up, change is not allowed
	 * if link is not present, only allowable state is disabled
	 */
303
	if (!netif_running(p->dev) ||
304
	    (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED))
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
		return -ENETDOWN;

	p->state = state;
	br_log_state(p);
	br_port_state_selection(p->br);
	return 0;
}

/* Set/clear or port flags based on attribute */
static void br_set_port_flag(struct net_bridge_port *p, struct nlattr *tb[],
			   int attrtype, unsigned long mask)
{
	if (tb[attrtype]) {
		u8 flag = nla_get_u8(tb[attrtype]);
		if (flag)
			p->flags |= mask;
		else
			p->flags &= ~mask;
	}
}

/* Process bridge protocol info on port */
static int br_setport(struct net_bridge_port *p, struct nlattr *tb[])
{
	int err;
330
	unsigned long old_flags = p->flags;
331 332

	br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE);
333
	br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD);
334
	br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE);
335
	br_set_port_flag(p, tb, IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK);
336
	br_set_port_flag(p, tb, IFLA_BRPORT_LEARNING, BR_LEARNING);
337
	br_set_port_flag(p, tb, IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD);
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355

	if (tb[IFLA_BRPORT_COST]) {
		err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST]));
		if (err)
			return err;
	}

	if (tb[IFLA_BRPORT_PRIORITY]) {
		err = br_stp_set_port_priority(p, nla_get_u16(tb[IFLA_BRPORT_PRIORITY]));
		if (err)
			return err;
	}

	if (tb[IFLA_BRPORT_STATE]) {
		err = br_set_port_state(p, nla_get_u8(tb[IFLA_BRPORT_STATE]));
		if (err)
			return err;
	}
356 357

	br_port_flags_change(p, old_flags ^ p->flags);
358 359 360 361
	return 0;
}

/* Change state and parameters on port. */
J
John Fastabend 已提交
362
int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
363
{
364
	struct nlattr *protinfo;
365
	struct nlattr *afspec;
366
	struct net_bridge_port *p;
367
	struct nlattr *tb[IFLA_BRPORT_MAX + 1];
368
	int err = 0;
369

370 371
	protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_PROTINFO);
	afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
372
	if (!protinfo && !afspec)
373
		return 0;
374

375
	p = br_port_get_rtnl(dev);
376
	/* We want to accept dev as bridge itself if the AF_SPEC
S
stephen hemminger 已提交
377
	 * is set to see if someone is setting vlan info on the bridge
378
	 */
379
	if (!p && !afspec)
380
		return -EINVAL;
381

382 383 384 385 386 387 388 389 390 391 392
	if (p && protinfo) {
		if (protinfo->nla_type & NLA_F_NESTED) {
			err = nla_parse_nested(tb, IFLA_BRPORT_MAX,
					       protinfo, ifla_brport_policy);
			if (err)
				return err;

			spin_lock_bh(&p->br->lock);
			err = br_setport(p, tb);
			spin_unlock_bh(&p->br->lock);
		} else {
S
stephen hemminger 已提交
393
			/* Binary compatibility with old RSTP */
394 395 396 397 398 399 400
			if (nla_len(protinfo) < sizeof(u8))
				return -EINVAL;

			spin_lock_bh(&p->br->lock);
			err = br_set_port_state(p, nla_get_u8(protinfo));
			spin_unlock_bh(&p->br->lock);
		}
401
		if (err)
402 403
			goto out;
	}
404

405 406 407
	if (afspec) {
		err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
				afspec, RTM_SETLINK);
408
	}
409

410 411
	if (err == 0)
		br_ifinfo_notify(RTM_NEWLINK, p);
412

413
out:
414
	return err;
415 416
}

417 418 419 420 421 422 423
/* Delete port information */
int br_dellink(struct net_device *dev, struct nlmsghdr *nlh)
{
	struct nlattr *afspec;
	struct net_bridge_port *p;
	int err;

424
	afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
425 426 427 428 429 430 431 432 433 434 435 436 437
	if (!afspec)
		return 0;

	p = br_port_get_rtnl(dev);
	/* We want to accept dev as bridge itself as well */
	if (!p && !(dev->priv_flags & IFF_EBRIDGE))
		return -EINVAL;

	err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
			afspec, RTM_DELLINK);

	return err;
}
438 439 440 441 442 443 444 445 446 447 448 449
static int br_validate(struct nlattr *tb[], struct nlattr *data[])
{
	if (tb[IFLA_ADDRESS]) {
		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
			return -EINVAL;
		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
			return -EADDRNOTAVAIL;
	}

	return 0;
}

450 451 452 453 454 455 456 457 458 459 460 461 462 463
static int br_dev_newlink(struct net *src_net, struct net_device *dev,
			  struct nlattr *tb[], struct nlattr *data[])
{
	struct net_bridge *br = netdev_priv(dev);

	if (tb[IFLA_ADDRESS]) {
		spin_lock_bh(&br->lock);
		br_stp_change_bridge_id(br, nla_data(tb[IFLA_ADDRESS]));
		spin_unlock_bh(&br->lock);
	}

	return register_netdevice(dev);
}

464 465 466 467 468
static size_t br_get_link_af_size(const struct net_device *dev)
{
	struct net_port_vlans *pv;

	if (br_port_exists(dev))
469
		pv = nbp_get_vlan_info(br_port_get_rtnl(dev));
470 471 472 473 474 475 476 477 478 479 480 481
	else if (dev->priv_flags & IFF_EBRIDGE)
		pv = br_get_vlan_info((struct net_bridge *)netdev_priv(dev));
	else
		return 0;

	if (!pv)
		return 0;

	/* Each VLAN is returned in bridge_vlan_info along with flags */
	return pv->num_vlans * nla_total_size(sizeof(struct bridge_vlan_info));
}

482
static struct rtnl_af_ops br_af_ops = {
483 484 485 486
	.family			= AF_BRIDGE,
	.get_link_af_size	= br_get_link_af_size,
};

487
struct rtnl_link_ops br_link_ops __read_mostly = {
488 489 490 491
	.kind		= "bridge",
	.priv_size	= sizeof(struct net_bridge),
	.setup		= br_dev_setup,
	.validate	= br_validate,
492
	.newlink	= br_dev_newlink,
493
	.dellink	= br_dev_delete,
494
};
495

496
int __init br_netlink_init(void)
497
{
498 499 500
	int err;

	br_mdb_init();
501
	rtnl_af_register(&br_af_ops);
502

503 504 505 506
	err = rtnl_link_register(&br_link_ops);
	if (err)
		goto out_af;

507
	return 0;
508 509 510

out_af:
	rtnl_af_unregister(&br_af_ops);
511 512
	br_mdb_uninit();
	return err;
513 514 515 516
}

void __exit br_netlink_fini(void)
{
517
	br_mdb_uninit();
518
	rtnl_af_unregister(&br_af_ops);
519
	rtnl_link_unregister(&br_link_ops);
520
}