br_netlink.c 35.8 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
static int __get_num_vlan_infos(struct net_bridge_vlan_group *vg,
25
				u32 filter_mask)
26
{
27 28
	struct net_bridge_vlan *v;
	u16 vid_range_start = 0, vid_range_end = 0, vid_range_flags = 0;
29
	u16 flags, pvid;
30 31 32 33 34
	int num_vlans = 0;

	if (!(filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED))
		return 0;

35
	pvid = br_get_pvid(vg);
36
	/* Count number of vlan infos */
37
	list_for_each_entry_rcu(v, &vg->vlan_list, vlist) {
38
		flags = 0;
39 40 41 42
		/* only a context, bridge vlan not activated */
		if (!br_vlan_should_use(v))
			continue;
		if (v->vid == pvid)
43 44
			flags |= BRIDGE_VLAN_INFO_PVID;

45
		if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
46 47 48 49
			flags |= BRIDGE_VLAN_INFO_UNTAGGED;

		if (vid_range_start == 0) {
			goto initvars;
50
		} else if ((v->vid - vid_range_end) == 1 &&
51
			flags == vid_range_flags) {
52
			vid_range_end = v->vid;
53 54 55 56 57 58 59 60
			continue;
		} else {
			if ((vid_range_end - vid_range_start) > 0)
				num_vlans += 2;
			else
				num_vlans += 1;
		}
initvars:
61 62
		vid_range_start = v->vid;
		vid_range_end = v->vid;
63 64 65 66 67 68 69 70 71 72 73 74 75
		vid_range_flags = flags;
	}

	if (vid_range_start != 0) {
		if ((vid_range_end - vid_range_start) > 0)
			num_vlans += 2;
		else
			num_vlans += 1;
	}

	return num_vlans;
}

76
static int br_get_num_vlan_infos(struct net_bridge_vlan_group *vg,
77
				 u32 filter_mask)
78
{
79 80
	int num_vlans;

81 82 83 84 85 86
	if (!vg)
		return 0;

	if (filter_mask & RTEXT_FILTER_BRVLAN)
		return vg->num_vlans;

87 88 89 90 91
	rcu_read_lock();
	num_vlans = __get_num_vlan_infos(vg, filter_mask);
	rcu_read_unlock();

	return num_vlans;
92 93
}

94 95
static size_t br_get_link_af_size_filtered(const struct net_device *dev,
					   u32 filter_mask)
96
{
97 98 99
	struct net_bridge_vlan_group *vg = NULL;
	struct net_bridge_port *p;
	struct net_bridge *br;
100
	int num_vlan_infos;
101

102
	rcu_read_lock();
103 104 105 106 107 108 109
	if (br_port_exists(dev)) {
		p = br_port_get_rcu(dev);
		vg = nbp_vlan_group(p);
	} else if (dev->priv_flags & IFF_EBRIDGE) {
		br = netdev_priv(dev);
		vg = br_vlan_group(br);
	}
110
	num_vlan_infos = br_get_num_vlan_infos(vg, filter_mask);
111
	rcu_read_unlock();
112 113

	/* Each VLAN is returned in bridge_vlan_info along with flags */
114
	return num_vlan_infos * nla_total_size(sizeof(struct bridge_vlan_info));
115 116
}

117 118 119 120 121 122
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 */
123
		+ nla_total_size(1)	/* IFLA_BRPORT_GUARD */
S
stephen hemminger 已提交
124
		+ nla_total_size(1)	/* IFLA_BRPORT_PROTECT */
125
		+ nla_total_size(1)	/* IFLA_BRPORT_FAST_LEAVE */
126
		+ nla_total_size(1)	/* IFLA_BRPORT_LEARNING */
127
		+ nla_total_size(1)	/* IFLA_BRPORT_UNICAST_FLOOD */
128
		+ nla_total_size(1)	/* IFLA_BRPORT_PROXYARP */
129
		+ nla_total_size(1)	/* IFLA_BRPORT_PROXYARP_WIFI */
130
		+ nla_total_size(sizeof(struct ifla_bridge_id))	/* IFLA_BRPORT_ROOT_ID */
131
		+ nla_total_size(sizeof(struct ifla_bridge_id))	/* IFLA_BRPORT_BRIDGE_ID */
132 133
		+ nla_total_size(sizeof(u16))	/* IFLA_BRPORT_DESIGNATED_PORT */
		+ nla_total_size(sizeof(u16))	/* IFLA_BRPORT_DESIGNATED_COST */
134 135
		+ nla_total_size(sizeof(u16))	/* IFLA_BRPORT_ID */
		+ nla_total_size(sizeof(u16))	/* IFLA_BRPORT_NO */
136 137
		+ nla_total_size(sizeof(u8))	/* IFLA_BRPORT_TOPOLOGY_CHANGE_ACK */
		+ nla_total_size(sizeof(u8))	/* IFLA_BRPORT_CONFIG_PENDING */
138 139 140
		+ nla_total_size(sizeof(u64))	/* IFLA_BRPORT_MESSAGE_AGE_TIMER */
		+ nla_total_size(sizeof(u64))	/* IFLA_BRPORT_FORWARD_DELAY_TIMER */
		+ nla_total_size(sizeof(u64))	/* IFLA_BRPORT_HOLD_TIMER */
141 142 143
		+ 0;
}

144
static inline size_t br_nlmsg_size(struct net_device *dev, u32 filter_mask)
145 146
{
	return NLMSG_ALIGN(sizeof(struct ifinfomsg))
147 148 149 150 151 152
		+ 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 */
153
		+ nla_total_size(br_port_info_size()) /* IFLA_PROTINFO */
154 155
		+ nla_total_size(br_get_link_af_size_filtered(dev,
				 filter_mask)); /* IFLA_AF_SPEC */
156 157 158 159 160 161
}

static int br_port_fill_attrs(struct sk_buff *skb,
			      const struct net_bridge_port *p)
{
	u8 mode = !!(p->flags & BR_HAIRPIN_MODE);
162
	u64 timerval;
163 164 165 166

	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) ||
167
	    nla_put_u8(skb, IFLA_BRPORT_MODE, mode) ||
