USB: Allow transfer_buffer with transfer_dma
[linux-2.6/linux-loongson.git] / net / bridge / br_ioctl.c
blobeda0fbfc923a3b9603ad38150037803133edc28e
1 /*
2 * Ioctl handler
3 * Linux ethernet bridge
5 * Authors:
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;
28 int i = 0;
30 for (dev = dev_base; dev && i < num; dev = dev->next) {
31 if (dev->priv_flags & IFF_EBRIDGE)
32 indices[i++] = dev->ifindex;
35 return i;
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) {
44 if (p->port_no < num)
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)
59 int num;
60 void *buf;
61 size_t size;
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);
70 if (!buf)
71 return -ENOMEM;
73 num = br_fdb_fillbuf(br, buf, maxnum, offset);
74 if (num > 0) {
75 if (copy_to_user(userbuf, buf, num*sizeof(struct __fdb_entry)))
76 num = -EFAULT;
78 kfree(buf);
80 return num;
83 static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
85 struct net_device *dev;
86 int ret;
88 if (!capable(CAP_NET_ADMIN))
89 return -EPERM;
91 dev = dev_get_by_index(ifindex);
92 if (dev == NULL)
93 return -EINVAL;
95 if (isadd)
96 ret = br_add_if(br, dev);
97 else
98 ret = br_del_if(br, dev);
100 dev_put(dev);
101 return ret;
105 * Legacy ioctl's through SIOCDEVPRIVATE
106 * This interface is deprecated because it was too difficult to
107 * to do the translation for 32/64bit ioctl compatability.
109 static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
111 struct net_bridge *br = netdev_priv(dev);
112 unsigned long args[4];
114 if (copy_from_user(args, rq->ifr_data, sizeof(args)))
115 return -EFAULT;
117 switch (args[0]) {
118 case BRCTL_ADD_IF:
119 case BRCTL_DEL_IF:
120 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
122 case BRCTL_GET_BRIDGE_INFO:
124 struct __bridge_info b;
126 memset(&b, 0, sizeof(struct __bridge_info));
127 rcu_read_lock();
128 memcpy(&b.designated_root, &br->designated_root, 8);
129 memcpy(&b.bridge_id, &br->bridge_id, 8);
130 b.root_path_cost = br->root_path_cost;
131 b.max_age = jiffies_to_clock_t(br->max_age);
132 b.hello_time = jiffies_to_clock_t(br->hello_time);
133 b.forward_delay = br->forward_delay;
134 b.bridge_max_age = br->bridge_max_age;
135 b.bridge_hello_time = br->bridge_hello_time;
136 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
137 b.topology_change = br->topology_change;
138 b.topology_change_detected = br->topology_change_detected;
139 b.root_port = br->root_port;
141 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
142 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
143 b.hello_timer_value = br_timer_value(&br->hello_timer);
144 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
145 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
146 b.gc_timer_value = br_timer_value(&br->gc_timer);
147 rcu_read_unlock();
149 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
150 return -EFAULT;
152 return 0;
155 case BRCTL_GET_PORT_LIST:
157 int num, *indices;
159 num = args[2];
160 if (num < 0)
161 return -EINVAL;
162 if (num == 0)
163 num = 256;
164 if (num > BR_MAX_PORTS)
165 num = BR_MAX_PORTS;
167 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
168 if (indices == NULL)
169 return -ENOMEM;
171 get_port_ifindices(br, indices, num);
172 if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
173 num = -EFAULT;
174 kfree(indices);
175 return num;
178 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
179 if (!capable(CAP_NET_ADMIN))
180 return -EPERM;
182 spin_lock_bh(&br->lock);
183 br->bridge_forward_delay = clock_t_to_jiffies(args[1]);
184 if (br_is_root_bridge(br))
185 br->forward_delay = br->bridge_forward_delay;
186 spin_unlock_bh(&br->lock);
187 return 0;
189 case BRCTL_SET_BRIDGE_HELLO_TIME:
190 if (!capable(CAP_NET_ADMIN))
191 return -EPERM;
193 spin_lock_bh(&br->lock);
194 br->bridge_hello_time = clock_t_to_jiffies(args[1]);
195 if (br_is_root_bridge(br))
196 br->hello_time = br->bridge_hello_time;
197 spin_unlock_bh(&br->lock);
198 return 0;
200 case BRCTL_SET_BRIDGE_MAX_AGE:
201 if (!capable(CAP_NET_ADMIN))
202 return -EPERM;
204 spin_lock_bh(&br->lock);
205 br->bridge_max_age = clock_t_to_jiffies(args[1]);
206 if (br_is_root_bridge(br))
207 br->max_age = br->bridge_max_age;
208 spin_unlock_bh(&br->lock);
209 return 0;
211 case BRCTL_SET_AGEING_TIME:
212 if (!capable(CAP_NET_ADMIN))
213 return -EPERM;
215 br->ageing_time = clock_t_to_jiffies(args[1]);
216 return 0;
218 case BRCTL_GET_PORT_INFO:
220 struct __port_info p;
221 struct net_bridge_port *pt;
223 rcu_read_lock();
224 if ((pt = br_get_port(br, args[2])) == NULL) {
225 rcu_read_unlock();
226 return -EINVAL;
229 memset(&p, 0, sizeof(struct __port_info));
230 memcpy(&p.designated_root, &pt->designated_root, 8);
231 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
232 p.port_id = pt->port_id;
233 p.designated_port = pt->designated_port;
234 p.path_cost = pt->path_cost;
235 p.designated_cost = pt->designated_cost;
236 p.state = pt->state;
237 p.top_change_ack = pt->topology_change_ack;
238 p.config_pending = pt->config_pending;
239 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
240 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
241 p.hold_timer_value = br_timer_value(&pt->hold_timer);
243 rcu_read_unlock();
245 if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
246 return -EFAULT;
248 return 0;
251 case BRCTL_SET_BRIDGE_STP_STATE:
252 if (!capable(CAP_NET_ADMIN))
253 return -EPERM;
255 br_stp_set_enabled(br, args[1]);
256 return 0;
258 case BRCTL_SET_BRIDGE_PRIORITY:
259 if (!capable(CAP_NET_ADMIN))
260 return -EPERM;
262 spin_lock_bh(&br->lock);
263 br_stp_set_bridge_priority(br, args[1]);
264 spin_unlock_bh(&br->lock);
265 return 0;
267 case BRCTL_SET_PORT_PRIORITY:
269 struct net_bridge_port *p;
270 int ret = 0;
272 if (!capable(CAP_NET_ADMIN))
273 return -EPERM;
275 if (args[2] >= (1<<(16-BR_PORT_BITS)))
276 return -ERANGE;
278 spin_lock_bh(&br->lock);
279 if ((p = br_get_port(br, args[1])) == NULL)
280 ret = -EINVAL;
281 else
282 br_stp_set_port_priority(p, args[2]);
283 spin_unlock_bh(&br->lock);
284 return ret;
287 case BRCTL_SET_PATH_COST:
289 struct net_bridge_port *p;
290 int ret = 0;
292 if (!capable(CAP_NET_ADMIN))
293 return -EPERM;
295 if ((p = br_get_port(br, args[1])) == NULL)
296 ret = -EINVAL;
297 else
298 br_stp_set_path_cost(p, args[2]);
300 return ret;
303 case BRCTL_GET_FDB_ENTRIES:
304 return get_fdb_entries(br, (void __user *)args[1],
305 args[2], args[3]);
308 return -EOPNOTSUPP;
311 static int old_deviceless(void __user *uarg)
313 unsigned long args[3];
315 if (copy_from_user(args, uarg, sizeof(args)))
316 return -EFAULT;
318 switch (args[0]) {
319 case BRCTL_GET_VERSION:
320 return BRCTL_VERSION;
322 case BRCTL_GET_BRIDGES:
324 int *indices;
325 int ret = 0;
327 if (args[2] >= 2048)
328 return -ENOMEM;
329 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
330 if (indices == NULL)
331 return -ENOMEM;
333 args[2] = get_bridge_ifindices(indices, args[2]);
335 ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
336 ? -EFAULT : args[2];
338 kfree(indices);
339 return ret;
342 case BRCTL_ADD_BRIDGE:
343 case BRCTL_DEL_BRIDGE:
345 char buf[IFNAMSIZ];
347 if (!capable(CAP_NET_ADMIN))
348 return -EPERM;
350 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
351 return -EFAULT;
353 buf[IFNAMSIZ-1] = 0;
355 if (args[0] == BRCTL_ADD_BRIDGE)
356 return br_add_bridge(buf);
358 return br_del_bridge(buf);
362 return -EOPNOTSUPP;
365 int br_ioctl_deviceless_stub(unsigned int cmd, void __user *uarg)
367 switch (cmd) {
368 case SIOCGIFBR:
369 case SIOCSIFBR:
370 return old_deviceless(uarg);
372 case SIOCBRADDBR:
373 case SIOCBRDELBR:
375 char buf[IFNAMSIZ];
377 if (!capable(CAP_NET_ADMIN))
378 return -EPERM;
380 if (copy_from_user(buf, uarg, IFNAMSIZ))
381 return -EFAULT;
383 buf[IFNAMSIZ-1] = 0;
384 if (cmd == SIOCBRADDBR)
385 return br_add_bridge(buf);
387 return br_del_bridge(buf);
390 return -EOPNOTSUPP;
393 int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
395 struct net_bridge *br = netdev_priv(dev);
397 switch(cmd) {
398 case SIOCDEVPRIVATE:
399 return old_dev_ioctl(dev, rq, cmd);
401 case SIOCBRADDIF:
402 case SIOCBRDELIF:
403 return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
407 pr_debug("Bridge does not support ioctl 0x%x\n", cmd);
408 return -EOPNOTSUPP;