3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
8 * 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.
14 #include <linux/capability.h>
15 #include <linux/kernel.h>
16 #include <linux/if_bridge.h>
17 #include <linux/netdevice.h>
18 #include <linux/slab.h>
19 #include <linux/times.h>
20 #include <net/net_namespace.h>
21 #include <asm/uaccess.h>
22 #include "br_private.h"
24 /* called with RTNL */
25 static int get_bridge_ifindices(struct net *net, int *indices, int num)
27 struct net_device *dev;
30 for_each_netdev(net, dev) {
33 if (dev->priv_flags & IFF_EBRIDGE)
34 indices[i++] = dev->ifindex;
40 /* called with RTNL */
41 static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
43 struct net_bridge_port *p;
45 list_for_each_entry(p, &br->port_list, list) {
47 ifindices[p->port_no] = p->dev->ifindex;
52 * Format up to a page worth of forwarding table entries
53 * userbuf -- where to copy result
54 * maxnum -- maximum number of entries desired
55 * (limited to a page for sanity)
56 * offset -- number of records to skip
58 static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
59 unsigned long maxnum, unsigned long offset)
65 /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
66 if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
67 maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
69 size = maxnum * sizeof(struct __fdb_entry);
71 buf = kmalloc(size, GFP_USER);
75 num = br_fdb_fillbuf(br, buf, maxnum, offset);
77 if (copy_to_user(userbuf, buf, num*sizeof(struct __fdb_entry)))
85 /* called with RTNL */
86 static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
88 struct net *net = dev_net(br->dev);
89 struct net_device *dev;
92 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
95 dev = __dev_get_by_index(net, ifindex);
100 ret = br_add_if(br, dev);
102 ret = br_del_if(br, dev);
108 * Legacy ioctl's through SIOCDEVPRIVATE
109 * This interface is deprecated because it was too difficult to
110 * to do the translation for 32/64bit ioctl compatibility.
112 static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
114 struct net_bridge *br = netdev_priv(dev);
115 unsigned long args[4];
117 if (copy_from_user(args, rq->ifr_data, sizeof(args)))
123 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
125 case BRCTL_GET_BRIDGE_INFO:
127 struct __bridge_info b;
129 memset(&b, 0, sizeof(struct __bridge_info));
131 memcpy(&b.designated_root, &br->designated_root, 8);
132 memcpy(&b.bridge_id, &br->bridge_id, 8);
133 b.root_path_cost = br->root_path_cost;
134 b.max_age = jiffies_to_clock_t(br->max_age);
135 b.hello_time = jiffies_to_clock_t(br->hello_time);
136 b.forward_delay = br->forward_delay;
137 b.bridge_max_age = br->bridge_max_age;
138 b.bridge_hello_time = br->bridge_hello_time;
139 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
140 b.topology_change = br->topology_change;
141 b.topology_change_detected = br->topology_change_detected;
142 b.root_port = br->root_port;
144 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
145 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
146 b.hello_timer_value = br_timer_value(&br->hello_timer);
147 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
148 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
149 b.gc_timer_value = br_timer_value(&br->gc_timer);
152 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
158 case BRCTL_GET_PORT_LIST:
167 if (num > BR_MAX_PORTS)
170 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
174 get_port_ifindices(br, indices, num);
175 if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
181 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
182 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
185 return 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 return br_set_hello_time(br, args[1]);
193 case BRCTL_SET_BRIDGE_MAX_AGE:
194 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
197 return br_set_max_age(br, args[1]);
199 case BRCTL_SET_AGEING_TIME:
200 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
203 br->ageing_time = clock_t_to_jiffies(args[1]);
206 case BRCTL_GET_PORT_INFO:
208 struct __port_info p;
209 struct net_bridge_port *pt;
212 if ((pt = br_get_port(br, args[2])) == NULL) {
217 memset(&p, 0, sizeof(struct __port_info));
218 memcpy(&p.designated_root, &pt->designated_root, 8);
219 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
220 p.port_id = pt->port_id;
221 p.designated_port = pt->designated_port;
222 p.path_cost = pt->path_cost;
223 p.designated_cost = pt->designated_cost;
225 p.top_change_ack = pt->topology_change_ack;
226 p.config_pending = pt->config_pending;
227 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
228 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
229 p.hold_timer_value = br_timer_value(&pt->hold_timer);
233 if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
239 case BRCTL_SET_BRIDGE_STP_STATE:
240 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
243 br_stp_set_enabled(br, args[1]);
246 case BRCTL_SET_BRIDGE_PRIORITY:
247 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
250 spin_lock_bh(&br->lock);
251 br_stp_set_bridge_priority(br, args[1]);
252 spin_unlock_bh(&br->lock);
255 case BRCTL_SET_PORT_PRIORITY:
257 struct net_bridge_port *p;
260 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
263 spin_lock_bh(&br->lock);
264 if ((p = br_get_port(br, args[1])) == NULL)
267 ret = br_stp_set_port_priority(p, args[2]);
268 spin_unlock_bh(&br->lock);
272 case BRCTL_SET_PATH_COST:
274 struct net_bridge_port *p;
277 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
280 spin_lock_bh(&br->lock);
281 if ((p = br_get_port(br, args[1])) == NULL)
284 ret = br_stp_set_path_cost(p, args[2]);
285 spin_unlock_bh(&br->lock);
290 case BRCTL_GET_FDB_ENTRIES:
291 return get_fdb_entries(br, (void __user *)args[1],
298 static int old_deviceless(struct net *net, void __user *uarg)
300 unsigned long args[3];
302 if (copy_from_user(args, uarg, sizeof(args)))
306 case BRCTL_GET_VERSION:
307 return BRCTL_VERSION;
309 case BRCTL_GET_BRIDGES:
316 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
320 args[2] = get_bridge_ifindices(net, indices, args[2]);
322 ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
329 case BRCTL_ADD_BRIDGE:
330 case BRCTL_DEL_BRIDGE:
334 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
337 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
342 if (args[0] == BRCTL_ADD_BRIDGE)
343 return br_add_bridge(net, buf);
345 return br_del_bridge(net, buf);
352 int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, void __user *uarg)
357 return old_deviceless(net, uarg);
364 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
367 if (copy_from_user(buf, uarg, IFNAMSIZ))
371 if (cmd == SIOCBRADDBR)
372 return br_add_bridge(net, buf);
374 return br_del_bridge(net, buf);
380 int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
382 struct net_bridge *br = netdev_priv(dev);
386 return old_dev_ioctl(dev, rq, cmd);
390 return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
394 br_debug(br, "Bridge does not support ioctl 0x%x\n", cmd);