S
stephen hemminger 已提交
168
	    nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) ||
169
	    nla_put_u8(skb, IFLA_BRPORT_PROTECT, !!(p->flags & BR_ROOT_BLOCK)) ||
170
	    nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE, !!(p->flags & BR_MULTICAST_FAST_LEAVE)) ||
171
	    nla_put_u8(skb, IFLA_BRPORT_LEARNING, !!(p->flags & BR_LEARNING)) ||
172
	    nla_put_u8(skb, IFLA_BRPORT_UNICAST_FLOOD, !!(p->flags & BR_FLOOD)) ||
173 174
	    nla_put_u8(skb, IFLA_BRPORT_PROXYARP, !!(p->flags & BR_PROXYARP)) ||
	    nla_put_u8(skb, IFLA_BRPORT_PROXYARP_WIFI,
175 176
		       !!(p->flags & BR_PROXYARP_WIFI)) ||
	    nla_put(skb, IFLA_BRPORT_ROOT_ID, sizeof(struct ifla_bridge_id),
177 178
		    &p->designated_root) ||
	    nla_put(skb, IFLA_BRPORT_BRIDGE_ID, sizeof(struct ifla_bridge_id),
179 180
		    &p->designated_bridge) ||
	    nla_put_u16(skb, IFLA_BRPORT_DESIGNATED_PORT, p->designated_port) ||
181 182
	    nla_put_u16(skb, IFLA_BRPORT_DESIGNATED_COST, p->designated_cost) ||
	    nla_put_u16(skb, IFLA_BRPORT_ID, p->port_id) ||
183 184 185 186
	    nla_put_u16(skb, IFLA_BRPORT_NO, p->port_no) ||
	    nla_put_u8(skb, IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
		       p->topology_change_ack) ||
	    nla_put_u8(skb, IFLA_BRPORT_CONFIG_PENDING, p->config_pending))
187 188
		return -EMSGSIZE;

189 190 191 192 193 194 195 196 197 198
	timerval = br_timer_value(&p->message_age_timer);
	if (nla_put_u64(skb, IFLA_BRPORT_MESSAGE_AGE_TIMER, timerval))
		return -EMSGSIZE;
	timerval = br_timer_value(&p->forward_delay_timer);
	if (nla_put_u64(skb, IFLA_BRPORT_FORWARD_DELAY_TIMER, timerval))
		return -EMSGSIZE;
	timerval = br_timer_value(&p->hold_timer);
	if (nla_put_u64(skb, IFLA_BRPORT_HOLD_TIMER, timerval))
		return -EMSGSIZE;

199
	return 0;
200 201
}

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
static int br_fill_ifvlaninfo_range(struct sk_buff *skb, u16 vid_start,
				    u16 vid_end, u16 flags)
{
	struct  bridge_vlan_info vinfo;

	if ((vid_end - vid_start) > 0) {
		/* add range to skb */
		vinfo.vid = vid_start;
		vinfo.flags = flags | BRIDGE_VLAN_INFO_RANGE_BEGIN;
		if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
			    sizeof(vinfo), &vinfo))
			goto nla_put_failure;

		vinfo.vid = vid_end;
		vinfo.flags = flags | BRIDGE_VLAN_INFO_RANGE_END;
		if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
			    sizeof(vinfo), &vinfo))
			goto nla_put_failure;
	} else {
		vinfo.vid = vid_start;
		vinfo.flags = flags;
		if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
			    sizeof(vinfo), &vinfo))
			goto nla_put_failure;
	}

	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

static int br_fill_ifvlaninfo_compressed(struct sk_buff *skb,
235
					 struct net_bridge_vlan_group *vg)
236
{
237 238
	struct net_bridge_vlan *v;
	u16 vid_range_start = 0, vid_range_end = 0, vid_range_flags = 0;
239
	u16 flags, pvid;
240 241 242 243 244 245
	int err = 0;

	/* Pack IFLA_BRIDGE_VLAN_INFO's for every vlan
	 * and mark vlan info with begin and end flags
	 * if vlaninfo represents a range
	 */
246
	pvid = br_get_pvid(vg);
247
	list_for_each_entry(v, &vg->vlan_list, vlist) {
248
		flags = 0;
249 250 251
		if (!br_vlan_should_use(v))
			continue;
		if (v->vid == pvid)
252 253
			flags |= BRIDGE_VLAN_INFO_PVID;

254
		if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
255 256 257 258
			flags |= BRIDGE_VLAN_INFO_UNTAGGED;

		if (vid_range_start == 0) {
			goto initvars;
259
		} else if ((v->vid - vid_range_end) == 1 &&
260
			flags == vid_range_flags) {
261
			vid_range_end = v->vid;
262 263 264 265 266 267 268 269 270 271
			continue;
		} else {
			err = br_fill_ifvlaninfo_range(skb, vid_range_start,
						       vid_range_end,
						       vid_range_flags);
			if (err)
				return err;
		}

initvars:
272 273
		vid_range_start = v->vid;
		vid_range_end = v->vid;
274 275 276
		vid_range_flags = flags;
	}

277 278 279 280 281 282 283 284
	if (vid_range_start != 0) {
		/* Call it once more to send any left over vlans */
		err = br_fill_ifvlaninfo_range(skb, vid_range_start,
					       vid_range_end,
					       vid_range_flags);
		if (err)
			return err;
	}
285 286 287 288 289

	return 0;
}

static int br_fill_ifvlaninfo(struct sk_buff *skb,
290
			      struct net_bridge_vlan_group *vg)
291 292
{
	struct bridge_vlan_info vinfo;
293
	struct net_bridge_vlan *v;
294
	u16 pvid;
295

296
	pvid = br_get_pvid(vg);
297 298 299 300 301
	list_for_each_entry(v, &vg->vlan_list, vlist) {
		if (!br_vlan_should_use(v))
			continue;

		vinfo.vid = v->vid;
302
		vinfo.flags = 0;
303
		if (v->vid == pvid)
304 305
			vinfo.flags |= BRIDGE_VLAN_INFO_PVID;

306
		if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
307 308 309 310 311 312 313 314 315 316 317 318 319
			vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED;

		if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
			    sizeof(vinfo), &vinfo))
			goto nla_put_failure;
	}

	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

