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/kernel.h>
12 #include <linux/if_bridge.h>
13 #include <linux/netdevice.h>
14 #include <linux/slab.h>
15 #include <linux/times.h>
16 #include <net/net_namespace.h>
17 #include <linux/uaccess.h>
18 #include "br_private.h"
20 static int get_bridge_ifindices(struct net *net, int *indices, int num)
22 struct net_device *dev;
26 for_each_netdev_rcu(net, dev) {
29 if (dev->priv_flags & IFF_EBRIDGE)
30 indices[i++] = dev->ifindex;
37 /* called with RTNL */
38 static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
40 struct net_bridge_port *p;
42 list_for_each_entry(p, &br->port_list, list) {
44 ifindices[p->port_no] = p->dev->ifindex;
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
55 static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
56 unsigned long maxnum, unsigned long offset)
62 /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
63 if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
64 maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
66 size = maxnum * sizeof(struct __fdb_entry);
68 buf = kmalloc(size, GFP_USER);
72 num = br_fdb_fillbuf(br, buf, maxnum, offset);
74 if (copy_to_user(userbuf, buf, num*sizeof(struct __fdb_entry)))
82 /* called with RTNL */
83 static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
85 struct net *net = dev_net(br->dev);
86 struct net_device *dev;
89 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
92 dev = __dev_get_by_index(net, ifindex);
97 ret = br_add_if(br, dev, NULL);
99 ret = br_del_if(br, dev);
105 * Legacy ioctl's through SIOCDEVPRIVATE
106 * This interface is deprecated because it was too difficult
107 * to do the translation for 32/64bit ioctl compatibility.
109 int br_dev_siocdevprivate(struct net_device *dev, struct ifreq *rq, void __user *data, int cmd)
111 struct net_bridge *br = netdev_priv(dev);
112 struct net_bridge_port *p = NULL;
113 unsigned long args[4];
115 int ret = -EOPNOTSUPP;
117 if (in_compat_syscall()) {
118 unsigned int cargs[4];
120 if (copy_from_user(cargs, data, sizeof(cargs)))
128 argp = compat_ptr(args[1]);
130 if (copy_from_user(args, data, sizeof(args)))
133 argp = (void __user *)args[1];
139 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
141 case BRCTL_GET_BRIDGE_INFO:
143 struct __bridge_info b;
145 memset(&b, 0, sizeof(struct __bridge_info));
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;
160 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
161 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);
165 b.gc_timer_value = br_timer_value(&br->gc_work.timer);
168 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
174 case BRCTL_GET_PORT_LIST:
183 if (num > BR_MAX_PORTS)
186 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
190 get_port_ifindices(br, indices, num);
191 if (copy_to_user(argp, indices, num * sizeof(int)))
197 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
198 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
201 ret = br_set_forward_delay(br, args[1]);
204 case BRCTL_SET_BRIDGE_HELLO_TIME:
205 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
208 ret = br_set_hello_time(br, args[1]);
211 case BRCTL_SET_BRIDGE_MAX_AGE:
212 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
215 ret = br_set_max_age(br, args[1]);
218 case BRCTL_SET_AGEING_TIME:
219 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
222 ret = br_set_ageing_time(br, args[1]);
225 case BRCTL_GET_PORT_INFO:
227 struct __port_info p;
228 struct net_bridge_port *pt;
231 if ((pt = br_get_port(br, args[2])) == NULL) {
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;
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);
252 if (copy_to_user(argp, &p, sizeof(p)))
258 case BRCTL_SET_BRIDGE_STP_STATE:
259 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
262 ret = br_stp_set_enabled(br, args[1], NULL);
265 case BRCTL_SET_BRIDGE_PRIORITY:
266 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
269 br_stp_set_bridge_priority(br, args[1]);
273 case BRCTL_SET_PORT_PRIORITY:
275 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
278 spin_lock_bh(&br->lock);
279 if ((p = br_get_port(br, args[1])) == NULL)
282 ret = br_stp_set_port_priority(p, args[2]);
283 spin_unlock_bh(&br->lock);
287 case BRCTL_SET_PATH_COST:
289 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
292 spin_lock_bh(&br->lock);
293 if ((p = br_get_port(br, args[1])) == NULL)
296 ret = br_stp_set_path_cost(p, args[2]);
297 spin_unlock_bh(&br->lock);
301 case BRCTL_GET_FDB_ENTRIES:
302 return get_fdb_entries(br, argp, args[2], args[3]);
307 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
309 netdev_state_change(br->dev);
315 static int old_deviceless(struct net *net, void __user *uarg)
317 unsigned long args[3];
319 if (copy_from_user(args, uarg, sizeof(args)))
323 case BRCTL_GET_VERSION:
324 return BRCTL_VERSION;
326 case BRCTL_GET_BRIDGES:
333 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
337 args[2] = get_bridge_ifindices(net, indices, args[2]);
339 ret = copy_to_user(uarg, indices, args[2]*sizeof(int))
346 case BRCTL_ADD_BRIDGE:
347 case BRCTL_DEL_BRIDGE:
351 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
354 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
359 if (args[0] == BRCTL_ADD_BRIDGE)
360 return br_add_bridge(net, buf);
362 return br_del_bridge(net, buf);
369 int br_ioctl_stub(struct net *net, struct net_bridge *br, unsigned int cmd,
370 struct ifreq *ifr, void __user *uarg)
372 int ret = -EOPNOTSUPP;
379 ret = old_deviceless(net, uarg);
386 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) {
391 if (copy_from_user(buf, uarg, IFNAMSIZ)) {
397 if (cmd == SIOCBRADDBR)
398 ret = br_add_bridge(net, buf);
400 ret = br_del_bridge(net, buf);
405 ret = add_del_if(br, ifr->ifr_ifindex, cmd == SIOCBRADDIF);