aboutsummaryrefslogtreecommitdiffstats
path: root/net/atm/ioctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/atm/ioctl.c')
-rw-r--r--net/atm/ioctl.c49
1 files changed, 43 insertions, 6 deletions
diff --git a/net/atm/ioctl.c b/net/atm/ioctl.c
index 7afd8e7754fd..76ed3c8d26e6 100644
--- a/net/atm/ioctl.c
+++ b/net/atm/ioctl.c
@@ -19,6 +19,7 @@
19#include <linux/atmlec.h> 19#include <linux/atmlec.h>
20#include <linux/mutex.h> 20#include <linux/mutex.h>
21#include <asm/ioctls.h> 21#include <asm/ioctls.h>
22#include <net/compat.h>
22 23
23#include "resources.h" 24#include "resources.h"
24#include "signaling.h" /* for WAITING and sigd_attach */ 25#include "signaling.h" /* for WAITING and sigd_attach */
@@ -46,7 +47,7 @@ void deregister_atm_ioctl(struct atm_ioctl *ioctl)
46EXPORT_SYMBOL(register_atm_ioctl); 47EXPORT_SYMBOL(register_atm_ioctl);
47EXPORT_SYMBOL(deregister_atm_ioctl); 48EXPORT_SYMBOL(deregister_atm_ioctl);
48 49
49int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) 50static int do_vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg, int compat)
50{ 51{
51 struct sock *sk = sock->sk; 52 struct sock *sk = sock->sk;
52 struct atm_vcc *vcc; 53 struct atm_vcc *vcc;
@@ -80,13 +81,25 @@ int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
80 goto done; 81 goto done;
81 } 82 }
82 case SIOCGSTAMP: /* borrowed from IP */ 83 case SIOCGSTAMP: /* borrowed from IP */
83 error = sock_get_timestamp(sk, argp); 84#ifdef CONFIG_COMPAT
85 if (compat)
86 error = compat_sock_get_timestamp(sk, argp);
87 else
88#endif
89 error = sock_get_timestamp(sk, argp);
84 goto done; 90 goto done;
85 case SIOCGSTAMPNS: /* borrowed from IP */ 91 case SIOCGSTAMPNS: /* borrowed from IP */
86 error = sock_get_timestampns(sk, argp); 92#ifdef CONFIG_COMPAT
93 if (compat)
94 error = compat_sock_get_timestampns(sk, argp);
95 else
96#endif
97 error = sock_get_timestampns(sk, argp);
87 goto done; 98 goto done;
88 case ATM_SETSC: 99 case ATM_SETSC:
89 printk(KERN_WARNING "ATM_SETSC is obsolete\n"); 100 if (net_ratelimit())
101 printk(KERN_WARNING "ATM_SETSC is obsolete; used by %s:%d\n",
102 current->comm, task_pid_nr(current));
90 error = 0; 103 error = 0;
91 goto done; 104 goto done;
92 case ATMSIGD_CTRL: 105 case ATMSIGD_CTRL:
@@ -99,12 +112,23 @@ int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
99 * info uses kernel pointers as opaque references, 112 * info uses kernel pointers as opaque references,
100 * so the holder of the file descriptor can scribble 113 * so the holder of the file descriptor can scribble
101 * on the kernel... so we should make sure that we 114 * on the kernel... so we should make sure that we
102 * have the same privledges that /proc/kcore needs 115 * have the same privileges that /proc/kcore needs
103 */ 116 */
104 if (!capable(CAP_SYS_RAWIO)) { 117 if (!capable(CAP_SYS_RAWIO)) {
105 error = -EPERM; 118 error = -EPERM;
106 goto done; 119 goto done;
107 } 120 }
121#ifdef CONFIG_COMPAT
122 /* WTF? I don't even want to _think_ about making this
123 work for 32-bit userspace. TBH I don't really want
124 to think about it at all. dwmw2. */
125 if (compat) {
126 if (net_ratelimit())
127 printk(KERN_WARNING "32-bit task cannot be atmsigd\n");
128 error = -EINVAL;
129 goto done;
130 }
131#endif
108 error = sigd_attach(vcc); 132 error = sigd_attach(vcc);
109 if (!error) 133 if (!error)
110 sock->state = SS_CONNECTED; 134 sock->state = SS_CONNECTED;
@@ -155,8 +179,21 @@ int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
155 if (error != -ENOIOCTLCMD) 179 if (error != -ENOIOCTLCMD)
156 goto done; 180 goto done;
157 181
158 error = atm_dev_ioctl(cmd, argp); 182 error = atm_dev_ioctl(cmd, argp, compat);
159 183
160done: 184done:
161 return error; 185 return error;
162} 186}
187
188
189int vcc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
190{
191 return do_vcc_ioctl(sock, cmd, arg, 0);
192}
193
194#ifdef CONFIG_COMPAT
195int vcc_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
196{
197 return do_vcc_ioctl(sock, cmd, arg, 1);
198}
199#endif