320 321 322 323
/*
 * Create one netlink message for one interface
 * Contains port and master info as well as carrier and bridge state.
 */
324
static int br_fill_ifinfo(struct sk_buff *skb,
325
			  struct net_bridge_port *port,
326 327
			  u32 pid, u32 seq, int event, unsigned int flags,
			  u32 filter_mask, const struct net_device *dev)
328
{
329
	struct net_bridge *br;
330
	struct ifinfomsg *hdr;
331 332 333
	struct nlmsghdr *nlh;
	u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;

334 335 336 337 338
	if (port)
		br = port->br;
	else
		br = netdev_priv(dev);

339 340
	br_debug(br, "br_fill_info event %d port %s master %s\n",
		     event, dev->name, br->dev->name);
341

342 343
	nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
	if (nlh == NULL)
344
		return -EMSGSIZE;
345

346 347 348 349 350 351 352
	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;
353

D
David S. Miller 已提交
354 355 356 357 358 359
	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)) ||
360 361
	    (dev->ifindex != dev_get_iflink(dev) &&
	     nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))))
D
David S. Miller 已提交
362
		goto nla_put_failure;
363

364
	if (event == RTM_NEWLINK && port) {
365 366 367 368 369 370 371 372
		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);
	}

373
	/* Check if  the VID information is requested */
374 375
	if ((filter_mask & RTEXT_FILTER_BRVLAN) ||
	    (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)) {
376
		struct net_bridge_vlan_group *vg;
377 378
		struct nlattr *af;
		int err;
379

380
		if (port)
381
			vg = nbp_vlan_group(port);
382
		else
383
			vg = br_vlan_group(br);
384

385
		if (!vg || !vg->num_vlans)
386 387 388 389 390 391
			goto done;

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

392
		if (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)
393
			err = br_fill_ifvlaninfo_compressed(skb, vg);
394
		else
395
			err = br_fill_ifvlaninfo(skb, vg);
396 397
		if (err)
			goto nla_put_failure;
398 399 400 401
		nla_nest_end(skb, af);
	}

done:
402 403
	nlmsg_end(skb, nlh);
	return 0;
404

405
nla_put_failure:
406 407
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
408 409 410 411 412 413 414
}

/*
 * Notify listeners of a change in port information
 */
void br_ifinfo_notify(int event, struct net_bridge_port *port)
{
415
	struct net *net;
416
	struct sk_buff *skb;
417
	int err = -ENOBUFS;
418
	u32 filter = RTEXT_FILTER_BRVLAN_COMPRESSED;
419

420 421 422 423
	if (!port)
		return;

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

427
	skb = nlmsg_new(br_nlmsg_size(port->dev, filter), GFP_ATOMIC);
428 429 430
	if (skb == NULL)
		goto errout;

431
	err = br_fill_ifinfo(skb, port, 0, 0, event, 0, filter, port->dev);
432 433 434 435 436 437
	if (err < 0) {
		/* -EMSGSIZE implies BUG in br_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
438 439
	rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
	return;
440
errout:
441
	rtnl_set_sk_err(net, RTNLGRP_LINK, err);
442 443
}

444

445 446 447
/*
 * Dump information about all ports, in response to GETLINK
 */
J
John Fastabend 已提交
448
int br_getlink(struct sk_buff *skb, u32 pid, u32 seq,
449
	       struct net_device *dev, u32 filter_mask, int nlflags)
450
{
451
	struct net_bridge_port *port = br_port_get_rtnl(dev);
J
John Fastabend 已提交
452

453 454
	if (!port && !(filter_mask & RTEXT_FILTER_BRVLAN) &&
	    !(filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED))
455
		return 0;
456

457
	return br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, nlflags,
458
			      filter_mask, dev);
459 460
}

461 462 463 464 465 466 467 468
static int br_vlan_info(struct net_bridge *br, struct net_bridge_port *p,
			int cmd, struct bridge_vlan_info *vinfo)
{
	int err = 0;

	switch (cmd) {
	case RTM_SETLINK:
		if (p) {
469 470 471
			/* if the MASTER flag is set this will act on the global
			 * per-VLAN entry as well
			 */
472 473 474 475
			err = nbp_vlan_add(p, vinfo->vid, vinfo->flags);
			if (err)
				break;
		} else {
476
			vinfo->flags |= BRIDGE_VLAN_INFO_BRENTRY;
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
			err = br_vlan_add(br, vinfo->vid, vinfo->flags);
		}
		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;
}
494 495 496 497 498 499

static int br_afspec(struct net_bridge *br,
		     struct net_bridge_port *p,
		     struct nlattr *af_spec,
		     int cmd)
{
500 501 502
	struct bridge_vlan_info *vinfo_start = NULL;
	struct bridge_vlan_info *vinfo = NULL;
	struct nlattr *attr;
503
	int err = 0;
504
	int rem;
505

506 507 508 509 510 511
	nla_for_each_nested(attr, af_spec, rem) {
		if (nla_type(attr) != IFLA_BRIDGE_VLAN_INFO)
			continue;
		if (nla_len(attr) != sizeof(struct bridge_vlan_info))
			return -EINVAL;
		vinfo = nla_data(attr);
512 513
		if (!vinfo->vid || vinfo->vid >= VLAN_VID_MASK)
			return -EINVAL;
514 515 516 517 518 519
		if (vinfo->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) {
			if (vinfo_start)
				return -EINVAL;
			vinfo_start = vinfo;
			continue;
		}
520

521 522 523
		if (vinfo_start) {
			struct bridge_vlan_info tmp_vinfo;
			int v;
524

525 526
			if (!(vinfo->flags & BRIDGE_VLAN_INFO_RANGE_END))
				return -EINVAL;
527

528 529 530 531 532
			if (vinfo->vid <= vinfo_start->vid)
				return -EINVAL;

			memcpy(&tmp_vinfo, vinfo_start,
			       sizeof(struct bridge_vlan_info));
533

534 535 536
			for (v = vinfo_start->vid; v <= vinfo->vid; v++) {
				tmp_vinfo.vid = v;
				err = br_vlan_info(br, p, cmd, &tmp_vinfo);
537 538
				if (err)
					break;
539 540 541 542
			}
			vinfo_start = NULL;
		} else {
			err = br_vlan_info(br, p, cmd, vinfo);
543
		}
544 545
		if (err)
			break;
546 547 548 549 550
	}

	return err;
}

551
static const struct nla_policy br_port_policy[IFLA_BRPORT_MAX + 1] = {
552 553 554 555
	[IFLA_BRPORT_STATE]	= { .type = NLA_U8 },
	[IFLA_BRPORT_COST]	= { .type = NLA_U32 },
	[IFLA_BRPORT_PRIORITY]	= { .type = NLA_U16 },
	[IFLA_BRPORT_MODE]	= { .type = NLA_U8 },
556
	[IFLA_BRPORT_GUARD]	= { .type = NLA_U8 },
S
stephen hemminger 已提交
557
	[IFLA_BRPORT_PROTECT]	= { .type = NLA_U8 },
558
	[IFLA_BRPORT_FAST_LEAVE]= { .type = NLA_U8 },
559
	[IFLA_BRPORT_LEARNING]	= { .type = NLA_U8 },
560
	[IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 },
561
	[IFLA_BRPORT_PROXYARP]	= { .type = NLA_U8 },
562
	[IFLA_BRPORT_PROXYARP_WIFI] = { .type = NLA_U8 },
563 564 565 566 567 568 569 570 571 572 573 574
};

/* 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;

575 576 577
	/* if device is not up, change is not allowed
	 * if link is not present, only allowable state is disabled
	 */
578
	if (!netif_running(p->dev) ||
579
	    (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED))
580 581
		return -ENETDOWN;

582
	br_set_state(p, state);
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
	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;
605
	unsigned long old_flags = p->flags;
606 607

	br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE);
608
	br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD);
