blob: 0d4c0ee090dbd2c5fea49d47a82e3d22a5f370a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* net/atm/resources.c - Statically allocated resources */
2
3/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
4
5/* Fixes
6 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 * 2002/01 - don't free the whole struct sock on sk->destruct time,
8 * use the default destruct function initialized by sock_init_data */
9
Joe Perches99824462010-01-26 11:40:00 +000010#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/ctype.h>
13#include <linux/string.h>
14#include <linux/atmdev.h>
15#include <linux/sonet.h>
16#include <linux/kernel.h> /* for barrier */
17#include <linux/module.h>
18#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080019#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080021#include <linux/mutex.h>
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <net/sock.h> /* for struct sock */
24
25#include "common.h"
26#include "resources.h"
27#include "addr.h"
28
29
30LIST_HEAD(atm_devs);
Ingo Molnar57b47a52006-03-20 22:35:41 -080031DEFINE_MUTEX(atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33static struct atm_dev *__alloc_atm_dev(const char *type)
34{
35 struct atm_dev *dev;
36
Panagiotis Issaris0da974f2006-07-21 14:51:30 -070037 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 if (!dev)
39 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 dev->type = type;
41 dev->signal = ATM_PHY_SIG_UNKNOWN;
42 dev->link_rate = ATM_OC3_PCR;
43 spin_lock_init(&dev->lock);
44 INIT_LIST_HEAD(&dev->local);
Eric Kinzie0f21ba72005-10-06 22:19:28 -070045 INIT_LIST_HEAD(&dev->lecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 return dev;
48}
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static struct atm_dev *__atm_dev_lookup(int number)
51{
52 struct atm_dev *dev;
53 struct list_head *p;
54
55 list_for_each(p, &atm_devs) {
56 dev = list_entry(p, struct atm_dev, dev_list);
Stanislaw Gruszkaaaaaaad2005-11-29 16:16:21 -080057 if (dev->number == number) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 atm_dev_hold(dev);
59 return dev;
60 }
61 }
62 return NULL;
63}
64
65struct atm_dev *atm_dev_lookup(int number)
66{
67 struct atm_dev *dev;
68
Ingo Molnar57b47a52006-03-20 22:35:41 -080069 mutex_lock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 dev = __atm_dev_lookup(number);
Ingo Molnar57b47a52006-03-20 22:35:41 -080071 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return dev;
73}
74
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -080075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076struct atm_dev *atm_dev_register(const char *type, const struct atmdev_ops *ops,
77 int number, unsigned long *flags)
78{
79 struct atm_dev *dev, *inuse;
80
81 dev = __alloc_atm_dev(type);
82 if (!dev) {
Joe Perches99824462010-01-26 11:40:00 +000083 pr_err("no space for dev %s\n", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return NULL;
85 }
Ingo Molnar57b47a52006-03-20 22:35:41 -080086 mutex_lock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (number != -1) {
88 if ((inuse = __atm_dev_lookup(number))) {
89 atm_dev_put(inuse);
Ingo Molnar57b47a52006-03-20 22:35:41 -080090 mutex_unlock(&atm_dev_mutex);
Adrian Bunkebc37b62005-04-21 16:48:26 -070091 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return NULL;
93 }
94 dev->number = number;
95 } else {
96 dev->number = 0;
97 while ((inuse = __atm_dev_lookup(dev->number))) {
98 atm_dev_put(inuse);
99 dev->number++;
100 }
101 }
102
103 dev->ops = ops;
104 if (flags)
105 dev->flags = *flags;
106 else
107 memset(&dev->flags, 0, sizeof(dev->flags));
108 memset(&dev->stats, 0, sizeof(dev->stats));
109 atomic_set(&dev->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 if (atm_proc_dev_register(dev) < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000112 pr_err("atm_proc_dev_register failed for dev %s\n", type);
Roman Kagan656d98b2006-06-29 12:36:34 -0700113 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
Roman Kagan656d98b2006-06-29 12:36:34 -0700116 if (atm_register_sysfs(dev) < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000117 pr_err("atm_register_sysfs failed for dev %s\n", type);
Roman Kagan656d98b2006-06-29 12:36:34 -0700118 atm_proc_dev_deregister(dev);
119 goto out_fail;
120 }
121
122 list_add_tail(&dev->dev_list, &atm_devs);
123
124out:
125 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return dev;
Roman Kagan656d98b2006-06-29 12:36:34 -0700127
128out_fail:
129 kfree(dev);
130 dev = NULL;
131 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134
135void atm_dev_deregister(struct atm_dev *dev)
136{
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800137 BUG_ON(test_bit(ATM_DF_REMOVED, &dev->flags));
138 set_bit(ATM_DF_REMOVED, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800140 /*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900141 * if we remove current device from atm_devs list, new device
142 * with same number can appear, such we need deregister proc,
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800143 * release async all vccs and remove them from vccs list too
144 */
Ingo Molnar57b47a52006-03-20 22:35:41 -0800145 mutex_lock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 list_del(&dev->dev_list);
Ingo Molnar57b47a52006-03-20 22:35:41 -0800147 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800149 atm_dev_release_vccs(dev);
Roman Kagan656d98b2006-06-29 12:36:34 -0700150 atm_unregister_sysfs(dev);
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800151 atm_proc_dev_deregister(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800153 atm_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156
157static void copy_aal_stats(struct k_atm_aal_stats *from,
158 struct atm_aal_stats *to)
159{
160#define __HANDLE_ITEM(i) to->i = atomic_read(&from->i)
161 __AAL_STAT_ITEMS
162#undef __HANDLE_ITEM
163}
164
165
166static void subtract_aal_stats(struct k_atm_aal_stats *from,
167 struct atm_aal_stats *to)
168{
169#define __HANDLE_ITEM(i) atomic_sub(to->i, &from->i)
170 __AAL_STAT_ITEMS
171#undef __HANDLE_ITEM
172}
173
174
175static int fetch_stats(struct atm_dev *dev, struct atm_dev_stats __user *arg, int zero)
176{
177 struct atm_dev_stats tmp;
178 int error = 0;
179
180 copy_aal_stats(&dev->stats.aal0, &tmp.aal0);
181 copy_aal_stats(&dev->stats.aal34, &tmp.aal34);
182 copy_aal_stats(&dev->stats.aal5, &tmp.aal5);
183 if (arg)
184 error = copy_to_user(arg, &tmp, sizeof(tmp));
185 if (zero && !error) {
186 subtract_aal_stats(&dev->stats.aal0, &tmp.aal0);
187 subtract_aal_stats(&dev->stats.aal34, &tmp.aal34);
188 subtract_aal_stats(&dev->stats.aal5, &tmp.aal5);
189 }
190 return error ? -EFAULT : 0;
191}
192
193
David Woodhouse8865c412008-12-03 22:12:38 -0800194int atm_dev_ioctl(unsigned int cmd, void __user *arg, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 void __user *buf;
197 int error, len, number, size = 0;
198 struct atm_dev *dev;
199 struct list_head *p;
200 int *tmp_buf, *tmp_p;
David Woodhouse8865c412008-12-03 22:12:38 -0800201 int __user *sioc_len;
202 int __user *iobuf_len;
203
204#ifndef CONFIG_COMPAT
205 compat = 0; /* Just so the compiler _knows_ */
206#endif
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 switch (cmd) {
209 case ATM_GETNAMES:
David Woodhouse8865c412008-12-03 22:12:38 -0800210
211 if (compat) {
212#ifdef CONFIG_COMPAT
213 struct compat_atm_iobuf __user *ciobuf = arg;
214 compat_uptr_t cbuf;
215 iobuf_len = &ciobuf->length;
216 if (get_user(cbuf, &ciobuf->buffer))
217 return -EFAULT;
218 buf = compat_ptr(cbuf);
219#endif
220 } else {
221 struct atm_iobuf __user *iobuf = arg;
222 iobuf_len = &iobuf->length;
223 if (get_user(buf, &iobuf->buffer))
224 return -EFAULT;
225 }
226 if (get_user(len, iobuf_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return -EFAULT;
Ingo Molnar57b47a52006-03-20 22:35:41 -0800228 mutex_lock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 list_for_each(p, &atm_devs)
230 size += sizeof(int);
231 if (size > len) {
Ingo Molnar57b47a52006-03-20 22:35:41 -0800232 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -E2BIG;
234 }
235 tmp_buf = kmalloc(size, GFP_ATOMIC);
236 if (!tmp_buf) {
Ingo Molnar57b47a52006-03-20 22:35:41 -0800237 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return -ENOMEM;
239 }
240 tmp_p = tmp_buf;
241 list_for_each(p, &atm_devs) {
242 dev = list_entry(p, struct atm_dev, dev_list);
243 *tmp_p++ = dev->number;
244 }
Ingo Molnar57b47a52006-03-20 22:35:41 -0800245 mutex_unlock(&atm_dev_mutex);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900246 error = ((copy_to_user(buf, tmp_buf, size)) ||
David Woodhouse8865c412008-12-03 22:12:38 -0800247 put_user(size, iobuf_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 ? -EFAULT : 0;
249 kfree(tmp_buf);
250 return error;
251 default:
252 break;
253 }
254
David Woodhouse8865c412008-12-03 22:12:38 -0800255 if (compat) {
256#ifdef CONFIG_COMPAT
257 struct compat_atmif_sioc __user *csioc = arg;
258 compat_uptr_t carg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
David Woodhouse8865c412008-12-03 22:12:38 -0800260 sioc_len = &csioc->length;
261 if (get_user(carg, &csioc->arg))
262 return -EFAULT;
263 buf = compat_ptr(carg);
264
265 if (get_user(len, &csioc->length))
266 return -EFAULT;
267 if (get_user(number, &csioc->number))
268 return -EFAULT;
269#endif
270 } else {
271 struct atmif_sioc __user *sioc = arg;
272
273 sioc_len = &sioc->length;
274 if (get_user(buf, &sioc->arg))
275 return -EFAULT;
276 if (get_user(len, &sioc->length))
277 return -EFAULT;
278 if (get_user(number, &sioc->number))
279 return -EFAULT;
280 }
Mitchell Blank Jr50accc92005-11-29 16:15:18 -0800281 if (!(dev = try_then_request_module(atm_dev_lookup(number),
282 "atm-device-%d", number)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -ENODEV;
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 switch (cmd) {
286 case ATM_GETTYPE:
287 size = strlen(dev->type) + 1;
288 if (copy_to_user(buf, dev->type, size)) {
289 error = -EFAULT;
290 goto done;
291 }
292 break;
293 case ATM_GETESI:
294 size = ESI_LEN;
295 if (copy_to_user(buf, dev->esi, size)) {
296 error = -EFAULT;
297 goto done;
298 }
299 break;
300 case ATM_SETESI:
301 {
302 int i;
303
304 for (i = 0; i < ESI_LEN; i++)
305 if (dev->esi[i]) {
306 error = -EEXIST;
307 goto done;
308 }
309 }
310 /* fall through */
311 case ATM_SETESIF:
312 {
313 unsigned char esi[ESI_LEN];
314
315 if (!capable(CAP_NET_ADMIN)) {
316 error = -EPERM;
317 goto done;
318 }
319 if (copy_from_user(esi, buf, ESI_LEN)) {
320 error = -EFAULT;
321 goto done;
322 }
323 memcpy(dev->esi, esi, ESI_LEN);
324 error = ESI_LEN;
325 goto done;
326 }
327 case ATM_GETSTATZ:
328 if (!capable(CAP_NET_ADMIN)) {
329 error = -EPERM;
330 goto done;
331 }
332 /* fall through */
333 case ATM_GETSTAT:
334 size = sizeof(struct atm_dev_stats);
335 error = fetch_stats(dev, buf, cmd == ATM_GETSTATZ);
336 if (error)
337 goto done;
338 break;
339 case ATM_GETCIRANGE:
340 size = sizeof(struct atm_cirange);
341 if (copy_to_user(buf, &dev->ci_range, size)) {
342 error = -EFAULT;
343 goto done;
344 }
345 break;
346 case ATM_GETLINKRATE:
347 size = sizeof(int);
348 if (copy_to_user(buf, &dev->link_rate, size)) {
349 error = -EFAULT;
350 goto done;
351 }
352 break;
353 case ATM_RSTADDR:
354 if (!capable(CAP_NET_ADMIN)) {
355 error = -EPERM;
356 goto done;
357 }
Eric Kinzie0f21ba72005-10-06 22:19:28 -0700358 atm_reset_addr(dev, ATM_ADDR_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 case ATM_ADDADDR:
361 case ATM_DELADDR:
Eric Kinzie0f21ba72005-10-06 22:19:28 -0700362 case ATM_ADDLECSADDR:
363 case ATM_DELLECSADDR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!capable(CAP_NET_ADMIN)) {
365 error = -EPERM;
366 goto done;
367 }
368 {
369 struct sockaddr_atmsvc addr;
370
371 if (copy_from_user(&addr, buf, sizeof(addr))) {
372 error = -EFAULT;
373 goto done;
374 }
Eric Kinzie0f21ba72005-10-06 22:19:28 -0700375 if (cmd == ATM_ADDADDR || cmd == ATM_ADDLECSADDR)
376 error = atm_add_addr(dev, &addr,
377 (cmd == ATM_ADDADDR ?
378 ATM_ADDR_LOCAL : ATM_ADDR_LECS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 else
Eric Kinzie0f21ba72005-10-06 22:19:28 -0700380 error = atm_del_addr(dev, &addr,
381 (cmd == ATM_DELADDR ?
382 ATM_ADDR_LOCAL : ATM_ADDR_LECS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto done;
384 }
385 case ATM_GETADDR:
Eric Kinzie0f21ba72005-10-06 22:19:28 -0700386 case ATM_GETLECSADDR:
387 error = atm_get_addr(dev, buf, len,
388 (cmd == ATM_GETADDR ?
389 ATM_ADDR_LOCAL : ATM_ADDR_LECS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (error < 0)
391 goto done;
392 size = error;
393 /* may return 0, but later on size == 0 means "don't
394 write the length" */
David Woodhouse8865c412008-12-03 22:12:38 -0800395 error = put_user(size, sioc_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 ? -EFAULT : 0;
397 goto done;
398 case ATM_SETLOOP:
399 if (__ATM_LM_XTRMT((int) (unsigned long) buf) &&
400 __ATM_LM_XTLOC((int) (unsigned long) buf) >
401 __ATM_LM_XTRMT((int) (unsigned long) buf)) {
402 error = -EINVAL;
403 goto done;
404 }
405 /* fall through */
406 case ATM_SETCIRANGE:
407 case SONET_GETSTATZ:
408 case SONET_SETDIAG:
409 case SONET_CLRDIAG:
410 case SONET_SETFRAMING:
411 if (!capable(CAP_NET_ADMIN)) {
412 error = -EPERM;
413 goto done;
414 }
415 /* fall through */
416 default:
David Woodhouse8865c412008-12-03 22:12:38 -0800417 if (compat) {
418#ifdef CONFIG_COMPAT
419 if (!dev->ops->compat_ioctl) {
420 error = -EINVAL;
421 goto done;
422 }
423 size = dev->ops->compat_ioctl(dev, cmd, buf);
424#endif
425 } else {
426 if (!dev->ops->ioctl) {
427 error = -EINVAL;
428 goto done;
429 }
430 size = dev->ops->ioctl(dev, cmd, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (size < 0) {
433 error = (size == -ENOIOCTLCMD ? -EINVAL : size);
434 goto done;
435 }
436 }
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (size)
David Woodhouse8865c412008-12-03 22:12:38 -0800439 error = put_user(size, sioc_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 ? -EFAULT : 0;
441 else
442 error = 0;
443done:
444 atm_dev_put(dev);
445 return error;
446}
447
448static __inline__ void *dev_get_idx(loff_t left)
449{
450 struct list_head *p;
451
452 list_for_each(p, &atm_devs) {
453 if (!--left)
454 break;
455 }
456 return (p != &atm_devs) ? p : NULL;
457}
458
459void *atm_dev_seq_start(struct seq_file *seq, loff_t *pos)
460{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900461 mutex_lock(&atm_dev_mutex);
Joe Perches2e1e9842008-04-10 03:33:03 -0700462 return *pos ? dev_get_idx(*pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465void atm_dev_seq_stop(struct seq_file *seq, void *v)
466{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900467 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470void *atm_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
471{
472 ++*pos;
Joe Perches2e1e9842008-04-10 03:33:03 -0700473 v = (v == SEQ_START_TOKEN)
474 ? atm_devs.next : ((struct list_head *)v)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return (v == &atm_devs) ? NULL : v;
476}
477
478
479EXPORT_SYMBOL(atm_dev_register);
480EXPORT_SYMBOL(atm_dev_deregister);
481EXPORT_SYMBOL(atm_dev_lookup);