blob: 4f831225d34f4c52ad65882a8878723894a20585 [file] [log] [blame]
Stephen Hemminger11dc1f32006-05-25 16:00:12 -07001/*
2 * Bridge netlink control interface
3 *
4 * Authors:
5 * Stephen Hemminger <shemminger@osdl.org>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
13#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
stephen hemmingerbb900b22011-04-04 14:03:32 +000015#include <linux/etherdevice.h>
Thomas Graf32fe21c2007-03-22 11:59:03 -070016#include <net/rtnetlink.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070017#include <net/net_namespace.h>
Denis V. Lunevb8542722007-12-01 00:21:31 +110018#include <net/sock.h>
Vlad Yasevich407af322013-02-13 12:00:12 +000019#include <uapi/linux/if_bridge.h>
stephen hemmingerbb900b22011-04-04 14:03:32 +000020
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070021#include "br_private.h"
Vitalii Demianetsb03b6dd2011-11-25 00:16:37 +000022#include "br_private_stp.h"
Stephen Hemminger11dc1f32006-05-25 16:00:12 -070023
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020024static int __get_num_vlan_infos(struct net_bridge_vlan_group *vg,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020025 u32 filter_mask)
Roopa Prabhufed0a152015-02-25 23:55:40 -080026{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020027 struct net_bridge_vlan *v;
28 u16 vid_range_start = 0, vid_range_end = 0, vid_range_flags = 0;
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020029 u16 flags, pvid;
Roopa Prabhufed0a152015-02-25 23:55:40 -080030 int num_vlans = 0;
31
Roopa Prabhufed0a152015-02-25 23:55:40 -080032 if (!(filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED))
33 return 0;
34
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020035 pvid = br_get_pvid(vg);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020036 /* Count number of vlan infos */
Nikolay Aleksandrov586c2b52015-10-02 15:05:10 +020037 list_for_each_entry_rcu(v, &vg->vlan_list, vlist) {
Roopa Prabhufed0a152015-02-25 23:55:40 -080038 flags = 0;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020039 /* only a context, bridge vlan not activated */
40 if (!br_vlan_should_use(v))
41 continue;
42 if (v->vid == pvid)
Roopa Prabhufed0a152015-02-25 23:55:40 -080043 flags |= BRIDGE_VLAN_INFO_PVID;
44
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020045 if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
Roopa Prabhufed0a152015-02-25 23:55:40 -080046 flags |= BRIDGE_VLAN_INFO_UNTAGGED;
47
48 if (vid_range_start == 0) {
49 goto initvars;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020050 } else if ((v->vid - vid_range_end) == 1 &&
Roopa Prabhufed0a152015-02-25 23:55:40 -080051 flags == vid_range_flags) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020052 vid_range_end = v->vid;
Roopa Prabhufed0a152015-02-25 23:55:40 -080053 continue;
54 } else {
55 if ((vid_range_end - vid_range_start) > 0)
56 num_vlans += 2;
57 else
58 num_vlans += 1;
59 }
60initvars:
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020061 vid_range_start = v->vid;
62 vid_range_end = v->vid;
Roopa Prabhufed0a152015-02-25 23:55:40 -080063 vid_range_flags = flags;
64 }
65
66 if (vid_range_start != 0) {
67 if ((vid_range_end - vid_range_start) > 0)
68 num_vlans += 2;
69 else
70 num_vlans += 1;
71 }
72
73 return num_vlans;
74}
75
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020076static int br_get_num_vlan_infos(struct net_bridge_vlan_group *vg,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +020077 u32 filter_mask)
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020078{
Nikolay Aleksandrov586c2b52015-10-02 15:05:10 +020079 int num_vlans;
80
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020081 if (!vg)
82 return 0;
83
84 if (filter_mask & RTEXT_FILTER_BRVLAN)
85 return vg->num_vlans;
86
Nikolay Aleksandrov586c2b52015-10-02 15:05:10 +020087 rcu_read_lock();
88 num_vlans = __get_num_vlan_infos(vg, filter_mask);
89 rcu_read_unlock();
90
91 return num_vlans;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020092}
93
Roopa Prabhufed0a152015-02-25 23:55:40 -080094static size_t br_get_link_af_size_filtered(const struct net_device *dev,
95 u32 filter_mask)
Roopa Prabhub7853d72015-02-21 20:21:51 -080096{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020097 struct net_bridge_vlan_group *vg = NULL;
98 struct net_bridge_port *p;
99 struct net_bridge *br;
Roopa Prabhufed0a152015-02-25 23:55:40 -0800100 int num_vlan_infos;
Roopa Prabhub7853d72015-02-21 20:21:51 -0800101
Johannes Berg2f56f6b2015-03-03 16:02:16 +0100102 rcu_read_lock();
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200103 if (br_port_exists(dev)) {
104 p = br_port_get_rcu(dev);
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +0200105 vg = nbp_vlan_group_rcu(p);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200106 } else if (dev->priv_flags & IFF_EBRIDGE) {
107 br = netdev_priv(dev);
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +0200108 vg = br_vlan_group_rcu(br);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200109 }
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200110 num_vlan_infos = br_get_num_vlan_infos(vg, filter_mask);
Johannes Berg2f56f6b2015-03-03 16:02:16 +0100111 rcu_read_unlock();
Roopa Prabhub7853d72015-02-21 20:21:51 -0800112
Roopa Prabhub7853d72015-02-21 20:21:51 -0800113 /* Each VLAN is returned in bridge_vlan_info along with flags */
Roopa Prabhufed0a152015-02-25 23:55:40 -0800114 return num_vlan_infos * nla_total_size(sizeof(struct bridge_vlan_info));
Roopa Prabhub7853d72015-02-21 20:21:51 -0800115}
116
stephen hemminger25c71c72012-11-13 07:53:05 +0000117static inline size_t br_port_info_size(void)
118{
119 return nla_total_size(1) /* IFLA_BRPORT_STATE */
120 + nla_total_size(2) /* IFLA_BRPORT_PRIORITY */
121 + nla_total_size(4) /* IFLA_BRPORT_COST */
122 + nla_total_size(1) /* IFLA_BRPORT_MODE */
stephen hemmingera2e01a62012-11-13 07:53:07 +0000123 + nla_total_size(1) /* IFLA_BRPORT_GUARD */
stephen hemminger1007dd12012-11-13 07:53:08 +0000124 + nla_total_size(1) /* IFLA_BRPORT_PROTECT */
stephen hemminger3da889b2013-03-11 13:52:17 +0000125 + nla_total_size(1) /* IFLA_BRPORT_FAST_LEAVE */
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400126 + nla_total_size(1) /* IFLA_BRPORT_LEARNING */
Vlad Yasevich867a5942013-06-05 10:08:01 -0400127 + nla_total_size(1) /* IFLA_BRPORT_UNICAST_FLOOD */
Nikolay Aleksandrov355b9f92015-08-04 19:06:32 +0200128 + nla_total_size(1) /* IFLA_BRPORT_PROXYARP */
Nikolay Aleksandrov786c2072015-08-04 19:06:33 +0200129 + nla_total_size(1) /* IFLA_BRPORT_PROXYARP_WIFI */
Nikolay Aleksandrov4ebc7662015-10-06 14:11:55 +0200130 + nla_total_size(sizeof(struct ifla_bridge_id)) /* IFLA_BRPORT_ROOT_ID */
Nikolay Aleksandrov80df9a22015-10-06 14:11:56 +0200131 + nla_total_size(sizeof(struct ifla_bridge_id)) /* IFLA_BRPORT_BRIDGE_ID */
Nikolay Aleksandrov96f94e72015-10-06 14:11:57 +0200132 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_DESIGNATED_PORT */
133 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_DESIGNATED_COST */
Nikolay Aleksandrov42d452c2015-10-06 14:11:58 +0200134 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_ID */
135 + nla_total_size(sizeof(u16)) /* IFLA_BRPORT_NO */
Nikolay Aleksandrove08e8382015-10-06 14:11:59 +0200136 + nla_total_size(sizeof(u8)) /* IFLA_BRPORT_TOPOLOGY_CHANGE_ACK */
137 + nla_total_size(sizeof(u8)) /* IFLA_BRPORT_CONFIG_PENDING */
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200138 + nla_total_size_64bit(sizeof(u64)) /* IFLA_BRPORT_MESSAGE_AGE_TIMER */
139 + nla_total_size_64bit(sizeof(u64)) /* IFLA_BRPORT_FORWARD_DELAY_TIMER */
140 + nla_total_size_64bit(sizeof(u64)) /* IFLA_BRPORT_HOLD_TIMER */
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200141#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
142 + nla_total_size(sizeof(u8)) /* IFLA_BRPORT_MULTICAST_ROUTER */
143#endif
stephen hemminger25c71c72012-11-13 07:53:05 +0000144 + 0;
145}
146
Roopa Prabhufed0a152015-02-25 23:55:40 -0800147static inline size_t br_nlmsg_size(struct net_device *dev, u32 filter_mask)
Thomas Graf339bf982006-11-10 14:10:15 -0800148{
149 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
stephen hemminger25c71c72012-11-13 07:53:05 +0000150 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
151 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
152 + nla_total_size(4) /* IFLA_MASTER */
153 + nla_total_size(4) /* IFLA_MTU */
154 + nla_total_size(4) /* IFLA_LINK */
155 + nla_total_size(1) /* IFLA_OPERSTATE */
Roopa Prabhub7853d72015-02-21 20:21:51 -0800156 + nla_total_size(br_port_info_size()) /* IFLA_PROTINFO */
Roopa Prabhufed0a152015-02-25 23:55:40 -0800157 + nla_total_size(br_get_link_af_size_filtered(dev,
158 filter_mask)); /* IFLA_AF_SPEC */
stephen hemminger25c71c72012-11-13 07:53:05 +0000159}
160
161static int br_port_fill_attrs(struct sk_buff *skb,
162 const struct net_bridge_port *p)
163{
164 u8 mode = !!(p->flags & BR_HAIRPIN_MODE);
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200165 u64 timerval;
stephen hemminger25c71c72012-11-13 07:53:05 +0000166
167 if (nla_put_u8(skb, IFLA_BRPORT_STATE, p->state) ||
168 nla_put_u16(skb, IFLA_BRPORT_PRIORITY, p->priority) ||
169 nla_put_u32(skb, IFLA_BRPORT_COST, p->path_cost) ||
stephen hemmingera2e01a62012-11-13 07:53:07 +0000170 nla_put_u8(skb, IFLA_BRPORT_MODE, mode) ||
stephen hemminger1007dd12012-11-13 07:53:08 +0000171 nla_put_u8(skb, IFLA_BRPORT_GUARD, !!(p->flags & BR_BPDU_GUARD)) ||
Nikolay Aleksandrovb6cb5ac2016-08-31 15:36:52 +0200172 nla_put_u8(skb, IFLA_BRPORT_PROTECT,
173 !!(p->flags & BR_ROOT_BLOCK)) ||
174 nla_put_u8(skb, IFLA_BRPORT_FAST_LEAVE,
175 !!(p->flags & BR_MULTICAST_FAST_LEAVE)) ||
Vlad Yasevich867a5942013-06-05 10:08:01 -0400176 nla_put_u8(skb, IFLA_BRPORT_LEARNING, !!(p->flags & BR_LEARNING)) ||
Nikolay Aleksandrovb6cb5ac2016-08-31 15:36:52 +0200177 nla_put_u8(skb, IFLA_BRPORT_UNICAST_FLOOD,
178 !!(p->flags & BR_FLOOD)) ||
179 nla_put_u8(skb, IFLA_BRPORT_MCAST_FLOOD,
180 !!(p->flags & BR_MCAST_FLOOD)) ||
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200181 nla_put_u8(skb, IFLA_BRPORT_PROXYARP, !!(p->flags & BR_PROXYARP)) ||
182 nla_put_u8(skb, IFLA_BRPORT_PROXYARP_WIFI,
Nikolay Aleksandrov4ebc7662015-10-06 14:11:55 +0200183 !!(p->flags & BR_PROXYARP_WIFI)) ||
184 nla_put(skb, IFLA_BRPORT_ROOT_ID, sizeof(struct ifla_bridge_id),
Nikolay Aleksandrov80df9a22015-10-06 14:11:56 +0200185 &p->designated_root) ||
186 nla_put(skb, IFLA_BRPORT_BRIDGE_ID, sizeof(struct ifla_bridge_id),
Nikolay Aleksandrov96f94e72015-10-06 14:11:57 +0200187 &p->designated_bridge) ||
188 nla_put_u16(skb, IFLA_BRPORT_DESIGNATED_PORT, p->designated_port) ||
Nikolay Aleksandrov42d452c2015-10-06 14:11:58 +0200189 nla_put_u16(skb, IFLA_BRPORT_DESIGNATED_COST, p->designated_cost) ||
190 nla_put_u16(skb, IFLA_BRPORT_ID, p->port_id) ||
Nikolay Aleksandrove08e8382015-10-06 14:11:59 +0200191 nla_put_u16(skb, IFLA_BRPORT_NO, p->port_no) ||
192 nla_put_u8(skb, IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
193 p->topology_change_ack) ||
194 nla_put_u8(skb, IFLA_BRPORT_CONFIG_PENDING, p->config_pending))
stephen hemminger25c71c72012-11-13 07:53:05 +0000195 return -EMSGSIZE;
196
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200197 timerval = br_timer_value(&p->message_age_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200198 if (nla_put_u64_64bit(skb, IFLA_BRPORT_MESSAGE_AGE_TIMER, timerval,
199 IFLA_BRPORT_PAD))
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200200 return -EMSGSIZE;
201 timerval = br_timer_value(&p->forward_delay_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200202 if (nla_put_u64_64bit(skb, IFLA_BRPORT_FORWARD_DELAY_TIMER, timerval,
203 IFLA_BRPORT_PAD))
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200204 return -EMSGSIZE;
205 timerval = br_timer_value(&p->hold_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +0200206 if (nla_put_u64_64bit(skb, IFLA_BRPORT_HOLD_TIMER, timerval,
207 IFLA_BRPORT_PAD))
Nikolay Aleksandrov61c0a9a2015-10-06 14:12:00 +0200208 return -EMSGSIZE;
209
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200210#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
211 if (nla_put_u8(skb, IFLA_BRPORT_MULTICAST_ROUTER,
212 p->multicast_router))
213 return -EMSGSIZE;
214#endif
215
stephen hemminger25c71c72012-11-13 07:53:05 +0000216 return 0;
Thomas Graf339bf982006-11-10 14:10:15 -0800217}
218
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800219static int br_fill_ifvlaninfo_range(struct sk_buff *skb, u16 vid_start,
220 u16 vid_end, u16 flags)
221{
222 struct bridge_vlan_info vinfo;
223
224 if ((vid_end - vid_start) > 0) {
225 /* add range to skb */
226 vinfo.vid = vid_start;
227 vinfo.flags = flags | BRIDGE_VLAN_INFO_RANGE_BEGIN;
228 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
229 sizeof(vinfo), &vinfo))
230 goto nla_put_failure;
231
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800232 vinfo.vid = vid_end;
233 vinfo.flags = flags | BRIDGE_VLAN_INFO_RANGE_END;
234 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
235 sizeof(vinfo), &vinfo))
236 goto nla_put_failure;
237 } else {
238 vinfo.vid = vid_start;
239 vinfo.flags = flags;
240 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
241 sizeof(vinfo), &vinfo))
242 goto nla_put_failure;
243 }
244
245 return 0;
246
247nla_put_failure:
248 return -EMSGSIZE;
249}
250
251static int br_fill_ifvlaninfo_compressed(struct sk_buff *skb,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200252 struct net_bridge_vlan_group *vg)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800253{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200254 struct net_bridge_vlan *v;
255 u16 vid_range_start = 0, vid_range_end = 0, vid_range_flags = 0;
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200256 u16 flags, pvid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800257 int err = 0;
258
259 /* Pack IFLA_BRIDGE_VLAN_INFO's for every vlan
260 * and mark vlan info with begin and end flags
261 * if vlaninfo represents a range
262 */
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200263 pvid = br_get_pvid(vg);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200264 list_for_each_entry_rcu(v, &vg->vlan_list, vlist) {
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800265 flags = 0;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200266 if (!br_vlan_should_use(v))
267 continue;
268 if (v->vid == pvid)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800269 flags |= BRIDGE_VLAN_INFO_PVID;
270
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200271 if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800272 flags |= BRIDGE_VLAN_INFO_UNTAGGED;
273
274 if (vid_range_start == 0) {
275 goto initvars;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200276 } else if ((v->vid - vid_range_end) == 1 &&
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800277 flags == vid_range_flags) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200278 vid_range_end = v->vid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800279 continue;
280 } else {
281 err = br_fill_ifvlaninfo_range(skb, vid_range_start,
282 vid_range_end,
283 vid_range_flags);
284 if (err)
285 return err;
286 }
287
288initvars:
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200289 vid_range_start = v->vid;
290 vid_range_end = v->vid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800291 vid_range_flags = flags;
292 }
293
Roopa Prabhu0fe6de42015-01-12 16:25:28 -0800294 if (vid_range_start != 0) {
295 /* Call it once more to send any left over vlans */
296 err = br_fill_ifvlaninfo_range(skb, vid_range_start,
297 vid_range_end,
298 vid_range_flags);
299 if (err)
300 return err;
301 }
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800302
303 return 0;
304}
305
306static int br_fill_ifvlaninfo(struct sk_buff *skb,
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200307 struct net_bridge_vlan_group *vg)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800308{
309 struct bridge_vlan_info vinfo;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200310 struct net_bridge_vlan *v;
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200311 u16 pvid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800312
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200313 pvid = br_get_pvid(vg);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200314 list_for_each_entry_rcu(v, &vg->vlan_list, vlist) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200315 if (!br_vlan_should_use(v))
316 continue;
317
318 vinfo.vid = v->vid;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800319 vinfo.flags = 0;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200320 if (v->vid == pvid)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800321 vinfo.flags |= BRIDGE_VLAN_INFO_PVID;
322
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200323 if (v->flags & BRIDGE_VLAN_INFO_UNTAGGED)
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800324 vinfo.flags |= BRIDGE_VLAN_INFO_UNTAGGED;
325
326 if (nla_put(skb, IFLA_BRIDGE_VLAN_INFO,
327 sizeof(vinfo), &vinfo))
328 goto nla_put_failure;
329 }
330
331 return 0;
332
333nla_put_failure:
334 return -EMSGSIZE;
335}
336
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700337/*
338 * Create one netlink message for one interface
339 * Contains port and master info as well as carrier and bridge state.
340 */
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000341static int br_fill_ifinfo(struct sk_buff *skb,
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200342 struct net_bridge_port *port,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000343 u32 pid, u32 seq, int event, unsigned int flags,
344 u32 filter_mask, const struct net_device *dev)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700345{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200346 struct net_bridge *br;
Thomas Graf74685962006-11-20 16:20:22 -0800347 struct ifinfomsg *hdr;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700348 struct nlmsghdr *nlh;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700349 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700350
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000351 if (port)
352 br = port->br;
353 else
354 br = netdev_priv(dev);
355
stephen hemminger28a16c92010-05-10 09:31:09 +0000356 br_debug(br, "br_fill_info event %d port %s master %s\n",
357 event, dev->name, br->dev->name);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700358
Thomas Graf74685962006-11-20 16:20:22 -0800359 nlh = nlmsg_put(skb, pid, seq, event, sizeof(*hdr), flags);
360 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -0800361 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700362
Thomas Graf74685962006-11-20 16:20:22 -0800363 hdr = nlmsg_data(nlh);
364 hdr->ifi_family = AF_BRIDGE;
365 hdr->__ifi_pad = 0;
366 hdr->ifi_type = dev->type;
367 hdr->ifi_index = dev->ifindex;
368 hdr->ifi_flags = dev_get_flags(dev);
369 hdr->ifi_change = 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700370
David S. Miller2eb812e2012-04-01 20:49:54 -0400371 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
372 nla_put_u32(skb, IFLA_MASTER, br->dev->ifindex) ||
373 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
374 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
375 (dev->addr_len &&
376 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200377 (dev->ifindex != dev_get_iflink(dev) &&
378 nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))))
David S. Miller2eb812e2012-04-01 20:49:54 -0400379 goto nla_put_failure;
stephen hemminger25c71c72012-11-13 07:53:05 +0000380
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000381 if (event == RTM_NEWLINK && port) {
stephen hemminger25c71c72012-11-13 07:53:05 +0000382 struct nlattr *nest
383 = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED);
384
385 if (nest == NULL || br_port_fill_attrs(skb, port) < 0)
386 goto nla_put_failure;
387 nla_nest_end(skb, nest);
388 }
389
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000390 /* Check if the VID information is requested */
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800391 if ((filter_mask & RTEXT_FILTER_BRVLAN) ||
392 (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200393 struct net_bridge_vlan_group *vg;
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800394 struct nlattr *af;
395 int err;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000396
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200397 /* RCU needed because of the VLAN locking rules (rcu || rtnl) */
398 rcu_read_lock();
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200399 if (port)
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200400 vg = nbp_vlan_group_rcu(port);
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200401 else
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200402 vg = br_vlan_group_rcu(br);
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000403
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200404 if (!vg || !vg->num_vlans) {
405 rcu_read_unlock();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000406 goto done;
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200407 }
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000408 af = nla_nest_start(skb, IFLA_AF_SPEC);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200409 if (!af) {
410 rcu_read_unlock();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000411 goto nla_put_failure;
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200412 }
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800413 if (filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED)
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200414 err = br_fill_ifvlaninfo_compressed(skb, vg);
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800415 else
Nikolay Aleksandrov77751ee2015-09-30 20:16:53 +0200416 err = br_fill_ifvlaninfo(skb, vg);
Nikolay Aleksandrove9c953e2015-10-12 21:47:03 +0200417 rcu_read_unlock();
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800418 if (err)
419 goto nla_put_failure;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +0000420 nla_nest_end(skb, af);
421 }
422
423done:
Johannes Berg053c0952015-01-16 22:09:00 +0100424 nlmsg_end(skb, nlh);
425 return 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700426
Thomas Graf74685962006-11-20 16:20:22 -0800427nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -0800428 nlmsg_cancel(skb, nlh);
429 return -EMSGSIZE;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700430}
431
432/*
433 * Notify listeners of a change in port information
434 */
435void br_ifinfo_notify(int event, struct net_bridge_port *port)
436{
Vlad Yasevich407af322013-02-13 12:00:12 +0000437 struct net *net;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700438 struct sk_buff *skb;
Thomas Graf280a3062006-08-15 00:36:28 -0700439 int err = -ENOBUFS;
Roopa Prabhufed0a152015-02-25 23:55:40 -0800440 u32 filter = RTEXT_FILTER_BRVLAN_COMPRESSED;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700441
Vlad Yasevich407af322013-02-13 12:00:12 +0000442 if (!port)
443 return;
444
445 net = dev_net(port->dev);
stephen hemminger28a16c92010-05-10 09:31:09 +0000446 br_debug(port->br, "port %u(%s) event %d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +0000447 (unsigned int)port->port_no, port->dev->name, event);
stephen hemminger28a16c92010-05-10 09:31:09 +0000448
Roopa Prabhufed0a152015-02-25 23:55:40 -0800449 skb = nlmsg_new(br_nlmsg_size(port->dev, filter), GFP_ATOMIC);
Thomas Graf280a3062006-08-15 00:36:28 -0700450 if (skb == NULL)
451 goto errout;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700452
Roopa Prabhufed0a152015-02-25 23:55:40 -0800453 err = br_fill_ifinfo(skb, port, 0, 0, event, 0, filter, port->dev);
Patrick McHardy26932562007-01-31 23:16:40 -0800454 if (err < 0) {
455 /* -EMSGSIZE implies BUG in br_nlmsg_size() */
456 WARN_ON(err == -EMSGSIZE);
457 kfree_skb(skb);
458 goto errout;
459 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -0800460 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
461 return;
Thomas Graf280a3062006-08-15 00:36:28 -0700462errout:
tanxiaojun87e823b2013-12-19 13:28:10 +0800463 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700464}
465
Vlad Yasevich407af322013-02-13 12:00:12 +0000466
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700467/*
468 * Dump information about all ports, in response to GETLINK
469 */
John Fastabende5a55a82012-10-24 08:12:57 +0000470int br_getlink(struct sk_buff *skb, u32 pid, u32 seq,
Nicolas Dichtel46c264d2015-04-28 18:33:49 +0200471 struct net_device *dev, u32 filter_mask, int nlflags)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700472{
Hong Zhiguo1fb17542013-09-14 22:42:27 +0800473 struct net_bridge_port *port = br_port_get_rtnl(dev);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700474
Roopa Prabhu36cd0ff2015-01-10 07:31:14 -0800475 if (!port && !(filter_mask & RTEXT_FILTER_BRVLAN) &&
476 !(filter_mask & RTEXT_FILTER_BRVLAN_COMPRESSED))
Dan Carpenter1b846f92015-01-21 12:22:35 +0300477 return 0;
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000478
Nicolas Dichtel46c264d2015-04-28 18:33:49 +0200479 return br_fill_ifinfo(skb, port, pid, seq, RTM_NEWLINK, nlflags,
Dan Carpenter1b846f92015-01-21 12:22:35 +0300480 filter_mask, dev);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700481}
482
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800483static int br_vlan_info(struct net_bridge *br, struct net_bridge_port *p,
484 int cmd, struct bridge_vlan_info *vinfo)
485{
486 int err = 0;
487
488 switch (cmd) {
489 case RTM_SETLINK:
490 if (p) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200491 /* if the MASTER flag is set this will act on the global
492 * per-VLAN entry as well
493 */
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800494 err = nbp_vlan_add(p, vinfo->vid, vinfo->flags);
495 if (err)
496 break;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800497 } else {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200498 vinfo->flags |= BRIDGE_VLAN_INFO_BRENTRY;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800499 err = br_vlan_add(br, vinfo->vid, vinfo->flags);
500 }
501 break;
502
503 case RTM_DELLINK:
504 if (p) {
505 nbp_vlan_delete(p, vinfo->vid);
506 if (vinfo->flags & BRIDGE_VLAN_INFO_MASTER)
507 br_vlan_delete(p->br, vinfo->vid);
508 } else {
509 br_vlan_delete(br, vinfo->vid);
510 }
511 break;
512 }
513
514 return err;
515}
Vlad Yasevich407af322013-02-13 12:00:12 +0000516
517static int br_afspec(struct net_bridge *br,
518 struct net_bridge_port *p,
519 struct nlattr *af_spec,
520 int cmd)
521{
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800522 struct bridge_vlan_info *vinfo_start = NULL;
523 struct bridge_vlan_info *vinfo = NULL;
524 struct nlattr *attr;
Vlad Yasevich407af322013-02-13 12:00:12 +0000525 int err = 0;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800526 int rem;
Vlad Yasevich407af322013-02-13 12:00:12 +0000527
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800528 nla_for_each_nested(attr, af_spec, rem) {
529 if (nla_type(attr) != IFLA_BRIDGE_VLAN_INFO)
530 continue;
531 if (nla_len(attr) != sizeof(struct bridge_vlan_info))
Vlad Yasevich407af322013-02-13 12:00:12 +0000532 return -EINVAL;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800533 vinfo = nla_data(attr);
Nikolay Aleksandrov462e1ea2015-07-02 05:48:17 -0700534 if (!vinfo->vid || vinfo->vid >= VLAN_VID_MASK)
535 return -EINVAL;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800536 if (vinfo->flags & BRIDGE_VLAN_INFO_RANGE_BEGIN) {
537 if (vinfo_start)
538 return -EINVAL;
539 vinfo_start = vinfo;
Nikolay Aleksandrov6623c602015-10-11 12:49:56 +0200540 /* don't allow range of pvids */
541 if (vinfo_start->flags & BRIDGE_VLAN_INFO_PVID)
542 return -EINVAL;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800543 continue;
544 }
Vlad Yasevich407af322013-02-13 12:00:12 +0000545
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800546 if (vinfo_start) {
547 struct bridge_vlan_info tmp_vinfo;
548 int v;
549
550 if (!(vinfo->flags & BRIDGE_VLAN_INFO_RANGE_END))
551 return -EINVAL;
552
553 if (vinfo->vid <= vinfo_start->vid)
554 return -EINVAL;
555
556 memcpy(&tmp_vinfo, vinfo_start,
557 sizeof(struct bridge_vlan_info));
558
559 for (v = vinfo_start->vid; v <= vinfo->vid; v++) {
560 tmp_vinfo.vid = v;
561 err = br_vlan_info(br, p, cmd, &tmp_vinfo);
Vlad Yasevich407af322013-02-13 12:00:12 +0000562 if (err)
563 break;
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800564 }
565 vinfo_start = NULL;
566 } else {
567 err = br_vlan_info(br, p, cmd, vinfo);
Vlad Yasevich407af322013-02-13 12:00:12 +0000568 }
Roopa Prabhubdced7e2015-01-10 07:31:12 -0800569 if (err)
570 break;
Vlad Yasevich407af322013-02-13 12:00:12 +0000571 }
572
573 return err;
574}
575
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200576static const struct nla_policy br_port_policy[IFLA_BRPORT_MAX + 1] = {
stephen hemminger25c71c72012-11-13 07:53:05 +0000577 [IFLA_BRPORT_STATE] = { .type = NLA_U8 },
578 [IFLA_BRPORT_COST] = { .type = NLA_U32 },
579 [IFLA_BRPORT_PRIORITY] = { .type = NLA_U16 },
580 [IFLA_BRPORT_MODE] = { .type = NLA_U8 },
stephen hemmingera2e01a62012-11-13 07:53:07 +0000581 [IFLA_BRPORT_GUARD] = { .type = NLA_U8 },
stephen hemminger1007dd12012-11-13 07:53:08 +0000582 [IFLA_BRPORT_PROTECT] = { .type = NLA_U8 },
Thomas Graf6f705d82014-11-26 13:42:19 +0100583 [IFLA_BRPORT_FAST_LEAVE]= { .type = NLA_U8 },
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400584 [IFLA_BRPORT_LEARNING] = { .type = NLA_U8 },
Vlad Yasevich867a5942013-06-05 10:08:01 -0400585 [IFLA_BRPORT_UNICAST_FLOOD] = { .type = NLA_U8 },
Nikolay Aleksandrov355b9f92015-08-04 19:06:32 +0200586 [IFLA_BRPORT_PROXYARP] = { .type = NLA_U8 },
Nikolay Aleksandrov786c2072015-08-04 19:06:33 +0200587 [IFLA_BRPORT_PROXYARP_WIFI] = { .type = NLA_U8 },
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200588 [IFLA_BRPORT_MULTICAST_ROUTER] = { .type = NLA_U8 },
stephen hemminger25c71c72012-11-13 07:53:05 +0000589};
590
591/* Change the state of the port and notify spanning tree */
592static int br_set_port_state(struct net_bridge_port *p, u8 state)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700593{
stephen hemminger25c71c72012-11-13 07:53:05 +0000594 if (state > BR_STATE_BLOCKING)
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000595 return -EINVAL;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700596
597 /* if kernel STP is running, don't allow changes */
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700598 if (p->br->stp_enabled == BR_KERNEL_STP)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700599 return -EBUSY;
600
stephen hemminger576eb622012-12-28 18:15:22 +0000601 /* if device is not up, change is not allowed
602 * if link is not present, only allowable state is disabled
603 */
stephen hemminger25c71c72012-11-13 07:53:05 +0000604 if (!netif_running(p->dev) ||
stephen hemminger576eb622012-12-28 18:15:22 +0000605 (!netif_oper_up(p->dev) && state != BR_STATE_DISABLED))
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700606 return -ENETDOWN;
607
Florian Fainelli775dd692014-09-30 16:13:19 -0700608 br_set_state(p, state);
Vitalii Demianetsb03b6dd2011-11-25 00:16:37 +0000609 br_port_state_selection(p->br);
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700610 return 0;
611}
612
stephen hemminger25c71c72012-11-13 07:53:05 +0000613/* Set/clear or port flags based on attribute */
614static void br_set_port_flag(struct net_bridge_port *p, struct nlattr *tb[],
615 int attrtype, unsigned long mask)
616{
617 if (tb[attrtype]) {
618 u8 flag = nla_get_u8(tb[attrtype]);
619 if (flag)
620 p->flags |= mask;
621 else
622 p->flags &= ~mask;
623 }
624}
625
626/* Process bridge protocol info on port */
627static int br_setport(struct net_bridge_port *p, struct nlattr *tb[])
628{
629 int err;
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400630 unsigned long old_flags = p->flags;
stephen hemminger25c71c72012-11-13 07:53:05 +0000631
632 br_set_port_flag(p, tb, IFLA_BRPORT_MODE, BR_HAIRPIN_MODE);
stephen hemmingera2e01a62012-11-13 07:53:07 +0000633 br_set_port_flag(p, tb, IFLA_BRPORT_GUARD, BR_BPDU_GUARD);
David S. Millerc2d3bab2012-12-05 16:24:45 -0500634 br_set_port_flag(p, tb, IFLA_BRPORT_FAST_LEAVE, BR_MULTICAST_FAST_LEAVE);
Vlad Yasevich3d84fa92013-03-15 06:39:12 +0000635 br_set_port_flag(p, tb, IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK);
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400636 br_set_port_flag(p, tb, IFLA_BRPORT_LEARNING, BR_LEARNING);
Vlad Yasevich867a5942013-06-05 10:08:01 -0400637 br_set_port_flag(p, tb, IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD);
Nikolay Aleksandrovb6cb5ac2016-08-31 15:36:52 +0200638 br_set_port_flag(p, tb, IFLA_BRPORT_MCAST_FLOOD, BR_MCAST_FLOOD);
Kyeyoon Park95850112014-10-23 14:49:17 -0700639 br_set_port_flag(p, tb, IFLA_BRPORT_PROXYARP, BR_PROXYARP);
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200640 br_set_port_flag(p, tb, IFLA_BRPORT_PROXYARP_WIFI, BR_PROXYARP_WIFI);
stephen hemminger25c71c72012-11-13 07:53:05 +0000641
642 if (tb[IFLA_BRPORT_COST]) {
643 err = br_stp_set_path_cost(p, nla_get_u32(tb[IFLA_BRPORT_COST]));
644 if (err)
645 return err;
646 }
647
648 if (tb[IFLA_BRPORT_PRIORITY]) {
649 err = br_stp_set_port_priority(p, nla_get_u16(tb[IFLA_BRPORT_PRIORITY]));
650 if (err)
651 return err;
652 }
653
654 if (tb[IFLA_BRPORT_STATE]) {
655 err = br_set_port_state(p, nla_get_u8(tb[IFLA_BRPORT_STATE]));
656 if (err)
657 return err;
658 }
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400659
Nikolay Aleksandrov9b0c6e42015-10-06 14:12:01 +0200660 if (tb[IFLA_BRPORT_FLUSH])
661 br_fdb_delete_by_port(p->br, p, 0, 0);
662
Nikolay Aleksandrov5d6ae472015-10-06 14:12:02 +0200663#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
664 if (tb[IFLA_BRPORT_MULTICAST_ROUTER]) {
665 u8 mcast_router = nla_get_u8(tb[IFLA_BRPORT_MULTICAST_ROUTER]);
666
667 err = br_multicast_set_port_router(p, mcast_router);
668 if (err)
669 return err;
670 }
671#endif
Vlad Yaseviche028e4b2014-05-16 09:59:16 -0400672 br_port_flags_change(p, old_flags ^ p->flags);
stephen hemminger25c71c72012-11-13 07:53:05 +0000673 return 0;
674}
675
676/* Change state and parameters on port. */
Roopa Prabhuadd511b2015-01-29 22:40:12 -0800677int br_setlink(struct net_device *dev, struct nlmsghdr *nlh, u16 flags)
stephen hemminger25c71c72012-11-13 07:53:05 +0000678{
stephen hemminger25c71c72012-11-13 07:53:05 +0000679 struct nlattr *protinfo;
Vlad Yasevich407af322013-02-13 12:00:12 +0000680 struct nlattr *afspec;
stephen hemminger25c71c72012-11-13 07:53:05 +0000681 struct net_bridge_port *p;
Dan Carpenter2062cc22012-12-07 01:10:46 +0000682 struct nlattr *tb[IFLA_BRPORT_MAX + 1];
Scott Feldman41c498b2015-05-10 09:47:59 -0700683 int err = 0;
stephen hemminger25c71c72012-11-13 07:53:05 +0000684
Hong zhi guoc60ee672013-03-28 06:21:22 +0000685 protinfo = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_PROTINFO);
686 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Vlad Yasevich407af322013-02-13 12:00:12 +0000687 if (!protinfo && !afspec)
stephen hemminger25c71c72012-11-13 07:53:05 +0000688 return 0;
689
690 p = br_port_get_rtnl(dev);
Vlad Yasevich407af322013-02-13 12:00:12 +0000691 /* We want to accept dev as bridge itself if the AF_SPEC
stephen hemminger8e3bff92013-12-08 12:15:44 -0800692 * is set to see if someone is setting vlan info on the bridge
Vlad Yasevich407af322013-02-13 12:00:12 +0000693 */
Hong zhi guo7b99a992013-03-24 03:26:47 +0000694 if (!p && !afspec)
stephen hemminger25c71c72012-11-13 07:53:05 +0000695 return -EINVAL;
696
Vlad Yasevich407af322013-02-13 12:00:12 +0000697 if (p && protinfo) {
698 if (protinfo->nla_type & NLA_F_NESTED) {
699 err = nla_parse_nested(tb, IFLA_BRPORT_MAX,
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200700 protinfo, br_port_policy);
Vlad Yasevich407af322013-02-13 12:00:12 +0000701 if (err)
702 return err;
703
704 spin_lock_bh(&p->br->lock);
705 err = br_setport(p, tb);
706 spin_unlock_bh(&p->br->lock);
707 } else {
stephen hemminger8e3bff92013-12-08 12:15:44 -0800708 /* Binary compatibility with old RSTP */
Vlad Yasevich407af322013-02-13 12:00:12 +0000709 if (nla_len(protinfo) < sizeof(u8))
710 return -EINVAL;
711
712 spin_lock_bh(&p->br->lock);
713 err = br_set_port_state(p, nla_get_u8(protinfo));
714 spin_unlock_bh(&p->br->lock);
715 }
stephen hemminger25c71c72012-11-13 07:53:05 +0000716 if (err)
Vlad Yasevich407af322013-02-13 12:00:12 +0000717 goto out;
718 }
stephen hemminger25c71c72012-11-13 07:53:05 +0000719
Vlad Yasevich407af322013-02-13 12:00:12 +0000720 if (afspec) {
721 err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
722 afspec, RTM_SETLINK);
stephen hemminger25c71c72012-11-13 07:53:05 +0000723 }
724
725 if (err == 0)
726 br_ifinfo_notify(RTM_NEWLINK, p);
Vlad Yasevich407af322013-02-13 12:00:12 +0000727out:
stephen hemminger25c71c72012-11-13 07:53:05 +0000728 return err;
729}
730
Vlad Yasevich407af322013-02-13 12:00:12 +0000731/* Delete port information */
Roopa Prabhuadd511b2015-01-29 22:40:12 -0800732int br_dellink(struct net_device *dev, struct nlmsghdr *nlh, u16 flags)
Vlad Yasevich407af322013-02-13 12:00:12 +0000733{
Vlad Yasevich407af322013-02-13 12:00:12 +0000734 struct nlattr *afspec;
735 struct net_bridge_port *p;
Scott Feldman85080252015-05-10 09:48:03 -0700736 int err = 0;
Vlad Yasevich407af322013-02-13 12:00:12 +0000737
Hong zhi guoc60ee672013-03-28 06:21:22 +0000738 afspec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
Vlad Yasevich407af322013-02-13 12:00:12 +0000739 if (!afspec)
740 return 0;
741
742 p = br_port_get_rtnl(dev);
743 /* We want to accept dev as bridge itself as well */
744 if (!p && !(dev->priv_flags & IFF_EBRIDGE))
745 return -EINVAL;
746
747 err = br_afspec((struct net_bridge *)netdev_priv(dev), p,
748 afspec, RTM_DELLINK);
Roopa Prabhu02dba432015-01-14 20:02:25 -0800749 if (err == 0)
750 /* Send RTM_NEWLINK because userspace
751 * expects RTM_NEWLINK for vlan dels
752 */
753 br_ifinfo_notify(RTM_NEWLINK, p);
Vlad Yasevich407af322013-02-13 12:00:12 +0000754
755 return err;
756}
stephen hemmingerbb900b22011-04-04 14:03:32 +0000757static int br_validate(struct nlattr *tb[], struct nlattr *data[])
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700758{
stephen hemmingerbb900b22011-04-04 14:03:32 +0000759 if (tb[IFLA_ADDRESS]) {
760 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
761 return -EINVAL;
762 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
763 return -EADDRNOTAVAIL;
764 }
Thomas Graf32fe21c2007-03-22 11:59:03 -0700765
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900766 if (!data)
767 return 0;
768
769#ifdef CONFIG_BRIDGE_VLAN_FILTERING
770 if (data[IFLA_BR_VLAN_PROTOCOL]) {
771 switch (nla_get_be16(data[IFLA_BR_VLAN_PROTOCOL])) {
772 case htons(ETH_P_8021Q):
773 case htons(ETH_P_8021AD):
774 break;
775 default:
776 return -EPROTONOSUPPORT;
777 }
778 }
Tobias Jungel2ea42212017-05-17 09:29:12 +0200779
780 if (data[IFLA_BR_VLAN_DEFAULT_PVID]) {
781 __u16 defpvid = nla_get_u16(data[IFLA_BR_VLAN_DEFAULT_PVID]);
782
783 if (defpvid >= VLAN_VID_MASK)
784 return -EINVAL;
785 }
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900786#endif
787
Thomas Graf32fe21c2007-03-22 11:59:03 -0700788 return 0;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -0700789}
790
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200791static int br_port_slave_changelink(struct net_device *brdev,
792 struct net_device *dev,
793 struct nlattr *tb[],
794 struct nlattr *data[])
795{
Nikolay Aleksandrov963ad942015-07-22 13:03:40 +0200796 struct net_bridge *br = netdev_priv(brdev);
797 int ret;
798
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200799 if (!data)
800 return 0;
Nikolay Aleksandrov963ad942015-07-22 13:03:40 +0200801
802 spin_lock_bh(&br->lock);
803 ret = br_setport(br_port_get_rtnl(dev), data);
804 spin_unlock_bh(&br->lock);
805
806 return ret;
Jiri Pirko3ac636b2014-09-05 15:51:30 +0200807}
808
Jiri Pirkoced82832014-09-05 15:51:29 +0200809static int br_port_fill_slave_info(struct sk_buff *skb,
810 const struct net_device *brdev,
811 const struct net_device *dev)
812{
813 return br_port_fill_attrs(skb, br_port_get_rtnl(dev));
814}
815
816static size_t br_port_get_slave_size(const struct net_device *brdev,
817 const struct net_device *dev)
818{
819 return br_port_info_size();
820}
821
Jiri Pirko13323512014-09-05 15:51:32 +0200822static const struct nla_policy br_policy[IFLA_BR_MAX + 1] = {
823 [IFLA_BR_FORWARD_DELAY] = { .type = NLA_U32 },
824 [IFLA_BR_HELLO_TIME] = { .type = NLA_U32 },
825 [IFLA_BR_MAX_AGE] = { .type = NLA_U32 },
Jörg Thalheimaf615762015-03-18 10:06:58 +0100826 [IFLA_BR_AGEING_TIME] = { .type = NLA_U32 },
827 [IFLA_BR_STP_STATE] = { .type = NLA_U32 },
828 [IFLA_BR_PRIORITY] = { .type = NLA_U16 },
Nikolay Aleksandrova7854032015-08-07 19:40:45 +0300829 [IFLA_BR_VLAN_FILTERING] = { .type = NLA_U8 },
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900830 [IFLA_BR_VLAN_PROTOCOL] = { .type = NLA_U16 },
Nikolay Aleksandrov79102282015-10-04 14:23:28 +0200831 [IFLA_BR_GROUP_FWD_MASK] = { .type = NLA_U16 },
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +0200832 [IFLA_BR_GROUP_ADDR] = { .type = NLA_BINARY,
833 .len = ETH_ALEN },
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +0200834 [IFLA_BR_MCAST_ROUTER] = { .type = NLA_U8 },
Nikolay Aleksandrov89126322015-10-04 14:23:38 +0200835 [IFLA_BR_MCAST_SNOOPING] = { .type = NLA_U8 },
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +0200836 [IFLA_BR_MCAST_QUERY_USE_IFADDR] = { .type = NLA_U8 },
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +0200837 [IFLA_BR_MCAST_QUERIER] = { .type = NLA_U8 },
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +0200838 [IFLA_BR_MCAST_HASH_ELASTICITY] = { .type = NLA_U32 },
Nikolay Aleksandrov858079f2015-10-04 14:23:42 +0200839 [IFLA_BR_MCAST_HASH_MAX] = { .type = NLA_U32 },
Nikolay Aleksandrov79b859f2015-10-04 14:23:43 +0200840 [IFLA_BR_MCAST_LAST_MEMBER_CNT] = { .type = NLA_U32 },
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +0200841 [IFLA_BR_MCAST_STARTUP_QUERY_CNT] = { .type = NLA_U32 },
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +0200842 [IFLA_BR_MCAST_LAST_MEMBER_INTVL] = { .type = NLA_U64 },
843 [IFLA_BR_MCAST_MEMBERSHIP_INTVL] = { .type = NLA_U64 },
844 [IFLA_BR_MCAST_QUERIER_INTVL] = { .type = NLA_U64 },
845 [IFLA_BR_MCAST_QUERY_INTVL] = { .type = NLA_U64 },
846 [IFLA_BR_MCAST_QUERY_RESPONSE_INTVL] = { .type = NLA_U64 },
847 [IFLA_BR_MCAST_STARTUP_QUERY_INTVL] = { .type = NLA_U64 },
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +0200848 [IFLA_BR_NF_CALL_IPTABLES] = { .type = NLA_U8 },
849 [IFLA_BR_NF_CALL_IP6TABLES] = { .type = NLA_U8 },
850 [IFLA_BR_NF_CALL_ARPTABLES] = { .type = NLA_U8 },
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +0200851 [IFLA_BR_VLAN_DEFAULT_PVID] = { .type = NLA_U16 },
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +0200852 [IFLA_BR_VLAN_STATS_ENABLED] = { .type = NLA_U8 },
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +0200853 [IFLA_BR_MCAST_STATS_ENABLED] = { .type = NLA_U8 },
Jiri Pirko13323512014-09-05 15:51:32 +0200854};
855
856static int br_changelink(struct net_device *brdev, struct nlattr *tb[],
857 struct nlattr *data[])
858{
859 struct net_bridge *br = netdev_priv(brdev);
860 int err;
861
862 if (!data)
863 return 0;
864
865 if (data[IFLA_BR_FORWARD_DELAY]) {
866 err = br_set_forward_delay(br, nla_get_u32(data[IFLA_BR_FORWARD_DELAY]));
867 if (err)
868 return err;
869 }
870
871 if (data[IFLA_BR_HELLO_TIME]) {
872 err = br_set_hello_time(br, nla_get_u32(data[IFLA_BR_HELLO_TIME]));
873 if (err)
874 return err;
875 }
876
877 if (data[IFLA_BR_MAX_AGE]) {
878 err = br_set_max_age(br, nla_get_u32(data[IFLA_BR_MAX_AGE]));
879 if (err)
880 return err;
881 }
882
Jörg Thalheimaf615762015-03-18 10:06:58 +0100883 if (data[IFLA_BR_AGEING_TIME]) {
Scott Feldmanc62987b2015-10-08 19:23:19 -0700884 err = br_set_ageing_time(br, nla_get_u32(data[IFLA_BR_AGEING_TIME]));
885 if (err)
886 return err;
Jörg Thalheimaf615762015-03-18 10:06:58 +0100887 }
888
889 if (data[IFLA_BR_STP_STATE]) {
890 u32 stp_enabled = nla_get_u32(data[IFLA_BR_STP_STATE]);
891
892 br_stp_set_enabled(br, stp_enabled);
893 }
894
895 if (data[IFLA_BR_PRIORITY]) {
896 u32 priority = nla_get_u16(data[IFLA_BR_PRIORITY]);
897
898 br_stp_set_bridge_priority(br, priority);
899 }
900
Nikolay Aleksandrova7854032015-08-07 19:40:45 +0300901 if (data[IFLA_BR_VLAN_FILTERING]) {
902 u8 vlan_filter = nla_get_u8(data[IFLA_BR_VLAN_FILTERING]);
903
904 err = __br_vlan_filter_toggle(br, vlan_filter);
905 if (err)
906 return err;
907 }
908
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900909#ifdef CONFIG_BRIDGE_VLAN_FILTERING
910 if (data[IFLA_BR_VLAN_PROTOCOL]) {
911 __be16 vlan_proto = nla_get_be16(data[IFLA_BR_VLAN_PROTOCOL]);
912
913 err = __br_vlan_set_proto(br, vlan_proto);
914 if (err)
915 return err;
916 }
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +0200917
918 if (data[IFLA_BR_VLAN_DEFAULT_PVID]) {
919 __u16 defpvid = nla_get_u16(data[IFLA_BR_VLAN_DEFAULT_PVID]);
920
921 err = __br_vlan_set_default_pvid(br, defpvid);
922 if (err)
923 return err;
924 }
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +0200925
926 if (data[IFLA_BR_VLAN_STATS_ENABLED]) {
927 __u8 vlan_stats = nla_get_u8(data[IFLA_BR_VLAN_STATS_ENABLED]);
928
929 err = br_vlan_set_stats(br, vlan_stats);
930 if (err)
931 return err;
932 }
Toshiaki Makitad2d427b2015-08-27 15:32:26 +0900933#endif
934
Nikolay Aleksandrov79102282015-10-04 14:23:28 +0200935 if (data[IFLA_BR_GROUP_FWD_MASK]) {
936 u16 fwd_mask = nla_get_u16(data[IFLA_BR_GROUP_FWD_MASK]);
937
938 if (fwd_mask & BR_GROUPFWD_RESTRICTED)
939 return -EINVAL;
940 br->group_fwd_mask = fwd_mask;
941 }
942
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +0200943 if (data[IFLA_BR_GROUP_ADDR]) {
944 u8 new_addr[ETH_ALEN];
945
946 if (nla_len(data[IFLA_BR_GROUP_ADDR]) != ETH_ALEN)
947 return -EINVAL;
948 memcpy(new_addr, nla_data(data[IFLA_BR_GROUP_ADDR]), ETH_ALEN);
949 if (!is_link_local_ether_addr(new_addr))
950 return -EINVAL;
951 if (new_addr[5] == 1 || /* 802.3x Pause address */
952 new_addr[5] == 2 || /* 802.3ad Slow protocols */
953 new_addr[5] == 3) /* 802.1X PAE address */
954 return -EINVAL;
955 spin_lock_bh(&br->lock);
956 memcpy(br->group_addr, new_addr, sizeof(br->group_addr));
957 spin_unlock_bh(&br->lock);
958 br->group_addr_set = true;
959 br_recalculate_fwd_mask(br);
960 }
961
Nikolay Aleksandrov150217c2015-10-04 14:23:36 +0200962 if (data[IFLA_BR_FDB_FLUSH])
963 br_fdb_flush(br);
964
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +0200965#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
966 if (data[IFLA_BR_MCAST_ROUTER]) {
967 u8 multicast_router = nla_get_u8(data[IFLA_BR_MCAST_ROUTER]);
968
969 err = br_multicast_set_router(br, multicast_router);
970 if (err)
971 return err;
972 }
Nikolay Aleksandrov89126322015-10-04 14:23:38 +0200973
974 if (data[IFLA_BR_MCAST_SNOOPING]) {
975 u8 mcast_snooping = nla_get_u8(data[IFLA_BR_MCAST_SNOOPING]);
976
977 err = br_multicast_toggle(br, mcast_snooping);
978 if (err)
979 return err;
980 }
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +0200981
982 if (data[IFLA_BR_MCAST_QUERY_USE_IFADDR]) {
983 u8 val;
984
985 val = nla_get_u8(data[IFLA_BR_MCAST_QUERY_USE_IFADDR]);
986 br->multicast_query_use_ifaddr = !!val;
987 }
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +0200988
989 if (data[IFLA_BR_MCAST_QUERIER]) {
990 u8 mcast_querier = nla_get_u8(data[IFLA_BR_MCAST_QUERIER]);
991
992 err = br_multicast_set_querier(br, mcast_querier);
993 if (err)
994 return err;
995 }
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +0200996
997 if (data[IFLA_BR_MCAST_HASH_ELASTICITY]) {
998 u32 val = nla_get_u32(data[IFLA_BR_MCAST_HASH_ELASTICITY]);
999
1000 br->hash_elasticity = val;
1001 }
Nikolay Aleksandrov858079f2015-10-04 14:23:42 +02001002
1003 if (data[IFLA_BR_MCAST_HASH_MAX]) {
1004 u32 hash_max = nla_get_u32(data[IFLA_BR_MCAST_HASH_MAX]);
1005
1006 err = br_multicast_set_hash_max(br, hash_max);
1007 if (err)
1008 return err;
1009 }
Nikolay Aleksandrov79b859f2015-10-04 14:23:43 +02001010
1011 if (data[IFLA_BR_MCAST_LAST_MEMBER_CNT]) {
1012 u32 val = nla_get_u32(data[IFLA_BR_MCAST_LAST_MEMBER_CNT]);
1013
1014 br->multicast_last_member_count = val;
1015 }
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001016
1017 if (data[IFLA_BR_MCAST_STARTUP_QUERY_CNT]) {
1018 u32 val = nla_get_u32(data[IFLA_BR_MCAST_STARTUP_QUERY_CNT]);
1019
1020 br->multicast_startup_query_count = val;
1021 }
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001022
1023 if (data[IFLA_BR_MCAST_LAST_MEMBER_INTVL]) {
1024 u64 val = nla_get_u64(data[IFLA_BR_MCAST_LAST_MEMBER_INTVL]);
1025
1026 br->multicast_last_member_interval = clock_t_to_jiffies(val);
1027 }
1028
1029 if (data[IFLA_BR_MCAST_MEMBERSHIP_INTVL]) {
1030 u64 val = nla_get_u64(data[IFLA_BR_MCAST_MEMBERSHIP_INTVL]);
1031
1032 br->multicast_membership_interval = clock_t_to_jiffies(val);
1033 }
1034
1035 if (data[IFLA_BR_MCAST_QUERIER_INTVL]) {
1036 u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERIER_INTVL]);
1037
1038 br->multicast_querier_interval = clock_t_to_jiffies(val);
1039 }
1040
1041 if (data[IFLA_BR_MCAST_QUERY_INTVL]) {
1042 u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERY_INTVL]);
1043
1044 br->multicast_query_interval = clock_t_to_jiffies(val);
1045 }
1046
1047 if (data[IFLA_BR_MCAST_QUERY_RESPONSE_INTVL]) {
1048 u64 val = nla_get_u64(data[IFLA_BR_MCAST_QUERY_RESPONSE_INTVL]);
1049
1050 br->multicast_query_response_interval = clock_t_to_jiffies(val);
1051 }
1052
1053 if (data[IFLA_BR_MCAST_STARTUP_QUERY_INTVL]) {
1054 u64 val = nla_get_u64(data[IFLA_BR_MCAST_STARTUP_QUERY_INTVL]);
1055
1056 br->multicast_startup_query_interval = clock_t_to_jiffies(val);
1057 }
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001058
1059 if (data[IFLA_BR_MCAST_STATS_ENABLED]) {
1060 __u8 mcast_stats;
1061
1062 mcast_stats = nla_get_u8(data[IFLA_BR_MCAST_STATS_ENABLED]);
1063 br->multicast_stats_enabled = !!mcast_stats;
1064 }
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001065#endif
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +02001066#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1067 if (data[IFLA_BR_NF_CALL_IPTABLES]) {
1068 u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_IPTABLES]);
1069
1070 br->nf_call_iptables = val ? true : false;
1071 }
1072
1073 if (data[IFLA_BR_NF_CALL_IP6TABLES]) {
1074 u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_IP6TABLES]);
1075
1076 br->nf_call_ip6tables = val ? true : false;
1077 }
1078
1079 if (data[IFLA_BR_NF_CALL_ARPTABLES]) {
1080 u8 val = nla_get_u8(data[IFLA_BR_NF_CALL_ARPTABLES]);
1081
1082 br->nf_call_arptables = val ? true : false;
1083 }
1084#endif
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001085
Jiri Pirko13323512014-09-05 15:51:32 +02001086 return 0;
1087}
1088
Ivan Vecera74423142017-01-20 18:12:17 +01001089static int br_dev_newlink(struct net *src_net, struct net_device *dev,
1090 struct nlattr *tb[], struct nlattr *data[])
1091{
1092 struct net_bridge *br = netdev_priv(dev);
1093 int err;
1094
Nikolay Aleksandrov243adaa2017-12-18 17:35:09 +02001095 err = register_netdevice(dev);
1096 if (err)
1097 return err;
1098
Ivan Vecera74423142017-01-20 18:12:17 +01001099 if (tb[IFLA_ADDRESS]) {
1100 spin_lock_bh(&br->lock);
1101 br_stp_change_bridge_id(br, nla_data(tb[IFLA_ADDRESS]));
1102 spin_unlock_bh(&br->lock);
1103 }
1104
Ido Schimmel7e2a7552017-04-10 14:59:28 +03001105 err = br_changelink(dev, tb, data);
1106 if (err)
Nikolay Aleksandrov243adaa2017-12-18 17:35:09 +02001107 br_dev_delete(dev, NULL);
1108
Ido Schimmel7e2a7552017-04-10 14:59:28 +03001109 return err;
Ivan Vecera74423142017-01-20 18:12:17 +01001110}
1111
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001112static size_t br_get_size(const struct net_device *brdev)
1113{
1114 return nla_total_size(sizeof(u32)) + /* IFLA_BR_FORWARD_DELAY */
1115 nla_total_size(sizeof(u32)) + /* IFLA_BR_HELLO_TIME */
1116 nla_total_size(sizeof(u32)) + /* IFLA_BR_MAX_AGE */
Jörg Thalheimaf615762015-03-18 10:06:58 +01001117 nla_total_size(sizeof(u32)) + /* IFLA_BR_AGEING_TIME */
1118 nla_total_size(sizeof(u32)) + /* IFLA_BR_STP_STATE */
1119 nla_total_size(sizeof(u16)) + /* IFLA_BR_PRIORITY */
Nikolay Aleksandrova7854032015-08-07 19:40:45 +03001120 nla_total_size(sizeof(u8)) + /* IFLA_BR_VLAN_FILTERING */
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001121#ifdef CONFIG_BRIDGE_VLAN_FILTERING
1122 nla_total_size(sizeof(__be16)) + /* IFLA_BR_VLAN_PROTOCOL */
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +02001123 nla_total_size(sizeof(u16)) + /* IFLA_BR_VLAN_DEFAULT_PVID */
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +02001124 nla_total_size(sizeof(u8)) + /* IFLA_BR_VLAN_STATS_ENABLED */
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001125#endif
Nikolay Aleksandrov79102282015-10-04 14:23:28 +02001126 nla_total_size(sizeof(u16)) + /* IFLA_BR_GROUP_FWD_MASK */
Nikolay Aleksandrov5127c812015-10-04 14:23:29 +02001127 nla_total_size(sizeof(struct ifla_bridge_id)) + /* IFLA_BR_ROOT_ID */
Nikolay Aleksandrov7599a222015-10-04 14:23:30 +02001128 nla_total_size(sizeof(struct ifla_bridge_id)) + /* IFLA_BR_BRIDGE_ID */
Nikolay Aleksandrov8762ba62015-10-04 14:23:31 +02001129 nla_total_size(sizeof(u16)) + /* IFLA_BR_ROOT_PORT */
Nikolay Aleksandrov684dd242015-10-04 14:23:32 +02001130 nla_total_size(sizeof(u32)) + /* IFLA_BR_ROOT_PATH_COST */
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001131 nla_total_size(sizeof(u8)) + /* IFLA_BR_TOPOLOGY_CHANGE */
1132 nla_total_size(sizeof(u8)) + /* IFLA_BR_TOPOLOGY_CHANGE_DETECTED */
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001133 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_HELLO_TIMER */
1134 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_TCN_TIMER */
1135 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_TOPOLOGY_CHANGE_TIMER */
1136 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_GC_TIMER */
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +02001137 nla_total_size(ETH_ALEN) + /* IFLA_BR_GROUP_ADDR */
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001138#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
1139 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_ROUTER */
Nikolay Aleksandrov89126322015-10-04 14:23:38 +02001140 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_SNOOPING */
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +02001141 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_QUERY_USE_IFADDR */
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +02001142 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_QUERIER */
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001143 nla_total_size(sizeof(u8)) + /* IFLA_BR_MCAST_STATS_ENABLED */
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001144 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_HASH_ELASTICITY */
1145 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_HASH_MAX */
1146 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_LAST_MEMBER_CNT */
1147 nla_total_size(sizeof(u32)) + /* IFLA_BR_MCAST_STARTUP_QUERY_CNT */
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001148 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_LAST_MEMBER_INTVL */
1149 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_MEMBERSHIP_INTVL */
1150 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_QUERIER_INTVL */
1151 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_QUERY_INTVL */
1152 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_QUERY_RESPONSE_INTVL */
1153 nla_total_size_64bit(sizeof(u64)) + /* IFLA_BR_MCAST_STARTUP_QUERY_INTVL */
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001154#endif
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +02001155#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1156 nla_total_size(sizeof(u8)) + /* IFLA_BR_NF_CALL_IPTABLES */
1157 nla_total_size(sizeof(u8)) + /* IFLA_BR_NF_CALL_IP6TABLES */
1158 nla_total_size(sizeof(u8)) + /* IFLA_BR_NF_CALL_ARPTABLES */
1159#endif
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001160 0;
1161}
1162
1163static int br_fill_info(struct sk_buff *skb, const struct net_device *brdev)
1164{
1165 struct net_bridge *br = netdev_priv(brdev);
1166 u32 forward_delay = jiffies_to_clock_t(br->forward_delay);
1167 u32 hello_time = jiffies_to_clock_t(br->hello_time);
1168 u32 age_time = jiffies_to_clock_t(br->max_age);
Jörg Thalheimaf615762015-03-18 10:06:58 +01001169 u32 ageing_time = jiffies_to_clock_t(br->ageing_time);
1170 u32 stp_enabled = br->stp_enabled;
1171 u16 priority = (br->bridge_id.prio[0] << 8) | br->bridge_id.prio[1];
Nikolay Aleksandrova7854032015-08-07 19:40:45 +03001172 u8 vlan_enabled = br_vlan_enabled(br);
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001173 u64 clockval;
Nikolay Aleksandrov5127c812015-10-04 14:23:29 +02001174
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001175 clockval = br_timer_value(&br->hello_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001176 if (nla_put_u64_64bit(skb, IFLA_BR_HELLO_TIMER, clockval, IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001177 return -EMSGSIZE;
1178 clockval = br_timer_value(&br->tcn_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001179 if (nla_put_u64_64bit(skb, IFLA_BR_TCN_TIMER, clockval, IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001180 return -EMSGSIZE;
1181 clockval = br_timer_value(&br->topology_change_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001182 if (nla_put_u64_64bit(skb, IFLA_BR_TOPOLOGY_CHANGE_TIMER, clockval,
1183 IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001184 return -EMSGSIZE;
1185 clockval = br_timer_value(&br->gc_timer);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001186 if (nla_put_u64_64bit(skb, IFLA_BR_GC_TIMER, clockval, IFLA_BR_PAD))
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001187 return -EMSGSIZE;
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001188
1189 if (nla_put_u32(skb, IFLA_BR_FORWARD_DELAY, forward_delay) ||
1190 nla_put_u32(skb, IFLA_BR_HELLO_TIME, hello_time) ||
Jörg Thalheimaf615762015-03-18 10:06:58 +01001191 nla_put_u32(skb, IFLA_BR_MAX_AGE, age_time) ||
1192 nla_put_u32(skb, IFLA_BR_AGEING_TIME, ageing_time) ||
1193 nla_put_u32(skb, IFLA_BR_STP_STATE, stp_enabled) ||
Nikolay Aleksandrova7854032015-08-07 19:40:45 +03001194 nla_put_u16(skb, IFLA_BR_PRIORITY, priority) ||
Nikolay Aleksandrov79102282015-10-04 14:23:28 +02001195 nla_put_u8(skb, IFLA_BR_VLAN_FILTERING, vlan_enabled) ||
Nikolay Aleksandrov4917a152015-10-05 12:11:21 +02001196 nla_put_u16(skb, IFLA_BR_GROUP_FWD_MASK, br->group_fwd_mask) ||
1197 nla_put(skb, IFLA_BR_BRIDGE_ID, sizeof(struct ifla_bridge_id),
1198 &br->bridge_id) ||
1199 nla_put(skb, IFLA_BR_ROOT_ID, sizeof(struct ifla_bridge_id),
1200 &br->designated_root) ||
Nikolay Aleksandrov684dd242015-10-04 14:23:32 +02001201 nla_put_u16(skb, IFLA_BR_ROOT_PORT, br->root_port) ||
Nikolay Aleksandroved416302015-10-04 14:23:33 +02001202 nla_put_u32(skb, IFLA_BR_ROOT_PATH_COST, br->root_path_cost) ||
1203 nla_put_u8(skb, IFLA_BR_TOPOLOGY_CHANGE, br->topology_change) ||
1204 nla_put_u8(skb, IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
Nikolay Aleksandrovd76bd142015-10-04 14:23:34 +02001205 br->topology_change_detected) ||
Nikolay Aleksandrov111189a2015-10-04 14:23:35 +02001206 nla_put(skb, IFLA_BR_GROUP_ADDR, ETH_ALEN, br->group_addr))
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001207 return -EMSGSIZE;
1208
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001209#ifdef CONFIG_BRIDGE_VLAN_FILTERING
Nikolay Aleksandrov0f963b72015-10-04 14:23:47 +02001210 if (nla_put_be16(skb, IFLA_BR_VLAN_PROTOCOL, br->vlan_proto) ||
Nikolay Aleksandrov6dada9b2016-04-30 10:25:28 +02001211 nla_put_u16(skb, IFLA_BR_VLAN_DEFAULT_PVID, br->default_pvid) ||
1212 nla_put_u8(skb, IFLA_BR_VLAN_STATS_ENABLED, br->vlan_stats_enabled))
Toshiaki Makitad2d427b2015-08-27 15:32:26 +09001213 return -EMSGSIZE;
1214#endif
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001215#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
Nikolay Aleksandrov89126322015-10-04 14:23:38 +02001216 if (nla_put_u8(skb, IFLA_BR_MCAST_ROUTER, br->multicast_router) ||
Nikolay Aleksandrov295141d2015-10-04 14:23:39 +02001217 nla_put_u8(skb, IFLA_BR_MCAST_SNOOPING, !br->multicast_disabled) ||
1218 nla_put_u8(skb, IFLA_BR_MCAST_QUERY_USE_IFADDR,
Nikolay Aleksandrovba062d7c2015-10-04 14:23:40 +02001219 br->multicast_query_use_ifaddr) ||
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +02001220 nla_put_u8(skb, IFLA_BR_MCAST_QUERIER, br->multicast_querier) ||
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001221 nla_put_u8(skb, IFLA_BR_MCAST_STATS_ENABLED,
1222 br->multicast_stats_enabled) ||
Nikolay Aleksandrov431db3c2015-10-04 14:23:41 +02001223 nla_put_u32(skb, IFLA_BR_MCAST_HASH_ELASTICITY,
Nikolay Aleksandrov858079f2015-10-04 14:23:42 +02001224 br->hash_elasticity) ||
Nikolay Aleksandrov79b859f2015-10-04 14:23:43 +02001225 nla_put_u32(skb, IFLA_BR_MCAST_HASH_MAX, br->hash_max) ||
1226 nla_put_u32(skb, IFLA_BR_MCAST_LAST_MEMBER_CNT,
Nikolay Aleksandrovb89e6ba2015-10-04 14:23:44 +02001227 br->multicast_last_member_count) ||
1228 nla_put_u32(skb, IFLA_BR_MCAST_STARTUP_QUERY_CNT,
1229 br->multicast_startup_query_count))
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001230 return -EMSGSIZE;
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001231
1232 clockval = jiffies_to_clock_t(br->multicast_last_member_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001233 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_LAST_MEMBER_INTVL, clockval,
1234 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001235 return -EMSGSIZE;
1236 clockval = jiffies_to_clock_t(br->multicast_membership_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001237 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_MEMBERSHIP_INTVL, clockval,
1238 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001239 return -EMSGSIZE;
1240 clockval = jiffies_to_clock_t(br->multicast_querier_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001241 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_QUERIER_INTVL, clockval,
1242 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001243 return -EMSGSIZE;
1244 clockval = jiffies_to_clock_t(br->multicast_query_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001245 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_QUERY_INTVL, clockval,
1246 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001247 return -EMSGSIZE;
1248 clockval = jiffies_to_clock_t(br->multicast_query_response_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001249 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_QUERY_RESPONSE_INTVL, clockval,
1250 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001251 return -EMSGSIZE;
1252 clockval = jiffies_to_clock_t(br->multicast_startup_query_interval);
Nicolas Dichtel12a0faa2016-04-25 10:25:18 +02001253 if (nla_put_u64_64bit(skb, IFLA_BR_MCAST_STARTUP_QUERY_INTVL, clockval,
1254 IFLA_BR_PAD))
Nikolay Aleksandrov7e4df512015-10-04 14:23:45 +02001255 return -EMSGSIZE;
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001256#endif
Nikolay Aleksandrov93870cc2015-10-04 14:23:46 +02001257#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
1258 if (nla_put_u8(skb, IFLA_BR_NF_CALL_IPTABLES,
1259 br->nf_call_iptables ? 1 : 0) ||
1260 nla_put_u8(skb, IFLA_BR_NF_CALL_IP6TABLES,
1261 br->nf_call_ip6tables ? 1 : 0) ||
1262 nla_put_u8(skb, IFLA_BR_NF_CALL_ARPTABLES,
1263 br->nf_call_arptables ? 1 : 0))
1264 return -EMSGSIZE;
1265#endif
Nikolay Aleksandrova9a6bc72015-10-04 14:23:37 +02001266
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001267 return 0;
1268}
1269
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001270static size_t br_get_linkxstats_size(const struct net_device *dev, int attr)
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001271{
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001272 struct net_bridge_port *p = NULL;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001273 struct net_bridge_vlan_group *vg;
1274 struct net_bridge_vlan *v;
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001275 struct net_bridge *br;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001276 int numvls = 0;
1277
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001278 switch (attr) {
1279 case IFLA_STATS_LINK_XSTATS:
1280 br = netdev_priv(dev);
1281 vg = br_vlan_group(br);
1282 break;
1283 case IFLA_STATS_LINK_XSTATS_SLAVE:
1284 p = br_port_get_rtnl(dev);
1285 if (!p)
1286 return 0;
1287 br = p->br;
1288 vg = nbp_vlan_group(p);
1289 break;
1290 default:
1291 return 0;
1292 }
1293
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001294 if (vg) {
1295 /* we need to count all, even placeholder entries */
1296 list_for_each_entry(v, &vg->vlan_list, vlist)
1297 numvls++;
1298 }
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001299
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001300 return numvls * nla_total_size(sizeof(struct bridge_vlan_xstats)) +
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001301 nla_total_size(sizeof(struct br_mcast_stats)) +
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001302 nla_total_size(0);
1303}
1304
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001305static int br_fill_linkxstats(struct sk_buff *skb,
1306 const struct net_device *dev,
1307 int *prividx, int attr)
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001308{
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001309 struct nlattr *nla __maybe_unused;
1310 struct net_bridge_port *p = NULL;
1311 struct net_bridge_vlan_group *vg;
1312 struct net_bridge_vlan *v;
1313 struct net_bridge *br;
1314 struct nlattr *nest;
1315 int vl_idx = 0;
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001316
1317 switch (attr) {
1318 case IFLA_STATS_LINK_XSTATS:
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001319 br = netdev_priv(dev);
1320 vg = br_vlan_group(br);
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001321 break;
1322 case IFLA_STATS_LINK_XSTATS_SLAVE:
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001323 p = br_port_get_rtnl(dev);
1324 if (!p)
1325 return 0;
1326 br = p->br;
1327 vg = nbp_vlan_group(p);
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001328 break;
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001329 default:
1330 return -EINVAL;
Nikolay Aleksandrov80e73cc2016-06-28 16:57:05 +02001331 }
1332
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001333 nest = nla_nest_start(skb, LINK_XSTATS_TYPE_BRIDGE);
1334 if (!nest)
1335 return -EMSGSIZE;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001336
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001337 if (vg) {
Nikolay Aleksandrov72f4af42016-08-25 14:27:51 +02001338 u16 pvid;
1339
1340 pvid = br_get_pvid(vg);
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001341 list_for_each_entry(v, &vg->vlan_list, vlist) {
1342 struct bridge_vlan_xstats vxi;
1343 struct br_vlan_stats stats;
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001344
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001345 if (++vl_idx < *prividx)
1346 continue;
1347 memset(&vxi, 0, sizeof(vxi));
1348 vxi.vid = v->vid;
Nikolay Aleksandrov61ba1a22016-08-17 12:53:10 +02001349 vxi.flags = v->flags;
Nikolay Aleksandrov72f4af42016-08-25 14:27:51 +02001350 if (v->vid == pvid)
1351 vxi.flags |= BRIDGE_VLAN_INFO_PVID;
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001352 br_vlan_get_stats(v, &stats);
1353 vxi.rx_bytes = stats.rx_bytes;
1354 vxi.rx_packets = stats.rx_packets;
1355 vxi.tx_bytes = stats.tx_bytes;
1356 vxi.tx_packets = stats.tx_packets;
1357
1358 if (nla_put(skb, BRIDGE_XSTATS_VLAN, sizeof(vxi), &vxi))
1359 goto nla_put_failure;
1360 }
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001361 }
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001362
1363#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
1364 if (++vl_idx >= *prividx) {
1365 nla = nla_reserve_64bit(skb, BRIDGE_XSTATS_MCAST,
1366 sizeof(struct br_mcast_stats),
1367 BRIDGE_XSTATS_PAD);
1368 if (!nla)
1369 goto nla_put_failure;
Nikolay Aleksandrovd5ff8c42016-08-17 12:53:09 +02001370 br_multicast_get_stats(br, p, nla_data(nla));
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001371 }
1372#endif
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001373 nla_nest_end(skb, nest);
1374 *prividx = 0;
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +02001375
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001376 return 0;
1377
1378nla_put_failure:
1379 nla_nest_end(skb, nest);
1380 *prividx = vl_idx;
1381
1382 return -EMSGSIZE;
1383}
Roopa Prabhufed0a152015-02-25 23:55:40 -08001384
Daniel Borkmann207895f2015-01-29 12:15:03 +01001385static struct rtnl_af_ops br_af_ops __read_mostly = {
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001386 .family = AF_BRIDGE,
Arad, Ronenb1974ed2015-10-19 09:23:28 -07001387 .get_link_af_size = br_get_link_af_size_filtered,
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001388};
1389
stephen hemminger149ddd82012-06-26 05:48:45 +00001390struct rtnl_link_ops br_link_ops __read_mostly = {
Jiri Pirkoced82832014-09-05 15:51:29 +02001391 .kind = "bridge",
1392 .priv_size = sizeof(struct net_bridge),
1393 .setup = br_dev_setup,
Scott Feldmaneb4cb852015-08-19 11:29:35 -07001394 .maxtype = IFLA_BR_MAX,
Jiri Pirko13323512014-09-05 15:51:32 +02001395 .policy = br_policy,
Jiri Pirkoced82832014-09-05 15:51:29 +02001396 .validate = br_validate,
1397 .newlink = br_dev_newlink,
Jiri Pirko13323512014-09-05 15:51:32 +02001398 .changelink = br_changelink,
Jiri Pirkoced82832014-09-05 15:51:29 +02001399 .dellink = br_dev_delete,
Jiri Pirkoe5c3ea52014-09-05 15:51:31 +02001400 .get_size = br_get_size,
1401 .fill_info = br_fill_info,
Nikolay Aleksandrova60c0902016-04-30 10:25:29 +02001402 .fill_linkxstats = br_fill_linkxstats,
1403 .get_linkxstats_size = br_get_linkxstats_size,
Jiri Pirko3ac636b2014-09-05 15:51:30 +02001404
1405 .slave_maxtype = IFLA_BRPORT_MAX,
1406 .slave_policy = br_port_policy,
1407 .slave_changelink = br_port_slave_changelink,
Jiri Pirkoced82832014-09-05 15:51:29 +02001408 .get_slave_size = br_port_get_slave_size,
1409 .fill_slave_info = br_port_fill_slave_info,
stephen hemmingerbb900b22011-04-04 14:03:32 +00001410};
1411
1412int __init br_netlink_init(void)
Stephen Hemminger11dc1f32006-05-25 16:00:12 -07001413{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001414 int err;
1415
1416 br_mdb_init();
stephen hemminger3678a9d2013-12-30 10:41:32 -08001417 rtnl_af_register(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001418
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001419 err = rtnl_link_register(&br_link_ops);
1420 if (err)
1421 goto out_af;
1422
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001423 return 0;
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001424
1425out_af:
1426 rtnl_af_unregister(&br_af_ops);
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001427 br_mdb_uninit();
1428 return err;
Stephen Hemminger11dc1f32006-05-25 16:00:12 -07001429}
1430
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001431void br_netlink_fini(void)
stephen hemmingerbb900b22011-04-04 14:03:32 +00001432{
Vlad Yasevich3ec8e9f2013-01-02 09:41:25 +00001433 br_mdb_uninit();
Vlad Yasevich6cbdcee2013-02-13 12:00:13 +00001434 rtnl_af_unregister(&br_af_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +00001435 rtnl_link_unregister(&br_link_ops);
stephen hemmingerbb900b22011-04-04 14:03:32 +00001436}