609
	br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE);
610
	br_set_port_flag(p, tb, IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK);
611
	br_set_port_flag(p, tb, IFLA_BRPORT_LEARNING, BR_LEARNING);
612
	br_set_port_flag(p, tb, IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD);
613
	br_set_port_flag(p, tb, IFLA_BRPORT_PROXYARP, BR_PROXYARP);
614
	br_set_port_flag(p, tb, IFLA_BRPORT_PROXYARP_WIFI, BR_PROXYARP_WIFI);
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632

	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;
	}
633

634 635 636
	if (tb[IFLA_BRPORT_FLUSH])
		br_fdb_delete_by_port(p->br, p, 0, 0);

637
	br_port_flags_change(p, old_flags ^ p->flags);
638 639 640 641
	return 0;
}

/* Change state and parameters on port. */
642
int br_setlink(struct net_device *dev, struct nlmsghdr *nlh, u16 flags)
643
{
644
	struct nlattr *protinfo;
645
	struct nlattr *afspec;
646
	struct net_bridge_port *p;
647
	struct nlattr *tb[IFLA_BRPORT_MAX + 1];
648
	int err = 0;
649

650 651
	protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_PROTINFO);
	afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
652
	if (!protinfo && !afspec)
653
		return 0;
654

655
	p = br_port_get_rtnl(dev);
656
	/* We want to accept dev as bridge itself if the AF_SPEC
S
stephen hemminger 已提交
657
	 * is set to see if someone is setting vlan info on the bridge
658
	 */
659
	if (!p && !afspec)
660
		return -EINVAL;
661

662 663 664
	if (p && protinfo) {
		if (protinfo->nla_type & NLA_F_NESTED) {
			err = nla_parse_nested(tb, IFLA_BRPORT_MAX,
665
					       protinfo, br_port_policy);
666 667 668 669 670 671 672
			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 已提交
673
			/* Binary compatibility with old RSTP */
674 675 676 677 678 679 680
			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);
		}
681
		if (err)
682 683
			goto out;
	}
684

685 686 687
	if (afspec) {
		err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
				afspec, RTM_SETLINK);
688
	}
689

690 691
	if (err == 0)
		br_ifinfo_notify(RTM_NEWLINK, p);
692
out:
693
	return err;
694 695
}

696
/* Delete port information */
697
int br_dellink(struct net_device *dev, struct nlmsghdr *nlh, u16 flags)
698 699 700
{
	struct nlattr *afspec;
	struct net_bridge_port *p;
701
	int err = 0;
702

703
	afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
704 705 706 707 708 709 710 711 712 713
	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);
714 715 716 717 718
	if (err == 0)
		/* Send RTM_NEWLINK because userspace
		 * expects RTM_NEWLINK for vlan dels
		 */
		br_ifinfo_notify(RTM_NEWLINK, p);
719 720 721

	return err;
}
722 723 724 725 726 727 728 729 730
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;
	}

731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
	if (!data)
		return 0;

#ifdef CONFIG_BRIDGE_VLAN_FILTERING
	if (data[IFLA_BR_VLAN_PROTOCOL]) {
		switch (nla_get_be16(data[IFLA_BR_VLAN_PROTOCOL])) {
		case htons(ETH_P_8021Q):
		case htons(ETH_P_8021AD):
			break;
		default:
			return -EPROTONOSUPPORT;
		}
	}
#endif

746 747 748
	return 0;
}

749 750 751 752 753 754 755 756 757 758 759 760 761 762
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);
}

763 764 765 766 767
static int br_port_slave_changelink(struct net_device *brdev,
				    struct net_device *dev,
				    struct nlattr *tb[],
				    struct nlattr *data[])
{
768 769 770
	struct net_bridge *br = netdev_priv(brdev);
	int ret;

771 772
	if (!data)
		return 0;
773 774 775 776 777 778

	spin_lock_bh(&br->lock);
	ret = br_setport(br_port_get_rtnl(dev), data);
	spin_unlock_bh(&br->lock);

	return ret;
779 780
}

781 782 783 784 785 786 787 788 789 790 791 792 793
static int br_port_fill_slave_info(struct sk_buff *skb,
				   const struct net_device *brdev,
				   const struct net_device *dev)
{
	return br_port_fill_attrs(skb, br_port_get_rtnl(dev));
}

