blob: 05cf446e60b2f6a7c44373ae441570f17bd3403f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390x/kernel/linux32.c
3 *
4 * S390 version
5 * Copyright (C) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
7 * Gerhard Tonn (ton@de.ibm.com)
8 * Thomas Spatzier (tspat@de.ibm.com)
9 *
10 * Conversion between 31bit and 64bit native syscalls.
11 *
12 * Heavily inspired by the 32-bit Sparc compat code which is
13 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
14 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
15 *
16 */
17
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel.h>
20#include <linux/sched.h>
21#include <linux/fs.h>
22#include <linux/mm.h>
23#include <linux/file.h>
24#include <linux/signal.h>
25#include <linux/resource.h>
26#include <linux/times.h>
27#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/smp.h>
29#include <linux/smp_lock.h>
30#include <linux/sem.h>
31#include <linux/msg.h>
32#include <linux/shm.h>
33#include <linux/slab.h>
34#include <linux/uio.h>
35#include <linux/nfs_fs.h>
36#include <linux/quota.h>
37#include <linux/module.h>
38#include <linux/sunrpc/svc.h>
39#include <linux/nfsd/nfsd.h>
40#include <linux/nfsd/cache.h>
41#include <linux/nfsd/xdr.h>
42#include <linux/nfsd/syscall.h>
43#include <linux/poll.h>
44#include <linux/personality.h>
45#include <linux/stat.h>
46#include <linux/filter.h>
47#include <linux/highmem.h>
48#include <linux/highuid.h>
49#include <linux/mman.h>
50#include <linux/ipv6.h>
51#include <linux/in.h>
52#include <linux/icmpv6.h>
53#include <linux/syscalls.h>
54#include <linux/sysctl.h>
55#include <linux/binfmts.h>
Randy Dunlapa9415642006-01-11 12:17:48 -080056#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/compat.h>
58#include <linux/vfs.h>
59#include <linux/ptrace.h>
Martin Schwidefsky068e1b92005-07-13 01:10:46 -070060#include <linux/fadvise.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070061#include <linux/ipc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#include <net/scm.h>
67#include <net/sock.h>
68
69#include "compat_linux.h"
70
Gerald Schaeferc1821c22007-02-05 21:18:17 +010071long psw_user32_bits = (PSW_BASE32_BITS | PSW_MASK_DAT | PSW_ASC_HOME |
72 PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK |
73 PSW_MASK_PSTATE | PSW_DEFAULT_KEY);
74long psw32_user_bits = (PSW32_BASE_BITS | PSW32_MASK_DAT | PSW32_ASC_HOME |
75 PSW32_MASK_IO | PSW32_MASK_EXT | PSW32_MASK_MCHECK |
76 PSW32_MASK_PSTATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* For this source file, we want overflow handling. */
79
80#undef high2lowuid
81#undef high2lowgid
82#undef low2highuid
83#undef low2highgid
84#undef SET_UID16
85#undef SET_GID16
86#undef NEW_TO_OLD_UID
87#undef NEW_TO_OLD_GID
88#undef SET_OLDSTAT_UID
89#undef SET_OLDSTAT_GID
90#undef SET_STAT_UID
91#undef SET_STAT_GID
92
93#define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
94#define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
95#define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid)
96#define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid)
97#define SET_UID16(var, uid) var = high2lowuid(uid)
98#define SET_GID16(var, gid) var = high2lowgid(gid)
99#define NEW_TO_OLD_UID(uid) high2lowuid(uid)
100#define NEW_TO_OLD_GID(gid) high2lowgid(gid)
101#define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
102#define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
103#define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
104#define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
105
Al Viro24954a12006-02-01 05:16:15 -0500106asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 return sys_chown(filename, low2highuid(user), low2highgid(group));
109}
110
Al Viro24954a12006-02-01 05:16:15 -0500111asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 return sys_lchown(filename, low2highuid(user), low2highgid(group));
114}
115
116asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
117{
118 return sys_fchown(fd, low2highuid(user), low2highgid(group));
119}
120
121asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
122{
123 return sys_setregid(low2highgid(rgid), low2highgid(egid));
124}
125
126asmlinkage long sys32_setgid16(u16 gid)
127{
128 return sys_setgid((gid_t)gid);
129}
130
131asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
132{
133 return sys_setreuid(low2highuid(ruid), low2highuid(euid));
134}
135
136asmlinkage long sys32_setuid16(u16 uid)
137{
138 return sys_setuid((uid_t)uid);
139}
140
141asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
142{
143 return sys_setresuid(low2highuid(ruid), low2highuid(euid),
144 low2highuid(suid));
145}
146
Al Viro24954a12006-02-01 05:16:15 -0500147asmlinkage long sys32_getresuid16(u16 __user *ruid, u16 __user *euid, u16 __user *suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int retval;
150
David Howellsb6dff3e2008-11-14 10:39:16 +1100151 if (!(retval = put_user(high2lowuid(current->cred->uid), ruid)) &&
152 !(retval = put_user(high2lowuid(current->cred->euid), euid)))
153 retval = put_user(high2lowuid(current->cred->suid), suid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 return retval;
156}
157
158asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
159{
160 return sys_setresgid(low2highgid(rgid), low2highgid(egid),
161 low2highgid(sgid));
162}
163
Al Viro24954a12006-02-01 05:16:15 -0500164asmlinkage long sys32_getresgid16(u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 int retval;
167
David Howellsb6dff3e2008-11-14 10:39:16 +1100168 if (!(retval = put_user(high2lowgid(current->cred->gid), rgid)) &&
169 !(retval = put_user(high2lowgid(current->cred->egid), egid)))
170 retval = put_user(high2lowgid(current->cred->sgid), sgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 return retval;
173}
174
175asmlinkage long sys32_setfsuid16(u16 uid)
176{
177 return sys_setfsuid((uid_t)uid);
178}
179
180asmlinkage long sys32_setfsgid16(u16 gid)
181{
182 return sys_setfsgid((gid_t)gid);
183}
184
Al Viro24954a12006-02-01 05:16:15 -0500185static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 int i;
188 u16 group;
189
190 for (i = 0; i < group_info->ngroups; i++) {
191 group = (u16)GROUP_AT(group_info, i);
192 if (put_user(group, grouplist+i))
193 return -EFAULT;
194 }
195
196 return 0;
197}
198
Al Viro24954a12006-02-01 05:16:15 -0500199static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 int i;
202 u16 group;
203
204 for (i = 0; i < group_info->ngroups; i++) {
205 if (get_user(group, grouplist+i))
206 return -EFAULT;
207 GROUP_AT(group_info, i) = (gid_t)group;
208 }
209
210 return 0;
211}
212
Al Viro24954a12006-02-01 05:16:15 -0500213asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int i;
216
217 if (gidsetsize < 0)
218 return -EINVAL;
219
David Howellsb6dff3e2008-11-14 10:39:16 +1100220 get_group_info(current->cred->group_info);
221 i = current->cred->group_info->ngroups;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (gidsetsize) {
223 if (i > gidsetsize) {
224 i = -EINVAL;
225 goto out;
226 }
David Howellsb6dff3e2008-11-14 10:39:16 +1100227 if (groups16_to_user(grouplist, current->cred->group_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 i = -EFAULT;
229 goto out;
230 }
231 }
232out:
David Howellsb6dff3e2008-11-14 10:39:16 +1100233 put_group_info(current->cred->group_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return i;
235}
236
Al Viro24954a12006-02-01 05:16:15 -0500237asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct group_info *group_info;
240 int retval;
241
242 if (!capable(CAP_SETGID))
243 return -EPERM;
244 if ((unsigned)gidsetsize > NGROUPS_MAX)
245 return -EINVAL;
246
247 group_info = groups_alloc(gidsetsize);
248 if (!group_info)
249 return -ENOMEM;
250 retval = groups16_from_user(group_info, grouplist);
251 if (retval) {
252 put_group_info(group_info);
253 return retval;
254 }
255
256 retval = set_current_groups(group_info);
257 put_group_info(group_info);
258
259 return retval;
260}
261
262asmlinkage long sys32_getuid16(void)
263{
David Howellsb6dff3e2008-11-14 10:39:16 +1100264 return high2lowuid(current->cred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267asmlinkage long sys32_geteuid16(void)
268{
David Howellsb6dff3e2008-11-14 10:39:16 +1100269 return high2lowuid(current->cred->euid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272asmlinkage long sys32_getgid16(void)
273{
David Howellsb6dff3e2008-11-14 10:39:16 +1100274 return high2lowgid(current->cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277asmlinkage long sys32_getegid16(void)
278{
David Howellsb6dff3e2008-11-14 10:39:16 +1100279 return high2lowgid(current->cred->egid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
283 * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
284 *
285 * This is really horribly ugly.
286 */
Cedric Le Goater1df23952006-10-18 18:30:41 +0200287#ifdef CONFIG_SYSVIPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
289{
290 if (call >> 16) /* hack for backward compatibility */
291 return -EINVAL;
292
293 call &= 0xffff;
294
295 switch (call) {
296 case SEMTIMEDOP:
297 return compat_sys_semtimedop(first, compat_ptr(ptr),
298 second, compat_ptr(third));
299 case SEMOP:
300 /* struct sembuf is the same on 32 and 64bit :)) */
301 return sys_semtimedop(first, compat_ptr(ptr),
302 second, NULL);
303 case SEMGET:
304 return sys_semget(first, second, third);
305 case SEMCTL:
306 return compat_sys_semctl(first, second, third,
307 compat_ptr(ptr));
308 case MSGSND:
309 return compat_sys_msgsnd(first, second, third,
310 compat_ptr(ptr));
311 case MSGRCV:
312 return compat_sys_msgrcv(first, second, 0, third,
313 0, compat_ptr(ptr));
314 case MSGGET:
315 return sys_msgget((key_t) first, second);
316 case MSGCTL:
317 return compat_sys_msgctl(first, second, compat_ptr(ptr));
318 case SHMAT:
319 return compat_sys_shmat(first, second, third,
320 0, compat_ptr(ptr));
321 case SHMDT:
322 return sys_shmdt(compat_ptr(ptr));
323 case SHMGET:
324 return sys_shmget(first, (unsigned)second, third);
325 case SHMCTL:
326 return compat_sys_shmctl(first, second, compat_ptr(ptr));
327 }
328
329 return -ENOSYS;
330}
Cedric Le Goater1df23952006-10-18 18:30:41 +0200331#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Al Viro24954a12006-02-01 05:16:15 -0500333asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 if ((int)high < 0)
336 return -EINVAL;
337 else
338 return sys_truncate(path, (high << 32) | low);
339}
340
341asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
342{
343 if ((int)high < 0)
344 return -EINVAL;
345 else
346 return sys_ftruncate(fd, (high << 32) | low);
347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
350 struct compat_timespec __user *interval)
351{
352 struct timespec t;
353 int ret;
354 mm_segment_t old_fs = get_fs ();
355
356 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100357 ret = sys_sched_rr_get_interval(pid,
358 (struct timespec __force __user *) &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 set_fs (old_fs);
360 if (put_compat_timespec(&t, interval))
361 return -EFAULT;
362 return ret;
363}
364
365asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
366 compat_sigset_t __user *oset, size_t sigsetsize)
367{
368 sigset_t s;
369 compat_sigset_t s32;
370 int ret;
371 mm_segment_t old_fs = get_fs();
372
373 if (set) {
374 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
375 return -EFAULT;
376 switch (_NSIG_WORDS) {
377 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
378 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
379 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
380 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
381 }
382 }
383 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200384 ret = sys_rt_sigprocmask(how,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100385 set ? (sigset_t __force __user *) &s : NULL,
386 oset ? (sigset_t __force __user *) &s : NULL,
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200387 sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 set_fs (old_fs);
389 if (ret) return ret;
390 if (oset) {
391 switch (_NSIG_WORDS) {
392 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
393 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
394 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
395 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
396 }
397 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
398 return -EFAULT;
399 }
400 return 0;
401}
402
403asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
404 size_t sigsetsize)
405{
406 sigset_t s;
407 compat_sigset_t s32;
408 int ret;
409 mm_segment_t old_fs = get_fs();
410
411 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100412 ret = sys_rt_sigpending((sigset_t __force __user *) &s, sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 set_fs (old_fs);
414 if (!ret) {
415 switch (_NSIG_WORDS) {
416 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
417 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
418 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
419 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
420 }
421 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
422 return -EFAULT;
423 }
424 return ret;
425}
426
427asmlinkage long
428sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
429{
430 siginfo_t info;
431 int ret;
432 mm_segment_t old_fs = get_fs();
433
434 if (copy_siginfo_from_user32(&info, uinfo))
435 return -EFAULT;
436 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100437 ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __force __user *) &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 set_fs (old_fs);
439 return ret;
440}
441
442/*
443 * sys32_execve() executes a new program after the asm stub has set
444 * things up for us. This should basically do what I want it to.
445 */
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200446asmlinkage long sys32_execve(char __user *name, compat_uptr_t __user *argv,
447 compat_uptr_t __user *envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200449 struct pt_regs *regs = task_pt_regs(current);
450 char *filename;
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200451 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200453 filename = getname(name);
454 rc = PTR_ERR(filename);
455 if (IS_ERR(filename))
456 return rc;
457 rc = compat_do_execve(filename, argv, envp, regs);
458 if (rc)
459 goto out;
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200460 current->thread.fp_regs.fpc=0;
461 asm volatile("sfpc %0,0" : : "d" (0));
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200462 rc = regs->gprs[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463out:
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200464 putname(filename);
465 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468
469#ifdef CONFIG_MODULES
470
471asmlinkage long
472sys32_init_module(void __user *umod, unsigned long len,
473 const char __user *uargs)
474{
475 return sys_init_module(umod, len, uargs);
476}
477
478asmlinkage long
479sys32_delete_module(const char __user *name_user, unsigned int flags)
480{
481 return sys_delete_module(name_user, flags);
482}
483
484#else /* CONFIG_MODULES */
485
486asmlinkage long
487sys32_init_module(void __user *umod, unsigned long len,
488 const char __user *uargs)
489{
490 return -ENOSYS;
491}
492
493asmlinkage long
494sys32_delete_module(const char __user *name_user, unsigned int flags)
495{
496 return -ENOSYS;
497}
498
499#endif /* CONFIG_MODULES */
500
Al Viro24954a12006-02-01 05:16:15 -0500501asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 size_t count, u32 poshi, u32 poslo)
503{
504 if ((compat_ssize_t) count < 0)
505 return -EINVAL;
506 return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
507}
508
Al Viro24954a12006-02-01 05:16:15 -0500509asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 size_t count, u32 poshi, u32 poslo)
511{
512 if ((compat_ssize_t) count < 0)
513 return -EINVAL;
514 return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
515}
516
517asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
518{
519 return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
520}
521
Al Viro24954a12006-02-01 05:16:15 -0500522asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 mm_segment_t old_fs = get_fs();
525 int ret;
526 off_t of;
527
528 if (offset && get_user(of, offset))
529 return -EFAULT;
530
531 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200532 ret = sys_sendfile(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100533 offset ? (off_t __force __user *) &of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 set_fs(old_fs);
535
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +0200536 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return -EFAULT;
538
539 return ret;
540}
541
542asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
Al Viro24954a12006-02-01 05:16:15 -0500543 compat_loff_t __user *offset, s32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 mm_segment_t old_fs = get_fs();
546 int ret;
547 loff_t lof;
548
549 if (offset && get_user(lof, offset))
550 return -EFAULT;
551
552 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200553 ret = sys_sendfile64(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100554 offset ? (loff_t __force __user *) &lof : NULL,
555 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 set_fs(old_fs);
557
558 if (offset && put_user(lof, offset))
559 return -EFAULT;
560
561 return ret;
562}
563
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700564#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565struct __sysctl_args32 {
566 u32 name;
567 int nlen;
568 u32 oldval;
569 u32 oldlenp;
570 u32 newval;
571 u32 newlen;
572 u32 __unused[4];
573};
574
Al Viro24954a12006-02-01 05:16:15 -0500575asmlinkage long sys32_sysctl(struct __sysctl_args32 __user *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 struct __sysctl_args32 tmp;
578 int error;
Al Viro24954a12006-02-01 05:16:15 -0500579 size_t oldlen;
580 size_t __user *oldlenp = NULL;
581 unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (copy_from_user(&tmp, args, sizeof(tmp)))
584 return -EFAULT;
585
586 if (tmp.oldval && tmp.oldlenp) {
587 /* Duh, this is ugly and might not work if sysctl_args
588 is in read-only memory, but do_sysctl does indirectly
589 a lot of uaccess in both directions and we'd have to
590 basically copy the whole sysctl.c here, and
591 glibc's __sysctl uses rw memory for the structure
592 anyway. */
Al Viro24954a12006-02-01 05:16:15 -0500593 if (get_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)) ||
594 put_user(oldlen, (size_t __user *)addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return -EFAULT;
Al Viro24954a12006-02-01 05:16:15 -0500596 oldlenp = (size_t __user *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
599 lock_kernel();
Al Viro24954a12006-02-01 05:16:15 -0500600 error = do_sysctl(compat_ptr(tmp.name), tmp.nlen, compat_ptr(tmp.oldval),
601 oldlenp, compat_ptr(tmp.newval), tmp.newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 unlock_kernel();
603 if (oldlenp) {
604 if (!error) {
Al Viro24954a12006-02-01 05:16:15 -0500605 if (get_user(oldlen, (size_t __user *)addr) ||
606 put_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 error = -EFAULT;
608 }
Heiko Carstens12bae232006-10-27 12:39:22 +0200609 if (copy_to_user(args->__unused, tmp.__unused,
610 sizeof(tmp.__unused)))
611 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 return error;
614}
615#endif
616
617struct stat64_emu31 {
618 unsigned long long st_dev;
619 unsigned int __pad1;
620#define STAT64_HAS_BROKEN_ST_INO 1
621 u32 __st_ino;
622 unsigned int st_mode;
623 unsigned int st_nlink;
624 u32 st_uid;
625 u32 st_gid;
626 unsigned long long st_rdev;
627 unsigned int __pad3;
628 long st_size;
629 u32 st_blksize;
630 unsigned char __pad4[4];
631 u32 __pad5; /* future possible st_blocks high bits */
632 u32 st_blocks; /* Number 512-byte blocks allocated. */
633 u32 st_atime;
634 u32 __pad6;
635 u32 st_mtime;
636 u32 __pad7;
637 u32 st_ctime;
638 u32 __pad8; /* will be high 32 bits of ctime someday */
639 unsigned long st_ino;
640};
641
Al Viro24954a12006-02-01 05:16:15 -0500642static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
644 struct stat64_emu31 tmp;
645
646 memset(&tmp, 0, sizeof(tmp));
647
648 tmp.st_dev = huge_encode_dev(stat->dev);
649 tmp.st_ino = stat->ino;
650 tmp.__st_ino = (u32)stat->ino;
651 tmp.st_mode = stat->mode;
652 tmp.st_nlink = (unsigned int)stat->nlink;
653 tmp.st_uid = stat->uid;
654 tmp.st_gid = stat->gid;
655 tmp.st_rdev = huge_encode_dev(stat->rdev);
656 tmp.st_size = stat->size;
657 tmp.st_blksize = (u32)stat->blksize;
658 tmp.st_blocks = (u32)stat->blocks;
659 tmp.st_atime = (u32)stat->atime.tv_sec;
660 tmp.st_mtime = (u32)stat->mtime.tv_sec;
661 tmp.st_ctime = (u32)stat->ctime.tv_sec;
662
663 return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
664}
665
Al Viro24954a12006-02-01 05:16:15 -0500666asmlinkage long sys32_stat64(char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 struct kstat stat;
669 int ret = vfs_stat(filename, &stat);
670 if (!ret)
671 ret = cp_stat64(statbuf, &stat);
672 return ret;
673}
674
Al Viro24954a12006-02-01 05:16:15 -0500675asmlinkage long sys32_lstat64(char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 struct kstat stat;
678 int ret = vfs_lstat(filename, &stat);
679 if (!ret)
680 ret = cp_stat64(statbuf, &stat);
681 return ret;
682}
683
Al Viro24954a12006-02-01 05:16:15 -0500684asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 struct kstat stat;
687 int ret = vfs_fstat(fd, &stat);
688 if (!ret)
689 ret = cp_stat64(statbuf, &stat);
690 return ret;
691}
692
Heiko Carstensed3d0212006-02-17 13:52:50 -0800693asmlinkage long sys32_fstatat64(unsigned int dfd, char __user *filename,
694 struct stat64_emu31 __user* statbuf, int flag)
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100695{
696 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400697 int error;
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100698
Oleg Drokin0112fc22009-04-08 20:05:42 +0400699 error = vfs_fstatat(dfd, filename, &stat, flag);
700 if (error)
701 return error;
702 return cp_stat64(statbuf, &stat);
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100703}
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/*
706 * Linux/i386 didn't use to be able to handle more than
707 * 4 system call parameters, so these system calls used a memory
708 * block for parameter passing..
709 */
710
711struct mmap_arg_struct_emu31 {
712 u32 addr;
713 u32 len;
714 u32 prot;
715 u32 flags;
716 u32 fd;
717 u32 offset;
718};
719
720/* common code for old and new mmaps */
721static inline long do_mmap2(
722 unsigned long addr, unsigned long len,
723 unsigned long prot, unsigned long flags,
724 unsigned long fd, unsigned long pgoff)
725{
726 struct file * file = NULL;
727 unsigned long error = -EBADF;
728
729 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
730 if (!(flags & MAP_ANONYMOUS)) {
731 file = fget(fd);
732 if (!file)
733 goto out;
734 }
735
736 down_write(&current->mm->mmap_sem);
737 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
738 if (!IS_ERR((void *) error) && error + len >= 0x80000000ULL) {
739 /* Result is out of bounds. */
740 do_munmap(current->mm, addr, len);
741 error = -ENOMEM;
742 }
743 up_write(&current->mm->mmap_sem);
744
745 if (file)
746 fput(file);
747out:
748 return error;
749}
750
751
752asmlinkage unsigned long
Al Viro24954a12006-02-01 05:16:15 -0500753old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 struct mmap_arg_struct_emu31 a;
756 int error = -EFAULT;
757
758 if (copy_from_user(&a, arg, sizeof(a)))
759 goto out;
760
761 error = -EINVAL;
762 if (a.offset & ~PAGE_MASK)
763 goto out;
764
765 error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset >> PAGE_SHIFT);
766out:
767 return error;
768}
769
770asmlinkage long
Al Viro24954a12006-02-01 05:16:15 -0500771sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 struct mmap_arg_struct_emu31 a;
774 int error = -EFAULT;
775
776 if (copy_from_user(&a, arg, sizeof(a)))
777 goto out;
778 error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
779out:
780 return error;
781}
782
Al Viro24954a12006-02-01 05:16:15 -0500783asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 if ((compat_ssize_t) count < 0)
786 return -EINVAL;
787
788 return sys_read(fd, buf, count);
789}
790
Al Viro24954a12006-02-01 05:16:15 -0500791asmlinkage long sys32_write(unsigned int fd, char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 if ((compat_ssize_t) count < 0)
794 return -EINVAL;
795
796 return sys_write(fd, buf, count);
797}
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799/*
Martin Schwidefsky068e1b92005-07-13 01:10:46 -0700800 * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
801 * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
802 * because the 31 bit values differ from the 64 bit values.
803 */
804
805asmlinkage long
806sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
807{
808 if (advise == 4)
809 advise = POSIX_FADV_DONTNEED;
810 else if (advise == 5)
811 advise = POSIX_FADV_NOREUSE;
812 return sys_fadvise64(fd, offset, len, advise);
813}
814
815struct fadvise64_64_args {
816 int fd;
817 long long offset;
818 long long len;
819 int advice;
820};
821
822asmlinkage long
823sys32_fadvise64_64(struct fadvise64_64_args __user *args)
824{
825 struct fadvise64_64_args a;
826
827 if ( copy_from_user(&a, args, sizeof(a)) )
828 return -EFAULT;
829 if (a.advice == 4)
830 a.advice = POSIX_FADV_DONTNEED;
831 else if (a.advice == 5)
832 a.advice = POSIX_FADV_NOREUSE;
833 return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
834}