1 /* ATM ioctl handling */
3 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
4 /* 2003 John Levon <levon@movementarian.org> */
7 #include <linux/config.h>
8 #include <linux/module.h>
9 #include <linux/kmod.h>
10 #include <linux/net.h> /* struct socket, struct proto_ops */
11 #include <linux/atm.h> /* ATM stuff */
12 #include <linux/atmdev.h>
13 #include <linux/atmclip.h> /* CLIP_*ENCAP */
14 #include <linux/atmarp.h> /* manifest constants */
15 #include <linux/sonet.h> /* for ioctls */
16 #include <linux/atmsvc.h>
17 #include <linux/atmmpc.h>
18 #include <net/atmclip.h>
19 #include <linux/atmlec.h>
20 #include <asm/ioctls.h>
22 #include "resources.h"
23 #include "signaling.h" /* for WAITING and sigd_attach */
26 static DECLARE_MUTEX(ioctl_mutex
);
27 static LIST_HEAD(ioctl_list
);
30 void register_atm_ioctl(struct atm_ioctl
*ioctl
)
33 list_add_tail(&ioctl
->list
, &ioctl_list
);
37 void deregister_atm_ioctl(struct atm_ioctl
*ioctl
)
40 list_del(&ioctl
->list
);
44 EXPORT_SYMBOL(register_atm_ioctl
);
45 EXPORT_SYMBOL(deregister_atm_ioctl
);
47 int vcc_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
49 struct sock
*sk
= sock
->sk
;
52 struct list_head
* pos
;
53 void __user
*argp
= (void __user
*)arg
;
58 if (sock
->state
!= SS_CONNECTED
||
59 !test_bit(ATM_VF_READY
, &vcc
->flags
)) {
63 error
= put_user(sk
->sk_sndbuf
-
64 atomic_read(&sk
->sk_wmem_alloc
),
65 (int __user
*) argp
) ? -EFAULT
: 0;
71 if (sock
->state
!= SS_CONNECTED
) {
75 skb
= skb_peek(&sk
->sk_receive_queue
);
76 error
= put_user(skb
? skb
->len
: 0,
77 (int __user
*)argp
) ? -EFAULT
: 0;
80 case SIOCGSTAMP
: /* borrowed from IP */
81 error
= sock_get_timestamp(sk
, argp
);
84 printk(KERN_WARNING
"ATM_SETSC is obsolete\n");
88 if (!capable(CAP_NET_ADMIN
)) {
93 * The user/kernel protocol for exchanging signalling
94 * info uses kernel pointers as opaque references,
95 * so the holder of the file descriptor can scribble
96 * on the kernel... so we should make sure that we
97 * have the same privledges that /proc/kcore needs
99 if (!capable(CAP_SYS_RAWIO
)) {
103 error
= sigd_attach(vcc
);
105 sock
->state
= SS_CONNECTED
;
111 if (cmd
== ATMMPC_CTRL
|| cmd
== ATMMPC_DATA
)
112 request_module("mpoa");
113 if (cmd
== ATMARPD_CTRL
)
114 request_module("clip");
115 if (cmd
== ATMLEC_CTRL
)
116 request_module("lec");
118 error
= -ENOIOCTLCMD
;
121 list_for_each(pos
, &ioctl_list
) {
122 struct atm_ioctl
* ic
= list_entry(pos
, struct atm_ioctl
, list
);
123 if (try_module_get(ic
->owner
)) {
124 error
= ic
->ioctl(sock
, cmd
, arg
);
125 module_put(ic
->owner
);
126 if (error
!= -ENOIOCTLCMD
)
132 if (error
!= -ENOIOCTLCMD
)
135 error
= atm_dev_ioctl(cmd
, argp
);