static size_t br_port_get_slave_size(const struct net_device *brdev,
				     const struct net_device *dev)
{
	return br_port_info_size();
}

794 795 796 797
static const struct nla_policy br_policy[IFLA_BR_MAX + 1] = {
	[IFLA_BR_FORWARD_DELAY]	= { .type = NLA_U32 },
	[IFLA_BR_HELLO_TIME]	= { .type = NLA_U32 },
	[IFLA_BR_MAX_AGE]	= { .type = NLA_U32 },
798 799 800
	[IFLA_BR_AGEING_TIME] = { .type = NLA_U32 },
	[IFLA_BR_STP_STATE] = { .type = NLA_U32 },
	[IFLA_BR_PRIORITY] = { .type = NLA_U16 },
801
	[IFLA_BR_VLAN_FILTERING] = { .type = NLA_U8 },
802
	[IFLA_BR_VLAN_PROTOCOL] = { .type = NLA_U16 },
803
	[IFLA_BR_GROUP_FWD_MASK] = { .type = NLA_U16 },
804 805
	[IFLA_BR_GROUP_ADDR] = { .type = NLA_BINARY,
				 .len  = ETH_ALEN },
806
	[IFLA_BR_MCAST_ROUTER] = { .type = NLA_U8 },
807
	[IFLA_BR_MCAST_SNOOPING] = { .type = NLA_U8 },
808
	[IFLA_BR_MCAST_QUERY_USE_IFADDR] = { .type = NLA_U8 },
809
	[IFLA_BR_MCAST_QUERIER] = { .type = NLA_U8 },
810
	[IFLA_BR_MCAST_HASH_ELASTICITY] = { .type = NLA_U32 },
811
	[IFLA_BR_MCAST_HASH_MAX] = { .type = NLA_U32 },
812
	[IFLA_BR_MCAST_LAST_MEMBER_CNT] = { .type = NLA_U32 },
813
	[IFLA_BR_MCAST_STARTUP_QUERY_CNT] = { .type = NLA_U32 },
814 815 816 817 818 819
	[IFLA_BR_MCAST_LAST_MEMBER_INTVL] = { .type = NLA_U64 },
	[IFLA_BR_MCAST_MEMBERSHIP_INTVL] = { .type = NLA_U64 },
	[IFLA_BR_MCAST_QUERIER_INTVL] = { .type = NLA_U64 },
	[IFLA_BR_MCAST_QUERY_INTVL] = { .type = NLA_U64 },
	[IFLA_BR_MCAST_QUERY_RESPONSE_INTVL] = { .type = NLA_U64 },
	[IFLA_BR_MCAST_STARTUP_QUERY_INTVL] = { .type = NLA_U64 },
820 821 822
	[IFLA_BR_NF_CALL_IPTABLES] = { .type = NLA_U8 },
	[IFLA_BR_NF_CALL_IP6TABLES] = { .type = NLA_U8 },
	[IFLA_BR_NF_CALL_ARPTABLES] = { .type = NLA_U8 },
823
	[IFLA_BR_VLAN_DEFAULT_PVID] = { .type = NLA_U16 },
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
};

static int br_changelink(struct net_device *brdev, struct nlattr *tb[],
			 struct nlattr *data[])
{
	struct net_bridge *br = netdev_priv(brdev);
	int err;

	if (!data)
		return 0;

	if (data[IFLA_BR_FORWARD_DELAY]) {
		err = br_set_forward_delay(br, nla_get_u32(data[IFLA_BR_FORWARD_DELAY]));
		if (err)
			return err;
	}

	if (data[IFLA_BR_HELLO_TIME]) {
		err = br_set_hello_time(br, nla_get_u32(data[IFLA_BR_HELLO_TIME]));
		if (err)
			return err;
	}

	if (data[IFLA_BR_MAX_AGE]) {
		err = br_set_max_age(br, nla_get_u32(data[IFLA_BR_MAX_AGE]));
		if (err)
			return err;
	}

853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
	if (data[IFLA_BR_AGEING_TIME]) {
		u32 ageing_time = nla_get_u32(data[IFLA_BR_AGEING_TIME]);

		br->ageing_time = clock_t_to_jiffies(ageing_time);
	}

	if (data[IFLA_BR_STP_STATE]) {
		u32 stp_enabled = nla_get_u32(data[IFLA_BR_STP_STATE]);

		br_stp_set_enabled(br, stp_enabled);
	}

	if (data[IFLA_BR_PRIORITY]) {
		u32 priority = nla_get_u16(data[IFLA_BR_PRIORITY]);

		br_stp_set_bridge_priority(br, priority);
	}

871 872 873 874 875 876 877 878
	if (data[IFLA_BR_VLAN_FILTERING]) {
		u8 vlan_filter = nla_get_u8(data[IFLA_BR_VLAN_FILTERING]);

		err = __br_vlan_filter_toggle(br, vlan_filter);
		if (err)
			return err;
	}

879 880 881 882 883 884 885 886
#ifdef CONFIG_BRIDGE_VLAN_FILTERING
	if (data[IFLA_BR_VLAN_PROTOCOL]) {
		__be16 vlan_proto = nla_get_be16(data[IFLA_BR_VLAN_PROTOCOL]);

		err = __br_vlan_set_proto(br, vlan_proto);
		if (err)
			return err;
	}
887 888 889 890 891 892 893 894

