blob: d99b2009771a61df50d185b4e1d46ce6a3c40f94 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Ioctl handler
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
Randy Dunlap4fc268d2006-01-11 12:17:47 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/if_bridge.h>
17#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/times.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070020#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/uaccess.h>
22#include "br_private.h"
23
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -070024static int get_bridge_ifindices(struct net *net, int *indices, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
26 struct net_device *dev;
27 int i = 0;
28
Nikolay Aleksandrov31ca0452016-05-04 16:18:45 +020029 rcu_read_lock();
30 for_each_netdev_rcu(net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -070031 if (i >= num)
32 break;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090033 if (dev->priv_flags & IFF_EBRIDGE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 indices[i++] = dev->ifindex;
35 }
Nikolay Aleksandrov31ca0452016-05-04 16:18:45 +020036 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38 return i;
39}
40
41/* called with RTNL */
42static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
43{
44 struct net_bridge_port *p;
45
46 list_for_each_entry(p, &br->port_list, list) {
47 if (p->port_no < num)
48 ifindices[p->port_no] = p->dev->ifindex;
49 }
50}
51
52/*
53 * Format up to a page worth of forwarding table entries
54 * userbuf -- where to copy result
55 * maxnum -- maximum number of entries desired
56 * (limited to a page for sanity)
57 * offset -- number of records to skip
58 */
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090059static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 unsigned long maxnum, unsigned long offset)
61{
62 int num;
63 void *buf;
Chris Wrightba8379b22006-11-20 15:02:49 -080064 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Chris Wrightba8379b22006-11-20 15:02:49 -080066 /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
67 if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
Chris Wrightba8379b22006-11-20 15:02:49 -080069
70 size = maxnum * sizeof(struct __fdb_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 buf = kmalloc(size, GFP_USER);
73 if (!buf)
74 return -ENOMEM;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 num = br_fdb_fillbuf(br, buf, maxnum, offset);
77 if (num > 0) {
78 if (copy_to_user(userbuf, buf, num*sizeof(struct __fdb_entry)))
79 num = -EFAULT;
80 }
81 kfree(buf);
82
83 return num;
84}
85
Eric Dumazet31ef30c2009-11-05 20:47:35 -080086/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
88{
Eric W. Biedermancb990502012-11-16 03:03:08 +000089 struct net *net = dev_net(br->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct net_device *dev;
91 int ret;
92
Eric W. Biedermancb990502012-11-16 03:03:08 +000093 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return -EPERM;
95
Eric W. Biedermancb990502012-11-16 03:03:08 +000096 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (dev == NULL)
98 return -EINVAL;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (isadd)
101 ret = br_add_if(br, dev);
102 else
103 ret = br_del_if(br, dev);
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return ret;
106}
107
108/*
109 * Legacy ioctl's through SIOCDEVPRIVATE
110 * This interface is deprecated because it was too difficult to
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300111 * to do the translation for 32/64bit ioctl compatibility.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
113static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
114{
115 struct net_bridge *br = netdev_priv(dev);
Xin Longbf871ad2016-04-09 00:03:33 +0800116 struct net_bridge_port *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unsigned long args[4];
Xin Longbf871ad2016-04-09 00:03:33 +0800118 int ret = -EOPNOTSUPP;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (copy_from_user(args, rq->ifr_data, sizeof(args)))
121 return -EFAULT;
122
123 switch (args[0]) {
124 case BRCTL_ADD_IF:
125 case BRCTL_DEL_IF:
126 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
127
128 case BRCTL_GET_BRIDGE_INFO:
129 {
130 struct __bridge_info b;
131
132 memset(&b, 0, sizeof(struct __bridge_info));
133 rcu_read_lock();
134 memcpy(&b.designated_root, &br->designated_root, 8);
135 memcpy(&b.bridge_id, &br->bridge_id, 8);
136 b.root_path_cost = br->root_path_cost;
137 b.max_age = jiffies_to_clock_t(br->max_age);
138 b.hello_time = jiffies_to_clock_t(br->hello_time);
139 b.forward_delay = br->forward_delay;
140 b.bridge_max_age = br->bridge_max_age;
141 b.bridge_hello_time = br->bridge_hello_time;
142 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
143 b.topology_change = br->topology_change;
144 b.topology_change_detected = br->topology_change_detected;
145 b.root_port = br->root_port;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700146
147 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
149 b.hello_timer_value = br_timer_value(&br->hello_timer);
150 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
151 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
152 b.gc_timer_value = br_timer_value(&br->gc_timer);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900153 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
156 return -EFAULT;
157
158 return 0;
159 }
160
161 case BRCTL_GET_PORT_LIST:
162 {
163 int num, *indices;
164
165 num = args[2];
166 if (num < 0)
167 return -EINVAL;
168 if (num == 0)
169 num = 256;
170 if (num > BR_MAX_PORTS)
171 num = BR_MAX_PORTS;
172
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700173 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (indices == NULL)
175 return -ENOMEM;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 get_port_ifindices(br, indices, num);
178 if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
179 num = -EFAULT;
180 kfree(indices);
181 return num;
182 }
183
184 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000185 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return -EPERM;
187
Xin Longbf871ad2016-04-09 00:03:33 +0800188 ret = br_set_forward_delay(br, args[1]);
189 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 case BRCTL_SET_BRIDGE_HELLO_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000192 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EPERM;
194
Xin Longbf871ad2016-04-09 00:03:33 +0800195 ret = br_set_hello_time(br, args[1]);
196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 case BRCTL_SET_BRIDGE_MAX_AGE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000199 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -EPERM;
201
Xin Longbf871ad2016-04-09 00:03:33 +0800202 ret = br_set_max_age(br, args[1]);
203 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 case BRCTL_SET_AGEING_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000206 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return -EPERM;
208
Xin Longbf871ad2016-04-09 00:03:33 +0800209 ret = br_set_ageing_time(br, args[1]);
210 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 case BRCTL_GET_PORT_INFO:
213 {
214 struct __port_info p;
215 struct net_bridge_port *pt;
216
217 rcu_read_lock();
218 if ((pt = br_get_port(br, args[2])) == NULL) {
219 rcu_read_unlock();
220 return -EINVAL;
221 }
222
223 memset(&p, 0, sizeof(struct __port_info));
224 memcpy(&p.designated_root, &pt->designated_root, 8);
225 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
226 p.port_id = pt->port_id;
227 p.designated_port = pt->designated_port;
228 p.path_cost = pt->path_cost;
229 p.designated_cost = pt->designated_cost;
230 p.state = pt->state;
231 p.top_change_ack = pt->topology_change_ack;
232 p.config_pending = pt->config_pending;
233 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
234 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
235 p.hold_timer_value = br_timer_value(&pt->hold_timer);
236
237 rcu_read_unlock();
238
239 if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
240 return -EFAULT;
241
242 return 0;
243 }
244
245 case BRCTL_SET_BRIDGE_STP_STATE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000246 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -EPERM;
248
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700249 br_stp_set_enabled(br, args[1]);
Xin Longbf871ad2016-04-09 00:03:33 +0800250 ret = 0;
251 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 case BRCTL_SET_BRIDGE_PRIORITY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000254 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return -EPERM;
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 br_stp_set_bridge_priority(br, args[1]);
Xin Longbf871ad2016-04-09 00:03:33 +0800258 ret = 0;
259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 case BRCTL_SET_PORT_PRIORITY:
262 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000263 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return -EPERM;
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 spin_lock_bh(&br->lock);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900267 if ((p = br_get_port(br, args[1])) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 ret = -EINVAL;
269 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000270 ret = br_stp_set_port_priority(p, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800272 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274
275 case BRCTL_SET_PATH_COST:
276 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000277 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return -EPERM;
279
stephen hemminger14f98f22011-04-04 14:03:33 +0000280 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if ((p = br_get_port(br, args[1])) == NULL)
282 ret = -EINVAL;
283 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000284 ret = br_stp_set_path_cost(p, args[2]);
285 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800286 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288
289 case BRCTL_GET_FDB_ENTRIES:
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900290 return get_fdb_entries(br, (void __user *)args[1],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 args[2], args[3]);
292 }
293
Xin Longbf871ad2016-04-09 00:03:33 +0800294 if (!ret) {
295 if (p)
296 br_ifinfo_notify(RTM_NEWLINK, p);
297 else
298 netdev_state_change(br->dev);
299 }
300
301 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700304static int old_deviceless(struct net *net, void __user *uarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 unsigned long args[3];
307
308 if (copy_from_user(args, uarg, sizeof(args)))
309 return -EFAULT;
310
311 switch (args[0]) {
312 case BRCTL_GET_VERSION:
313 return BRCTL_VERSION;
314
315 case BRCTL_GET_BRIDGES:
316 {
317 int *indices;
318 int ret = 0;
319
320 if (args[2] >= 2048)
321 return -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700322 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (indices == NULL)
324 return -ENOMEM;
325
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700326 args[2] = get_bridge_ifindices(net, indices, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
329 ? -EFAULT : args[2];
330
331 kfree(indices);
332 return ret;
333 }
334
335 case BRCTL_ADD_BRIDGE:
336 case BRCTL_DEL_BRIDGE:
337 {
338 char buf[IFNAMSIZ];
339
Eric W. Biedermancb990502012-11-16 03:03:08 +0000340 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return -EPERM;
342
343 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
344 return -EFAULT;
345
346 buf[IFNAMSIZ-1] = 0;
347
348 if (args[0] == BRCTL_ADD_BRIDGE)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700349 return br_add_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700351 return br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353 }
354
355 return -EOPNOTSUPP;
356}
357
Eric W. Biederman881d9662007-09-17 11:56:21 -0700358int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, void __user *uarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 switch (cmd) {
361 case SIOCGIFBR:
362 case SIOCSIFBR:
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700363 return old_deviceless(net, uarg);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 case SIOCBRADDBR:
366 case SIOCBRDELBR:
367 {
368 char buf[IFNAMSIZ];
369
Eric W. Biedermancb990502012-11-16 03:03:08 +0000370 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return -EPERM;
372
373 if (copy_from_user(buf, uarg, IFNAMSIZ))
374 return -EFAULT;
375
376 buf[IFNAMSIZ-1] = 0;
377 if (cmd == SIOCBRADDBR)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700378 return br_add_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700380 return br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382 }
383 return -EOPNOTSUPP;
384}
385
386int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
387{
388 struct net_bridge *br = netdev_priv(dev);
389
tanxiaojun31a5b832013-12-19 13:28:12 +0800390 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 case SIOCDEVPRIVATE:
392 return old_dev_ioctl(dev, rq, cmd);
393
394 case SIOCBRADDIF:
395 case SIOCBRDELIF:
396 return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
397
398 }
399
stephen hemminger28a16c92010-05-10 09:31:09 +0000400 br_debug(br, "Bridge does not support ioctl 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return -EOPNOTSUPP;
402}