blob: efac92fd1efbc3f3a7b1fa923b0314e951249555 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on
Thomas Gleixnerc202f292008-01-30 13:30:08 +01003 * sys_sparc32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2000 VA Linux Co
6 * Copyright (C) 2000 Don Dugger <n0ano@valinux.com>
Thomas Gleixnerc202f292008-01-30 13:30:08 +01007 * Copyright (C) 1999 Arun Sharma <arun.sharma@intel.com>
8 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
9 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Copyright (C) 2000 Hewlett-Packard Co.
11 * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
Thomas Gleixnerc202f292008-01-30 13:30:08 +010012 * Copyright (C) 2000,2001,2002 Andi Kleen, SuSE Labs (x86-64 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * These routines maintain argument size conversion between 32bit and 64bit
Thomas Gleixnerc202f292008-01-30 13:30:08 +010015 * environment. In 2.5 most of this should be moved to a generic directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * This file assumes that there is a hole at the end of user address space.
Thomas Gleixnerc202f292008-01-30 13:30:08 +010018 *
19 * Some of the functions are LE specific currently. These are
20 * hopefully all marked. This should be fixed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/kernel.h>
24#include <linux/sched.h>
Thomas Gleixnerc202f292008-01-30 13:30:08 +010025#include <linux/fs.h>
26#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/signal.h>
28#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/times.h>
30#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/poll.h>
35#include <linux/personality.h>
36#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/compat.h>
39#include <linux/vfs.h>
40#include <linux/ptrace.h>
41#include <linux/highuid.h>
Andi Kleenddb15ec2006-09-26 10:52:33 +020042#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/mman.h>
44#include <asm/types.h>
45#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/atomic.h>
Arnaldo Carvalho de Melo28d23122008-02-07 21:03:04 -020047#include <asm/vgtod.h>
Jaswinder Singh Rajput2f06de02008-12-27 21:37:10 +053048#include <asm/sys_ia32.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define AA(__x) ((unsigned long)(__x))
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Thomas Gleixnerc202f292008-01-30 13:30:08 +010053asmlinkage long sys32_truncate64(char __user *filename,
54 unsigned long offset_low,
55 unsigned long offset_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low);
58}
59
Thomas Gleixnerc202f292008-01-30 13:30:08 +010060asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low,
61 unsigned long offset_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low);
64}
65
Thomas Gleixnerc202f292008-01-30 13:30:08 +010066/*
67 * Another set for IA32/LFS -- x86_64 struct stat is different due to
68 * support for 64bit inode numbers.
69 */
70static int cp_stat64(struct stat64 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 typeof(ubuf->st_uid) uid = 0;
73 typeof(ubuf->st_gid) gid = 0;
74 SET_UID(uid, stat->uid);
75 SET_GID(gid, stat->gid);
76 if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) ||
77 __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +010078 __put_user(stat->ino, &ubuf->__st_ino) ||
79 __put_user(stat->ino, &ubuf->st_ino) ||
80 __put_user(stat->mode, &ubuf->st_mode) ||
81 __put_user(stat->nlink, &ubuf->st_nlink) ||
82 __put_user(uid, &ubuf->st_uid) ||
83 __put_user(gid, &ubuf->st_gid) ||
84 __put_user(huge_encode_dev(stat->rdev), &ubuf->st_rdev) ||
85 __put_user(stat->size, &ubuf->st_size) ||
86 __put_user(stat->atime.tv_sec, &ubuf->st_atime) ||
87 __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec) ||
88 __put_user(stat->mtime.tv_sec, &ubuf->st_mtime) ||
89 __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec) ||
90 __put_user(stat->ctime.tv_sec, &ubuf->st_ctime) ||
91 __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec) ||
92 __put_user(stat->blksize, &ubuf->st_blksize) ||
93 __put_user(stat->blocks, &ubuf->st_blocks))
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return -EFAULT;
95 return 0;
96}
97
Thomas Gleixnerc202f292008-01-30 13:30:08 +010098asmlinkage long sys32_stat64(char __user *filename,
99 struct stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct kstat stat;
102 int ret = vfs_stat(filename, &stat);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!ret)
105 ret = cp_stat64(statbuf, &stat);
106 return ret;
107}
108
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100109asmlinkage long sys32_lstat64(char __user *filename,
110 struct stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 struct kstat stat;
113 int ret = vfs_lstat(filename, &stat);
114 if (!ret)
115 ret = cp_stat64(statbuf, &stat);
116 return ret;
117}
118
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100119asmlinkage long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 struct kstat stat;
122 int ret = vfs_fstat(fd, &stat);
123 if (!ret)
124 ret = cp_stat64(statbuf, &stat);
125 return ret;
126}
127
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100128asmlinkage long sys32_fstatat(unsigned int dfd, char __user *filename,
129 struct stat64 __user *statbuf, int flag)
Ulrich Dreppercff2b762006-02-11 17:55:47 -0800130{
131 struct kstat stat;
132 int error = -EINVAL;
133
134 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
135 goto out;
136
137 if (flag & AT_SYMLINK_NOFOLLOW)
138 error = vfs_lstat_fd(dfd, filename, &stat);
139 else
140 error = vfs_stat_fd(dfd, filename, &stat);
141
142 if (!error)
143 error = cp_stat64(statbuf, &stat);
144
145out:
146 return error;
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 * Linux/i386 didn't use to be able to handle more than
151 * 4 system call parameters, so these system calls used a memory
152 * block for parameter passing..
153 */
154
155struct mmap_arg_struct {
156 unsigned int addr;
157 unsigned int len;
158 unsigned int prot;
159 unsigned int flags;
160 unsigned int fd;
161 unsigned int offset;
162};
163
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100164asmlinkage long sys32_mmap(struct mmap_arg_struct __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 struct mmap_arg_struct a;
167 struct file *file = NULL;
168 unsigned long retval;
169 struct mm_struct *mm ;
170
171 if (copy_from_user(&a, arg, sizeof(a)))
172 return -EFAULT;
173
174 if (a.offset & ~PAGE_MASK)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100175 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (!(a.flags & MAP_ANONYMOUS)) {
178 file = fget(a.fd);
179 if (!file)
180 return -EBADF;
181 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100182
183 mm = current->mm;
184 down_write(&mm->mmap_sem);
185 retval = do_mmap_pgoff(file, a.addr, a.len, a.prot, a.flags,
186 a.offset>>PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (file)
188 fput(file);
189
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100190 up_write(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 return retval;
193}
194
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100195asmlinkage long sys32_mprotect(unsigned long start, size_t len,
196 unsigned long prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100198 return sys_mprotect(start, len, prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100201asmlinkage long sys32_pipe(int __user *fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 int retval;
204 int fds[2];
205
Ulrich Dreppered8cae82008-07-23 21:29:30 -0700206 retval = do_pipe_flags(fds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (retval)
208 goto out;
209 if (copy_to_user(fd, fds, sizeof(fds)))
210 retval = -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100211out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return retval;
213}
214
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100215asmlinkage long sys32_rt_sigaction(int sig, struct sigaction32 __user *act,
216 struct sigaction32 __user *oact,
217 unsigned int sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 struct k_sigaction new_ka, old_ka;
220 int ret;
221 compat_sigset_t set32;
222
223 /* XXX: Don't preclude handling different sized sigset_t's. */
224 if (sigsetsize != sizeof(compat_sigset_t))
225 return -EINVAL;
226
227 if (act) {
228 compat_uptr_t handler, restorer;
229
230 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
231 __get_user(handler, &act->sa_handler) ||
232 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100233 __get_user(restorer, &act->sa_restorer) ||
234 __copy_from_user(&set32, &act->sa_mask,
235 sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return -EFAULT;
237 new_ka.sa.sa_handler = compat_ptr(handler);
238 new_ka.sa.sa_restorer = compat_ptr(restorer);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100239
240 /*
241 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
242 * than _NSIG_WORDS << 1
243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 switch (_NSIG_WORDS) {
245 case 4: new_ka.sa.sa_mask.sig[3] = set32.sig[6]
246 | (((long)set32.sig[7]) << 32);
247 case 3: new_ka.sa.sa_mask.sig[2] = set32.sig[4]
248 | (((long)set32.sig[5]) << 32);
249 case 2: new_ka.sa.sa_mask.sig[1] = set32.sig[2]
250 | (((long)set32.sig[3]) << 32);
251 case 1: new_ka.sa.sa_mask.sig[0] = set32.sig[0]
252 | (((long)set32.sig[1]) << 32);
253 }
254 }
255
256 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
257
258 if (!ret && oact) {
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100259 /*
260 * FIXME: here we rely on _COMPAT_NSIG_WORS to be >=
261 * than _NSIG_WORDS << 1
262 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 switch (_NSIG_WORDS) {
264 case 4:
265 set32.sig[7] = (old_ka.sa.sa_mask.sig[3] >> 32);
266 set32.sig[6] = old_ka.sa.sa_mask.sig[3];
267 case 3:
268 set32.sig[5] = (old_ka.sa.sa_mask.sig[2] >> 32);
269 set32.sig[4] = old_ka.sa.sa_mask.sig[2];
270 case 2:
271 set32.sig[3] = (old_ka.sa.sa_mask.sig[1] >> 32);
272 set32.sig[2] = old_ka.sa.sa_mask.sig[1];
273 case 1:
274 set32.sig[1] = (old_ka.sa.sa_mask.sig[0] >> 32);
275 set32.sig[0] = old_ka.sa.sa_mask.sig[0];
276 }
277 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100278 __put_user(ptr_to_compat(old_ka.sa.sa_handler),
279 &oact->sa_handler) ||
280 __put_user(ptr_to_compat(old_ka.sa.sa_restorer),
281 &oact->sa_restorer) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100283 __copy_to_user(&oact->sa_mask, &set32,
284 sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -EFAULT;
286 }
287
288 return ret;
289}
290
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100291asmlinkage long sys32_sigaction(int sig, struct old_sigaction32 __user *act,
292 struct old_sigaction32 __user *oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100294 struct k_sigaction new_ka, old_ka;
295 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100297 if (act) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 compat_old_sigset_t mask;
299 compat_uptr_t handler, restorer;
300
301 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
302 __get_user(handler, &act->sa_handler) ||
303 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
304 __get_user(restorer, &act->sa_restorer) ||
305 __get_user(mask, &act->sa_mask))
306 return -EFAULT;
307
308 new_ka.sa.sa_handler = compat_ptr(handler);
309 new_ka.sa.sa_restorer = compat_ptr(restorer);
310
311 siginitset(&new_ka.sa.sa_mask, mask);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100314 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 if (!ret && oact) {
317 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100318 __put_user(ptr_to_compat(old_ka.sa.sa_handler),
319 &oact->sa_handler) ||
320 __put_user(ptr_to_compat(old_ka.sa.sa_restorer),
321 &oact->sa_restorer) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
323 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
324 return -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 return ret;
328}
329
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100330asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
331 compat_sigset_t __user *oset,
332 unsigned int sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 sigset_t s;
335 compat_sigset_t s32;
336 int ret;
337 mm_segment_t old_fs = get_fs();
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (set) {
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100340 if (copy_from_user(&s32, set, sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return -EFAULT;
342 switch (_NSIG_WORDS) {
343 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
344 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
345 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
346 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
347 }
348 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100349 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200350 ret = sys_rt_sigprocmask(how,
351 set ? (sigset_t __user *)&s : NULL,
352 oset ? (sigset_t __user *)&s : NULL,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100353 sigsetsize);
354 set_fs(old_fs);
355 if (ret)
356 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (oset) {
358 switch (_NSIG_WORDS) {
359 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
360 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
361 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
362 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
363 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100364 if (copy_to_user(oset, &s32, sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return -EFAULT;
366 }
367 return 0;
368}
369
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100370asmlinkage long sys32_alarm(unsigned int seconds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -0800372 return alarm_setitimer(seconds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375struct sel_arg_struct {
376 unsigned int n;
377 unsigned int inp;
378 unsigned int outp;
379 unsigned int exp;
380 unsigned int tvp;
381};
382
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100383asmlinkage long sys32_old_select(struct sel_arg_struct __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct sel_arg_struct a;
386
387 if (copy_from_user(&a, arg, sizeof(a)))
388 return -EFAULT;
389 return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp),
390 compat_ptr(a.exp), compat_ptr(a.tvp));
391}
392
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100393asmlinkage long sys32_waitpid(compat_pid_t pid, unsigned int *stat_addr,
394 int options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 return compat_sys_wait4(pid, stat_addr, options, NULL);
397}
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/* 32-bit timeval and related flotsam. */
400
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100401asmlinkage long sys32_sysfs(int option, u32 arg1, u32 arg2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 return sys_sysfs(option, arg1, arg2);
404}
405
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100406asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
407 struct compat_timespec __user *interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 struct timespec t;
410 int ret;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100411 mm_segment_t old_fs = get_fs();
412
413 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200414 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100415 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (put_compat_timespec(&t, interval))
417 return -EFAULT;
418 return ret;
419}
420
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100421asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
422 compat_size_t sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 sigset_t s;
425 compat_sigset_t s32;
426 int ret;
427 mm_segment_t old_fs = get_fs();
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100428
429 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200430 ret = sys_rt_sigpending((sigset_t __user *)&s, sigsetsize);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100431 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (!ret) {
433 switch (_NSIG_WORDS) {
434 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
435 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
436 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
437 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
438 }
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100439 if (copy_to_user(set, &s32, sizeof(compat_sigset_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return -EFAULT;
441 }
442 return ret;
443}
444
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100445asmlinkage long sys32_rt_sigqueueinfo(int pid, int sig,
446 compat_siginfo_t __user *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 siginfo_t info;
449 int ret;
450 mm_segment_t old_fs = get_fs();
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (copy_siginfo_from_user32(&info, uinfo))
453 return -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100454 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200455 ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *)&info);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100456 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return ret;
458}
459
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700460#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461struct sysctl_ia32 {
462 unsigned int name;
463 int nlen;
464 unsigned int oldval;
465 unsigned int oldlenp;
466 unsigned int newval;
467 unsigned int newlen;
468 unsigned int __unused[4];
469};
470
471
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100472asmlinkage long sys32_sysctl(struct sysctl_ia32 __user *args32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 struct sysctl_ia32 a32;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100475 mm_segment_t old_fs = get_fs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 void __user *oldvalp, *newvalp;
477 size_t oldlen;
478 int __user *namep;
479 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100481 if (copy_from_user(&a32, args32, sizeof(a32)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return -EFAULT;
483
484 /*
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100485 * We need to pre-validate these because we have to disable
486 * address checking before calling do_sysctl() because of
487 * OLDLEN but we can't run the risk of the user specifying bad
488 * addresses here. Well, since we're dealing with 32 bit
489 * addresses, we KNOW that access_ok() will always succeed, so
490 * this is an expensive NOP, but so what...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
492 namep = compat_ptr(a32.name);
493 oldvalp = compat_ptr(a32.oldval);
494 newvalp = compat_ptr(a32.newval);
495
496 if ((oldvalp && get_user(oldlen, (int __user *)compat_ptr(a32.oldlenp)))
497 || !access_ok(VERIFY_WRITE, namep, 0)
498 || !access_ok(VERIFY_WRITE, oldvalp, 0)
499 || !access_ok(VERIFY_WRITE, newvalp, 0))
500 return -EFAULT;
501
502 set_fs(KERNEL_DS);
503 lock_kernel();
Andi Kleenddb15ec2006-09-26 10:52:33 +0200504 ret = do_sysctl(namep, a32.nlen, oldvalp, (size_t __user *)&oldlen,
505 newvalp, (size_t) a32.newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 unlock_kernel();
507 set_fs(old_fs);
508
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100509 if (oldvalp && put_user(oldlen, (int __user *)compat_ptr(a32.oldlenp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return -EFAULT;
511
512 return ret;
513}
514#endif
515
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100516/* warning: next two assume little endian */
517asmlinkage long sys32_pread(unsigned int fd, char __user *ubuf, u32 count,
518 u32 poslo, u32 poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 return sys_pread64(fd, ubuf, count,
521 ((loff_t)AA(poshi) << 32) | AA(poslo));
522}
523
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100524asmlinkage long sys32_pwrite(unsigned int fd, char __user *ubuf, u32 count,
525 u32 poslo, u32 poshi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 return sys_pwrite64(fd, ubuf, count,
528 ((loff_t)AA(poshi) << 32) | AA(poslo));
529}
530
531
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100532asmlinkage long sys32_personality(unsigned long personality)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 int ret;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100535
536 if (personality(current->personality) == PER_LINUX32 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 personality == PER_LINUX)
538 personality = PER_LINUX32;
539 ret = sys_personality(personality);
540 if (ret == PER_LINUX32)
541 ret = PER_LINUX;
542 return ret;
543}
544
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100545asmlinkage long sys32_sendfile(int out_fd, int in_fd,
546 compat_off_t __user *offset, s32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 mm_segment_t old_fs = get_fs();
549 int ret;
550 off_t of;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (offset && get_user(of, offset))
553 return -EFAULT;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 set_fs(KERNEL_DS);
Andi Kleenddb15ec2006-09-26 10:52:33 +0200556 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL,
557 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 set_fs(old_fs);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100559
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +0200560 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return ret;
563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565asmlinkage long sys32_mmap2(unsigned long addr, unsigned long len,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100566 unsigned long prot, unsigned long flags,
567 unsigned long fd, unsigned long pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 struct mm_struct *mm = current->mm;
570 unsigned long error;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100571 struct file *file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
574 if (!(flags & MAP_ANONYMOUS)) {
575 file = fget(fd);
576 if (!file)
577 return -EBADF;
578 }
579
580 down_write(&mm->mmap_sem);
581 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
582 up_write(&mm->mmap_sem);
583
584 if (file)
585 fput(file);
586 return error;
587}
588
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100589asmlinkage long sys32_olduname(struct oldold_utsname __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100591 char *arch = "x86_64";
Andi Kleen26c13f22006-09-26 10:52:40 +0200592 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (!name)
595 return -EFAULT;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700596 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return -EFAULT;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700598
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100599 down_read(&uts_sem);
600
601 err = __copy_to_user(&name->sysname, &utsname()->sysname,
602 __OLD_UTS_LEN);
603 err |= __put_user(0, name->sysname+__OLD_UTS_LEN);
604 err |= __copy_to_user(&name->nodename, &utsname()->nodename,
605 __OLD_UTS_LEN);
606 err |= __put_user(0, name->nodename+__OLD_UTS_LEN);
607 err |= __copy_to_user(&name->release, &utsname()->release,
608 __OLD_UTS_LEN);
609 err |= __put_user(0, name->release+__OLD_UTS_LEN);
610 err |= __copy_to_user(&name->version, &utsname()->version,
611 __OLD_UTS_LEN);
612 err |= __put_user(0, name->version+__OLD_UTS_LEN);
613
614 if (personality(current->personality) == PER_LINUX32)
615 arch = "i686";
616
617 err |= __copy_to_user(&name->machine, arch, strlen(arch) + 1);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700618
619 up_read(&uts_sem);
620
621 err = err ? -EFAULT : 0;
622
623 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100626long sys32_uname(struct old_utsname __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 int err;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (!name)
631 return -EFAULT;
632 down_read(&uts_sem);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100633 err = copy_to_user(name, utsname(), sizeof(*name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 up_read(&uts_sem);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100635 if (personality(current->personality) == PER_LINUX32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 err |= copy_to_user(&name->machine, "i686", 5);
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100637
638 return err ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641asmlinkage long sys32_execve(char __user *name, compat_uptr_t __user *argv,
642 compat_uptr_t __user *envp, struct pt_regs *regs)
643{
644 long error;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100645 char *filename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 filename = getname(name);
648 error = PTR_ERR(filename);
649 if (IS_ERR(filename))
650 return error;
651 error = compat_do_execve(filename, argv, envp, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 putname(filename);
653 return error;
654}
655
656asmlinkage long sys32_clone(unsigned int clone_flags, unsigned int newsp,
657 struct pt_regs *regs)
658{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100659 void __user *parent_tid = (void __user *)regs->dx;
660 void __user *child_tid = (void __user *)regs->di;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (!newsp)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100663 newsp = regs->sp;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100664 return do_fork(clone_flags, newsp, regs, 0, parent_tid, child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100668 * Some system calls that need sign extended arguments. This could be
669 * done by a generic wrapper.
670 */
671long sys32_lseek(unsigned int fd, int offset, unsigned int whence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 return sys_lseek(fd, offset, whence);
674}
675
676long sys32_kill(int pid, int sig)
677{
678 return sys_kill(pid, sig);
679}
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100680
681long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 __u32 len_low, __u32 len_high, int advice)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100683{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return sys_fadvise64_64(fd,
685 (((u64)offset_high)<<32) | offset_low,
686 (((u64)len_high)<<32) | len_low,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100687 advice);
688}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690long sys32_vm86_warning(void)
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100691{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct task_struct *me = current;
693 static char lastcomm[sizeof(me->comm)];
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (strncmp(lastcomm, me->comm, sizeof(lastcomm))) {
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100696 compat_printk(KERN_INFO
697 "%s: vm86 mode not supported on 64 bit kernel\n",
698 me->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 strncpy(lastcomm, me->comm, sizeof(lastcomm));
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return -ENOSYS;
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100702}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704long sys32_lookup_dcookie(u32 addr_low, u32 addr_high,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100705 char __user *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 return sys_lookup_dcookie(((u64)addr_high << 32) | addr_low, buf, len);
708}
709
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100710asmlinkage ssize_t sys32_readahead(int fd, unsigned off_lo, unsigned off_hi,
711 size_t count)
Andi Kleene412ac42007-06-20 12:23:30 +0200712{
713 return sys_readahead(fd, ((u64)off_hi << 32) | off_lo, count);
714}
715
716asmlinkage long sys32_sync_file_range(int fd, unsigned off_low, unsigned off_hi,
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100717 unsigned n_low, unsigned n_hi, int flags)
Andi Kleene412ac42007-06-20 12:23:30 +0200718{
719 return sys_sync_file_range(fd,
720 ((u64)off_hi << 32) | off_low,
721 ((u64)n_hi << 32) | n_low, flags);
722}
723
Thomas Gleixnerc202f292008-01-30 13:30:08 +0100724asmlinkage long sys32_fadvise64(int fd, unsigned offset_lo, unsigned offset_hi,
725 size_t len, int advice)
Andi Kleene412ac42007-06-20 12:23:30 +0200726{
727 return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
728 len, advice);
729}
Amit Arora97ac7352007-07-17 21:42:44 -0400730
731asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_lo,
732 unsigned offset_hi, unsigned len_lo,
733 unsigned len_hi)
734{
735 return sys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
736 ((u64)len_hi << 32) | len_lo);
737}