	if (data[IFLA_BR_VLAN_DEFAULT_PVID]) {
		__u16 defpvid = nla_get_u16(data[IFLA_BR_VLAN_DEFAULT_PVID]);

		err = __br_vlan_set_default_pvid(br, defpvid);
		if (err)
			return err;
	}
895 896
#endif

897 898 899 900 901 902 903 904
	if (data[IFLA_BR_GROUP_FWD_MASK]) {
		u16 fwd_mask = nla_get_u16(data[IFLA_BR_GROUP_FWD_MASK]);

		if (fwd_mask & BR_GROUPFWD_RESTRICTED)
			return -EINVAL;
		br->group_fwd_mask = fwd_mask;
	}

905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
	if (data[IFLA_BR_GROUP_ADDR]) {
		u8 new_addr[ETH_ALEN];

		if (nla_len(data[IFLA_BR_GROUP_ADDR]) != ETH_ALEN)
			return -EINVAL;
		memcpy(new_addr, nla_data(data[IFLA_BR_GROUP_ADDR]), ETH_ALEN);
		if (!is_link_local_ether_addr(new_addr))
			return -EINVAL;
		if (new_addr[5] == 1 ||		/* 802.3x Pause address */
		    new_addr[5] == 2 ||		/* 802.3ad Slow protocols */
		    new_addr[5] == 3)		/* 802.1X PAE address */
			return -EINVAL;
		spin_lock_bh(&br->lock);
		memcpy(br->group_addr, new_addr, sizeof(br->group_addr));
		spin_unlock_bh(&br->lock);
		br->group_addr_set = true;
		br_recalculate_fwd_mask(br);
	}

924 925 926
	if (data[IFLA_BR_FDB_FLUSH])
		br_fdb_flush(br);

927 928 929 930 931 932 933 934
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
	if (data[IFLA_BR_MCAST_ROUTER]) {
		u8 multicast_router = nla_get_u8(data[IFLA_BR_MCAST_ROUTER]);

		err = br_multicast_set_router(br, multicast_router);
		if (err)
			return err;
	}
935 936 937 938 939 940 941 942

	if (data[IFLA_BR_MCAST_SNOOPING]) {
		u8 mcast_snooping = nla_get_u8(data[IFLA_BR_MCAST_SNOOPING]);

		err = br_multicast_toggle(br, mcast_snooping);
		if (err)
			return err;
	}
943 944 945 946 947 948 949

	if (data[IFLA_BR_MCAST_QUERY_USE_IFADDR]) {
		u8 val;

		val = nla_get_u8(data[IFLA_BR_MCAST_QUERY_USE_IFADDR]);
		br->multicast_query_use_ifaddr = !!val;
	}
950 951 952 953 954 955 956 957

	if (data[IFLA_BR_MCAST_QUERIER]) {
		u8 mcast_querier = nla_get_u8(data[IFLA_BR_MCAST_QUERIER]);

		err = br_multicast_set_querier(br, mcast_querier);
		if (err)
			return err;
	}
958 959 960 961 962 963

	if (data[IFLA_BR_MCAST_HASH_ELASTICITY]) {
		u32 val = nla_get_u32(data[IFLA_BR_MCAST_HASH_ELASTICITY]);

		br->hash_elasticity = val;
	}
964 965 966 967 968 969 970 971

	if (data[IFLA_BR_MCAST_HASH_MAX]) {
		u32 hash_max = nla_get_u32(data[IFLA_BR_MCAST_HASH_MAX]);

		err = br_multicast_set_hash_max(br, hash_max);
		if (err)
			return err;
	}
972 973 974 975 976 977

	if (data[IFLA_BR_MCAST_LAST_MEMBER_CNT]) {
		u32 val = nla_get_u32(data[IFLA_BR_MCAST_LAST_MEMBER_CNT]);

		br->multicast_last_member_count = val;
	}
978 979 980 981 982 983

	if (data[IFLA_BR_MCAST_STARTUP_QUERY_CNT]) {
		u32 val = nla_get_u32(data[IFLA_BR_MCAST_STARTUP_QUERY_CNT]);

		br->multicast_startup_query_count = val;
	}
984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019

	if (data[IFLA_BR_MCAST_LAST_MEMBER_INTVL]) {
		u64 val = nla_get_u64(data[IFLA_BR_MCAST_LAST_MEMBER_INTVL]);

		br->multicast_last_member_interval = clock_t_to_jiffies(val);
	}

	if (data[IFLA_BR_MCAST_MEMBERSHIP_INTVL]) {
		u64 val = nla_get_u64(data[IFLA_BR_MCAST_MEMBERSHIP_INTVL]);

		br->multicast_membership_interval = clock_t_to_jiffies(val);
	}

	if (data[IFLA_BR_MCAST_QUERIER_INTVL]) {
		u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERIER_INTVL]);

		br->multicast_querier_interval = clock_t_to_jiffies(val);
	}

	if (data[IFLA_BR_MCAST_QUERY_INTVL]) {
		u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERY_INTVL]);

		br->multicast_query_interval = clock_t_to_jiffies(val);
	}

	if (data[IFLA_BR_MCAST_QUERY_RESPONSE_INTVL]) {
		u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERY_RESPONSE_INTVL]);

		br->multicast_query_response_interval = clock_t_to_jiffies(val);
	}

	if (data[IFLA_BR_MCAST_STARTUP_QUERY_INTVL]) {
		u64 val = nla_get_u64(data[IFLA_BR_MCAST_STARTUP_QUERY_INTVL]);

		br->multicast_startup_query_interval = clock_t_to_jiffies(val);
	}
1020
#endif
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
	if (data[IFLA_BR_NF_CALL_IPTABLES]) {
		u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_IPTABLES]);

		br->nf_call_iptables = val ? true : false;
	}

	if (data[IFLA_BR_NF_CALL_IP6TABLES]) {
		u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_IP6TABLES]);

		br->nf_call_ip6tables = val ? true : false;
	}

	if (data[IFLA_BR_NF_CALL_ARPTABLES]) {
		u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_ARPTABLES]);

		br->nf_call_arptables = val ? true : false;
	}
#endif
1040

1041 1042 1043
	return 0;
}

