ipg: run-time configurable jumbo frame support
[firewire-audio.git] / net / bridge / br_ioctl.c
blobeeee218eed80a9357e2abf5d409e74fcf9423ae6
1 /*
2 * Ioctl handler
3 * Linux ethernet bridge
5 * Authors:
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/times.h>
19 #include <net/net_namespace.h>
20 #include <asm/uaccess.h>
21 #include "br_private.h"
23 /* called with RTNL */
24 static int get_bridge_ifindices(int *indices, int num)
26 struct net_device *dev;
27 int i = 0;
29 for_each_netdev(&init_net, dev) {
30 if (i >= num)
31 break;
32 if (dev->priv_flags & IFF_EBRIDGE)
33 indices[i++] = dev->ifindex;
36 return i;
39 /* called with RTNL */
40 static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
42 struct net_bridge_port *p;
44 list_for_each_entry(p, &br->port_list, list) {
45 if (p->port_no < num)
46 ifindices[p->port_no] = p->dev->ifindex;
51 * Format up to a page worth of forwarding table entries
52 * userbuf -- where to copy result
53 * maxnum -- maximum number of entries desired
54 * (limited to a page for sanity)
55 * offset -- number of records to skip
57 static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
58 unsigned long maxnum, unsigned long offset)
60 int num;
61 void *buf;
62 size_t size;
64 /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
65 if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
66 maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
68 size = maxnum * sizeof(struct __fdb_entry);
70 buf = kmalloc(size, GFP_USER);
71 if (!buf)
72 return -ENOMEM;
74 num = br_fdb_fillbuf(br, buf, maxnum, offset);
75 if (num > 0) {
76 if (copy_to_user(userbuf, buf, num*sizeof(struct __fdb_entry)))
77 num = -EFAULT;
79 kfree(buf);
81 return num;
84 static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
86 struct net_device *dev;
87 int ret;
89 if (!capable(CAP_NET_ADMIN))
90 return -EPERM;
92 dev = dev_get_by_index(&init_net, ifindex);
93 if (dev == NULL)
94 return -EINVAL;
96 if (isadd)
97 ret = br_add_if(br, dev);
98 else
99 ret = br_del_if(br, dev);
101 dev_put(dev);
102 return ret;
106 * Legacy ioctl's through SIOCDEVPRIVATE
107 * This interface is deprecated because it was too difficult to
108 * to do the translation for 32/64bit ioctl compatability.
110 static int old_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
112 struct net_bridge *br = netdev_priv(dev);
113 unsigned long args[4];
115 if (copy_from_user(args, rq->ifr_data, sizeof(args)))
116 return -EFAULT;
118 switch (args[0]) {
119 case BRCTL_ADD_IF:
120 case BRCTL_DEL_IF:
121 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
123 case BRCTL_GET_BRIDGE_INFO:
125 struct __bridge_info b;
127 memset(&b, 0, sizeof(struct __bridge_info));
128 rcu_read_lock();
129 memcpy(&b.designated_root, &br->designated_root, 8);
130 memcpy(&b.bridge_id, &br->bridge_id, 8);
131 b.root_path_cost = br->root_path_cost;
132 b.max_age = jiffies_to_clock_t(br->max_age);
133 b.hello_time = jiffies_to_clock_t(br->hello_time);
134 b.forward_delay = br->forward_delay;
135 b.bridge_max_age = br->bridge_max_age;
136 b.bridge_hello_time = br->bridge_hello_time;
137 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
138 b.topology_change = br->topology_change;
139 b.topology_change_detected = br->topology_change_detected;
140 b.root_port = br->root_port;
142 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
143 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
144 b.hello_timer_value = br_timer_value(&br->hello_timer);
145 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
146 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
147 b.gc_timer_value = br_timer_value(&br->gc_timer);
148 rcu_read_unlock();
150 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
151 return -EFAULT;
153 return 0;
156 case BRCTL_GET_PORT_LIST:
158 int num, *indices;
160 num = args[2];
161 if (num < 0)
162 return -EINVAL;
163 if (num == 0)
164 num = 256;
165 if (num > BR_MAX_PORTS)
166 num = BR_MAX_PORTS;
168 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
169 if (indices == NULL)
170 return -ENOMEM;
172 get_port_ifindices(br, indices, num);
173 if (copy_to_user((void __user *)args[1], indices, num*sizeof(int)))
174 num = -EFAULT;
175 kfree(indices);
176 return num;
179 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
180 if (!capable(CAP_NET_ADMIN))
181 return -EPERM;
183 spin_lock_bh(&br->lock);
184 br->bridge_forward_delay = clock_t_to_jiffies(args[1]);
185 if (br_is_root_bridge(br))
186 br->forward_delay = br->bridge_forward_delay;
187 spin_unlock_bh(&br->lock);
188 return 0;
190 case BRCTL_SET_BRIDGE_HELLO_TIME:
191 if (!capable(CAP_NET_ADMIN))
192 return -EPERM;
194 spin_lock_bh(&br->lock);
195 br->bridge_hello_time = clock_t_to_jiffies(args[1]);
196 if (br_is_root_bridge(br))
197 br->hello_time = br->bridge_hello_time;
198 spin_unlock_bh(&br->lock);
199 return 0;
201 case BRCTL_SET_BRIDGE_MAX_AGE:
202 if (!capable(CAP_NET_ADMIN))
203 return -EPERM;
205 spin_lock_bh(&br->lock);
206 br->bridge_max_age = clock_t_to_jiffies(args[1]);
207 if (br_is_root_bridge(br))
208 br->max_age = br->bridge_max_age;
209 spin_unlock_bh(&br->lock);
210 return 0;
212 case BRCTL_SET_AGEING_TIME:
213 if (!capable(CAP_NET_ADMIN))
214 return -EPERM;
216 br->ageing_time = clock_t_to_jiffies(args[1]);
217 return 0;
219 case BRCTL_GET_PORT_INFO:
221 struct __port_info p;
222 struct net_bridge_port *pt;
224 rcu_read_lock();
225 if ((pt = br_get_port(br, args[2])) == NULL) {
226 rcu_read_unlock();
227 return -EINVAL;
230 memset(&p, 0, sizeof(struct __port_info));
231 memcpy(&p.designated_root, &pt->designated_root, 8);
232 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
233 p.port_id = pt->port_id;
234 p.designated_port = pt->designated_port;
235 p.path_cost = pt->path_cost;
236 p.designated_cost = pt->designated_cost;
237 p.state = pt->state;
238 p.top_change_ack = pt->topology_change_ack;
239 p.config_pending = pt->config_pending;
240 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
241 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
242 p.hold_timer_value = br_timer_value(&pt->hold_timer);
244 rcu_read_unlock();
246 if (copy_to_user((void __user *)args[1], &p, sizeof(p)))
247 return -EFAULT;
249 return 0;
252 case BRCTL_SET_BRIDGE_STP_STATE:
253 if (!capable(CAP_NET_ADMIN))
254 return -EPERM;
256 br_stp_set_enabled(br, args[1]);
257 return 0;
259 case BRCTL_SET_BRIDGE_PRIORITY:
260 if (!capable(CAP_NET_ADMIN))
261 return -EPERM;
263 spin_lock_bh(&br->lock);
264 br_stp_set_bridge_priority(br, args[1]);
265 spin_unlock_bh(&br->lock);
266 return 0;
268 case BRCTL_SET_PORT_PRIORITY:
270 struct net_bridge_port *p;
271 int ret = 0;
273 if (!capable(CAP_NET_ADMIN))
274 return -EPERM;
276 if (args[2] >= (1<<(16-BR_PORT_BITS)))
277 return -ERANGE;
279 spin_lock_bh(&br->lock);
280 if ((p = br_get_port(br, args[1])) == NULL)
281 ret = -EINVAL;
282 else
283 br_stp_set_port_priority(p, args[2]);
284 spin_unlock_bh(&br->lock);
285 return ret;
288 case BRCTL_SET_PATH_COST:
290 struct net_bridge_port *p;
291 int ret = 0;
293 if (!capable(CAP_NET_ADMIN))
294 return -EPERM;
296 if ((p = br_get_port(br, args[1])) == NULL)
297 ret = -EINVAL;
298 else
299 br_stp_set_path_cost(p, args[2]);
301 return ret;
304 case BRCTL_GET_FDB_ENTRIES:
305 return get_fdb_entries(br, (void __user *)args[1],
306 args[2], args[3]);
309 return -EOPNOTSUPP;
312 static int old_deviceless(void __user *uarg)
314 unsigned long args[3];
316 if (copy_from_user(args, uarg, sizeof(args)))
317 return -EFAULT;
319 switch (args[0]) {
320 case BRCTL_GET_VERSION:
321 return BRCTL_VERSION;
323 case BRCTL_GET_BRIDGES:
325 int *indices;
326 int ret = 0;
328 if (args[2] >= 2048)
329 return -ENOMEM;
330 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
331 if (indices == NULL)
332 return -ENOMEM;
334 args[2] = get_bridge_ifindices(indices, args[2]);
336 ret = copy_to_user((void __user *)args[1], indices, args[2]*sizeof(int))
337 ? -EFAULT : args[2];
339 kfree(indices);
340 return ret;
343 case BRCTL_ADD_BRIDGE:
344 case BRCTL_DEL_BRIDGE:
346 char buf[IFNAMSIZ];
348 if (!capable(CAP_NET_ADMIN))
349 return -EPERM;
351 if (copy_from_user(buf, (void __user *)args[1], IFNAMSIZ))
352 return -EFAULT;
354 buf[IFNAMSIZ-1] = 0;
356 if (args[0] == BRCTL_ADD_BRIDGE)
357 return br_add_bridge(buf);
359 return br_del_bridge(buf);
363 return -EOPNOTSUPP;
366 int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, void __user *uarg)
368 switch (cmd) {
369 case SIOCGIFBR:
370 case SIOCSIFBR:
371 return old_deviceless(uarg);
373 case SIOCBRADDBR:
374 case SIOCBRDELBR:
376 char buf[IFNAMSIZ];
378 if (!capable(CAP_NET_ADMIN))
379 return -EPERM;
381 if (copy_from_user(buf, uarg, IFNAMSIZ))
382 return -EFAULT;
384 buf[IFNAMSIZ-1] = 0;
385 if (cmd == SIOCBRADDBR)
386 return br_add_bridge(buf);
388 return br_del_bridge(buf);
391 return -EOPNOTSUPP;
394 int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
396 struct net_bridge *br = netdev_priv(dev);
398 switch(cmd) {
399 case SIOCDEVPRIVATE:
400 return old_dev_ioctl(dev, rq, cmd);
402 case SIOCBRADDIF:
403 case SIOCBRDELIF:
404 return add_del_if(br, rq->ifr_ifindex, cmd == SIOCBRADDIF);
408 pr_debug("Bridge does not support ioctl 0x%x\n", cmd);
409 return -EOPNOTSUPP;