blob: 26aeb0b5cf30c7aa2c5fd67f2683996ebf9f537a [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"
Roopa Prabhuefa53562017-01-31 22:59:54 -080023#include "br_private_tunnel.h"
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070024
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020025static int __get_num_vlan_infos(struct net_bridge_vlan_group *vg,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020026 u32 filter_mask)
Roopa Prabhufed0a152015-02-25 23:55:40 -080027{
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020028 struct net_bridge_vlan *v;
29 u16 vid_range_start = 0, vid_range_end = 0, vid_range_flags = 0;
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020030 u16 flags, pvid;
Roopa Prabhufed0a152015-02-25 23:55:40 -080031 int num_vlans = 0;
32
Roopa Prabhufed0a152015-02-25 23:55:40 -080033 if (!(filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED))
34 return 0;
35
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020036 pvid = br_get_pvid(vg);
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020037 /* Count number of vlan infos */
Nikolay Aleksandrov586c2b52015-10-02 15:05:10 +020038 list_for_each_entry_rcu(v, &vg->vlan_list, vlist) {
Roopa Prabhufed0a152015-02-25 23:55:40 -080039 flags = 0;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020040 /* only a context, bridge vlan not activated */
41 if (!br_vlan_should_use(v))
42 continue;
43 if (v->vid == pvid)
Roopa Prabhufed0a152015-02-25 23:55:40 -080044 flags |= BRIDGE_VLAN_INFO_PVID;
45
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020046 if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
Roopa Prabhufed0a152015-02-25 23:55:40 -080047 flags |= BRIDGE_VLAN_INFO_UNTAGGED;
48
49 if (vid_range_start == 0) {
50 goto initvars;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020051 } else if ((v->vid - vid_range_end) == 1 &&
Roopa Prabhufed0a152015-02-25 23:55:40 -080052 flags == vid_range_flags) {
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020053 vid_range_end = v->vid;
Roopa Prabhufed0a152015-02-25 23:55:40 -080054 continue;
55 } else {
56 if ((vid_range_end - vid_range_start) > 0)
57 num_vlans += 2;
58 else
59 num_vlans += 1;
60 }
61initvars:
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020062 vid_range_start = v->vid;
63 vid_range_end = v->vid;
Roopa Prabhufed0a152015-02-25 23:55:40 -080064 vid_range_flags = flags;
65 }
66
67 if (vid_range_start != 0) {
68 if ((vid_range_end - vid_range_start) > 0)
69 num_vlans += 2;
70 else
71 num_vlans += 1;
72 }
73
74 return num_vlans;
75}
76
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020077static int br_get_num_vlan_infos(struct net_bridge_vlan_group *vg,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020078 u32 filter_mask)
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020079{
Nikolay Aleksandrov586c2b52015-10-02 15:05:10 +020080 int num_vlans;
81
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020082 if (!vg)
83 return 0;
84
85 if (filter_mask & RTEXT_FILTER_BRVLAN)
86 return vg->num_vlans;
87
Nikolay Aleksandrov586c2b52015-10-02 15:05:10 +020088 rcu_read_lock();
89 num_vlans = __get_num_vlan_infos(vg, filter_mask);
90 rcu_read_unlock();
91
92 return num_vlans;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020093}
94
Roopa Prabhufed0a152015-02-25 23:55:40 -080095static size_t br_get_link_af_size_filtered(const struct net_device *dev,
96 u32 filter_mask)
Roopa Prabhub7853d72015-02-21 20:21:51 -080097{
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020098 struct net_bridge_vlan_group *vg = NULL;
Roopa Prabhuefa53562017-01-31 22:59:54 -080099 struct net_bridge_port *p = NULL;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200100 struct net_bridge *br;
Roopa Prabhufed0a152015-02-25 23:55:40 -0800101 int num_vlan_infos;
Roopa Prabhuefa53562017-01-31 22:59:54 -0800102 size_t vinfo_sz = 0;
Roopa Prabhub7853d72015-02-21 20:21:51 -0800103
Johannes Berg2f56f6b2015-03-03 16:02:16 +0100104 rcu_read_lock();
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200105 if (br_port_exists(dev)) {
106 p = br_port_get_rcu(dev);
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +0200107 vg = nbp_vlan_group_rcu(p);
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200108 } else if (dev->priv_flags & IFF_EBRIDGE) {
109 br = netdev_priv(dev);
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +0200110 vg = br_vlan_group_rcu(br);
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200111 }
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200112 num_vlan_infos = br_get_num_vlan_infos(vg, filter_mask);
Johannes Berg2f56f6b2015-03-03 16:02:16 +0100113 rcu_read_unlock();
Roopa Prabhub7853d72015-02-21 20:21:51 -0800114
Roopa Prabhuefa53562017-01-31 22:59:54 -0800115 if (p && (p->flags & BR_VLAN_TUNNEL))
116 vinfo_sz += br_get_vlan_tunnel_info_size(vg);
117
Roopa Prabhub7853d72015-02-21 20:21:51 -0800118 /* Each VLAN is returned in bridge_vlan_info along with flags */
Roopa Prabhuefa53562017-01-31 22:59:54 -0800119 vinfo_sz += num_vlan_infos * nla_total_size(sizeof(struct bridge_vlan_info));
120
121 return vinfo_sz;
Roopa Prabhub7853d72015-02-21 20:21:51 -0800122}
123
stephen hemminger25c71c72012-11-13 07:53:05 +0000124static inline size_t br_port_info_size(void)
125{
126 return nla_total_size(1) /* IFLA_BRPORT_STATE */
127 + nla_total_size(2) /* IFLA_BRPORT_PRIORITY */
128 + nla_total_size(4) /* IFLA_BRPORT_COST */
129 + nla_total_size(1) /* IFLA_BRPORT_MODE */
stephen hemmingera2e01a62012-11-13 07:53:07 +0000130 + nla_total_size(1) /* IFLA_BRPORT_GUARD */
stephen hemminger1007dd12012-11-13 07:53:08 +0000131 + nla_total_size(1) /* IFLA_BRPORT_PROTECT */
stephen hemminger3da889b2013-03-11 13:52:17 +0000132 + nla_total_size(1) /* IFLA_BRPORT_FAST_LEAVE */
Felix Fietkau6db6f0e2017-01-21 21:01:32 +0100133 + nla_total_size(1) /* IFLA_BRPORT_MCAST_TO_UCAST */
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400134 + nla_total_size(1) /* IFLA_BRPORT_LEARNING */
Vlad Yasevich867a5942013-06-05 10:08:01 -0400135 + nla_total_size(1) /* IFLA_BRPORT_UNICAST_FLOOD */
Tobias Klauser90512472017-05-05 16:36:53 +0200136 + nla_total_size(1) /* IFLA_BRPORT_MCAST_FLOOD */
137 + nla_total_size(1) /* IFLA_BRPORT_BCAST_FLOOD */
Nikolay Aleksandrov355b9f92015-08-04 19:06:32 +0200138 + nla_total_size(1) /* IFLA_BRPORT_PROXYARP */
Nikolay Aleksandrov786c2072015-08-04 19:06:33 +0200139 + nla_total_size(1) /* IFLA_BRPORT_PROXYARP_WIFI */
Roopa Prabhuefa53562017-01-31 22:59:54 -0800140 + nla_total_size(1) /* IFLA_BRPORT_VLAN_TUNNEL */
Roopa Prabhu821f1b22017-10-06 22:12:37 -0700141 + nla_total_size(1) /* IFLA_BRPORT_NEIGH_SUPPRESS */
Nikolay Aleksandrov4ebc7662015-10-06 14:11:55 +0200142 + nla_total_size(sizeof(struct ifla_bridge_id)) /* IFLA_BRPORT_ROOT_ID */
Nikolay Aleksandrov80df9a22015-10-06 14:11:56 +0200143 + nla_total_size(sizeof(struct ifla_bridge_id)) /* IFLA_BRPORT_BRIDGE_ID */
Nikolay Aleksandrov96f94e72015-10-06 14:11:57 +0200144 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_DESIGNATED_PORT */
145 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_DESIGNATED_COST */
Nikolay Aleksandrov42d452c2015-10-06 14:11:58 +0200146 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_ID */
147 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_NO */
Nikolay Aleksandrove08e8382015-10-06 14:11:59 +0200148 + nla_total_size(sizeof(u8)) /* IFLA_BRPORT_TOPOLOGY_CHANGE_ACK */
149 + nla_total_size(sizeof(u8)) /* IFLA_BRPORT_CONFIG_PENDING */
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200150 + nla_total_size_64bit(sizeof(u64)) /* IFLA_BRPORT_MESSAGE_AGE_TIMER */
151 + nla_total_size_64bit(sizeof(u64)) /* IFLA_BRPORT_FORWARD_DELAY_TIMER */
152 + nla_total_size_64bit(sizeof(u64)) /* IFLA_BRPORT_HOLD_TIMER */
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200153#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
154 + nla_total_size(sizeof(u8)) /* IFLA_BRPORT_MULTICAST_ROUTER */
155#endif
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300156 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_GROUP_FWD_MASK */
stephen hemminger25c71c72012-11-13 07:53:05 +0000157 + 0;
158}
159
Roopa Prabhufed0a152015-02-25 23:55:40 -0800160static inline size_t br_nlmsg_size(struct net_device *dev, u32 filter_mask)
Thomas Graf339bf982006-11-10 14:10:15 -0800161{
162 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
stephen hemminger25c71c72012-11-13 07:53:05 +0000163 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
164 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
165 + nla_total_size(4) /* IFLA_MASTER */
166 + nla_total_size(4) /* IFLA_MTU */
167 + nla_total_size(4) /* IFLA_LINK */
168 + nla_total_size(1) /* IFLA_OPERSTATE */
Roopa Prabhub7853d72015-02-21 20:21:51 -0800169 + nla_total_size(br_port_info_size()) /* IFLA_PROTINFO */
Roopa Prabhufed0a152015-02-25 23:55:40 -0800170 + nla_total_size(br_get_link_af_size_filtered(dev,
171 filter_mask)); /* IFLA_AF_SPEC */
stephen hemminger25c71c72012-11-13 07:53:05 +0000172}
173
174static int br_port_fill_attrs(struct sk_buff *skb,
175 const struct net_bridge_port *p)
176{
177 u8 mode = !!(p->flags & BR_HAIRPIN_MODE);
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200178 u64 timerval;
stephen hemminger25c71c72012-11-13 07:53:05 +0000179
180 if (nla_put_u8(skb, IFLA_BRPORT_STATE, p->state) ||
181 nla_put_u16(skb, IFLA_BRPORT_PRIORITY, p->priority) ||
182 nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) ||
stephen hemmingera2e01a62012-11-13 07:53:07 +0000183 nla_put_u8(skb, IFLA_BRPORT_MODE, mode) ||
stephen hemminger1007dd12012-11-13 07:53:08 +0000184 nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) ||
Nikolay Aleksandrovb6cb5ac2016-08-31 15:36:52 +0200185 nla_put_u8(skb, IFLA_BRPORT_PROTECT,
186 !!(p->flags & BR_ROOT_BLOCK)) ||
187 nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE,
188 !!(p->flags & BR_MULTICAST_FAST_LEAVE)) ||
Felix Fietkau6db6f0e2017-01-21 21:01:32 +0100189 nla_put_u8(skb, IFLA_BRPORT_MCAST_TO_UCAST,
190 !!(p->flags & BR_MULTICAST_TO_UNICAST)) ||
Vlad Yasevich867a5942013-06-05 10:08:01 -0400191 nla_put_u8(skb, IFLA_BRPORT_LEARNING, !!(p->flags & BR_LEARNING)) ||
Nikolay Aleksandrovb6cb5ac2016-08-31 15:36:52 +0200192 nla_put_u8(skb, IFLA_BRPORT_UNICAST_FLOOD,
193 !!(p->flags & BR_FLOOD)) ||
194 nla_put_u8(skb, IFLA_BRPORT_MCAST_FLOOD,
195 !!(p->flags & BR_MCAST_FLOOD)) ||
Mike Manning99f906e2017-04-26 14:48:09 +0100196 nla_put_u8(skb, IFLA_BRPORT_BCAST_FLOOD,
197 !!(p->flags & BR_BCAST_FLOOD)) ||
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200198 nla_put_u8(skb, IFLA_BRPORT_PROXYARP, !!(p->flags & BR_PROXYARP)) ||
199 nla_put_u8(skb, IFLA_BRPORT_PROXYARP_WIFI,
Nikolay Aleksandrov4ebc7662015-10-06 14:11:55 +0200200 !!(p->flags & BR_PROXYARP_WIFI)) ||
201 nla_put(skb, IFLA_BRPORT_ROOT_ID, sizeof(struct ifla_bridge_id),
Nikolay Aleksandrov80df9a22015-10-06 14:11:56 +0200202 &p->designated_root) ||
203 nla_put(skb, IFLA_BRPORT_BRIDGE_ID, sizeof(struct ifla_bridge_id),
Nikolay Aleksandrov96f94e72015-10-06 14:11:57 +0200204 &p->designated_bridge) ||
205 nla_put_u16(skb, IFLA_BRPORT_DESIGNATED_PORT, p->designated_port) ||
Nikolay Aleksandrov42d452c2015-10-06 14:11:58 +0200206 nla_put_u16(skb, IFLA_BRPORT_DESIGNATED_COST, p->designated_cost) ||
207 nla_put_u16(skb, IFLA_BRPORT_ID, p->port_id) ||
Nikolay Aleksandrove08e8382015-10-06 14:11:59 +0200208 nla_put_u16(skb, IFLA_BRPORT_NO, p->port_no) ||
209 nla_put_u8(skb, IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
210 p->topology_change_ack) ||
Roopa Prabhuefa53562017-01-31 22:59:54 -0800211 nla_put_u8(skb, IFLA_BRPORT_CONFIG_PENDING, p->config_pending) ||
212 nla_put_u8(skb, IFLA_BRPORT_VLAN_TUNNEL, !!(p->flags &
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300213 BR_VLAN_TUNNEL)) ||
Roopa Prabhu821f1b22017-10-06 22:12:37 -0700214 nla_put_u16(skb, IFLA_BRPORT_GROUP_FWD_MASK, p->group_fwd_mask) ||
215 nla_put_u8(skb, IFLA_BRPORT_NEIGH_SUPPRESS,
216 !!(p->flags & BR_NEIGH_SUPPRESS)))
stephen hemminger25c71c72012-11-13 07:53:05 +0000217 return -EMSGSIZE;
218
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200219 timerval = br_timer_value(&p->message_age_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200220 if (nla_put_u64_64bit(skb, IFLA_BRPORT_MESSAGE_AGE_TIMER, timerval,
221 IFLA_BRPORT_PAD))
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200222 return -EMSGSIZE;
223 timerval = br_timer_value(&p->forward_delay_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200224 if (nla_put_u64_64bit(skb, IFLA_BRPORT_FORWARD_DELAY_TIMER, timerval,
225 IFLA_BRPORT_PAD))
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200226 return -EMSGSIZE;
227 timerval = br_timer_value(&p->hold_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200228 if (nla_put_u64_64bit(skb, IFLA_BRPORT_HOLD_TIMER, timerval,
229 IFLA_BRPORT_PAD))
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200230 return -EMSGSIZE;
231
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200232#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
233 if (nla_put_u8(skb, IFLA_BRPORT_MULTICAST_ROUTER,
234 p->multicast_router))
235 return -EMSGSIZE;
236#endif
237
stephen hemminger25c71c72012-11-13 07:53:05 +0000238 return 0;
Thomas Graf339bf982006-11-10 14:10:15 -0800239}
240
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800241static int br_fill_ifvlaninfo_range(struct sk_buff *skb, u16 vid_start,
242 u16 vid_end, u16 flags)
243{
244 struct bridge_vlan_info vinfo;
245
246 if ((vid_end - vid_start) > 0) {
247 /* add range to skb */
248 vinfo.vid = vid_start;
249 vinfo.flags = flags | BRIDGE_VLAN_INFO_RANGE_BEGIN;
250 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
251 sizeof(vinfo), &vinfo))
252 goto nla_put_failure;
253
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800254 vinfo.vid = vid_end;
255 vinfo.flags = flags | BRIDGE_VLAN_INFO_RANGE_END;
256 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
257 sizeof(vinfo), &vinfo))
258 goto nla_put_failure;
259 } else {
260 vinfo.vid = vid_start;
261 vinfo.flags = flags;
262 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
263 sizeof(vinfo), &vinfo))
264 goto nla_put_failure;
265 }
266
267 return 0;
268
269nla_put_failure:
270 return -EMSGSIZE;
271}
272
273static int br_fill_ifvlaninfo_compressed(struct sk_buff *skb,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200274 struct net_bridge_vlan_group *vg)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800275{
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200276 struct net_bridge_vlan *v;
277 u16 vid_range_start = 0, vid_range_end = 0, vid_range_flags = 0;
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200278 u16 flags, pvid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800279 int err = 0;
280
281 /* Pack IFLA_BRIDGE_VLAN_INFO's for every vlan
282 * and mark vlan info with begin and end flags
283 * if vlaninfo represents a range
284 */
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200285 pvid = br_get_pvid(vg);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200286 list_for_each_entry_rcu(v, &vg->vlan_list, vlist) {
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800287 flags = 0;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200288 if (!br_vlan_should_use(v))
289 continue;
290 if (v->vid == pvid)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800291 flags |= BRIDGE_VLAN_INFO_PVID;
292
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200293 if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800294 flags |= BRIDGE_VLAN_INFO_UNTAGGED;
295
296 if (vid_range_start == 0) {
297 goto initvars;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200298 } else if ((v->vid - vid_range_end) == 1 &&
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800299 flags == vid_range_flags) {
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200300 vid_range_end = v->vid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800301 continue;
302 } else {
303 err = br_fill_ifvlaninfo_range(skb, vid_range_start,
304 vid_range_end,
305 vid_range_flags);
306 if (err)
307 return err;
308 }
309
310initvars:
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200311 vid_range_start = v->vid;
312 vid_range_end = v->vid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800313 vid_range_flags = flags;
314 }
315
Roopa Prabhu0fe6de42015-01-12 16:25:28 -0800316 if (vid_range_start != 0) {
317 /* Call it once more to send any left over vlans */
318 err = br_fill_ifvlaninfo_range(skb, vid_range_start,
319 vid_range_end,
320 vid_range_flags);
321 if (err)
322 return err;
323 }
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800324
325 return 0;
326}
327
328static int br_fill_ifvlaninfo(struct sk_buff *skb,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200329 struct net_bridge_vlan_group *vg)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800330{
331 struct bridge_vlan_info vinfo;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200332 struct net_bridge_vlan *v;
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200333 u16 pvid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800334
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200335 pvid = br_get_pvid(vg);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200336 list_for_each_entry_rcu(v, &vg->vlan_list, vlist) {
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200337 if (!br_vlan_should_use(v))
338 continue;
339
340 vinfo.vid = v->vid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800341 vinfo.flags = 0;
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200342 if (v->vid == pvid)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800343 vinfo.flags |= BRIDGE_VLAN_INFO_PVID;
344
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200345 if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800346 vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED;
347
348 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
349 sizeof(vinfo), &vinfo))
350 goto nla_put_failure;
351 }
352
353 return 0;
354
355nla_put_failure:
356 return -EMSGSIZE;
357}
358
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700359/*
360 * Create one netlink message for one interface
361 * Contains port and master info as well as carrier and bridge state.
362 */
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000363static int br_fill_ifinfo(struct sk_buff *skb,
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200364 struct net_bridge_port *port,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000365 u32 pid, u32 seq, int event, unsigned int flags,
366 u32 filter_mask, const struct net_device *dev)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700367{
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200368 struct net_bridge *br;
Thomas Graf74685962006-11-20 16:20:22 -0800369 struct ifinfomsg *hdr;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700370 struct nlmsghdr *nlh;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700371 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700372
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000373 if (port)
374 br = port->br;
375 else
376 br = netdev_priv(dev);
377
stephen hemminger28a16c92010-05-10 09:31:09 +0000378 br_debug(br, "br_fill_info event %d port %s master %s\n",
379 event, dev->name, br->dev->name);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700380
Thomas Graf74685962006-11-20 16:20:22 -0800381 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
382 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800383 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700384
Thomas Graf74685962006-11-20 16:20:22 -0800385 hdr = nlmsg_data(nlh);
386 hdr->ifi_family = AF_BRIDGE;
387 hdr->__ifi_pad = 0;
388 hdr->ifi_type = dev->type;
389 hdr->ifi_index = dev->ifindex;
390 hdr->ifi_flags = dev_get_flags(dev);
391 hdr->ifi_change = 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700392
David S. Miller2eb812e2012-04-01 20:49:54 -0400393 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
394 nla_put_u32(skb, IFLA_MASTER, br->dev->ifindex) ||
395 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
396 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
397 (dev->addr_len &&
398 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200399 (dev->ifindex != dev_get_iflink(dev) &&
400 nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))))
David S. Miller2eb812e2012-04-01 20:49:54 -0400401 goto nla_put_failure;
stephen hemminger25c71c72012-11-13 07:53:05 +0000402
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000403 if (event == RTM_NEWLINK && port) {
stephen hemminger25c71c72012-11-13 07:53:05 +0000404 struct nlattr *nest
405 = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED);
406
407 if (nest == NULL || br_port_fill_attrs(skb, port) < 0)
408 goto nla_put_failure;
409 nla_nest_end(skb, nest);
410 }
411
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000412 /* Check if the VID information is requested */
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800413 if ((filter_mask & RTEXT_FILTER_BRVLAN) ||
414 (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)) {
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200415 struct net_bridge_vlan_group *vg;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800416 struct nlattr *af;
417 int err;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000418
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200419 /* RCU needed because of the VLAN locking rules (rcu || rtnl) */
420 rcu_read_lock();
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200421 if (port)
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200422 vg = nbp_vlan_group_rcu(port);
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200423 else
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200424 vg = br_vlan_group_rcu(br);
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000425
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200426 if (!vg || !vg->num_vlans) {
427 rcu_read_unlock();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000428 goto done;
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200429 }
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000430 af = nla_nest_start(skb, IFLA_AF_SPEC);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200431 if (!af) {
432 rcu_read_unlock();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000433 goto nla_put_failure;
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200434 }
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800435 if (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200436 err = br_fill_ifvlaninfo_compressed(skb, vg);
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800437 else
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200438 err = br_fill_ifvlaninfo(skb, vg);
Roopa Prabhuefa53562017-01-31 22:59:54 -0800439
440 if (port && (port->flags & BR_VLAN_TUNNEL))
441 err = br_fill_vlan_tunnel_info(skb, vg);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200442 rcu_read_unlock();
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800443 if (err)
444 goto nla_put_failure;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000445 nla_nest_end(skb, af);
446 }
447
448done:
Johannes Berg053c0952015-01-16 22:09:00 +0100449 nlmsg_end(skb, nlh);
450 return 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700451
Thomas Graf74685962006-11-20 16:20:22 -0800452nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800453 nlmsg_cancel(skb, nlh);
454 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700455}
456
457/*
458 * Notify listeners of a change in port information
459 */
460void br_ifinfo_notify(int event, struct net_bridge_port *port)
461{
Vlad Yasevich407af322013-02-13 12:00:12 +0000462 struct net *net;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700463 struct sk_buff *skb;
Thomas Graf280a3062006-08-15 00:36:28 -0700464 int err = -ENOBUFS;
Roopa Prabhufed0a152015-02-25 23:55:40 -0800465 u32 filter = RTEXT_FILTER_BRVLAN_COMPRESSED;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700466
Vlad Yasevich407af322013-02-13 12:00:12 +0000467 if (!port)
468 return;
469
470 net = dev_net(port->dev);
stephen hemminger28a16c92010-05-10 09:31:09 +0000471 br_debug(port->br, "port %u(%s) event %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +0000472 (unsigned int)port->port_no, port->dev->name, event);
stephen hemminger28a16c92010-05-10 09:31:09 +0000473
Roopa Prabhufed0a152015-02-25 23:55:40 -0800474 skb = nlmsg_new(br_nlmsg_size(port->dev, filter), GFP_ATOMIC);
Thomas Graf280a3062006-08-15 00:36:28 -0700475 if (skb == NULL)
476 goto errout;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700477
Roopa Prabhufed0a152015-02-25 23:55:40 -0800478 err = br_fill_ifinfo(skb, port, 0, 0, event, 0, filter, port->dev);
Patrick McHardy26932562007-01-31 23:16:40 -0800479 if (err < 0) {
480 /* -EMSGSIZE implies BUG in br_nlmsg_size() */
481 WARN_ON(err == -EMSGSIZE);
482 kfree_skb(skb);
483 goto errout;
484 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800485 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
486 return;
Thomas Graf280a3062006-08-15 00:36:28 -0700487errout:
tanxiaojun87e823b2013-12-19 13:28:10 +0800488 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700489}
490
Vlad Yasevich407af322013-02-13 12:00:12 +0000491
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700492/*
493 * Dump information about all ports, in response to GETLINK
494 */
John Fastabende5a55a82012-10-24 08:12:57 +0000495int br_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Nicolas Dichtel46c264d2015-04-28 18:33:49 +0200496 struct net_device *dev, u32 filter_mask, int nlflags)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700497{
Hong Zhiguo1fb17542013-09-14 22:42:27 +0800498 struct net_bridge_port *port = br_port_get_rtnl(dev);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700499
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800500 if (!port && !(filter_mask & RTEXT_FILTER_BRVLAN) &&
501 !(filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED))
Dan Carpenter1b846f92015-01-21 12:22:35 +0300502 return 0;
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000503
Nicolas Dichtel46c264d2015-04-28 18:33:49 +0200504 return br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, nlflags,
Dan Carpenter1b846f92015-01-21 12:22:35 +0300505 filter_mask, dev);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700506}
507
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800508static int br_vlan_info(struct net_bridge *br, struct net_bridge_port *p,
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300509 int cmd, struct bridge_vlan_info *vinfo, bool *changed)
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800510{
Nikolay Aleksandrovf418af62017-10-27 13:19:37 +0300511 bool curr_change;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800512 int err = 0;
513
514 switch (cmd) {
515 case RTM_SETLINK:
516 if (p) {
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200517 /* if the MASTER flag is set this will act on the global
518 * per-VLAN entry as well
519 */
Nikolay Aleksandrovf418af62017-10-27 13:19:37 +0300520 err = nbp_vlan_add(p, vinfo->vid, vinfo->flags,
521 &curr_change);
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800522 } else {
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +0200523 vinfo->flags |= BRIDGE_VLAN_INFO_BRENTRY;
Nikolay Aleksandrovf418af62017-10-27 13:19:37 +0300524 err = br_vlan_add(br, vinfo->vid, vinfo->flags,
525 &curr_change);
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800526 }
Nikolay Aleksandrovf418af62017-10-27 13:19:37 +0300527 if (curr_change)
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300528 *changed = true;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800529 break;
530
531 case RTM_DELLINK:
532 if (p) {
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300533 if (!nbp_vlan_delete(p, vinfo->vid))
534 *changed = true;
535
536 if ((vinfo->flags & BRIDGE_VLAN_INFO_MASTER) &&
537 !br_vlan_delete(p->br, vinfo->vid))
538 *changed = true;
539 } else if (!br_vlan_delete(br, vinfo->vid)) {
540 *changed = true;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800541 }
542 break;
543 }
544
545 return err;
546}
Vlad Yasevich407af322013-02-13 12:00:12 +0000547
Roopa Prabhuefa53562017-01-31 22:59:54 -0800548static int br_process_vlan_info(struct net_bridge *br,
549 struct net_bridge_port *p, int cmd,
550 struct bridge_vlan_info *vinfo_curr,
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300551 struct bridge_vlan_info **vinfo_last,
552 bool *changed)
Roopa Prabhuefa53562017-01-31 22:59:54 -0800553{
554 if (!vinfo_curr->vid || vinfo_curr->vid >= VLAN_VID_MASK)
555 return -EINVAL;
556
557 if (vinfo_curr->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) {
558 /* check if we are already processing a range */
559 if (*vinfo_last)
560 return -EINVAL;
561 *vinfo_last = vinfo_curr;
562 /* don't allow range of pvids */
563 if ((*vinfo_last)->flags & BRIDGE_VLAN_INFO_PVID)
564 return -EINVAL;
565 return 0;
566 }
567
568 if (*vinfo_last) {
569 struct bridge_vlan_info tmp_vinfo;
570 int v, err;
571
572 if (!(vinfo_curr->flags & BRIDGE_VLAN_INFO_RANGE_END))
573 return -EINVAL;
574
575 if (vinfo_curr->vid <= (*vinfo_last)->vid)
576 return -EINVAL;
577
578 memcpy(&tmp_vinfo, *vinfo_last,
579 sizeof(struct bridge_vlan_info));
580 for (v = (*vinfo_last)->vid; v <= vinfo_curr->vid; v++) {
581 tmp_vinfo.vid = v;
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300582 err = br_vlan_info(br, p, cmd, &tmp_vinfo, changed);
Roopa Prabhuefa53562017-01-31 22:59:54 -0800583 if (err)
584 break;
585 }
586 *vinfo_last = NULL;
587
Nikolay Aleksandrov66c54512017-10-19 20:17:32 +0300588 return err;
Roopa Prabhuefa53562017-01-31 22:59:54 -0800589 }
590
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300591 return br_vlan_info(br, p, cmd, vinfo_curr, changed);
Roopa Prabhuefa53562017-01-31 22:59:54 -0800592}
593
Vlad Yasevich407af322013-02-13 12:00:12 +0000594static int br_afspec(struct net_bridge *br,
595 struct net_bridge_port *p,
596 struct nlattr *af_spec,
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300597 int cmd, bool *changed)
Vlad Yasevich407af322013-02-13 12:00:12 +0000598{
Roopa Prabhuefa53562017-01-31 22:59:54 -0800599 struct bridge_vlan_info *vinfo_curr = NULL;
600 struct bridge_vlan_info *vinfo_last = NULL;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800601 struct nlattr *attr;
Roopa Prabhuefa53562017-01-31 22:59:54 -0800602 struct vtunnel_info tinfo_last = {};
603 struct vtunnel_info tinfo_curr = {};
604 int err = 0, rem;
Vlad Yasevich407af322013-02-13 12:00:12 +0000605
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800606 nla_for_each_nested(attr, af_spec, rem) {
Roopa Prabhuefa53562017-01-31 22:59:54 -0800607 err = 0;
608 switch (nla_type(attr)) {
609 case IFLA_BRIDGE_VLAN_TUNNEL_INFO:
Nikolay Aleksandrov1020ce32017-06-06 01:26:24 +0300610 if (!p || !(p->flags & BR_VLAN_TUNNEL))
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800611 return -EINVAL;
Roopa Prabhuefa53562017-01-31 22:59:54 -0800612 err = br_parse_vlan_tunnel_info(attr, &tinfo_curr);
613 if (err)
614 return err;
615 err = br_process_vlan_tunnel_info(br, p, cmd,
616 &tinfo_curr,
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300617 &tinfo_last,
618 changed);
Roopa Prabhuefa53562017-01-31 22:59:54 -0800619 if (err)
620 return err;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800621 break;
Roopa Prabhuefa53562017-01-31 22:59:54 -0800622 case IFLA_BRIDGE_VLAN_INFO:
623 if (nla_len(attr) != sizeof(struct bridge_vlan_info))
624 return -EINVAL;
625 vinfo_curr = nla_data(attr);
626 err = br_process_vlan_info(br, p, cmd, vinfo_curr,
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300627 &vinfo_last, changed);
Roopa Prabhuefa53562017-01-31 22:59:54 -0800628 if (err)
629 return err;
630 break;
631 }
Vlad Yasevich407af322013-02-13 12:00:12 +0000632 }
633
634 return err;
635}
636
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200637static const struct nla_policy br_port_policy[IFLA_BRPORT_MAX + 1] = {
stephen hemminger25c71c72012-11-13 07:53:05 +0000638 [IFLA_BRPORT_STATE] = { .type = NLA_U8 },
639 [IFLA_BRPORT_COST] = { .type = NLA_U32 },
640 [IFLA_BRPORT_PRIORITY] = { .type = NLA_U16 },
641 [IFLA_BRPORT_MODE] = { .type = NLA_U8 },
stephen hemmingera2e01a62012-11-13 07:53:07 +0000642 [IFLA_BRPORT_GUARD] = { .type = NLA_U8 },
stephen hemminger1007dd12012-11-13 07:53:08 +0000643 [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 },
Thomas Graf6f705d82014-11-26 13:42:19 +0100644 [IFLA_BRPORT_FAST_LEAVE]= { .type = NLA_U8 },
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400645 [IFLA_BRPORT_LEARNING] = { .type = NLA_U8 },
Vlad Yasevich867a5942013-06-05 10:08:01 -0400646 [IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 },
Nikolay Aleksandrov355b9f92015-08-04 19:06:32 +0200647 [IFLA_BRPORT_PROXYARP] = { .type = NLA_U8 },
Nikolay Aleksandrov786c2072015-08-04 19:06:33 +0200648 [IFLA_BRPORT_PROXYARP_WIFI] = { .type = NLA_U8 },
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200649 [IFLA_BRPORT_MULTICAST_ROUTER] = { .type = NLA_U8 },
Felix Fietkau6db6f0e2017-01-21 21:01:32 +0100650 [IFLA_BRPORT_MCAST_TO_UCAST] = { .type = NLA_U8 },
Tobias Klauser90512472017-05-05 16:36:53 +0200651 [IFLA_BRPORT_MCAST_FLOOD] = { .type = NLA_U8 },
652 [IFLA_BRPORT_BCAST_FLOOD] = { .type = NLA_U8 },
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300653 [IFLA_BRPORT_GROUP_FWD_MASK] = { .type = NLA_U16 },
Nikolay Aleksandrov1a3fbd32017-10-30 12:56:33 +0200654 [IFLA_BRPORT_NEIGH_SUPPRESS] = { .type = NLA_U8 },
stephen hemminger25c71c72012-11-13 07:53:05 +0000655};
656
657/* Change the state of the port and notify spanning tree */
658static int br_set_port_state(struct net_bridge_port *p, u8 state)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700659{
stephen hemminger25c71c72012-11-13 07:53:05 +0000660 if (state > BR_STATE_BLOCKING)
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000661 return -EINVAL;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700662
663 /* if kernel STP is running, don't allow changes */
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700664 if (p->br->stp_enabled == BR_KERNEL_STP)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700665 return -EBUSY;
666
stephen hemminger576eb622012-12-28 18:15:22 +0000667 /* if device is not up, change is not allowed
668 * if link is not present, only allowable state is disabled
669 */
stephen hemminger25c71c72012-11-13 07:53:05 +0000670 if (!netif_running(p->dev) ||
stephen hemminger576eb622012-12-28 18:15:22 +0000671 (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED))
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700672 return -ENETDOWN;
673
Florian Fainelli775dd692014-09-30 16:13:19 -0700674 br_set_state(p, state);
Vitalii Demianetsb03b6dd2011-11-25 00:16:37 +0000675 br_port_state_selection(p->br);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700676 return 0;
677}
678
stephen hemminger25c71c72012-11-13 07:53:05 +0000679/* Set/clear or port flags based on attribute */
Arkadi Sharshevsky39222852017-06-08 08:44:11 +0200680static int br_set_port_flag(struct net_bridge_port *p, struct nlattr *tb[],
681 int attrtype, unsigned long mask)
stephen hemminger25c71c72012-11-13 07:53:05 +0000682{
Arkadi Sharshevsky39222852017-06-08 08:44:11 +0200683 unsigned long flags;
684 int err;
685
686 if (!tb[attrtype])
687 return 0;
688
689 if (nla_get_u8(tb[attrtype]))
690 flags = p->flags | mask;
691 else
692 flags = p->flags & ~mask;
693
694 err = br_switchdev_set_port_flag(p, flags, mask);
695 if (err)
696 return err;
697
698 p->flags = flags;
699 return 0;
stephen hemminger25c71c72012-11-13 07:53:05 +0000700}
701
702/* Process bridge protocol info on port */
703static int br_setport(struct net_bridge_port *p, struct nlattr *tb[])
704{
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400705 unsigned long old_flags = p->flags;
Roopa Prabhuefa53562017-01-31 22:59:54 -0800706 bool br_vlan_tunnel_old = false;
707 int err;
stephen hemminger25c71c72012-11-13 07:53:05 +0000708
Arkadi Sharshevsky39222852017-06-08 08:44:11 +0200709 err = br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE);
710 if (err)
711 return err;
712
713 err = br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD);
714 if (err)
715 return err;
716
717 err = br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE);
718 if (err)
719 return err;
720
721 err = br_set_port_flag(p, tb, IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK);
722 if (err)
723 return err;
724
725 err = br_set_port_flag(p, tb, IFLA_BRPORT_LEARNING, BR_LEARNING);
726 if (err)
727 return err;
728
729 err = br_set_port_flag(p, tb, IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD);
730 if (err)
731 return err;
732
733 err = br_set_port_flag(p, tb, IFLA_BRPORT_MCAST_FLOOD, BR_MCAST_FLOOD);
734 if (err)
735 return err;
736
737 err = br_set_port_flag(p, tb, IFLA_BRPORT_MCAST_TO_UCAST, BR_MULTICAST_TO_UNICAST);
738 if (err)
739 return err;
740
741 err = br_set_port_flag(p, tb, IFLA_BRPORT_BCAST_FLOOD, BR_BCAST_FLOOD);
742 if (err)
743 return err;
744
745 err = br_set_port_flag(p, tb, IFLA_BRPORT_PROXYARP, BR_PROXYARP);
746 if (err)
747 return err;
748
749 err = br_set_port_flag(p, tb, IFLA_BRPORT_PROXYARP_WIFI, BR_PROXYARP_WIFI);
750 if (err)
751 return err;
stephen hemminger25c71c72012-11-13 07:53:05 +0000752
Roopa Prabhuefa53562017-01-31 22:59:54 -0800753 br_vlan_tunnel_old = (p->flags & BR_VLAN_TUNNEL) ? true : false;
Arkadi Sharshevsky39222852017-06-08 08:44:11 +0200754 err = br_set_port_flag(p, tb, IFLA_BRPORT_VLAN_TUNNEL, BR_VLAN_TUNNEL);
755 if (err)
756 return err;
757
Roopa Prabhuefa53562017-01-31 22:59:54 -0800758 if (br_vlan_tunnel_old && !(p->flags & BR_VLAN_TUNNEL))
759 nbp_vlan_tunnel_info_flush(p);
760
stephen hemminger25c71c72012-11-13 07:53:05 +0000761 if (tb[IFLA_BRPORT_COST]) {
762 err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST]));
763 if (err)
764 return err;
765 }
766
767 if (tb[IFLA_BRPORT_PRIORITY]) {
768 err = br_stp_set_port_priority(p, nla_get_u16(tb[IFLA_BRPORT_PRIORITY]));
769 if (err)
770 return err;
771 }
772
773 if (tb[IFLA_BRPORT_STATE]) {
774 err = br_set_port_state(p, nla_get_u8(tb[IFLA_BRPORT_STATE]));
775 if (err)
776 return err;
777 }
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400778
Nikolay Aleksandrov9b0c6e42015-10-06 14:12:01 +0200779 if (tb[IFLA_BRPORT_FLUSH])
780 br_fdb_delete_by_port(p->br, p, 0, 0);
781
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200782#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
783 if (tb[IFLA_BRPORT_MULTICAST_ROUTER]) {
784 u8 mcast_router = nla_get_u8(tb[IFLA_BRPORT_MULTICAST_ROUTER]);
785
786 err = br_multicast_set_port_router(p, mcast_router);
787 if (err)
788 return err;
789 }
790#endif
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300791
792 if (tb[IFLA_BRPORT_GROUP_FWD_MASK]) {
793 u16 fwd_mask = nla_get_u16(tb[IFLA_BRPORT_GROUP_FWD_MASK]);
794
795 if (fwd_mask & BR_GROUPFWD_MACPAUSE)
796 return -EINVAL;
797 p->group_fwd_mask = fwd_mask;
798 }
799
Roopa Prabhu821f1b22017-10-06 22:12:37 -0700800 err = br_set_port_flag(p, tb, IFLA_BRPORT_NEIGH_SUPPRESS,
801 BR_NEIGH_SUPPRESS);
802 if (err)
803 return err;
804
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400805 br_port_flags_change(p, old_flags ^ p->flags);
stephen hemminger25c71c72012-11-13 07:53:05 +0000806 return 0;
807}
808
809/* Change state and parameters on port. */
Roopa Prabhuadd511b2015-01-29 22:40:12 -0800810int br_setlink(struct net_device *dev, struct nlmsghdr *nlh, u16 flags)
stephen hemminger25c71c72012-11-13 07:53:05 +0000811{
stephen hemminger25c71c72012-11-13 07:53:05 +0000812 struct nlattr *protinfo;
Vlad Yasevich407af322013-02-13 12:00:12 +0000813 struct nlattr *afspec;
stephen hemminger25c71c72012-11-13 07:53:05 +0000814 struct net_bridge_port *p;
Dan Carpenter2062cc22012-12-07 01:10:46 +0000815 struct nlattr *tb[IFLA_BRPORT_MAX + 1];
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300816 bool changed = false;
Scott Feldman41c498b2015-05-10 09:47:59 -0700817 int err = 0;
stephen hemminger25c71c72012-11-13 07:53:05 +0000818
Hong zhi guoc60ee672013-03-28 06:21:22 +0000819 protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_PROTINFO);
820 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Vlad Yasevich407af322013-02-13 12:00:12 +0000821 if (!protinfo && !afspec)
stephen hemminger25c71c72012-11-13 07:53:05 +0000822 return 0;
823
824 p = br_port_get_rtnl(dev);
Vlad Yasevich407af322013-02-13 12:00:12 +0000825 /* We want to accept dev as bridge itself if the AF_SPEC
stephen hemminger8e3bff92013-12-08 12:15:44 -0800826 * is set to see if someone is setting vlan info on the bridge
Vlad Yasevich407af322013-02-13 12:00:12 +0000827 */
Hong zhi guo7b99a992013-03-24 03:26:47 +0000828 if (!p && !afspec)
stephen hemminger25c71c72012-11-13 07:53:05 +0000829 return -EINVAL;
830
Vlad Yasevich407af322013-02-13 12:00:12 +0000831 if (p && protinfo) {
832 if (protinfo->nla_type & NLA_F_NESTED) {
Johannes Bergfceb6432017-04-12 14:34:07 +0200833 err = nla_parse_nested(tb, IFLA_BRPORT_MAX, protinfo,
834 br_port_policy, NULL);
Vlad Yasevich407af322013-02-13 12:00:12 +0000835 if (err)
836 return err;
837
838 spin_lock_bh(&p->br->lock);
839 err = br_setport(p, tb);
840 spin_unlock_bh(&p->br->lock);
841 } else {
stephen hemminger8e3bff92013-12-08 12:15:44 -0800842 /* Binary compatibility with old RSTP */
Vlad Yasevich407af322013-02-13 12:00:12 +0000843 if (nla_len(protinfo) < sizeof(u8))
844 return -EINVAL;
845
846 spin_lock_bh(&p->br->lock);
847 err = br_set_port_state(p, nla_get_u8(protinfo));
848 spin_unlock_bh(&p->br->lock);
849 }
stephen hemminger25c71c72012-11-13 07:53:05 +0000850 if (err)
Vlad Yasevich407af322013-02-13 12:00:12 +0000851 goto out;
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300852 changed = true;
Vlad Yasevich407af322013-02-13 12:00:12 +0000853 }
stephen hemminger25c71c72012-11-13 07:53:05 +0000854
Vlad Yasevich407af322013-02-13 12:00:12 +0000855 if (afspec) {
856 err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300857 afspec, RTM_SETLINK, &changed);
stephen hemminger25c71c72012-11-13 07:53:05 +0000858 }
859
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300860 if (changed)
stephen hemminger25c71c72012-11-13 07:53:05 +0000861 br_ifinfo_notify(RTM_NEWLINK, p);
Vlad Yasevich407af322013-02-13 12:00:12 +0000862out:
stephen hemminger25c71c72012-11-13 07:53:05 +0000863 return err;
864}
865
Vlad Yasevich407af322013-02-13 12:00:12 +0000866/* Delete port information */
Roopa Prabhuadd511b2015-01-29 22:40:12 -0800867int br_dellink(struct net_device *dev, struct nlmsghdr *nlh, u16 flags)
Vlad Yasevich407af322013-02-13 12:00:12 +0000868{
Vlad Yasevich407af322013-02-13 12:00:12 +0000869 struct nlattr *afspec;
870 struct net_bridge_port *p;
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300871 bool changed = false;
Scott Feldman85080252015-05-10 09:48:03 -0700872 int err = 0;
Vlad Yasevich407af322013-02-13 12:00:12 +0000873
Hong zhi guoc60ee672013-03-28 06:21:22 +0000874 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Vlad Yasevich407af322013-02-13 12:00:12 +0000875 if (!afspec)
876 return 0;
877
878 p = br_port_get_rtnl(dev);
879 /* We want to accept dev as bridge itself as well */
880 if (!p && !(dev->priv_flags & IFF_EBRIDGE))
881 return -EINVAL;
882
883 err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
Nikolay Aleksandrove19b42a2017-10-27 13:19:36 +0300884 afspec, RTM_DELLINK, &changed);
885 if (changed)
Roopa Prabhu02dba432015-01-14 20:02:25 -0800886 /* Send RTM_NEWLINK because userspace
887 * expects RTM_NEWLINK for vlan dels
888 */
889 br_ifinfo_notify(RTM_NEWLINK, p);
Vlad Yasevich407af322013-02-13 12:00:12 +0000890
891 return err;
892}
Matthias Schiffera8b8a8892017-06-25 23:56:01 +0200893
894static int br_validate(struct nlattr *tb[], struct nlattr *data[],
895 struct netlink_ext_ack *extack)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700896{
stephen hemmingerbb900b22011-04-04 14:03:32 +0000897 if (tb[IFLA_ADDRESS]) {
898 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
899 return -EINVAL;
900 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
901 return -EADDRNOTAVAIL;
902 }
Thomas Graf32fe21c2007-03-22 11:59:03 -0700903
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900904 if (!data)
905 return 0;
906
907#ifdef CONFIG_BRIDGE_VLAN_FILTERING
908 if (data[IFLA_BR_VLAN_PROTOCOL]) {
909 switch (nla_get_be16(data[IFLA_BR_VLAN_PROTOCOL])) {
910 case htons(ETH_P_8021Q):
911 case htons(ETH_P_8021AD):
912 break;
913 default:
914 return -EPROTONOSUPPORT;
915 }
916 }
Tobias Jungela2858602017-05-17 09:29:12 +0200917
918 if (data[IFLA_BR_VLAN_DEFAULT_PVID]) {
919 __u16 defpvid = nla_get_u16(data[IFLA_BR_VLAN_DEFAULT_PVID]);
920
921 if (defpvid >= VLAN_VID_MASK)
922 return -EINVAL;
923 }
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900924#endif
925
Thomas Graf32fe21c2007-03-22 11:59:03 -0700926 return 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700927}
928
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200929static int br_port_slave_changelink(struct net_device *brdev,
930 struct net_device *dev,
931 struct nlattr *tb[],
Matthias Schiffer17dd0ec2017-06-25 23:56:02 +0200932 struct nlattr *data[],
933 struct netlink_ext_ack *extack)
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200934{
Nikolay Aleksandrov963ad942015-07-22 13:03:40 +0200935 struct net_bridge *br = netdev_priv(brdev);
936 int ret;
937
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200938 if (!data)
939 return 0;
Nikolay Aleksandrov963ad942015-07-22 13:03:40 +0200940
941 spin_lock_bh(&br->lock);
942 ret = br_setport(br_port_get_rtnl(dev), data);
943 spin_unlock_bh(&br->lock);
944
945 return ret;
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200946}
947
Jiri Pirkoced82832014-09-05 15:51:29 +0200948static int br_port_fill_slave_info(struct sk_buff *skb,
949 const struct net_device *brdev,
950 const struct net_device *dev)
951{
952 return br_port_fill_attrs(skb, br_port_get_rtnl(dev));
953}
954
955static size_t br_port_get_slave_size(const struct net_device *brdev,
956 const struct net_device *dev)
957{
958 return br_port_info_size();
959}
960
Jiri Pirko13323512014-09-05 15:51:32 +0200961static const struct nla_policy br_policy[IFLA_BR_MAX + 1] = {
962 [IFLA_BR_FORWARD_DELAY] = { .type = NLA_U32 },
963 [IFLA_BR_HELLO_TIME] = { .type = NLA_U32 },
964 [IFLA_BR_MAX_AGE] = { .type = NLA_U32 },
Jörg Thalheimaf615762015-03-18 10:06:58 +0100965 [IFLA_BR_AGEING_TIME] = { .type = NLA_U32 },
966 [IFLA_BR_STP_STATE] = { .type = NLA_U32 },
967 [IFLA_BR_PRIORITY] = { .type = NLA_U16 },
Nikolay Aleksandrova7854032015-08-07 19:40:45 +0300968 [IFLA_BR_VLAN_FILTERING] = { .type = NLA_U8 },
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900969 [IFLA_BR_VLAN_PROTOCOL] = { .type = NLA_U16 },
Nikolay Aleksandrov79102282015-10-04 14:23:28 +0200970 [IFLA_BR_GROUP_FWD_MASK] = { .type = NLA_U16 },
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +0200971 [IFLA_BR_GROUP_ADDR] = { .type = NLA_BINARY,
972 .len = ETH_ALEN },
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +0200973 [IFLA_BR_MCAST_ROUTER] = { .type = NLA_U8 },
Nikolay Aleksandrov89126322015-10-04 14:23:38 +0200974 [IFLA_BR_MCAST_SNOOPING] = { .type = NLA_U8 },
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +0200975 [IFLA_BR_MCAST_QUERY_USE_IFADDR] = { .type = NLA_U8 },
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +0200976 [IFLA_BR_MCAST_QUERIER] = { .type = NLA_U8 },
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +0200977 [IFLA_BR_MCAST_HASH_ELASTICITY] = { .type = NLA_U32 },
Nikolay Aleksandrov858079f2015-10-04 14:23:42 +0200978 [IFLA_BR_MCAST_HASH_MAX] = { .type = NLA_U32 },
Nikolay Aleksandrov79b859f2015-10-04 14:23:43 +0200979 [IFLA_BR_MCAST_LAST_MEMBER_CNT] = { .type = NLA_U32 },
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +0200980 [IFLA_BR_MCAST_STARTUP_QUERY_CNT] = { .type = NLA_U32 },
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +0200981 [IFLA_BR_MCAST_LAST_MEMBER_INTVL] = { .type = NLA_U64 },
982 [IFLA_BR_MCAST_MEMBERSHIP_INTVL] = { .type = NLA_U64 },
983 [IFLA_BR_MCAST_QUERIER_INTVL] = { .type = NLA_U64 },
984 [IFLA_BR_MCAST_QUERY_INTVL] = { .type = NLA_U64 },
985 [IFLA_BR_MCAST_QUERY_RESPONSE_INTVL] = { .type = NLA_U64 },
986 [IFLA_BR_MCAST_STARTUP_QUERY_INTVL] = { .type = NLA_U64 },
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +0200987 [IFLA_BR_NF_CALL_IPTABLES] = { .type = NLA_U8 },
988 [IFLA_BR_NF_CALL_IP6TABLES] = { .type = NLA_U8 },
989 [IFLA_BR_NF_CALL_ARPTABLES] = { .type = NLA_U8 },
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +0200990 [IFLA_BR_VLAN_DEFAULT_PVID] = { .type = NLA_U16 },
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +0200991 [IFLA_BR_VLAN_STATS_ENABLED] = { .type = NLA_U8 },
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +0200992 [IFLA_BR_MCAST_STATS_ENABLED] = { .type = NLA_U8 },
Nikolay Aleksandrov5e923582016-11-21 13:03:24 +0100993 [IFLA_BR_MCAST_IGMP_VERSION] = { .type = NLA_U8 },
Nikolay Aleksandrovaa2ae3e2016-11-21 13:03:25 +0100994 [IFLA_BR_MCAST_MLD_VERSION] = { .type = NLA_U8 },
Jiri Pirko13323512014-09-05 15:51:32 +0200995};
996
997static int br_changelink(struct net_device *brdev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +0200998 struct nlattr *data[],
999 struct netlink_ext_ack *extack)
Jiri Pirko13323512014-09-05 15:51:32 +02001000{
1001 struct net_bridge *br = netdev_priv(brdev);
1002 int err;
1003
1004 if (!data)
1005 return 0;
1006
1007 if (data[IFLA_BR_FORWARD_DELAY]) {
1008 err = br_set_forward_delay(br, nla_get_u32(data[IFLA_BR_FORWARD_DELAY]));
1009 if (err)
1010 return err;
1011 }
1012
1013 if (data[IFLA_BR_HELLO_TIME]) {
1014 err = br_set_hello_time(br, nla_get_u32(data[IFLA_BR_HELLO_TIME]));
1015 if (err)
1016 return err;
1017 }
1018
1019 if (data[IFLA_BR_MAX_AGE]) {
1020 err = br_set_max_age(br, nla_get_u32(data[IFLA_BR_MAX_AGE]));
1021 if (err)
1022 return err;
1023 }
1024
Jörg Thalheimaf615762015-03-18 10:06:58 +01001025 if (data[IFLA_BR_AGEING_TIME]) {
Scott Feldmanc62987b2015-10-08 19:23:19 -07001026 err = br_set_ageing_time(br, nla_get_u32(data[IFLA_BR_AGEING_TIME]));
1027 if (err)
1028 return err;
Jörg Thalheimaf615762015-03-18 10:06:58 +01001029 }
1030
1031 if (data[IFLA_BR_STP_STATE]) {
1032 u32 stp_enabled = nla_get_u32(data[IFLA_BR_STP_STATE]);
1033
1034 br_stp_set_enabled(br, stp_enabled);
1035 }
1036
1037 if (data[IFLA_BR_PRIORITY]) {
1038 u32 priority = nla_get_u16(data[IFLA_BR_PRIORITY]);
1039
1040 br_stp_set_bridge_priority(br, priority);
1041 }
1042
Nikolay Aleksandrova7854032015-08-07 19:40:45 +03001043 if (data[IFLA_BR_VLAN_FILTERING]) {
1044 u8 vlan_filter = nla_get_u8(data[IFLA_BR_VLAN_FILTERING]);
1045
1046 err = __br_vlan_filter_toggle(br, vlan_filter);
1047 if (err)
1048 return err;
1049 }
1050
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001051#ifdef CONFIG_BRIDGE_VLAN_FILTERING
1052 if (data[IFLA_BR_VLAN_PROTOCOL]) {
1053 __be16 vlan_proto = nla_get_be16(data[IFLA_BR_VLAN_PROTOCOL]);
1054
1055 err = __br_vlan_set_proto(br, vlan_proto);
1056 if (err)
1057 return err;
1058 }
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +02001059
1060 if (data[IFLA_BR_VLAN_DEFAULT_PVID]) {
1061 __u16 defpvid = nla_get_u16(data[IFLA_BR_VLAN_DEFAULT_PVID]);
1062
1063 err = __br_vlan_set_default_pvid(br, defpvid);
1064 if (err)
1065 return err;
1066 }
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +02001067
1068 if (data[IFLA_BR_VLAN_STATS_ENABLED]) {
1069 __u8 vlan_stats = nla_get_u8(data[IFLA_BR_VLAN_STATS_ENABLED]);
1070
1071 err = br_vlan_set_stats(br, vlan_stats);
1072 if (err)
1073 return err;
1074 }
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001075#endif
1076
Nikolay Aleksandrov79102282015-10-04 14:23:28 +02001077 if (data[IFLA_BR_GROUP_FWD_MASK]) {
1078 u16 fwd_mask = nla_get_u16(data[IFLA_BR_GROUP_FWD_MASK]);
1079
1080 if (fwd_mask & BR_GROUPFWD_RESTRICTED)
1081 return -EINVAL;
1082 br->group_fwd_mask = fwd_mask;
1083 }
1084
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +02001085 if (data[IFLA_BR_GROUP_ADDR]) {
1086 u8 new_addr[ETH_ALEN];
1087
1088 if (nla_len(data[IFLA_BR_GROUP_ADDR]) != ETH_ALEN)
1089 return -EINVAL;
1090 memcpy(new_addr, nla_data(data[IFLA_BR_GROUP_ADDR]), ETH_ALEN);
1091 if (!is_link_local_ether_addr(new_addr))
1092 return -EINVAL;
1093 if (new_addr[5] == 1 || /* 802.3x Pause address */
1094 new_addr[5] == 2 || /* 802.3ad Slow protocols */
1095 new_addr[5] == 3) /* 802.1X PAE address */
1096 return -EINVAL;
1097 spin_lock_bh(&br->lock);
1098 memcpy(br->group_addr, new_addr, sizeof(br->group_addr));
1099 spin_unlock_bh(&br->lock);
1100 br->group_addr_set = true;
1101 br_recalculate_fwd_mask(br);
1102 }
1103
Nikolay Aleksandrov150217c2015-10-04 14:23:36 +02001104 if (data[IFLA_BR_FDB_FLUSH])
1105 br_fdb_flush(br);
1106
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001107#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
1108 if (data[IFLA_BR_MCAST_ROUTER]) {
1109 u8 multicast_router = nla_get_u8(data[IFLA_BR_MCAST_ROUTER]);
1110
1111 err = br_multicast_set_router(br, multicast_router);
1112 if (err)
1113 return err;
1114 }
Nikolay Aleksandrov89126322015-10-04 14:23:38 +02001115
1116 if (data[IFLA_BR_MCAST_SNOOPING]) {
1117 u8 mcast_snooping = nla_get_u8(data[IFLA_BR_MCAST_SNOOPING]);
1118
1119 err = br_multicast_toggle(br, mcast_snooping);
1120 if (err)
1121 return err;
1122 }
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +02001123
1124 if (data[IFLA_BR_MCAST_QUERY_USE_IFADDR]) {
1125 u8 val;
1126
1127 val = nla_get_u8(data[IFLA_BR_MCAST_QUERY_USE_IFADDR]);
1128 br->multicast_query_use_ifaddr = !!val;
1129 }
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +02001130
1131 if (data[IFLA_BR_MCAST_QUERIER]) {
1132 u8 mcast_querier = nla_get_u8(data[IFLA_BR_MCAST_QUERIER]);
1133
1134 err = br_multicast_set_querier(br, mcast_querier);
1135 if (err)
1136 return err;
1137 }
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +02001138
1139 if (data[IFLA_BR_MCAST_HASH_ELASTICITY]) {
1140 u32 val = nla_get_u32(data[IFLA_BR_MCAST_HASH_ELASTICITY]);
1141
1142 br->hash_elasticity = val;
1143 }
Nikolay Aleksandrov858079f2015-10-04 14:23:42 +02001144
1145 if (data[IFLA_BR_MCAST_HASH_MAX]) {
1146 u32 hash_max = nla_get_u32(data[IFLA_BR_MCAST_HASH_MAX]);
1147
1148 err = br_multicast_set_hash_max(br, hash_max);
1149 if (err)
1150 return err;
1151 }
Nikolay Aleksandrov79b859f2015-10-04 14:23:43 +02001152
1153 if (data[IFLA_BR_MCAST_LAST_MEMBER_CNT]) {
1154 u32 val = nla_get_u32(data[IFLA_BR_MCAST_LAST_MEMBER_CNT]);
1155
1156 br->multicast_last_member_count = val;
1157 }
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001158
1159 if (data[IFLA_BR_MCAST_STARTUP_QUERY_CNT]) {
1160 u32 val = nla_get_u32(data[IFLA_BR_MCAST_STARTUP_QUERY_CNT]);
1161
1162 br->multicast_startup_query_count = val;
1163 }
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001164
1165 if (data[IFLA_BR_MCAST_LAST_MEMBER_INTVL]) {
1166 u64 val = nla_get_u64(data[IFLA_BR_MCAST_LAST_MEMBER_INTVL]);
1167
1168 br->multicast_last_member_interval = clock_t_to_jiffies(val);
1169 }
1170
1171 if (data[IFLA_BR_MCAST_MEMBERSHIP_INTVL]) {
1172 u64 val = nla_get_u64(data[IFLA_BR_MCAST_MEMBERSHIP_INTVL]);
1173
1174 br->multicast_membership_interval = clock_t_to_jiffies(val);
1175 }
1176
1177 if (data[IFLA_BR_MCAST_QUERIER_INTVL]) {
1178 u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERIER_INTVL]);
1179
1180 br->multicast_querier_interval = clock_t_to_jiffies(val);
1181 }
1182
1183 if (data[IFLA_BR_MCAST_QUERY_INTVL]) {
1184 u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERY_INTVL]);
1185
1186 br->multicast_query_interval = clock_t_to_jiffies(val);
1187 }
1188
1189 if (data[IFLA_BR_MCAST_QUERY_RESPONSE_INTVL]) {
1190 u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERY_RESPONSE_INTVL]);
1191
1192 br->multicast_query_response_interval = clock_t_to_jiffies(val);
1193 }
1194
1195 if (data[IFLA_BR_MCAST_STARTUP_QUERY_INTVL]) {
1196 u64 val = nla_get_u64(data[IFLA_BR_MCAST_STARTUP_QUERY_INTVL]);
1197
1198 br->multicast_startup_query_interval = clock_t_to_jiffies(val);
1199 }
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001200
1201 if (data[IFLA_BR_MCAST_STATS_ENABLED]) {
1202 __u8 mcast_stats;
1203
1204 mcast_stats = nla_get_u8(data[IFLA_BR_MCAST_STATS_ENABLED]);
1205 br->multicast_stats_enabled = !!mcast_stats;
1206 }
Nikolay Aleksandrov5e923582016-11-21 13:03:24 +01001207
1208 if (data[IFLA_BR_MCAST_IGMP_VERSION]) {
1209 __u8 igmp_version;
1210
1211 igmp_version = nla_get_u8(data[IFLA_BR_MCAST_IGMP_VERSION]);
1212 err = br_multicast_set_igmp_version(br, igmp_version);
1213 if (err)
1214 return err;
1215 }
Nikolay Aleksandrovaa2ae3e2016-11-21 13:03:25 +01001216
1217#if IS_ENABLED(CONFIG_IPV6)
1218 if (data[IFLA_BR_MCAST_MLD_VERSION]) {
1219 __u8 mld_version;
1220
1221 mld_version = nla_get_u8(data[IFLA_BR_MCAST_MLD_VERSION]);
1222 err = br_multicast_set_mld_version(br, mld_version);
1223 if (err)
1224 return err;
1225 }
1226#endif
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001227#endif
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +02001228#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1229 if (data[IFLA_BR_NF_CALL_IPTABLES]) {
1230 u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_IPTABLES]);
1231
1232 br->nf_call_iptables = val ? true : false;
1233 }
1234
1235 if (data[IFLA_BR_NF_CALL_IP6TABLES]) {
1236 u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_IP6TABLES]);
1237
1238 br->nf_call_ip6tables = val ? true : false;
1239 }
1240
1241 if (data[IFLA_BR_NF_CALL_ARPTABLES]) {
1242 u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_ARPTABLES]);
1243
1244 br->nf_call_arptables = val ? true : false;
1245 }
1246#endif
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001247
Jiri Pirko13323512014-09-05 15:51:32 +02001248 return 0;
1249}
1250
Ivan Vecerab6677442017-01-20 18:12:17 +01001251static int br_dev_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02001252 struct nlattr *tb[], struct nlattr *data[],
1253 struct netlink_ext_ack *extack)
Ivan Vecerab6677442017-01-20 18:12:17 +01001254{
1255 struct net_bridge *br = netdev_priv(dev);
1256 int err;
1257
1258 if (tb[IFLA_ADDRESS]) {
1259 spin_lock_bh(&br->lock);
1260 br_stp_change_bridge_id(br, nla_data(tb[IFLA_ADDRESS]));
1261 spin_unlock_bh(&br->lock);
1262 }
1263
Ido Schimmel5b8d5422017-04-10 14:59:28 +03001264 err = register_netdevice(dev);
Ivan Vecerab6677442017-01-20 18:12:17 +01001265 if (err)
1266 return err;
1267
Matthias Schifferad744b22017-06-25 23:56:00 +02001268 err = br_changelink(dev, tb, data, extack);
Ido Schimmel5b8d5422017-04-10 14:59:28 +03001269 if (err)
1270 unregister_netdevice(dev);
1271 return err;
Ivan Vecerab6677442017-01-20 18:12:17 +01001272}
1273
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001274static size_t br_get_size(const struct net_device *brdev)
1275{
1276 return nla_total_size(sizeof(u32)) + /* IFLA_BR_FORWARD_DELAY */
1277 nla_total_size(sizeof(u32)) + /* IFLA_BR_HELLO_TIME */
1278 nla_total_size(sizeof(u32)) + /* IFLA_BR_MAX_AGE */
Jörg Thalheimaf615762015-03-18 10:06:58 +01001279 nla_total_size(sizeof(u32)) + /* IFLA_BR_AGEING_TIME */
1280 nla_total_size(sizeof(u32)) + /* IFLA_BR_STP_STATE */
1281 nla_total_size(sizeof(u16)) + /* IFLA_BR_PRIORITY */
Nikolay Aleksandrova7854032015-08-07 19:40:45 +03001282 nla_total_size(sizeof(u8)) + /* IFLA_BR_VLAN_FILTERING */
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001283#ifdef CONFIG_BRIDGE_VLAN_FILTERING
1284 nla_total_size(sizeof(__be16)) + /* IFLA_BR_VLAN_PROTOCOL */
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +02001285 nla_total_size(sizeof(u16)) + /* IFLA_BR_VLAN_DEFAULT_PVID */
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +02001286 nla_total_size(sizeof(u8)) + /* IFLA_BR_VLAN_STATS_ENABLED */
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001287#endif
Nikolay Aleksandrov79102282015-10-04 14:23:28 +02001288 nla_total_size(sizeof(u16)) + /* IFLA_BR_GROUP_FWD_MASK */
Nikolay Aleksandrov5127c812015-10-04 14:23:29 +02001289 nla_total_size(sizeof(struct ifla_bridge_id)) + /* IFLA_BR_ROOT_ID */
Nikolay Aleksandrov7599a222015-10-04 14:23:30 +02001290 nla_total_size(sizeof(struct ifla_bridge_id)) + /* IFLA_BR_BRIDGE_ID */
Nikolay Aleksandrov8762ba62015-10-04 14:23:31 +02001291 nla_total_size(sizeof(u16)) + /* IFLA_BR_ROOT_PORT */
Nikolay Aleksandrov684dd242015-10-04 14:23:32 +02001292 nla_total_size(sizeof(u32)) + /* IFLA_BR_ROOT_PATH_COST */
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001293 nla_total_size(sizeof(u8)) + /* IFLA_BR_TOPOLOGY_CHANGE */
1294 nla_total_size(sizeof(u8)) + /* IFLA_BR_TOPOLOGY_CHANGE_DETECTED */
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001295 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_HELLO_TIMER */
1296 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_TCN_TIMER */
1297 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_TOPOLOGY_CHANGE_TIMER */
1298 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_GC_TIMER */
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +02001299 nla_total_size(ETH_ALEN) + /* IFLA_BR_GROUP_ADDR */
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001300#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
1301 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_ROUTER */
Nikolay Aleksandrov89126322015-10-04 14:23:38 +02001302 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_SNOOPING */
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +02001303 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_QUERY_USE_IFADDR */
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +02001304 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_QUERIER */
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001305 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_STATS_ENABLED */
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001306 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_HASH_ELASTICITY */
1307 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_HASH_MAX */
1308 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_LAST_MEMBER_CNT */
1309 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_STARTUP_QUERY_CNT */
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001310 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_LAST_MEMBER_INTVL */
1311 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_MEMBERSHIP_INTVL */
1312 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_QUERIER_INTVL */
1313 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_QUERY_INTVL */
1314 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_QUERY_RESPONSE_INTVL */
1315 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_STARTUP_QUERY_INTVL */
Nikolay Aleksandrov5e923582016-11-21 13:03:24 +01001316 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_IGMP_VERSION */
Nikolay Aleksandrovaa2ae3e2016-11-21 13:03:25 +01001317 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_MLD_VERSION */
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001318#endif
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +02001319#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1320 nla_total_size(sizeof(u8)) + /* IFLA_BR_NF_CALL_IPTABLES */
1321 nla_total_size(sizeof(u8)) + /* IFLA_BR_NF_CALL_IP6TABLES */
1322 nla_total_size(sizeof(u8)) + /* IFLA_BR_NF_CALL_ARPTABLES */
1323#endif
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001324 0;
1325}
1326
1327static int br_fill_info(struct sk_buff *skb, const struct net_device *brdev)
1328{
1329 struct net_bridge *br = netdev_priv(brdev);
1330 u32 forward_delay = jiffies_to_clock_t(br->forward_delay);
1331 u32 hello_time = jiffies_to_clock_t(br->hello_time);
1332 u32 age_time = jiffies_to_clock_t(br->max_age);
Jörg Thalheimaf615762015-03-18 10:06:58 +01001333 u32 ageing_time = jiffies_to_clock_t(br->ageing_time);
1334 u32 stp_enabled = br->stp_enabled;
1335 u16 priority = (br->bridge_id.prio[0] << 8) | br->bridge_id.prio[1];
Ido Schimmel1f514452017-05-26 08:37:23 +02001336 u8 vlan_enabled = br_vlan_enabled(br->dev);
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001337 u64 clockval;
Nikolay Aleksandrov5127c812015-10-04 14:23:29 +02001338
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001339 clockval = br_timer_value(&br->hello_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001340 if (nla_put_u64_64bit(skb, IFLA_BR_HELLO_TIMER, clockval, IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001341 return -EMSGSIZE;
1342 clockval = br_timer_value(&br->tcn_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001343 if (nla_put_u64_64bit(skb, IFLA_BR_TCN_TIMER, clockval, IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001344 return -EMSGSIZE;
1345 clockval = br_timer_value(&br->topology_change_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001346 if (nla_put_u64_64bit(skb, IFLA_BR_TOPOLOGY_CHANGE_TIMER, clockval,
1347 IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001348 return -EMSGSIZE;
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +01001349 clockval = br_timer_value(&br->gc_work.timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001350 if (nla_put_u64_64bit(skb, IFLA_BR_GC_TIMER, clockval, IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001351 return -EMSGSIZE;
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001352
1353 if (nla_put_u32(skb, IFLA_BR_FORWARD_DELAY, forward_delay) ||
1354 nla_put_u32(skb, IFLA_BR_HELLO_TIME, hello_time) ||
Jörg Thalheimaf615762015-03-18 10:06:58 +01001355 nla_put_u32(skb, IFLA_BR_MAX_AGE, age_time) ||
1356 nla_put_u32(skb, IFLA_BR_AGEING_TIME, ageing_time) ||
1357 nla_put_u32(skb, IFLA_BR_STP_STATE, stp_enabled) ||
Nikolay Aleksandrova7854032015-08-07 19:40:45 +03001358 nla_put_u16(skb, IFLA_BR_PRIORITY, priority) ||
Nikolay Aleksandrov79102282015-10-04 14:23:28 +02001359 nla_put_u8(skb, IFLA_BR_VLAN_FILTERING, vlan_enabled) ||
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001360 nla_put_u16(skb, IFLA_BR_GROUP_FWD_MASK, br->group_fwd_mask) ||
1361 nla_put(skb, IFLA_BR_BRIDGE_ID, sizeof(struct ifla_bridge_id),
1362 &br->bridge_id) ||
1363 nla_put(skb, IFLA_BR_ROOT_ID, sizeof(struct ifla_bridge_id),
1364 &br->designated_root) ||
Nikolay Aleksandrov684dd242015-10-04 14:23:32 +02001365 nla_put_u16(skb, IFLA_BR_ROOT_PORT, br->root_port) ||
Nikolay Aleksandroved416302015-10-04 14:23:33 +02001366 nla_put_u32(skb, IFLA_BR_ROOT_PATH_COST, br->root_path_cost) ||
1367 nla_put_u8(skb, IFLA_BR_TOPOLOGY_CHANGE, br->topology_change) ||
1368 nla_put_u8(skb, IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
Nikolay Aleksandrovd76bd142015-10-04 14:23:34 +02001369 br->topology_change_detected) ||
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +02001370 nla_put(skb, IFLA_BR_GROUP_ADDR, ETH_ALEN, br->group_addr))
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001371 return -EMSGSIZE;
1372
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001373#ifdef CONFIG_BRIDGE_VLAN_FILTERING
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +02001374 if (nla_put_be16(skb, IFLA_BR_VLAN_PROTOCOL, br->vlan_proto) ||
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +02001375 nla_put_u16(skb, IFLA_BR_VLAN_DEFAULT_PVID, br->default_pvid) ||
1376 nla_put_u8(skb, IFLA_BR_VLAN_STATS_ENABLED, br->vlan_stats_enabled))
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001377 return -EMSGSIZE;
1378#endif
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001379#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
Nikolay Aleksandrov89126322015-10-04 14:23:38 +02001380 if (nla_put_u8(skb, IFLA_BR_MCAST_ROUTER, br->multicast_router) ||
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +02001381 nla_put_u8(skb, IFLA_BR_MCAST_SNOOPING, !br->multicast_disabled) ||
1382 nla_put_u8(skb, IFLA_BR_MCAST_QUERY_USE_IFADDR,
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +02001383 br->multicast_query_use_ifaddr) ||
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +02001384 nla_put_u8(skb, IFLA_BR_MCAST_QUERIER, br->multicast_querier) ||
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001385 nla_put_u8(skb, IFLA_BR_MCAST_STATS_ENABLED,
1386 br->multicast_stats_enabled) ||
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +02001387 nla_put_u32(skb, IFLA_BR_MCAST_HASH_ELASTICITY,
Nikolay Aleksandrov858079f2015-10-04 14:23:42 +02001388 br->hash_elasticity) ||
Nikolay Aleksandrov79b859f2015-10-04 14:23:43 +02001389 nla_put_u32(skb, IFLA_BR_MCAST_HASH_MAX, br->hash_max) ||
1390 nla_put_u32(skb, IFLA_BR_MCAST_LAST_MEMBER_CNT,
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001391 br->multicast_last_member_count) ||
1392 nla_put_u32(skb, IFLA_BR_MCAST_STARTUP_QUERY_CNT,
Nikolay Aleksandrov5e923582016-11-21 13:03:24 +01001393 br->multicast_startup_query_count) ||
1394 nla_put_u8(skb, IFLA_BR_MCAST_IGMP_VERSION,
1395 br->multicast_igmp_version))
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001396 return -EMSGSIZE;
Nikolay Aleksandrovaa2ae3e2016-11-21 13:03:25 +01001397#if IS_ENABLED(CONFIG_IPV6)
1398 if (nla_put_u8(skb, IFLA_BR_MCAST_MLD_VERSION,
1399 br->multicast_mld_version))
1400 return -EMSGSIZE;
1401#endif
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001402 clockval = jiffies_to_clock_t(br->multicast_last_member_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001403 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_LAST_MEMBER_INTVL, clockval,
1404 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001405 return -EMSGSIZE;
1406 clockval = jiffies_to_clock_t(br->multicast_membership_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001407 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_MEMBERSHIP_INTVL, clockval,
1408 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001409 return -EMSGSIZE;
1410 clockval = jiffies_to_clock_t(br->multicast_querier_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001411 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_QUERIER_INTVL, clockval,
1412 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001413 return -EMSGSIZE;
1414 clockval = jiffies_to_clock_t(br->multicast_query_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001415 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_QUERY_INTVL, clockval,
1416 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001417 return -EMSGSIZE;
1418 clockval = jiffies_to_clock_t(br->multicast_query_response_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001419 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_QUERY_RESPONSE_INTVL, clockval,
1420 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001421 return -EMSGSIZE;
1422 clockval = jiffies_to_clock_t(br->multicast_startup_query_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001423 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_STARTUP_QUERY_INTVL, clockval,
1424 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001425 return -EMSGSIZE;
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001426#endif
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +02001427#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1428 if (nla_put_u8(skb, IFLA_BR_NF_CALL_IPTABLES,
1429 br->nf_call_iptables ? 1 : 0) ||
1430 nla_put_u8(skb, IFLA_BR_NF_CALL_IP6TABLES,
1431 br->nf_call_ip6tables ? 1 : 0) ||
1432 nla_put_u8(skb, IFLA_BR_NF_CALL_ARPTABLES,
1433 br->nf_call_arptables ? 1 : 0))
1434 return -EMSGSIZE;
1435#endif
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001436
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001437 return 0;
1438}
1439
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001440static size_t br_get_linkxstats_size(const struct net_device *dev, int attr)
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001441{
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001442 struct net_bridge_port *p = NULL;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001443 struct net_bridge_vlan_group *vg;
1444 struct net_bridge_vlan *v;
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001445 struct net_bridge *br;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001446 int numvls = 0;
1447
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001448 switch (attr) {
1449 case IFLA_STATS_LINK_XSTATS:
1450 br = netdev_priv(dev);
1451 vg = br_vlan_group(br);
1452 break;
1453 case IFLA_STATS_LINK_XSTATS_SLAVE:
1454 p = br_port_get_rtnl(dev);
1455 if (!p)
1456 return 0;
1457 br = p->br;
1458 vg = nbp_vlan_group(p);
1459 break;
1460 default:
1461 return 0;
1462 }
1463
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001464 if (vg) {
1465 /* we need to count all, even placeholder entries */
1466 list_for_each_entry(v, &vg->vlan_list, vlist)
1467 numvls++;
1468 }
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001469
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001470 return numvls * nla_total_size(sizeof(struct bridge_vlan_xstats)) +
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001471 nla_total_size(sizeof(struct br_mcast_stats)) +
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001472 nla_total_size(0);
1473}
1474
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001475static int br_fill_linkxstats(struct sk_buff *skb,
1476 const struct net_device *dev,
1477 int *prividx, int attr)
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001478{
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001479 struct nlattr *nla __maybe_unused;
1480 struct net_bridge_port *p = NULL;
1481 struct net_bridge_vlan_group *vg;
1482 struct net_bridge_vlan *v;
1483 struct net_bridge *br;
1484 struct nlattr *nest;
1485 int vl_idx = 0;
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001486
1487 switch (attr) {
1488 case IFLA_STATS_LINK_XSTATS:
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001489 br = netdev_priv(dev);
1490 vg = br_vlan_group(br);
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001491 break;
1492 case IFLA_STATS_LINK_XSTATS_SLAVE:
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001493 p = br_port_get_rtnl(dev);
1494 if (!p)
1495 return 0;
1496 br = p->br;
1497 vg = nbp_vlan_group(p);
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001498 break;
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001499 default:
1500 return -EINVAL;
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001501 }
1502
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001503 nest = nla_nest_start(skb, LINK_XSTATS_TYPE_BRIDGE);
1504 if (!nest)
1505 return -EMSGSIZE;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001506
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001507 if (vg) {
Nikolay Aleksandrov72f4af42016-08-25 14:27:51 +02001508 u16 pvid;
1509
1510 pvid = br_get_pvid(vg);
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001511 list_for_each_entry(v, &vg->vlan_list, vlist) {
1512 struct bridge_vlan_xstats vxi;
1513 struct br_vlan_stats stats;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001514
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001515 if (++vl_idx < *prividx)
1516 continue;
1517 memset(&vxi, 0, sizeof(vxi));
1518 vxi.vid = v->vid;
Nikolay Aleksandrov61ba1a22016-08-17 12:53:10 +02001519 vxi.flags = v->flags;
Nikolay Aleksandrov72f4af42016-08-25 14:27:51 +02001520 if (v->vid == pvid)
1521 vxi.flags |= BRIDGE_VLAN_INFO_PVID;
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001522 br_vlan_get_stats(v, &stats);
1523 vxi.rx_bytes = stats.rx_bytes;
1524 vxi.rx_packets = stats.rx_packets;
1525 vxi.tx_bytes = stats.tx_bytes;
1526 vxi.tx_packets = stats.tx_packets;
1527
1528 if (nla_put(skb, BRIDGE_XSTATS_VLAN, sizeof(vxi), &vxi))
1529 goto nla_put_failure;
1530 }
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001531 }
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001532
1533#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
1534 if (++vl_idx >= *prividx) {
1535 nla = nla_reserve_64bit(skb, BRIDGE_XSTATS_MCAST,
1536 sizeof(struct br_mcast_stats),
1537 BRIDGE_XSTATS_PAD);
1538 if (!nla)
1539 goto nla_put_failure;
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001540 br_multicast_get_stats(br, p, nla_data(nla));
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001541 }
1542#endif
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001543 nla_nest_end(skb, nest);
1544 *prividx = 0;
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001545
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001546 return 0;
1547
1548nla_put_failure:
1549 nla_nest_end(skb, nest);
1550 *prividx = vl_idx;
1551
1552 return -EMSGSIZE;
1553}
Roopa Prabhufed0a152015-02-25 23:55:40 -08001554
Daniel Borkmann207895f2015-01-29 12:15:03 +01001555static struct rtnl_af_ops br_af_ops __read_mostly = {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001556 .family = AF_BRIDGE,
Arad, Ronenb1974ed2015-10-19 09:23:28 -07001557 .get_link_af_size = br_get_link_af_size_filtered,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001558};
1559
stephen hemminger149ddd82012-06-26 05:48:45 +00001560struct rtnl_link_ops br_link_ops __read_mostly = {
Jiri Pirkoced82832014-09-05 15:51:29 +02001561 .kind = "bridge",
1562 .priv_size = sizeof(struct net_bridge),
1563 .setup = br_dev_setup,
Scott Feldmaneb4cb852015-08-19 11:29:35 -07001564 .maxtype = IFLA_BR_MAX,
Jiri Pirko13323512014-09-05 15:51:32 +02001565 .policy = br_policy,
Jiri Pirkoced82832014-09-05 15:51:29 +02001566 .validate = br_validate,
1567 .newlink = br_dev_newlink,
Jiri Pirko13323512014-09-05 15:51:32 +02001568 .changelink = br_changelink,
Jiri Pirkoced82832014-09-05 15:51:29 +02001569 .dellink = br_dev_delete,
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001570 .get_size = br_get_size,
1571 .fill_info = br_fill_info,
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001572 .fill_linkxstats = br_fill_linkxstats,
1573 .get_linkxstats_size = br_get_linkxstats_size,
Jiri Pirko3ac636b2014-09-05 15:51:30 +02001574
1575 .slave_maxtype = IFLA_BRPORT_MAX,
1576 .slave_policy = br_port_policy,
1577 .slave_changelink = br_port_slave_changelink,
Jiri Pirkoced82832014-09-05 15:51:29 +02001578 .get_slave_size = br_port_get_slave_size,
1579 .fill_slave_info = br_port_fill_slave_info,
stephen hemmingerbb900b22011-04-04 14:03:32 +00001580};
1581
1582int __init br_netlink_init(void)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -07001583{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001584 int err;
1585
1586 br_mdb_init();
stephen hemminger3678a9d2013-12-30 10:41:32 -08001587 rtnl_af_register(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001588
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001589 err = rtnl_link_register(&br_link_ops);
1590 if (err)
1591 goto out_af;
1592
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001593 return 0;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001594
1595out_af:
1596 rtnl_af_unregister(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001597 br_mdb_uninit();
1598 return err;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -07001599}
1600
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001601void br_netlink_fini(void)
stephen hemmingerbb900b22011-04-04 14:03:32 +00001602{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001603 br_mdb_uninit();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001604 rtnl_af_unregister(&br_af_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +00001605 rtnl_link_unregister(&br_link_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +00001606}