blob: 2f848de3e75505e9b73e0667f53f1750737d110b [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 */
Arnd Bergmann561d8352021-07-27 15:44:51 +0200109int br_dev_siocdevprivate(struct net_device *dev, struct ifreq *rq, void __user *data, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
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];
Arnd Bergmann561d8352021-07-27 15:44:51 +0200114 void __user *argp;
Xin Longbf871ad2016-04-09 00:03:33 +0800115 int ret = -EOPNOTSUPP;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900116
Arnd Bergmann561d8352021-07-27 15:44:51 +0200117 if (in_compat_syscall()) {
118 unsigned int cargs[4];
119
120 if (copy_from_user(cargs, data, sizeof(cargs)))
121 return -EFAULT;
122
123 args[0] = cargs[0];
124 args[1] = cargs[1];
125 args[2] = cargs[2];
126 args[3] = cargs[3];
127
128 argp = compat_ptr(args[1]);
129 } else {
130 if (copy_from_user(args, data, sizeof(args)))
131 return -EFAULT;
132
133 argp = (void __user *)args[1];
134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 switch (args[0]) {
137 case BRCTL_ADD_IF:
138 case BRCTL_DEL_IF:
139 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
140
141 case BRCTL_GET_BRIDGE_INFO:
142 {
143 struct __bridge_info b;
144
145 memset(&b, 0, sizeof(struct __bridge_info));
146 rcu_read_lock();
147 memcpy(&b.designated_root, &br->designated_root, 8);
148 memcpy(&b.bridge_id, &br->bridge_id, 8);
149 b.root_path_cost = br->root_path_cost;
150 b.max_age = jiffies_to_clock_t(br->max_age);
151 b.hello_time = jiffies_to_clock_t(br->hello_time);
152 b.forward_delay = br->forward_delay;
153 b.bridge_max_age = br->bridge_max_age;
154 b.bridge_hello_time = br->bridge_hello_time;
155 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
156 b.topology_change = br->topology_change;
157 b.topology_change_detected = br->topology_change_detected;
158 b.root_port = br->root_port;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700159
160 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
162 b.hello_timer_value = br_timer_value(&br->hello_timer);
163 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
164 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100165 b.gc_timer_value = br_timer_value(&br->gc_work.timer);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900166 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
169 return -EFAULT;
170
171 return 0;
172 }
173
174 case BRCTL_GET_PORT_LIST:
175 {
176 int num, *indices;
177
178 num = args[2];
179 if (num < 0)
180 return -EINVAL;
181 if (num == 0)
182 num = 256;
183 if (num > BR_MAX_PORTS)
184 num = BR_MAX_PORTS;
185
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700186 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (indices == NULL)
188 return -ENOMEM;
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 get_port_ifindices(br, indices, num);
Arnd Bergmann561d8352021-07-27 15:44:51 +0200191 if (copy_to_user(argp, indices, num * sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 num = -EFAULT;
193 kfree(indices);
194 return num;
195 }
196
197 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000198 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return -EPERM;
200
Xin Longbf871ad2016-04-09 00:03:33 +0800201 ret = br_set_forward_delay(br, args[1]);
202 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 case BRCTL_SET_BRIDGE_HELLO_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000205 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return -EPERM;
207
Xin Longbf871ad2016-04-09 00:03:33 +0800208 ret = br_set_hello_time(br, args[1]);
209 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 case BRCTL_SET_BRIDGE_MAX_AGE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000212 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -EPERM;
214
Xin Longbf871ad2016-04-09 00:03:33 +0800215 ret = br_set_max_age(br, args[1]);
216 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 case BRCTL_SET_AGEING_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000219 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -EPERM;
221
Xin Longbf871ad2016-04-09 00:03:33 +0800222 ret = br_set_ageing_time(br, args[1]);
223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 case BRCTL_GET_PORT_INFO:
226 {
227 struct __port_info p;
228 struct net_bridge_port *pt;
229
230 rcu_read_lock();
231 if ((pt = br_get_port(br, args[2])) == NULL) {
232 rcu_read_unlock();
233 return -EINVAL;
234 }
235
236 memset(&p, 0, sizeof(struct __port_info));
237 memcpy(&p.designated_root, &pt->designated_root, 8);
238 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
239 p.port_id = pt->port_id;
240 p.designated_port = pt->designated_port;
241 p.path_cost = pt->path_cost;
242 p.designated_cost = pt->designated_cost;
243 p.state = pt->state;
244 p.top_change_ack = pt->topology_change_ack;
245 p.config_pending = pt->config_pending;
246 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
247 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
248 p.hold_timer_value = br_timer_value(&pt->hold_timer);
249
250 rcu_read_unlock();
251
Arnd Bergmann561d8352021-07-27 15:44:51 +0200252 if (copy_to_user(argp, &p, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return -EFAULT;
254
255 return 0;
256 }
257
258 case BRCTL_SET_BRIDGE_STP_STATE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000259 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return -EPERM;
261
Horatiu Vultur419dba8a2020-04-26 15:22:08 +0200262 ret = br_stp_set_enabled(br, args[1], NULL);
Xin Longbf871ad2016-04-09 00:03:33 +0800263 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 case BRCTL_SET_BRIDGE_PRIORITY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000266 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -EPERM;
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 br_stp_set_bridge_priority(br, args[1]);
Xin Longbf871ad2016-04-09 00:03:33 +0800270 ret = 0;
271 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 case BRCTL_SET_PORT_PRIORITY:
274 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000275 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return -EPERM;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 spin_lock_bh(&br->lock);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900279 if ((p = br_get_port(br, args[1])) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 ret = -EINVAL;
281 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000282 ret = br_stp_set_port_priority(p, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
287 case BRCTL_SET_PATH_COST:
288 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000289 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return -EPERM;
291
stephen hemminger14f98f22011-04-04 14:03:33 +0000292 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if ((p = br_get_port(br, args[1])) == NULL)
294 ret = -EINVAL;
295 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000296 ret = br_stp_set_path_cost(p, args[2]);
297 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800298 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300
301 case BRCTL_GET_FDB_ENTRIES:
Arnd Bergmann561d8352021-07-27 15:44:51 +0200302 return get_fdb_entries(br, argp, args[2], args[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
Xin Longbf871ad2016-04-09 00:03:33 +0800305 if (!ret) {
306 if (p)
Nikolay Aleksandrov92899062017-11-01 12:18:13 +0200307 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
Xin Longbf871ad2016-04-09 00:03:33 +0800308 else
309 netdev_state_change(br->dev);
310 }
311
312 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700315static int old_deviceless(struct net *net, void __user *uarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 unsigned long args[3];
318
319 if (copy_from_user(args, uarg, sizeof(args)))
320 return -EFAULT;
321
322 switch (args[0]) {
323 case BRCTL_GET_VERSION:
324 return BRCTL_VERSION;
325
326 case BRCTL_GET_BRIDGES:
327 {
328 int *indices;
329 int ret = 0;
330
331 if (args[2] >= 2048)
332 return -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700333 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (indices == NULL)
335 return -ENOMEM;
336
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700337 args[2] = get_bridge_ifindices(net, indices, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Arnd Bergmann561d8352021-07-27 15:44:51 +0200339 ret = copy_to_user(uarg, indices, args[2]*sizeof(int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 ? -EFAULT : args[2];
341
342 kfree(indices);
343 return ret;
344 }
345
346 case BRCTL_ADD_BRIDGE:
347 case BRCTL_DEL_BRIDGE:
348 {
349 char buf[IFNAMSIZ];
350
Eric W. Biedermancb990502012-11-16 03:03:08 +0000351 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return -EPERM;
353
Arnd Bergmann561d8352021-07-27 15:44:51 +0200354 if (copy_from_user(buf, uarg, IFNAMSIZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return -EFAULT;
356
357 buf[IFNAMSIZ-1] = 0;
358
359 if (args[0] == BRCTL_ADD_BRIDGE)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700360 return br_add_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700362 return br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364 }
365
366 return -EOPNOTSUPP;
367}
368
Arnd Bergmannad2f99a2021-07-27 15:45:16 +0200369int br_ioctl_stub(struct net *net, struct net_bridge *br, unsigned int cmd,
370 struct ifreq *ifr, void __user *uarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300372 int ret = -EOPNOTSUPP;
373
374 rtnl_lock();
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 switch (cmd) {
377 case SIOCGIFBR:
378 case SIOCSIFBR:
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300379 ret = old_deviceless(net, uarg);
380 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 case SIOCBRADDBR:
382 case SIOCBRDELBR:
383 {
384 char buf[IFNAMSIZ];
385
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300386 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) {
387 ret = -EPERM;
388 break;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300391 if (copy_from_user(buf, uarg, IFNAMSIZ)) {
392 ret = -EFAULT;
393 break;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 buf[IFNAMSIZ-1] = 0;
397 if (cmd == SIOCBRADDBR)
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300398 ret = br_add_bridge(net, buf);
399 else
400 ret = br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300402 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 case SIOCBRADDIF:
404 case SIOCBRDELIF:
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300405 ret = add_del_if(br, ifr->ifr_ifindex, cmd == SIOCBRADDIF);
406 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300408
409 rtnl_unlock();
410
411 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}