1044 1045 1046 1047 1048
static size_t br_get_size(const struct net_device *brdev)
{
	return nla_total_size(sizeof(u32)) +	/* IFLA_BR_FORWARD_DELAY  */
	       nla_total_size(sizeof(u32)) +	/* IFLA_BR_HELLO_TIME */
	       nla_total_size(sizeof(u32)) +	/* IFLA_BR_MAX_AGE */
1049 1050 1051
	       nla_total_size(sizeof(u32)) +    /* IFLA_BR_AGEING_TIME */
	       nla_total_size(sizeof(u32)) +    /* IFLA_BR_STP_STATE */
	       nla_total_size(sizeof(u16)) +    /* IFLA_BR_PRIORITY */
1052
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_VLAN_FILTERING */
1053 1054
#ifdef CONFIG_BRIDGE_VLAN_FILTERING
	       nla_total_size(sizeof(__be16)) +	/* IFLA_BR_VLAN_PROTOCOL */
1055
	       nla_total_size(sizeof(u16)) +    /* IFLA_BR_VLAN_DEFAULT_PVID */
1056
#endif
1057
	       nla_total_size(sizeof(u16)) +    /* IFLA_BR_GROUP_FWD_MASK */
1058
	       nla_total_size(sizeof(struct ifla_bridge_id)) +   /* IFLA_BR_ROOT_ID */
1059
	       nla_total_size(sizeof(struct ifla_bridge_id)) +   /* IFLA_BR_BRIDGE_ID */
1060
	       nla_total_size(sizeof(u16)) +    /* IFLA_BR_ROOT_PORT */
1061
	       nla_total_size(sizeof(u32)) +    /* IFLA_BR_ROOT_PATH_COST */
1062 1063
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_TOPOLOGY_CHANGE */
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_TOPOLOGY_CHANGE_DETECTED */
1064 1065 1066 1067
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_HELLO_TIMER */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_TCN_TIMER */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_TOPOLOGY_CHANGE_TIMER */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_GC_TIMER */
1068
	       nla_total_size(ETH_ALEN) +       /* IFLA_BR_GROUP_ADDR */
1069 1070
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_MCAST_ROUTER */
1071
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_MCAST_SNOOPING */
1072
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_MCAST_QUERY_USE_IFADDR */
1073
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_MCAST_QUERIER */
1074 1075 1076 1077
	       nla_total_size(sizeof(u32)) +    /* IFLA_BR_MCAST_HASH_ELASTICITY */
	       nla_total_size(sizeof(u32)) +    /* IFLA_BR_MCAST_HASH_MAX */
	       nla_total_size(sizeof(u32)) +    /* IFLA_BR_MCAST_LAST_MEMBER_CNT */
	       nla_total_size(sizeof(u32)) +    /* IFLA_BR_MCAST_STARTUP_QUERY_CNT */
1078 1079 1080 1081 1082 1083
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_MCAST_LAST_MEMBER_INTVL */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_MCAST_MEMBERSHIP_INTVL */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_MCAST_QUERIER_INTVL */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_MCAST_QUERY_INTVL */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_MCAST_QUERY_RESPONSE_INTVL */
	       nla_total_size(sizeof(u64)) +    /* IFLA_BR_MCAST_STARTUP_QUERY_INTVL */
1084 1085 1086 1087 1088
#endif
#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_NF_CALL_IPTABLES */
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_NF_CALL_IP6TABLES */
	       nla_total_size(sizeof(u8)) +     /* IFLA_BR_NF_CALL_ARPTABLES */
1089
#endif
1090 1091 1092 1093 1094 1095 1096 1097 1098
	       0;
}

static int br_fill_info(struct sk_buff *skb, const struct net_device *brdev)
{
	struct net_bridge *br = netdev_priv(brdev);
	u32 forward_delay = jiffies_to_clock_t(br->forward_delay);
	u32 hello_time = jiffies_to_clock_t(br->hello_time);
	u32 age_time = jiffies_to_clock_t(br->max_age);
1099 1100 1101
	u32 ageing_time = jiffies_to_clock_t(br->ageing_time);
	u32 stp_enabled = br->stp_enabled;
	u16 priority = (br->bridge_id.prio[0] << 8) | br->bridge_id.prio[1];
1102
	u8 vlan_enabled = br_vlan_enabled(br);
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
	u64 clockval;

	clockval = br_timer_value(&br->hello_timer);
	if (nla_put_u64(skb, IFLA_BR_HELLO_TIMER, clockval))
		return -EMSGSIZE;
	clockval = br_timer_value(&br->tcn_timer);
	if (nla_put_u64(skb, IFLA_BR_TCN_TIMER, clockval))
		return -EMSGSIZE;
	clockval = br_timer_value(&br->topology_change_timer);
	if (nla_put_u64(skb, IFLA_BR_TOPOLOGY_CHANGE_TIMER, clockval))
		return -EMSGSIZE;
	clockval = br_timer_value(&br->gc_timer);
	if (nla_put_u64(skb, IFLA_BR_GC_TIMER, clockval))
		return -EMSGSIZE;
1117 1118 1119

	if (nla_put_u32(skb, IFLA_BR_FORWARD_DELAY, forward_delay) ||
	    nla_put_u32(skb, IFLA_BR_HELLO_TIME, hello_time) ||
1120 1121 1122
	    nla_put_u32(skb, IFLA_BR_MAX_AGE, age_time) ||
	    nla_put_u32(skb, IFLA_BR_AGEING_TIME, ageing_time) ||
	    nla_put_u32(skb, IFLA_BR_STP_STATE, stp_enabled) ||
1123
	    nla_put_u16(skb, IFLA_BR_PRIORITY, priority) ||
1124
	    nla_put_u8(skb, IFLA_BR_VLAN_FILTERING, vlan_enabled) ||
1125 1126 1127 1128 1129
	    nla_put_u16(skb, IFLA_BR_GROUP_FWD_MASK, br->group_fwd_mask) ||
	    nla_put(skb, IFLA_BR_BRIDGE_ID, sizeof(struct ifla_bridge_id),
		    &br->bridge_id) ||
	    nla_put(skb, IFLA_BR_ROOT_ID, sizeof(struct ifla_bridge_id),
		    &br->designated_root) ||
1130
	    nla_put_u16(skb, IFLA_BR_ROOT_PORT, br->root_port) ||
1131 1132 1133
	    nla_put_u32(skb, IFLA_BR_ROOT_PATH_COST, br->root_path_cost) ||
	    nla_put_u8(skb, IFLA_BR_TOPOLOGY_CHANGE, br->topology_change) ||
	    nla_put_u8(skb, IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
1134
		       br->topology_change_detected) ||
1135
	    nla_put(skb, IFLA_BR_GROUP_ADDR, ETH_ALEN, br->group_addr))
1136 1137
		return -EMSGSIZE;

1138
#ifdef CONFIG_BRIDGE_VLAN_FILTERING
1139 1140
	if (nla_put_be16(skb, IFLA_BR_VLAN_PROTOCOL, br->vlan_proto) ||
	    nla_put_u16(skb, IFLA_BR_VLAN_DEFAULT_PVID, br->default_pvid))
1141 1142
		return -EMSGSIZE;
#endif
1143
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
1144
	if (nla_put_u8(skb, IFLA_BR_MCAST_ROUTER, br->multicast_router) ||
1145 1146
	    nla_put_u8(skb, IFLA_BR_MCAST_SNOOPING, !br->multicast_disabled) ||
	    nla_put_u8(skb, IFLA_BR_MCAST_QUERY_USE_IFADDR,
1147
		       br->multicast_query_use_ifaddr) ||
1148 1149
	    nla_put_u8(skb, IFLA_BR_MCAST_QUERIER, br->multicast_querier) ||
	    nla_put_u32(skb, IFLA_BR_MCAST_HASH_ELASTICITY,
1150
			br->hash_elasticity) ||
1151 1152
	    nla_put_u32(skb, IFLA_BR_MCAST_HASH_MAX, br->hash_max) ||
	    nla_put_u32(skb, IFLA_BR_MCAST_LAST_MEMBER_CNT,
1153 1154 1155
			br->multicast_last_member_count) ||
	    nla_put_u32(skb, IFLA_BR_MCAST_STARTUP_QUERY_CNT,
			br->multicast_startup_query_count))
1156
		return -EMSGSIZE;
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175

	clockval = jiffies_to_clock_t(br->multicast_last_member_interval);
	if (nla_put_u64(skb, IFLA_BR_MCAST_LAST_MEMBER_INTVL, clockval))
		return -EMSGSIZE;
	clockval = jiffies_to_clock_t(br->multicast_membership_interval);
	if (nla_put_u64(skb, IFLA_BR_MCAST_MEMBERSHIP_INTVL, clockval))
		return -EMSGSIZE;
	clockval = jiffies_to_clock_t(br->multicast_querier_interval);
	if (nla_put_u64(skb, IFLA_BR_MCAST_QUERIER_INTVL, clockval))
		return -EMSGSIZE;
	clockval = jiffies_to_clock_t(br->multicast_query_interval);
	if (nla_put_u64(skb, IFLA_BR_MCAST_QUERY_INTVL, clockval))
		return -EMSGSIZE;
	clockval = jiffies_to_clock_t(br->multicast_query_response_interval);
	if (nla_put_u64(skb, IFLA_BR_MCAST_QUERY_RESPONSE_INTVL, clockval))
		return -EMSGSIZE;
	clockval = jiffies_to_clock_t(br->multicast_startup_query_interval);
	if (nla_put_u64(skb, IFLA_BR_MCAST_STARTUP_QUERY_INTVL, clockval))
		return -EMSGSIZE;
1176
#endif
1177 1178 1179 1180 1181 1182 1183 1184 1185
#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
	if (nla_put_u8(skb, IFLA_BR_NF_CALL_IPTABLES,
		       br->nf_call_iptables ? 1 : 0) ||
	    nla_put_u8(skb, IFLA_BR_NF_CALL_IP6TABLES,
		       br->nf_call_ip6tables ? 1 : 0) ||
	    nla_put_u8(skb, IFLA_BR_NF_CALL_ARPTABLES,
		       br->nf_call_arptables ? 1 : 0))
		return -EMSGSIZE;
#endif
1186

1187 1188 1189
	return 0;
}

