blob: f606d935f4950dcbec6fca5f67b88ac70760dcda [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
5 * Gerhard Tonn (ton@de.ibm.com)
6 * Thomas Spatzier (tspat@de.ibm.com)
7 *
8 * Conversion between 31bit and 64bit native syscalls.
9 *
10 * Heavily inspired by the 32-bit Sparc compat code which is
11 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
12 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
13 *
14 */
15
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/sched.h>
19#include <linux/fs.h>
20#include <linux/mm.h>
21#include <linux/file.h>
22#include <linux/signal.h>
23#include <linux/resource.h>
24#include <linux/times.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/sem.h>
27#include <linux/msg.h>
28#include <linux/shm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/quota.h>
31#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/poll.h>
33#include <linux/personality.h>
34#include <linux/stat.h>
35#include <linux/filter.h>
36#include <linux/highmem.h>
37#include <linux/highuid.h>
38#include <linux/mman.h>
39#include <linux/ipv6.h>
40#include <linux/in.h>
41#include <linux/icmpv6.h>
42#include <linux/syscalls.h>
43#include <linux/sysctl.h>
44#include <linux/binfmts.h>
Randy Dunlapa9415642006-01-11 12:17:48 -080045#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/compat.h>
47#include <linux/vfs.h>
48#include <linux/ptrace.h>
Martin Schwidefsky068e1b92005-07-13 01:10:46 -070049#include <linux/fadvise.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070050#include <linux/ipc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include <net/scm.h>
57#include <net/sock.h>
58
59#include "compat_linux.h"
60
Martin Schwidefskyb50511e2011-10-30 15:16:50 +010061u32 psw32_user_bits = PSW32_MASK_DAT | PSW32_MASK_IO | PSW32_MASK_EXT |
62 PSW32_DEFAULT_KEY | PSW32_MASK_BASE | PSW32_MASK_MCHECK |
63 PSW32_MASK_PSTATE | PSW32_ASC_HOME;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* For this source file, we want overflow handling. */
66
67#undef high2lowuid
68#undef high2lowgid
69#undef low2highuid
70#undef low2highgid
71#undef SET_UID16
72#undef SET_GID16
73#undef NEW_TO_OLD_UID
74#undef NEW_TO_OLD_GID
75#undef SET_OLDSTAT_UID
76#undef SET_OLDSTAT_GID
77#undef SET_STAT_UID
78#undef SET_STAT_GID
79
80#define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
81#define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
82#define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid)
83#define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid)
84#define SET_UID16(var, uid) var = high2lowuid(uid)
85#define SET_GID16(var, gid) var = high2lowgid(gid)
86#define NEW_TO_OLD_UID(uid) high2lowuid(uid)
87#define NEW_TO_OLD_GID(gid) high2lowgid(gid)
88#define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
89#define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
90#define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
91#define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
92
Al Viro24954a12006-02-01 05:16:15 -050093asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 return sys_chown(filename, low2highuid(user), low2highgid(group));
96}
97
Al Viro24954a12006-02-01 05:16:15 -050098asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 return sys_lchown(filename, low2highuid(user), low2highgid(group));
101}
102
103asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
104{
105 return sys_fchown(fd, low2highuid(user), low2highgid(group));
106}
107
108asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
109{
110 return sys_setregid(low2highgid(rgid), low2highgid(egid));
111}
112
113asmlinkage long sys32_setgid16(u16 gid)
114{
115 return sys_setgid((gid_t)gid);
116}
117
118asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
119{
120 return sys_setreuid(low2highuid(ruid), low2highuid(euid));
121}
122
123asmlinkage long sys32_setuid16(u16 uid)
124{
125 return sys_setuid((uid_t)uid);
126}
127
128asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
129{
130 return sys_setresuid(low2highuid(ruid), low2highuid(euid),
131 low2highuid(suid));
132}
133
Al Viro24954a12006-02-01 05:16:15 -0500134asmlinkage long sys32_getresuid16(u16 __user *ruid, u16 __user *euid, u16 __user *suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 int retval;
137
David Howellsb6dff3e2008-11-14 10:39:16 +1100138 if (!(retval = put_user(high2lowuid(current->cred->uid), ruid)) &&
139 !(retval = put_user(high2lowuid(current->cred->euid), euid)))
140 retval = put_user(high2lowuid(current->cred->suid), suid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 return retval;
143}
144
145asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
146{
147 return sys_setresgid(low2highgid(rgid), low2highgid(egid),
148 low2highgid(sgid));
149}
150
Al Viro24954a12006-02-01 05:16:15 -0500151asmlinkage long sys32_getresgid16(u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 int retval;
154
David Howellsb6dff3e2008-11-14 10:39:16 +1100155 if (!(retval = put_user(high2lowgid(current->cred->gid), rgid)) &&
156 !(retval = put_user(high2lowgid(current->cred->egid), egid)))
157 retval = put_user(high2lowgid(current->cred->sgid), sgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 return retval;
160}
161
162asmlinkage long sys32_setfsuid16(u16 uid)
163{
164 return sys_setfsuid((uid_t)uid);
165}
166
167asmlinkage long sys32_setfsgid16(u16 gid)
168{
169 return sys_setfsgid((gid_t)gid);
170}
171
Al Viro24954a12006-02-01 05:16:15 -0500172static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800174 struct user_namespace *user_ns = current_user_ns();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 int i;
176 u16 group;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800177 kgid_t kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 for (i = 0; i < group_info->ngroups; i++) {
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800180 kgid = GROUP_AT(group_info, i);
181 group = (u16)from_kgid_munged(user_ns, kgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (put_user(group, grouplist+i))
183 return -EFAULT;
184 }
185
186 return 0;
187}
188
Al Viro24954a12006-02-01 05:16:15 -0500189static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800191 struct user_namespace *user_ns = current_user_ns();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 int i;
193 u16 group;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800194 kgid_t kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 for (i = 0; i < group_info->ngroups; i++) {
197 if (get_user(group, grouplist+i))
198 return -EFAULT;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800199
200 kgid = make_kgid(user_ns, (gid_t)group);
201 if (!gid_valid(kgid))
202 return -EINVAL;
203
204 GROUP_AT(group_info, i) = kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
207 return 0;
208}
209
Al Viro24954a12006-02-01 05:16:15 -0500210asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 int i;
213
214 if (gidsetsize < 0)
215 return -EINVAL;
216
David Howellsb6dff3e2008-11-14 10:39:16 +1100217 get_group_info(current->cred->group_info);
218 i = current->cred->group_info->ngroups;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (gidsetsize) {
220 if (i > gidsetsize) {
221 i = -EINVAL;
222 goto out;
223 }
David Howellsb6dff3e2008-11-14 10:39:16 +1100224 if (groups16_to_user(grouplist, current->cred->group_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 i = -EFAULT;
226 goto out;
227 }
228 }
229out:
David Howellsb6dff3e2008-11-14 10:39:16 +1100230 put_group_info(current->cred->group_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return i;
232}
233
Al Viro24954a12006-02-01 05:16:15 -0500234asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 struct group_info *group_info;
237 int retval;
238
239 if (!capable(CAP_SETGID))
240 return -EPERM;
241 if ((unsigned)gidsetsize > NGROUPS_MAX)
242 return -EINVAL;
243
244 group_info = groups_alloc(gidsetsize);
245 if (!group_info)
246 return -ENOMEM;
247 retval = groups16_from_user(group_info, grouplist);
248 if (retval) {
249 put_group_info(group_info);
250 return retval;
251 }
252
253 retval = set_current_groups(group_info);
254 put_group_info(group_info);
255
256 return retval;
257}
258
259asmlinkage long sys32_getuid16(void)
260{
David Howellsb6dff3e2008-11-14 10:39:16 +1100261 return high2lowuid(current->cred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
264asmlinkage long sys32_geteuid16(void)
265{
David Howellsb6dff3e2008-11-14 10:39:16 +1100266 return high2lowuid(current->cred->euid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269asmlinkage long sys32_getgid16(void)
270{
David Howellsb6dff3e2008-11-14 10:39:16 +1100271 return high2lowgid(current->cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274asmlinkage long sys32_getegid16(void)
275{
David Howellsb6dff3e2008-11-14 10:39:16 +1100276 return high2lowgid(current->cred->egid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/*
280 * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
281 *
282 * This is really horribly ugly.
283 */
Cedric Le Goater1df23952006-10-18 18:30:41 +0200284#ifdef CONFIG_SYSVIPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
286{
287 if (call >> 16) /* hack for backward compatibility */
288 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 switch (call) {
290 case SEMTIMEDOP:
291 return compat_sys_semtimedop(first, compat_ptr(ptr),
292 second, compat_ptr(third));
293 case SEMOP:
294 /* struct sembuf is the same on 32 and 64bit :)) */
295 return sys_semtimedop(first, compat_ptr(ptr),
296 second, NULL);
297 case SEMGET:
298 return sys_semget(first, second, third);
299 case SEMCTL:
300 return compat_sys_semctl(first, second, third,
301 compat_ptr(ptr));
302 case MSGSND:
303 return compat_sys_msgsnd(first, second, third,
304 compat_ptr(ptr));
305 case MSGRCV:
306 return compat_sys_msgrcv(first, second, 0, third,
307 0, compat_ptr(ptr));
308 case MSGGET:
309 return sys_msgget((key_t) first, second);
310 case MSGCTL:
311 return compat_sys_msgctl(first, second, compat_ptr(ptr));
312 case SHMAT:
313 return compat_sys_shmat(first, second, third,
314 0, compat_ptr(ptr));
315 case SHMDT:
316 return sys_shmdt(compat_ptr(ptr));
317 case SHMGET:
318 return sys_shmget(first, (unsigned)second, third);
319 case SHMCTL:
320 return compat_sys_shmctl(first, second, compat_ptr(ptr));
321 }
322
323 return -ENOSYS;
324}
Cedric Le Goater1df23952006-10-18 18:30:41 +0200325#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Al Viro24954a12006-02-01 05:16:15 -0500327asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 if ((int)high < 0)
330 return -EINVAL;
331 else
332 return sys_truncate(path, (high << 32) | low);
333}
334
335asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
336{
337 if ((int)high < 0)
338 return -EINVAL;
339 else
340 return sys_ftruncate(fd, (high << 32) | low);
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
344 struct compat_timespec __user *interval)
345{
346 struct timespec t;
347 int ret;
348 mm_segment_t old_fs = get_fs ();
349
350 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100351 ret = sys_sched_rr_get_interval(pid,
352 (struct timespec __force __user *) &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 set_fs (old_fs);
354 if (put_compat_timespec(&t, interval))
355 return -EFAULT;
356 return ret;
357}
358
359asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
360 compat_sigset_t __user *oset, size_t sigsetsize)
361{
362 sigset_t s;
363 compat_sigset_t s32;
364 int ret;
365 mm_segment_t old_fs = get_fs();
366
367 if (set) {
368 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
369 return -EFAULT;
Martin Schwidefsky399c1d82011-10-30 15:17:10 +0100370 s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200373 ret = sys_rt_sigprocmask(how,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100374 set ? (sigset_t __force __user *) &s : NULL,
375 oset ? (sigset_t __force __user *) &s : NULL,
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200376 sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 set_fs (old_fs);
378 if (ret) return ret;
379 if (oset) {
Martin Schwidefsky399c1d82011-10-30 15:17:10 +0100380 s32.sig[1] = (s.sig[0] >> 32);
381 s32.sig[0] = s.sig[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
383 return -EFAULT;
384 }
385 return 0;
386}
387
388asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
389 size_t sigsetsize)
390{
391 sigset_t s;
392 compat_sigset_t s32;
393 int ret;
394 mm_segment_t old_fs = get_fs();
395
396 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100397 ret = sys_rt_sigpending((sigset_t __force __user *) &s, sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 set_fs (old_fs);
399 if (!ret) {
Martin Schwidefsky399c1d82011-10-30 15:17:10 +0100400 s32.sig[1] = (s.sig[0] >> 32);
401 s32.sig[0] = s.sig[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
403 return -EFAULT;
404 }
405 return ret;
406}
407
408asmlinkage long
409sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
410{
411 siginfo_t info;
412 int ret;
413 mm_segment_t old_fs = get_fs();
414
415 if (copy_siginfo_from_user32(&info, uinfo))
416 return -EFAULT;
417 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100418 ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __force __user *) &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 set_fs (old_fs);
420 return ret;
421}
422
423/*
424 * sys32_execve() executes a new program after the asm stub has set
425 * things up for us. This should basically do what I want it to.
426 */
David Howellsc7887322010-08-11 11:26:22 +0100427asmlinkage long sys32_execve(const char __user *name, compat_uptr_t __user *argv,
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200428 compat_uptr_t __user *envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200430 struct pt_regs *regs = task_pt_regs(current);
431 char *filename;
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200432 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200434 filename = getname(name);
435 rc = PTR_ERR(filename);
436 if (IS_ERR(filename))
437 return rc;
438 rc = compat_do_execve(filename, argv, envp, regs);
439 if (rc)
440 goto out;
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200441 current->thread.fp_regs.fpc=0;
442 asm volatile("sfpc %0,0" : : "d" (0));
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200443 rc = regs->gprs[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444out:
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200445 putname(filename);
446 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Al Viro24954a12006-02-01 05:16:15 -0500449asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 size_t count, u32 poshi, u32 poslo)
451{
452 if ((compat_ssize_t) count < 0)
453 return -EINVAL;
454 return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
455}
456
Al Viro24954a12006-02-01 05:16:15 -0500457asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 size_t count, u32 poshi, u32 poslo)
459{
460 if ((compat_ssize_t) count < 0)
461 return -EINVAL;
462 return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
463}
464
465asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
466{
467 return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
468}
469
Al Viro24954a12006-02-01 05:16:15 -0500470asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 mm_segment_t old_fs = get_fs();
473 int ret;
474 off_t of;
475
476 if (offset && get_user(of, offset))
477 return -EFAULT;
478
479 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200480 ret = sys_sendfile(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100481 offset ? (off_t __force __user *) &of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 set_fs(old_fs);
483
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +0200484 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return -EFAULT;
486
487 return ret;
488}
489
490asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
Al Viro24954a12006-02-01 05:16:15 -0500491 compat_loff_t __user *offset, s32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 mm_segment_t old_fs = get_fs();
494 int ret;
495 loff_t lof;
496
497 if (offset && get_user(lof, offset))
498 return -EFAULT;
499
500 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200501 ret = sys_sendfile64(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100502 offset ? (loff_t __force __user *) &lof : NULL,
503 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 set_fs(old_fs);
505
506 if (offset && put_user(lof, offset))
507 return -EFAULT;
508
509 return ret;
510}
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512struct stat64_emu31 {
513 unsigned long long st_dev;
514 unsigned int __pad1;
515#define STAT64_HAS_BROKEN_ST_INO 1
516 u32 __st_ino;
517 unsigned int st_mode;
518 unsigned int st_nlink;
519 u32 st_uid;
520 u32 st_gid;
521 unsigned long long st_rdev;
522 unsigned int __pad3;
523 long st_size;
524 u32 st_blksize;
525 unsigned char __pad4[4];
526 u32 __pad5; /* future possible st_blocks high bits */
527 u32 st_blocks; /* Number 512-byte blocks allocated. */
528 u32 st_atime;
529 u32 __pad6;
530 u32 st_mtime;
531 u32 __pad7;
532 u32 st_ctime;
533 u32 __pad8; /* will be high 32 bits of ctime someday */
534 unsigned long st_ino;
535};
536
Al Viro24954a12006-02-01 05:16:15 -0500537static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 struct stat64_emu31 tmp;
540
541 memset(&tmp, 0, sizeof(tmp));
542
543 tmp.st_dev = huge_encode_dev(stat->dev);
544 tmp.st_ino = stat->ino;
545 tmp.__st_ino = (u32)stat->ino;
546 tmp.st_mode = stat->mode;
547 tmp.st_nlink = (unsigned int)stat->nlink;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800548 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
549 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 tmp.st_rdev = huge_encode_dev(stat->rdev);
551 tmp.st_size = stat->size;
552 tmp.st_blksize = (u32)stat->blksize;
553 tmp.st_blocks = (u32)stat->blocks;
554 tmp.st_atime = (u32)stat->atime.tv_sec;
555 tmp.st_mtime = (u32)stat->mtime.tv_sec;
556 tmp.st_ctime = (u32)stat->ctime.tv_sec;
557
558 return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
559}
560
David Howellsc7887322010-08-11 11:26:22 +0100561asmlinkage long sys32_stat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 struct kstat stat;
564 int ret = vfs_stat(filename, &stat);
565 if (!ret)
566 ret = cp_stat64(statbuf, &stat);
567 return ret;
568}
569
David Howellsc7887322010-08-11 11:26:22 +0100570asmlinkage long sys32_lstat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 struct kstat stat;
573 int ret = vfs_lstat(filename, &stat);
574 if (!ret)
575 ret = cp_stat64(statbuf, &stat);
576 return ret;
577}
578
Al Viro24954a12006-02-01 05:16:15 -0500579asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct kstat stat;
582 int ret = vfs_fstat(fd, &stat);
583 if (!ret)
584 ret = cp_stat64(statbuf, &stat);
585 return ret;
586}
587
David Howellsc7887322010-08-11 11:26:22 +0100588asmlinkage long sys32_fstatat64(unsigned int dfd, const char __user *filename,
Heiko Carstensed3d0212006-02-17 13:52:50 -0800589 struct stat64_emu31 __user* statbuf, int flag)
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100590{
591 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400592 int error;
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100593
Oleg Drokin0112fc22009-04-08 20:05:42 +0400594 error = vfs_fstatat(dfd, filename, &stat, flag);
595 if (error)
596 return error;
597 return cp_stat64(statbuf, &stat);
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600/*
601 * Linux/i386 didn't use to be able to handle more than
602 * 4 system call parameters, so these system calls used a memory
603 * block for parameter passing..
604 */
605
606struct mmap_arg_struct_emu31 {
Heiko Carstensd3815892010-01-13 20:44:39 +0100607 compat_ulong_t addr;
608 compat_ulong_t len;
609 compat_ulong_t prot;
610 compat_ulong_t flags;
611 compat_ulong_t fd;
612 compat_ulong_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613};
614
Heiko Carstensd3815892010-01-13 20:44:39 +0100615asmlinkage unsigned long old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 struct mmap_arg_struct_emu31 a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 if (copy_from_user(&a, arg, sizeof(a)))
Heiko Carstensd3815892010-01-13 20:44:39 +0100620 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (a.offset & ~PAGE_MASK)
Heiko Carstensd3815892010-01-13 20:44:39 +0100622 return -EINVAL;
Heiko Carstensd3815892010-01-13 20:44:39 +0100623 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
624 a.offset >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Heiko Carstensd3815892010-01-13 20:44:39 +0100627asmlinkage long sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 struct mmap_arg_struct_emu31 a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (copy_from_user(&a, arg, sizeof(a)))
Heiko Carstensd3815892010-01-13 20:44:39 +0100632 return -EFAULT;
Heiko Carstensd3815892010-01-13 20:44:39 +0100633 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Al Viro24954a12006-02-01 05:16:15 -0500636asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 if ((compat_ssize_t) count < 0)
639 return -EINVAL;
640
641 return sys_read(fd, buf, count);
642}
643
David Howellsc7887322010-08-11 11:26:22 +0100644asmlinkage long sys32_write(unsigned int fd, const char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 if ((compat_ssize_t) count < 0)
647 return -EINVAL;
648
649 return sys_write(fd, buf, count);
650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652/*
Martin Schwidefsky068e1b92005-07-13 01:10:46 -0700653 * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
654 * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
655 * because the 31 bit values differ from the 64 bit values.
656 */
657
658asmlinkage long
659sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
660{
661 if (advise == 4)
662 advise = POSIX_FADV_DONTNEED;
663 else if (advise == 5)
664 advise = POSIX_FADV_NOREUSE;
665 return sys_fadvise64(fd, offset, len, advise);
666}
667
668struct fadvise64_64_args {
669 int fd;
670 long long offset;
671 long long len;
672 int advice;
673};
674
675asmlinkage long
676sys32_fadvise64_64(struct fadvise64_64_args __user *args)
677{
678 struct fadvise64_64_args a;
679
680 if ( copy_from_user(&a, args, sizeof(a)) )
681 return -EFAULT;
682 if (a.advice == 4)
683 a.advice = POSIX_FADV_DONTNEED;
684 else if (a.advice == 5)
685 a.advice = POSIX_FADV_NOREUSE;
686 return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
687}