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 static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
111 struct net_bridge *br = netdev_priv(dev);
112 struct net_bridge_port *p = NULL;
113 unsigned long args[4];
114 int ret = -EOPNOTSUPP;
116 if (copy_from_user(args, rq->ifr_data, sizeof(args)))
122 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
124 case BRCTL_GET_BRIDGE_INFO:
126 struct __bridge_info b;
128 memset(&b, 0, sizeof(struct __bridge_info));
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;
143 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
144 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);
148 b.gc_timer_value = br_timer_value(&br->gc_work.timer);
151 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
157 case BRCTL_GET_PORT_LIST:
166 if (num > BR_MAX_PORTS)
169 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
173 get_port_ifindices(br, indices, num);
174 if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
180 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
181 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
184 ret = br_set_forward_delay(br, args[1]);
187 case BRCTL_SET_BRIDGE_HELLO_TIME:
188 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
191 ret = br_set_hello_time(br, args[1]);
194 case BRCTL_SET_BRIDGE_MAX_AGE:
195 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
198 ret = br_set_max_age(br, args[1]);
201 case BRCTL_SET_AGEING_TIME:
202 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
205 ret = br_set_ageing_time(br, args[1]);
208 case BRCTL_GET_PORT_INFO:
210 struct __port_info p;
211 struct net_bridge_port *pt;
214 if ((pt = br_get_port(br, args[2])) == NULL) {
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;
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);
235 if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
241 case BRCTL_SET_BRIDGE_STP_STATE:
242 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
245 ret = br_stp_set_enabled(br, args[1], NULL);
248 case BRCTL_SET_BRIDGE_PRIORITY:
249 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
252 br_stp_set_bridge_priority(br, args[1]);
256 case BRCTL_SET_PORT_PRIORITY:
258 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
261 spin_lock_bh(&br->lock);
262 if ((p = br_get_port(br, args[1])) == NULL)
265 ret = br_stp_set_port_priority(p, args[2]);
266 spin_unlock_bh(&br->lock);
270 case BRCTL_SET_PATH_COST:
272 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
275 spin_lock_bh(&br->lock);
276 if ((p = br_get_port(br, args[1])) == NULL)
279 ret = br_stp_set_path_cost(p, args[2]);
280 spin_unlock_bh(&br->lock);
284 case BRCTL_GET_FDB_ENTRIES:
285 return get_fdb_entries(br, (void __user *)args[1],
291 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
293 netdev_state_change(br->dev);
299 static int old_deviceless(struct net *net, void __user *uarg)
301 unsigned long args[3];
303 if (copy_from_user(args, uarg, sizeof(args)))
307 case BRCTL_GET_VERSION:
308 return BRCTL_VERSION;
310 case BRCTL_GET_BRIDGES:
317 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
321 args[2] = get_bridge_ifindices(net, indices, args[2]);
323 ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
330 case BRCTL_ADD_BRIDGE:
331 case BRCTL_DEL_BRIDGE:
335 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
338 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
343 if (args[0] == BRCTL_ADD_BRIDGE)
344 return br_add_bridge(net, buf);
346 return br_del_bridge(net, buf);
353 int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, void __user *uarg)
358 return old_deviceless(net, uarg);
365 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
368 if (copy_from_user(buf, uarg, IFNAMSIZ))
372 if (cmd == SIOCBRADDBR)
373 return br_add_bridge(net, buf);
375 return br_del_bridge(net, buf);
381 int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
383 struct net_bridge *br = netdev_priv(dev);
387 return old_dev_ioctl(dev, rq, cmd);
391 return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
395 br_debug(br, "Bridge does not support ioctl 0x%x\n", cmd);