1190 1191
static size_t br_get_link_af_size(const struct net_device *dev)
{
1192 1193 1194
	struct net_bridge_port *p;
	struct net_bridge *br;
	int num_vlans = 0;
1195

1196 1197 1198
	if (br_port_exists(dev)) {
		p = br_port_get_rtnl(dev);
		num_vlans = br_get_num_vlan_infos(nbp_vlan_group(p),
1199
						  RTEXT_FILTER_BRVLAN);
1200 1201 1202
	} else if (dev->priv_flags & IFF_EBRIDGE) {
		br = netdev_priv(dev);
		num_vlans = br_get_num_vlan_infos(br_vlan_group(br),
1203
						  RTEXT_FILTER_BRVLAN);
1204
	}
1205 1206

	/* Each VLAN is returned in bridge_vlan_info along with flags */
1207
	return num_vlans * nla_total_size(sizeof(struct bridge_vlan_info));
1208 1209
}

1210
static struct rtnl_af_ops br_af_ops __read_mostly = {
1211 1212 1213 1214
	.family			= AF_BRIDGE,
	.get_link_af_size	= br_get_link_af_size,
};

1215
struct rtnl_link_ops br_link_ops __read_mostly = {
1216 1217 1218
	.kind			= "bridge",
	.priv_size		= sizeof(struct net_bridge),
	.setup			= br_dev_setup,
1219
	.maxtype		= IFLA_BR_MAX,
1220
	.policy			= br_policy,
1221 1222
	.validate		= br_validate,
	.newlink		= br_dev_newlink,
1223
	.changelink		= br_changelink,
1224
	.dellink		= br_dev_delete,
1225 1226
	.get_size		= br_get_size,
	.fill_info		= br_fill_info,
1227 1228 1229 1230

	.slave_maxtype		= IFLA_BRPORT_MAX,
	.slave_policy		= br_port_policy,
	.slave_changelink	= br_port_slave_changelink,
1231 1232
	.get_slave_size		= br_port_get_slave_size,
	.fill_slave_info	= br_port_fill_slave_info,
1233
};
1234

1235
int __init br_netlink_init(void)
1236
{
1237 1238 1239
	int err;

	br_mdb_init();
1240
	rtnl_af_register(&br_af_ops);
1241

1242 1243 1244 1245
	err = rtnl_link_register(&br_link_ops);
	if (err)
		goto out_af;

1246
	return 0;
1247 1248 1249

out_af:
	rtnl_af_unregister(&br_af_ops);
1250 1251
	br_mdb_uninit();
	return err;
1252 1253
}

1254
void br_netlink_fini(void)
1255
{
1256
	br_mdb_uninit();
1257
	rtnl_af_unregister(&br_af_ops);
1258
	rtnl_link_unregister(&br_link_ops);
1259
}