1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Linux ethernet bridge
7 * Lennert Buytenhek <buytenh@gnu.org>
10 #include <linux/capability.h>
11 #include <linux/compat.h>
12 #include <linux/kernel.h>
13 #include <linux/if_bridge.h>
14 #include <linux/netdevice.h>
15 #include <linux/slab.h>
16 #include <linux/times.h>
17 #include <net/net_namespace.h>
18 #include <linux/uaccess.h>
19 #include "br_private.h"
21 static int get_bridge_ifindices(struct net *net, int *indices, int num)
23 struct net_device *dev;
27 for_each_netdev_rcu(net, dev) {
30 if (netif_is_bridge_master(dev))
31 indices[i++] = dev->ifindex;
38 /* called with RTNL */
39 static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
41 struct net_bridge_port *p;
43 list_for_each_entry(p, &br->port_list, list) {
45 ifindices[p->port_no] = p->dev->ifindex;
50 * Format up to a page worth of forwarding table entries
51 * userbuf -- where to copy result
52 * maxnum -- maximum number of entries desired
53 * (limited to a page for sanity)
54 * offset -- number of records to skip
56 static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
57 unsigned long maxnum, unsigned long offset)
63 /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
64 if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
65 maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
67 size = maxnum * sizeof(struct __fdb_entry);
69 buf = kmalloc(size, GFP_USER);
73 num = br_fdb_fillbuf(br, buf, maxnum, offset);
75 if (copy_to_user(userbuf, buf,
76 array_size(num, sizeof(struct __fdb_entry))))
84 /* called with RTNL */
85 static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
87 struct net *net = dev_net(br->dev);
88 struct net_device *dev;
91 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
94 dev = __dev_get_by_index(net, ifindex);
99 ret = br_add_if(br, dev, NULL);
101 ret = br_del_if(br, dev);
106 #define BR_UARGS_MAX 4
107 static int br_dev_read_uargs(unsigned long *args, size_t nr_args,
108 void __user **argp, void __user *data)
112 if (nr_args < 2 || nr_args > BR_UARGS_MAX)
115 if (in_compat_syscall()) {
116 unsigned int cargs[BR_UARGS_MAX];
119 ret = copy_from_user(cargs, data, nr_args * sizeof(*cargs));
123 for (i = 0; i < nr_args; ++i)
126 *argp = compat_ptr(args[1]);
128 ret = copy_from_user(args, data, nr_args * sizeof(*args));
131 *argp = (void __user *)args[1];
140 * Legacy ioctl's through SIOCDEVPRIVATE
141 * This interface is deprecated because it was too difficult
142 * to do the translation for 32/64bit ioctl compatibility.
144 int br_dev_siocdevprivate(struct net_device *dev, struct ifreq *rq,
145 void __user *data, int cmd)
147 struct net_bridge *br = netdev_priv(dev);
148 struct net_bridge_port *p = NULL;
149 unsigned long args[4];
153 ret = br_dev_read_uargs(args, ARRAY_SIZE(args), &argp, data);
160 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
162 case BRCTL_GET_BRIDGE_INFO:
164 struct __bridge_info b;
166 memset(&b, 0, sizeof(struct __bridge_info));
168 memcpy(&b.designated_root, &br->designated_root, 8);
169 memcpy(&b.bridge_id, &br->bridge_id, 8);
170 b.root_path_cost = br->root_path_cost;
171 b.max_age = jiffies_to_clock_t(br->max_age);
172 b.hello_time = jiffies_to_clock_t(br->hello_time);
173 b.forward_delay = br->forward_delay;
174 b.bridge_max_age = br->bridge_max_age;
175 b.bridge_hello_time = br->bridge_hello_time;
176 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
177 b.topology_change = br->topology_change;
178 b.topology_change_detected = br->topology_change_detected;
179 b.root_port = br->root_port;
181 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
182 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
183 b.hello_timer_value = br_timer_value(&br->hello_timer);
184 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
185 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
186 b.gc_timer_value = br_timer_value(&br->gc_work.timer);
189 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
195 case BRCTL_GET_PORT_LIST:
204 if (num > BR_MAX_PORTS)
207 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
211 get_port_ifindices(br, indices, num);
212 if (copy_to_user(argp, indices, array_size(num, sizeof(int))))
218 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
219 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
222 ret = br_set_forward_delay(br, args[1]);
225 case BRCTL_SET_BRIDGE_HELLO_TIME:
226 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
229 ret = br_set_hello_time(br, args[1]);
232 case BRCTL_SET_BRIDGE_MAX_AGE:
233 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
236 ret = br_set_max_age(br, args[1]);
239 case BRCTL_SET_AGEING_TIME:
240 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
243 ret = br_set_ageing_time(br, args[1]);
246 case BRCTL_GET_PORT_INFO:
248 struct __port_info p;
249 struct net_bridge_port *pt;
252 if ((pt = br_get_port(br, args[2])) == NULL) {
257 memset(&p, 0, sizeof(struct __port_info));
258 memcpy(&p.designated_root, &pt->designated_root, 8);
259 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
260 p.port_id = pt->port_id;
261 p.designated_port = pt->designated_port;
262 p.path_cost = pt->path_cost;
263 p.designated_cost = pt->designated_cost;
265 p.top_change_ack = pt->topology_change_ack;
266 p.config_pending = pt->config_pending;
267 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
268 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
269 p.hold_timer_value = br_timer_value(&pt->hold_timer);
273 if (copy_to_user(argp, &p, sizeof(p)))
279 case BRCTL_SET_BRIDGE_STP_STATE:
280 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
283 ret = br_stp_set_enabled(br, args[1], NULL);
286 case BRCTL_SET_BRIDGE_PRIORITY:
287 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
290 br_stp_set_bridge_priority(br, args[1]);
294 case BRCTL_SET_PORT_PRIORITY:
296 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
299 spin_lock_bh(&br->lock);
300 if ((p = br_get_port(br, args[1])) == NULL)
303 ret = br_stp_set_port_priority(p, args[2]);
304 spin_unlock_bh(&br->lock);
308 case BRCTL_SET_PATH_COST:
310 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
313 spin_lock_bh(&br->lock);
314 if ((p = br_get_port(br, args[1])) == NULL)
317 ret = br_stp_set_path_cost(p, args[2]);
318 spin_unlock_bh(&br->lock);
322 case BRCTL_GET_FDB_ENTRIES:
323 return get_fdb_entries(br, argp, args[2], args[3]);
331 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
333 netdev_state_change(br->dev);
339 static int old_deviceless(struct net *net, void __user *data)
341 unsigned long args[3];
345 ret = br_dev_read_uargs(args, ARRAY_SIZE(args), &argp, data);
350 case BRCTL_GET_VERSION:
351 return BRCTL_VERSION;
353 case BRCTL_GET_BRIDGES:
360 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
364 args[2] = get_bridge_ifindices(net, indices, args[2]);
366 ret = copy_to_user(argp, indices,
367 array_size(args[2], sizeof(int)))
374 case BRCTL_ADD_BRIDGE:
375 case BRCTL_DEL_BRIDGE:
379 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
382 if (copy_from_user(buf, argp, IFNAMSIZ))
387 if (args[0] == BRCTL_ADD_BRIDGE)
388 return br_add_bridge(net, buf);
390 return br_del_bridge(net, buf);
397 int br_ioctl_stub(struct net *net, struct net_bridge *br, unsigned int cmd,
398 struct ifreq *ifr, void __user *uarg)
400 int ret = -EOPNOTSUPP;
407 ret = old_deviceless(net, uarg);
414 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) {
419 if (copy_from_user(buf, uarg, IFNAMSIZ)) {
425 if (cmd == SIOCBRADDBR)
426 ret = br_add_bridge(net, buf);
428 ret = br_del_bridge(net, buf);
433 ret = add_del_if(br, ifr->ifr_ifindex, cmd == SIOCBRADDIF);