blob: 447ed89205d8e4ef5a43e7614de049838e69056d [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}
Joe Perches07b54c92010-01-26 11:40:16 +000074EXPORT_SYMBOL(atm_dev_lookup);
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) {
Joe Perches07b54c92010-01-26 11:40:16 +000088 inuse = __atm_dev_lookup(number);
89 if (inuse) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 atm_dev_put(inuse);
Ingo Molnar57b47a52006-03-20 22:35:41 -080091 mutex_unlock(&atm_dev_mutex);
Adrian Bunkebc37b62005-04-21 16:48:26 -070092 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return NULL;
94 }
95 dev->number = number;
96 } else {
97 dev->number = 0;
98 while ((inuse = __atm_dev_lookup(dev->number))) {
99 atm_dev_put(inuse);
100 dev->number++;
101 }
102 }
103
104 dev->ops = ops;
105 if (flags)
106 dev->flags = *flags;
107 else
108 memset(&dev->flags, 0, sizeof(dev->flags));
109 memset(&dev->stats, 0, sizeof(dev->stats));
110 atomic_set(&dev->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 if (atm_proc_dev_register(dev) < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000113 pr_err("atm_proc_dev_register failed for dev %s\n", type);
Roman Kagan656d98b2006-06-29 12:36:34 -0700114 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116
Roman Kagan656d98b2006-06-29 12:36:34 -0700117 if (atm_register_sysfs(dev) < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000118 pr_err("atm_register_sysfs failed for dev %s\n", type);
Roman Kagan656d98b2006-06-29 12:36:34 -0700119 atm_proc_dev_deregister(dev);
120 goto out_fail;
121 }
122
123 list_add_tail(&dev->dev_list, &atm_devs);
124
125out:
126 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return dev;
Roman Kagan656d98b2006-06-29 12:36:34 -0700128
129out_fail:
130 kfree(dev);
131 dev = NULL;
132 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
Joe Perches07b54c92010-01-26 11:40:16 +0000134EXPORT_SYMBOL(atm_dev_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136void atm_dev_deregister(struct atm_dev *dev)
137{
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800138 BUG_ON(test_bit(ATM_DF_REMOVED, &dev->flags));
139 set_bit(ATM_DF_REMOVED, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800141 /*
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900142 * if we remove current device from atm_devs list, new device
143 * with same number can appear, such we need deregister proc,
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800144 * release async all vccs and remove them from vccs list too
145 */
Ingo Molnar57b47a52006-03-20 22:35:41 -0800146 mutex_lock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 list_del(&dev->dev_list);
Ingo Molnar57b47a52006-03-20 22:35:41 -0800148 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800150 atm_dev_release_vccs(dev);
Roman Kagan656d98b2006-06-29 12:36:34 -0700151 atm_unregister_sysfs(dev);
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800152 atm_proc_dev_deregister(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800154 atm_dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
Joe Perches07b54c92010-01-26 11:40:16 +0000156EXPORT_SYMBOL(atm_dev_deregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158static void copy_aal_stats(struct k_atm_aal_stats *from,
159 struct atm_aal_stats *to)
160{
161#define __HANDLE_ITEM(i) to->i = atomic_read(&from->i)
162 __AAL_STAT_ITEMS
163#undef __HANDLE_ITEM
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static 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
Joe Perches07b54c92010-01-26 11:40:16 +0000174static int fetch_stats(struct atm_dev *dev, struct atm_dev_stats __user *arg,
175 int zero)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
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
David Woodhouse8865c412008-12-03 22:12:38 -0800193int atm_dev_ioctl(unsigned int cmd, void __user *arg, int compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 void __user *buf;
196 int error, len, number, size = 0;
197 struct atm_dev *dev;
198 struct list_head *p;
199 int *tmp_buf, *tmp_p;
David Woodhouse8865c412008-12-03 22:12:38 -0800200 int __user *sioc_len;
201 int __user *iobuf_len;
202
203#ifndef CONFIG_COMPAT
204 compat = 0; /* Just so the compiler _knows_ */
205#endif
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 switch (cmd) {
Joe Perches07b54c92010-01-26 11:40:16 +0000208 case ATM_GETNAMES:
209 if (compat) {
David Woodhouse8865c412008-12-03 22:12:38 -0800210#ifdef CONFIG_COMPAT
Joe Perches07b54c92010-01-26 11:40:16 +0000211 struct compat_atm_iobuf __user *ciobuf = arg;
212 compat_uptr_t cbuf;
213 iobuf_len = &ciobuf->length;
214 if (get_user(cbuf, &ciobuf->buffer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return -EFAULT;
Joe Perches07b54c92010-01-26 11:40:16 +0000216 buf = compat_ptr(cbuf);
217#endif
218 } else {
219 struct atm_iobuf __user *iobuf = arg;
220 iobuf_len = &iobuf->length;
221 if (get_user(buf, &iobuf->buffer))
222 return -EFAULT;
223 }
224 if (get_user(len, iobuf_len))
225 return -EFAULT;
226 mutex_lock(&atm_dev_mutex);
227 list_for_each(p, &atm_devs)
228 size += sizeof(int);
229 if (size > len) {
Ingo Molnar57b47a52006-03-20 22:35:41 -0800230 mutex_unlock(&atm_dev_mutex);
Joe Perches07b54c92010-01-26 11:40:16 +0000231 return -E2BIG;
232 }
233 tmp_buf = kmalloc(size, GFP_ATOMIC);
234 if (!tmp_buf) {
235 mutex_unlock(&atm_dev_mutex);
236 return -ENOMEM;
237 }
238 tmp_p = tmp_buf;
239 list_for_each(p, &atm_devs) {
240 dev = list_entry(p, struct atm_dev, dev_list);
241 *tmp_p++ = dev->number;
242 }
243 mutex_unlock(&atm_dev_mutex);
244 error = ((copy_to_user(buf, tmp_buf, size)) ||
245 put_user(size, iobuf_len))
246 ? -EFAULT : 0;
247 kfree(tmp_buf);
248 return error;
249 default:
250 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
David Woodhouse8865c412008-12-03 22:12:38 -0800253 if (compat) {
254#ifdef CONFIG_COMPAT
255 struct compat_atmif_sioc __user *csioc = arg;
256 compat_uptr_t carg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
David Woodhouse8865c412008-12-03 22:12:38 -0800258 sioc_len = &csioc->length;
259 if (get_user(carg, &csioc->arg))
260 return -EFAULT;
261 buf = compat_ptr(carg);
262
263 if (get_user(len, &csioc->length))
264 return -EFAULT;
265 if (get_user(number, &csioc->number))
266 return -EFAULT;
267#endif
268 } else {
269 struct atmif_sioc __user *sioc = arg;
270
271 sioc_len = &sioc->length;
272 if (get_user(buf, &sioc->arg))
273 return -EFAULT;
274 if (get_user(len, &sioc->length))
275 return -EFAULT;
276 if (get_user(number, &sioc->number))
277 return -EFAULT;
278 }
Joe Perches07b54c92010-01-26 11:40:16 +0000279
280 dev = try_then_request_module(atm_dev_lookup(number), "atm-device-%d",
281 number);
282 if (!dev)
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) {
Joe Perches07b54c92010-01-26 11:40:16 +0000286 case ATM_GETTYPE:
287 size = strlen(dev->type) + 1;
288 if (copy_to_user(buf, dev->type, size)) {
289 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 goto done;
Joe Perches07b54c92010-01-26 11:40:16 +0000291 }
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 goto done;
308 }
309 }
Joe Perches07b54c92010-01-26 11:40:16 +0000310 /* 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 }
358 atm_reset_addr(dev, ATM_ADDR_LOCAL);
359 break;
360 case ATM_ADDADDR:
361 case ATM_DELADDR:
362 case ATM_ADDLECSADDR:
363 case ATM_DELLECSADDR:
364 {
365 struct sockaddr_atmsvc addr;
366
367 if (!capable(CAP_NET_ADMIN)) {
368 error = -EPERM;
369 goto done;
370 }
371
372 if (copy_from_user(&addr, buf, sizeof(addr))) {
373 error = -EFAULT;
374 goto done;
375 }
376 if (cmd == ATM_ADDADDR || cmd == ATM_ADDLECSADDR)
377 error = atm_add_addr(dev, &addr,
378 (cmd == ATM_ADDADDR ?
379 ATM_ADDR_LOCAL : ATM_ADDR_LECS));
380 else
381 error = atm_del_addr(dev, &addr,
382 (cmd == ATM_DELADDR ?
383 ATM_ADDR_LOCAL : ATM_ADDR_LECS));
384 goto done;
385 }
386 case ATM_GETADDR:
387 case ATM_GETLECSADDR:
388 error = atm_get_addr(dev, buf, len,
389 (cmd == ATM_GETADDR ?
390 ATM_ADDR_LOCAL : ATM_ADDR_LECS));
391 if (error < 0)
392 goto done;
393 size = error;
394 /* may return 0, but later on size == 0 means "don't
395 write the length" */
396 error = put_user(size, sioc_len) ? -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:
417 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);
431 }
432 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)
Joe Perches07b54c92010-01-26 11:40:16 +0000439 error = put_user(size, sioc_len) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 else
441 error = 0;
442done:
443 atm_dev_put(dev);
444 return error;
445}
446
Joe Perches07b54c92010-01-26 11:40:16 +0000447static inline void *dev_get_idx(loff_t left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct list_head *p;
450
451 list_for_each(p, &atm_devs) {
452 if (!--left)
453 break;
454 }
455 return (p != &atm_devs) ? p : NULL;
456}
457
458void *atm_dev_seq_start(struct seq_file *seq, loff_t *pos)
459{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900460 mutex_lock(&atm_dev_mutex);
Joe Perches2e1e9842008-04-10 03:33:03 -0700461 return *pos ? dev_get_idx(*pos) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
464void atm_dev_seq_stop(struct seq_file *seq, void *v)
465{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900466 mutex_unlock(&atm_dev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469void *atm_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
470{
471 ++*pos;
Joe Perches2e1e9842008-04-10 03:33:03 -0700472 v = (v == SEQ_START_TOKEN)
473 ? atm_devs.next : ((struct list_head *)v)->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return (v == &atm_devs) ? NULL : v;
475}