3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
8 * $Id: br_ioctl.c,v 1.4 2000/11/08 05:16:40 davem Exp $
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 #include <linux/capability.h>
17 #include <linux/kernel.h>
18 #include <linux/if_bridge.h>
19 #include <linux/netdevice.h>
20 #include <linux/times.h>
21 #include <asm/uaccess.h>
22 #include "br_private.h"
24 /* called with RTNL */
25 static int get_bridge_ifindices(int *indices, int num)
27 struct net_device *dev;
30 for (dev = dev_base; dev && i < num; dev = dev->next) {
31 if (dev->priv_flags & IFF_EBRIDGE)
32 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)
61 size_t size = maxnum * sizeof(struct __fdb_entry);
63 if (size > PAGE_SIZE) {
65 maxnum = PAGE_SIZE/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 static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
84 struct net_device *dev;
87 if (!capable(CAP_NET_ADMIN))
90 dev = dev_get_by_index(ifindex);
95 ret = br_add_if(br, dev);
97 ret = br_del_if(br, dev);
104 * Legacy ioctl's through SIOCDEVPRIVATE
105 * This interface is deprecated because it was too difficult to
106 * to do the translation for 32/64bit ioctl compatability.
108 static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
110 struct net_bridge *br = netdev_priv(dev);
111 unsigned long args[4];
113 if (copy_from_user(args, rq->ifr_data, sizeof(args)))
119 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
121 case BRCTL_GET_BRIDGE_INFO:
123 struct __bridge_info b;
125 memset(&b, 0, sizeof(struct __bridge_info));
127 memcpy(&b.designated_root, &br->designated_root, 8);
128 memcpy(&b.bridge_id, &br->bridge_id, 8);
129 b.root_path_cost = br->root_path_cost;
130 b.max_age = jiffies_to_clock_t(br->max_age);
131 b.hello_time = jiffies_to_clock_t(br->hello_time);
132 b.forward_delay = br->forward_delay;
133 b.bridge_max_age = br->bridge_max_age;
134 b.bridge_hello_time = br->bridge_hello_time;
135 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
136 b.topology_change = br->topology_change;
137 b.topology_change_detected = br->topology_change_detected;
138 b.root_port = br->root_port;
139 b.stp_enabled = br->stp_enabled;
140 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
141 b.hello_timer_value = br_timer_value(&br->hello_timer);
142 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
143 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
144 b.gc_timer_value = br_timer_value(&br->gc_timer);
147 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
153 case BRCTL_GET_PORT_LIST:
162 if (num > BR_MAX_PORTS)
165 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
169 get_port_ifindices(br, indices, num);
170 if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
176 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
177 if (!capable(CAP_NET_ADMIN))
180 spin_lock_bh(&br->lock);
181 br->bridge_forward_delay = clock_t_to_jiffies(args[1]);
182 if (br_is_root_bridge(br))
183 br->forward_delay = br->bridge_forward_delay;
184 spin_unlock_bh(&br->lock);
187 case BRCTL_SET_BRIDGE_HELLO_TIME:
188 if (!capable(CAP_NET_ADMIN))
191 spin_lock_bh(&br->lock);
192 br->bridge_hello_time = clock_t_to_jiffies(args[1]);
193 if (br_is_root_bridge(br))
194 br->hello_time = br->bridge_hello_time;
195 spin_unlock_bh(&br->lock);
198 case BRCTL_SET_BRIDGE_MAX_AGE:
199 if (!capable(CAP_NET_ADMIN))
202 spin_lock_bh(&br->lock);
203 br->bridge_max_age = clock_t_to_jiffies(args[1]);
204 if (br_is_root_bridge(br))
205 br->max_age = br->bridge_max_age;
206 spin_unlock_bh(&br->lock);
209 case BRCTL_SET_AGEING_TIME:
210 if (!capable(CAP_NET_ADMIN))
213 br->ageing_time = clock_t_to_jiffies(args[1]);
216 case BRCTL_GET_PORT_INFO:
218 struct __port_info p;
219 struct net_bridge_port *pt;
222 if ((pt = br_get_port(br, args[2])) == NULL) {
227 memset(&p, 0, sizeof(struct __port_info));
228 memcpy(&p.designated_root, &pt->designated_root, 8);
229 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
230 p.port_id = pt->port_id;
231 p.designated_port = pt->designated_port;
232 p.path_cost = pt->path_cost;
233 p.designated_cost = pt->designated_cost;
235 p.top_change_ack = pt->topology_change_ack;
236 p.config_pending = pt->config_pending;
237 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
238 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
239 p.hold_timer_value = br_timer_value(&pt->hold_timer);
243 if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
249 case BRCTL_SET_BRIDGE_STP_STATE:
250 if (!capable(CAP_NET_ADMIN))
253 br->stp_enabled = args[1]?1:0;
256 case BRCTL_SET_BRIDGE_PRIORITY:
257 if (!capable(CAP_NET_ADMIN))
260 spin_lock_bh(&br->lock);
261 br_stp_set_bridge_priority(br, args[1]);
262 spin_unlock_bh(&br->lock);
265 case BRCTL_SET_PORT_PRIORITY:
267 struct net_bridge_port *p;
270 if (!capable(CAP_NET_ADMIN))
273 if (args[2] >= (1<<(16-BR_PORT_BITS)))
276 spin_lock_bh(&br->lock);
277 if ((p = br_get_port(br, args[1])) == NULL)
280 br_stp_set_port_priority(p, args[2]);
281 spin_unlock_bh(&br->lock);
285 case BRCTL_SET_PATH_COST:
287 struct net_bridge_port *p;
290 if (!capable(CAP_NET_ADMIN))
293 spin_lock_bh(&br->lock);
294 if ((p = br_get_port(br, args[1])) == NULL)
297 br_stp_set_path_cost(p, args[2]);
298 spin_unlock_bh(&br->lock);
302 case BRCTL_GET_FDB_ENTRIES:
303 return get_fdb_entries(br, (void __user *)args[1],
310 static int old_deviceless(void __user *uarg)
312 unsigned long args[3];
314 if (copy_from_user(args, uarg, sizeof(args)))
318 case BRCTL_GET_VERSION:
319 return BRCTL_VERSION;
321 case BRCTL_GET_BRIDGES:
328 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
332 args[2] = get_bridge_ifindices(indices, args[2]);
334 ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
341 case BRCTL_ADD_BRIDGE:
342 case BRCTL_DEL_BRIDGE:
346 if (!capable(CAP_NET_ADMIN))
349 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
354 if (args[0] == BRCTL_ADD_BRIDGE)
355 return br_add_bridge(buf);
357 return br_del_bridge(buf);
364 int br_ioctl_deviceless_stub(unsigned int cmd, void __user *uarg)
369 return old_deviceless(uarg);
376 if (!capable(CAP_NET_ADMIN))
379 if (copy_from_user(buf, uarg, IFNAMSIZ))
383 if (cmd == SIOCBRADDBR)
384 return br_add_bridge(buf);
386 return br_del_bridge(buf);
392 int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
394 struct net_bridge *br = netdev_priv(dev);
398 return old_dev_ioctl(dev, rq, cmd);
402 return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
406 pr_debug("Bridge does not support ioctl 0x%x\n", cmd);