blob: 2db800fc27ca96844cfbdc8ccac6cbc0b5316cb4 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Ioctl handler
4 * Linux ethernet bridge
5 *
6 * Authors:
7 * Lennert Buytenhek <buytenh@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Randy Dunlap4fc268d2006-01-11 12:17:47 -080010#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/if_bridge.h>
13#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/times.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070016#include <net/net_namespace.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080017#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "br_private.h"
19
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -070020static int get_bridge_ifindices(struct net *net, int *indices, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
22 struct net_device *dev;
23 int i = 0;
24
Nikolay Aleksandrov31ca0452016-05-04 16:18:45 +020025 rcu_read_lock();
26 for_each_netdev_rcu(net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -070027 if (i >= num)
28 break;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090029 if (dev->priv_flags & IFF_EBRIDGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 indices[i++] = dev->ifindex;
31 }
Nikolay Aleksandrov31ca0452016-05-04 16:18:45 +020032 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 return i;
35}
36
37/* called with RTNL */
38static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
39{
40 struct net_bridge_port *p;
41
42 list_for_each_entry(p, &br->port_list, list) {
43 if (p->port_no < num)
44 ifindices[p->port_no] = p->dev->ifindex;
45 }
46}
47
48/*
49 * Format up to a page worth of forwarding table entries
50 * userbuf -- where to copy result
51 * maxnum -- maximum number of entries desired
52 * (limited to a page for sanity)
53 * offset -- number of records to skip
54 */
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090055static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 unsigned long maxnum, unsigned long offset)
57{
58 int num;
59 void *buf;
Chris Wrightba8379b22006-11-20 15:02:49 -080060 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Chris Wrightba8379b22006-11-20 15:02:49 -080062 /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
63 if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
Chris Wrightba8379b22006-11-20 15:02:49 -080065
66 size = maxnum * sizeof(struct __fdb_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 buf = kmalloc(size, GFP_USER);
69 if (!buf)
70 return -ENOMEM;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 num = br_fdb_fillbuf(br, buf, maxnum, offset);
73 if (num > 0) {
74 if (copy_to_user(userbuf, buf, num*sizeof(struct __fdb_entry)))
75 num = -EFAULT;
76 }
77 kfree(buf);
78
79 return num;
80}
81
Eric Dumazet31ef30c2009-11-05 20:47:35 -080082/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
84{
Eric W. Biedermancb990502012-11-16 03:03:08 +000085 struct net *net = dev_net(br->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct net_device *dev;
87 int ret;
88
Eric W. Biedermancb990502012-11-16 03:03:08 +000089 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return -EPERM;
91
Eric W. Biedermancb990502012-11-16 03:03:08 +000092 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if (dev == NULL)
94 return -EINVAL;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (isadd)
David Ahernca752be2017-10-04 17:48:50 -070097 ret = br_add_if(br, dev, NULL);
David S. Millereccaa9e2017-09-20 15:39:59 -070098 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 ret = br_del_if(br, dev);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return ret;
102}
103
104/*
105 * Legacy ioctl's through SIOCDEVPRIVATE
Randy Dunlap4bbd0262020-09-17 21:35:21 -0700106 * This interface is deprecated because it was too difficult
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300107 * to do the translation for 32/64bit ioctl compatibility.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
109static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
110{
111 struct net_bridge *br = netdev_priv(dev);
Xin Longbf871ad2016-04-09 00:03:33 +0800112 struct net_bridge_port *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned long args[4];
Xin Longbf871ad2016-04-09 00:03:33 +0800114 int ret = -EOPNOTSUPP;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (copy_from_user(args, rq->ifr_data, sizeof(args)))
117 return -EFAULT;
118
119 switch (args[0]) {
120 case BRCTL_ADD_IF:
121 case BRCTL_DEL_IF:
122 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
123
124 case BRCTL_GET_BRIDGE_INFO:
125 {
126 struct __bridge_info b;
127
128 memset(&b, 0, sizeof(struct __bridge_info));
129 rcu_read_lock();
130 memcpy(&b.designated_root, &br->designated_root, 8);
131 memcpy(&b.bridge_id, &br->bridge_id, 8);
132 b.root_path_cost = br->root_path_cost;
133 b.max_age = jiffies_to_clock_t(br->max_age);
134 b.hello_time = jiffies_to_clock_t(br->hello_time);
135 b.forward_delay = br->forward_delay;
136 b.bridge_max_age = br->bridge_max_age;
137 b.bridge_hello_time = br->bridge_hello_time;
138 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
139 b.topology_change = br->topology_change;
140 b.topology_change_detected = br->topology_change_detected;
141 b.root_port = br->root_port;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700142
143 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
145 b.hello_timer_value = br_timer_value(&br->hello_timer);
146 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
147 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100148 b.gc_timer_value = br_timer_value(&br->gc_work.timer);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900149 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
152 return -EFAULT;
153
154 return 0;
155 }
156
157 case BRCTL_GET_PORT_LIST:
158 {
159 int num, *indices;
160
161 num = args[2];
162 if (num < 0)
163 return -EINVAL;
164 if (num == 0)
165 num = 256;
166 if (num > BR_MAX_PORTS)
167 num = BR_MAX_PORTS;
168
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700169 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (indices == NULL)
171 return -ENOMEM;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 get_port_ifindices(br, indices, num);
174 if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
175 num = -EFAULT;
176 kfree(indices);
177 return num;
178 }
179
180 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000181 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return -EPERM;
183
Xin Longbf871ad2016-04-09 00:03:33 +0800184 ret = br_set_forward_delay(br, args[1]);
185 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 case BRCTL_SET_BRIDGE_HELLO_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000188 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return -EPERM;
190
Xin Longbf871ad2016-04-09 00:03:33 +0800191 ret = br_set_hello_time(br, args[1]);
192 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 case BRCTL_SET_BRIDGE_MAX_AGE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000195 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -EPERM;
197
Xin Longbf871ad2016-04-09 00:03:33 +0800198 ret = br_set_max_age(br, args[1]);
199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 case BRCTL_SET_AGEING_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000202 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return -EPERM;
204
Xin Longbf871ad2016-04-09 00:03:33 +0800205 ret = br_set_ageing_time(br, args[1]);
206 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 case BRCTL_GET_PORT_INFO:
209 {
210 struct __port_info p;
211 struct net_bridge_port *pt;
212
213 rcu_read_lock();
214 if ((pt = br_get_port(br, args[2])) == NULL) {
215 rcu_read_unlock();
216 return -EINVAL;
217 }
218
219 memset(&p, 0, sizeof(struct __port_info));
220 memcpy(&p.designated_root, &pt->designated_root, 8);
221 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
222 p.port_id = pt->port_id;
223 p.designated_port = pt->designated_port;
224 p.path_cost = pt->path_cost;
225 p.designated_cost = pt->designated_cost;
226 p.state = pt->state;
227 p.top_change_ack = pt->topology_change_ack;
228 p.config_pending = pt->config_pending;
229 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
230 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
231 p.hold_timer_value = br_timer_value(&pt->hold_timer);
232
233 rcu_read_unlock();
234
235 if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
236 return -EFAULT;
237
238 return 0;
239 }
240
241 case BRCTL_SET_BRIDGE_STP_STATE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000242 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return -EPERM;
244
Horatiu Vultur419dba8a2020-04-26 15:22:08 +0200245 ret = br_stp_set_enabled(br, args[1], NULL);
Xin Longbf871ad2016-04-09 00:03:33 +0800246 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 case BRCTL_SET_BRIDGE_PRIORITY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000249 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return -EPERM;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 br_stp_set_bridge_priority(br, args[1]);
Xin Longbf871ad2016-04-09 00:03:33 +0800253 ret = 0;
254 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 case BRCTL_SET_PORT_PRIORITY:
257 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000258 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -EPERM;
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spin_lock_bh(&br->lock);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900262 if ((p = br_get_port(br, args[1])) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 ret = -EINVAL;
264 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000265 ret = br_stp_set_port_priority(p, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800267 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
270 case BRCTL_SET_PATH_COST:
271 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000272 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return -EPERM;
274
stephen hemminger14f98f22011-04-04 14:03:33 +0000275 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if ((p = br_get_port(br, args[1])) == NULL)
277 ret = -EINVAL;
278 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000279 ret = br_stp_set_path_cost(p, args[2]);
280 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800281 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
284 case BRCTL_GET_FDB_ENTRIES:
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900285 return get_fdb_entries(br, (void __user *)args[1],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 args[2], args[3]);
287 }
288
Xin Longbf871ad2016-04-09 00:03:33 +0800289 if (!ret) {
290 if (p)
Nikolay Aleksandrov92899062017-11-01 12:18:13 +0200291 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
Xin Longbf871ad2016-04-09 00:03:33 +0800292 else
293 netdev_state_change(br->dev);
294 }
295
296 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700299static int old_deviceless(struct net *net, void __user *uarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 unsigned long args[3];
302
303 if (copy_from_user(args, uarg, sizeof(args)))
304 return -EFAULT;
305
306 switch (args[0]) {
307 case BRCTL_GET_VERSION:
308 return BRCTL_VERSION;
309
310 case BRCTL_GET_BRIDGES:
311 {
312 int *indices;
313 int ret = 0;
314
315 if (args[2] >= 2048)
316 return -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700317 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (indices == NULL)
319 return -ENOMEM;
320
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700321 args[2] = get_bridge_ifindices(net, indices, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
324 ? -EFAULT : args[2];
325
326 kfree(indices);
327 return ret;
328 }
329
330 case BRCTL_ADD_BRIDGE:
331 case BRCTL_DEL_BRIDGE:
332 {
333 char buf[IFNAMSIZ];
334
Eric W. Biedermancb990502012-11-16 03:03:08 +0000335 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return -EPERM;
337
338 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
339 return -EFAULT;
340
341 buf[IFNAMSIZ-1] = 0;
342
343 if (args[0] == BRCTL_ADD_BRIDGE)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700344 return br_add_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700346 return br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348 }
349
350 return -EOPNOTSUPP;
351}
352
Eric W. Biederman881d9662007-09-17 11:56:21 -0700353int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, void __user *uarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 switch (cmd) {
356 case SIOCGIFBR:
357 case SIOCSIFBR:
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700358 return old_deviceless(net, uarg);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 case SIOCBRADDBR:
361 case SIOCBRDELBR:
362 {
363 char buf[IFNAMSIZ];
364
Eric W. Biedermancb990502012-11-16 03:03:08 +0000365 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return -EPERM;
367
368 if (copy_from_user(buf, uarg, IFNAMSIZ))
369 return -EFAULT;
370
371 buf[IFNAMSIZ-1] = 0;
372 if (cmd == SIOCBRADDBR)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700373 return br_add_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700375 return br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 }
378 return -EOPNOTSUPP;
379}
380
381int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
382{
383 struct net_bridge *br = netdev_priv(dev);
384
tanxiaojun31a5b832013-12-19 13:28:12 +0800385 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 case SIOCDEVPRIVATE:
387 return old_dev_ioctl(dev, rq, cmd);
388
389 case SIOCBRADDIF:
390 case SIOCBRDELIF:
391 return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
392
393 }
394
stephen hemminger28a16c92010-05-10 09:31:09 +0000395 br_debug(br, "Bridge does not support ioctl 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return -EOPNOTSUPP;
397}