blob: 73995a725dd1f455ea489b1eaea31ffa40776791 [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
Eric W. Biederman558a4472012-08-11 12:22:11 -0700134asmlinkage long sys32_getresuid16(u16 __user *ruidp, u16 __user *euidp, u16 __user *suidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Eric W. Biederman558a4472012-08-11 12:22:11 -0700136 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int retval;
Eric W. Biederman558a4472012-08-11 12:22:11 -0700138 u16 ruid, euid, suid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Eric W. Biederman558a4472012-08-11 12:22:11 -0700140 ruid = high2lowuid(from_kuid_munged(cred->user_ns, cred->uid));
141 euid = high2lowuid(from_kuid_munged(cred->user_ns, cred->euid));
142 suid = high2lowuid(from_kuid_munged(cred->user_ns, cred->suid));
143
144 if (!(retval = put_user(ruid, ruidp)) &&
145 !(retval = put_user(euid, euidp)))
146 retval = put_user(suid, suidp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 return retval;
149}
150
151asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
152{
153 return sys_setresgid(low2highgid(rgid), low2highgid(egid),
154 low2highgid(sgid));
155}
156
Eric W. Biederman558a4472012-08-11 12:22:11 -0700157asmlinkage long sys32_getresgid16(u16 __user *rgidp, u16 __user *egidp, u16 __user *sgidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Eric W. Biederman558a4472012-08-11 12:22:11 -0700159 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 int retval;
Eric W. Biederman558a4472012-08-11 12:22:11 -0700161 u16 rgid, egid, sgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Eric W. Biederman558a4472012-08-11 12:22:11 -0700163 rgid = high2lowgid(from_kgid_munged(cred->user_ns, cred->gid));
164 egid = high2lowgid(from_kgid_munged(cred->user_ns, cred->egid));
165 sgid = high2lowgid(from_kgid_munged(cred->user_ns, cred->sgid));
166
167 if (!(retval = put_user(rgid, rgidp)) &&
168 !(retval = put_user(egid, egidp)))
169 retval = put_user(sgid, sgidp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 return retval;
172}
173
174asmlinkage long sys32_setfsuid16(u16 uid)
175{
176 return sys_setfsuid((uid_t)uid);
177}
178
179asmlinkage long sys32_setfsgid16(u16 gid)
180{
181 return sys_setfsgid((gid_t)gid);
182}
183
Al Viro24954a12006-02-01 05:16:15 -0500184static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800186 struct user_namespace *user_ns = current_user_ns();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 int i;
188 u16 group;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800189 kgid_t kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 for (i = 0; i < group_info->ngroups; i++) {
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800192 kgid = GROUP_AT(group_info, i);
193 group = (u16)from_kgid_munged(user_ns, kgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (put_user(group, grouplist+i))
195 return -EFAULT;
196 }
197
198 return 0;
199}
200
Al Viro24954a12006-02-01 05:16:15 -0500201static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800203 struct user_namespace *user_ns = current_user_ns();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int i;
205 u16 group;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800206 kgid_t kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 for (i = 0; i < group_info->ngroups; i++) {
209 if (get_user(group, grouplist+i))
210 return -EFAULT;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800211
212 kgid = make_kgid(user_ns, (gid_t)group);
213 if (!gid_valid(kgid))
214 return -EINVAL;
215
216 GROUP_AT(group_info, i) = kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
219 return 0;
220}
221
Al Viro24954a12006-02-01 05:16:15 -0500222asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 int i;
225
226 if (gidsetsize < 0)
227 return -EINVAL;
228
David Howellsb6dff3e2008-11-14 10:39:16 +1100229 get_group_info(current->cred->group_info);
230 i = current->cred->group_info->ngroups;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (gidsetsize) {
232 if (i > gidsetsize) {
233 i = -EINVAL;
234 goto out;
235 }
David Howellsb6dff3e2008-11-14 10:39:16 +1100236 if (groups16_to_user(grouplist, current->cred->group_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 i = -EFAULT;
238 goto out;
239 }
240 }
241out:
David Howellsb6dff3e2008-11-14 10:39:16 +1100242 put_group_info(current->cred->group_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return i;
244}
245
Al Viro24954a12006-02-01 05:16:15 -0500246asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 struct group_info *group_info;
249 int retval;
250
251 if (!capable(CAP_SETGID))
252 return -EPERM;
253 if ((unsigned)gidsetsize > NGROUPS_MAX)
254 return -EINVAL;
255
256 group_info = groups_alloc(gidsetsize);
257 if (!group_info)
258 return -ENOMEM;
259 retval = groups16_from_user(group_info, grouplist);
260 if (retval) {
261 put_group_info(group_info);
262 return retval;
263 }
264
265 retval = set_current_groups(group_info);
266 put_group_info(group_info);
267
268 return retval;
269}
270
271asmlinkage long sys32_getuid16(void)
272{
Eric W. Biederman558a4472012-08-11 12:22:11 -0700273 return high2lowuid(from_kuid_munged(current_user_ns(), current_uid()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
276asmlinkage long sys32_geteuid16(void)
277{
Eric W. Biederman558a4472012-08-11 12:22:11 -0700278 return high2lowuid(from_kuid_munged(current_user_ns(), current_euid()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281asmlinkage long sys32_getgid16(void)
282{
Eric W. Biederman558a4472012-08-11 12:22:11 -0700283 return high2lowgid(from_kgid_munged(current_user_ns(), current_gid()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286asmlinkage long sys32_getegid16(void)
287{
Eric W. Biederman558a4472012-08-11 12:22:11 -0700288 return high2lowgid(from_kgid_munged(current_user_ns(), current_egid()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
292 * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
293 *
294 * This is really horribly ugly.
295 */
Cedric Le Goater1df23952006-10-18 18:30:41 +0200296#ifdef CONFIG_SYSVIPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
298{
299 if (call >> 16) /* hack for backward compatibility */
300 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 switch (call) {
302 case SEMTIMEDOP:
303 return compat_sys_semtimedop(first, compat_ptr(ptr),
304 second, compat_ptr(third));
305 case SEMOP:
306 /* struct sembuf is the same on 32 and 64bit :)) */
307 return sys_semtimedop(first, compat_ptr(ptr),
308 second, NULL);
309 case SEMGET:
310 return sys_semget(first, second, third);
311 case SEMCTL:
312 return compat_sys_semctl(first, second, third,
313 compat_ptr(ptr));
314 case MSGSND:
315 return compat_sys_msgsnd(first, second, third,
316 compat_ptr(ptr));
317 case MSGRCV:
318 return compat_sys_msgrcv(first, second, 0, third,
319 0, compat_ptr(ptr));
320 case MSGGET:
321 return sys_msgget((key_t) first, second);
322 case MSGCTL:
323 return compat_sys_msgctl(first, second, compat_ptr(ptr));
324 case SHMAT:
325 return compat_sys_shmat(first, second, third,
326 0, compat_ptr(ptr));
327 case SHMDT:
328 return sys_shmdt(compat_ptr(ptr));
329 case SHMGET:
330 return sys_shmget(first, (unsigned)second, third);
331 case SHMCTL:
332 return compat_sys_shmctl(first, second, compat_ptr(ptr));
333 }
334
335 return -ENOSYS;
336}
Cedric Le Goater1df23952006-10-18 18:30:41 +0200337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Al Viro24954a12006-02-01 05:16:15 -0500339asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 if ((int)high < 0)
342 return -EINVAL;
343 else
344 return sys_truncate(path, (high << 32) | low);
345}
346
347asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
348{
349 if ((int)high < 0)
350 return -EINVAL;
351 else
352 return sys_ftruncate(fd, (high << 32) | low);
353}
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
356 struct compat_timespec __user *interval)
357{
358 struct timespec t;
359 int ret;
360 mm_segment_t old_fs = get_fs ();
361
362 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100363 ret = sys_sched_rr_get_interval(pid,
364 (struct timespec __force __user *) &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 set_fs (old_fs);
366 if (put_compat_timespec(&t, interval))
367 return -EFAULT;
368 return ret;
369}
370
371asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
372 compat_sigset_t __user *oset, size_t sigsetsize)
373{
374 sigset_t s;
375 compat_sigset_t s32;
376 int ret;
377 mm_segment_t old_fs = get_fs();
378
379 if (set) {
380 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
381 return -EFAULT;
Martin Schwidefsky399c1d82011-10-30 15:17:10 +0100382 s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200385 ret = sys_rt_sigprocmask(how,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100386 set ? (sigset_t __force __user *) &s : NULL,
387 oset ? (sigset_t __force __user *) &s : NULL,
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200388 sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 set_fs (old_fs);
390 if (ret) return ret;
391 if (oset) {
Martin Schwidefsky399c1d82011-10-30 15:17:10 +0100392 s32.sig[1] = (s.sig[0] >> 32);
393 s32.sig[0] = s.sig[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
395 return -EFAULT;
396 }
397 return 0;
398}
399
400asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
401 size_t sigsetsize)
402{
403 sigset_t s;
404 compat_sigset_t s32;
405 int ret;
406 mm_segment_t old_fs = get_fs();
407
408 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100409 ret = sys_rt_sigpending((sigset_t __force __user *) &s, sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 set_fs (old_fs);
411 if (!ret) {
Martin Schwidefsky399c1d82011-10-30 15:17:10 +0100412 s32.sig[1] = (s.sig[0] >> 32);
413 s32.sig[0] = s.sig[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
415 return -EFAULT;
416 }
417 return ret;
418}
419
420asmlinkage long
421sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
422{
423 siginfo_t info;
424 int ret;
425 mm_segment_t old_fs = get_fs();
426
427 if (copy_siginfo_from_user32(&info, uinfo))
428 return -EFAULT;
429 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100430 ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __force __user *) &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 set_fs (old_fs);
432 return ret;
433}
434
435/*
436 * sys32_execve() executes a new program after the asm stub has set
437 * things up for us. This should basically do what I want it to.
438 */
David Howellsc7887322010-08-11 11:26:22 +0100439asmlinkage long sys32_execve(const char __user *name, compat_uptr_t __user *argv,
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200440 compat_uptr_t __user *envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200442 struct pt_regs *regs = task_pt_regs(current);
443 char *filename;
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200444 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200446 filename = getname(name);
447 rc = PTR_ERR(filename);
448 if (IS_ERR(filename))
449 return rc;
450 rc = compat_do_execve(filename, argv, envp, regs);
451 if (rc)
452 goto out;
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200453 current->thread.fp_regs.fpc=0;
454 asm volatile("sfpc %0,0" : : "d" (0));
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200455 rc = regs->gprs[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456out:
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200457 putname(filename);
458 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Al Viro24954a12006-02-01 05:16:15 -0500461asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 size_t count, u32 poshi, u32 poslo)
463{
464 if ((compat_ssize_t) count < 0)
465 return -EINVAL;
466 return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
467}
468
Al Viro24954a12006-02-01 05:16:15 -0500469asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 size_t count, u32 poshi, u32 poslo)
471{
472 if ((compat_ssize_t) count < 0)
473 return -EINVAL;
474 return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
475}
476
477asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
478{
479 return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
480}
481
Al Viro24954a12006-02-01 05:16:15 -0500482asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 mm_segment_t old_fs = get_fs();
485 int ret;
486 off_t of;
487
488 if (offset && get_user(of, offset))
489 return -EFAULT;
490
491 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200492 ret = sys_sendfile(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100493 offset ? (off_t __force __user *) &of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 set_fs(old_fs);
495
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +0200496 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return -EFAULT;
498
499 return ret;
500}
501
502asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
Al Viro24954a12006-02-01 05:16:15 -0500503 compat_loff_t __user *offset, s32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 mm_segment_t old_fs = get_fs();
506 int ret;
507 loff_t lof;
508
509 if (offset && get_user(lof, offset))
510 return -EFAULT;
511
512 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200513 ret = sys_sendfile64(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100514 offset ? (loff_t __force __user *) &lof : NULL,
515 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 set_fs(old_fs);
517
518 if (offset && put_user(lof, offset))
519 return -EFAULT;
520
521 return ret;
522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524struct stat64_emu31 {
525 unsigned long long st_dev;
526 unsigned int __pad1;
527#define STAT64_HAS_BROKEN_ST_INO 1
528 u32 __st_ino;
529 unsigned int st_mode;
530 unsigned int st_nlink;
531 u32 st_uid;
532 u32 st_gid;
533 unsigned long long st_rdev;
534 unsigned int __pad3;
535 long st_size;
536 u32 st_blksize;
537 unsigned char __pad4[4];
538 u32 __pad5; /* future possible st_blocks high bits */
539 u32 st_blocks; /* Number 512-byte blocks allocated. */
540 u32 st_atime;
541 u32 __pad6;
542 u32 st_mtime;
543 u32 __pad7;
544 u32 st_ctime;
545 u32 __pad8; /* will be high 32 bits of ctime someday */
546 unsigned long st_ino;
547};
548
Al Viro24954a12006-02-01 05:16:15 -0500549static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 struct stat64_emu31 tmp;
552
553 memset(&tmp, 0, sizeof(tmp));
554
555 tmp.st_dev = huge_encode_dev(stat->dev);
556 tmp.st_ino = stat->ino;
557 tmp.__st_ino = (u32)stat->ino;
558 tmp.st_mode = stat->mode;
559 tmp.st_nlink = (unsigned int)stat->nlink;
Eric W. Biedermana7c19382012-02-09 09:10:30 -0800560 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
561 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 tmp.st_rdev = huge_encode_dev(stat->rdev);
563 tmp.st_size = stat->size;
564 tmp.st_blksize = (u32)stat->blksize;
565 tmp.st_blocks = (u32)stat->blocks;
566 tmp.st_atime = (u32)stat->atime.tv_sec;
567 tmp.st_mtime = (u32)stat->mtime.tv_sec;
568 tmp.st_ctime = (u32)stat->ctime.tv_sec;
569
570 return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
571}
572
David Howellsc7887322010-08-11 11:26:22 +0100573asmlinkage long sys32_stat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 struct kstat stat;
576 int ret = vfs_stat(filename, &stat);
577 if (!ret)
578 ret = cp_stat64(statbuf, &stat);
579 return ret;
580}
581
David Howellsc7887322010-08-11 11:26:22 +0100582asmlinkage long sys32_lstat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 struct kstat stat;
585 int ret = vfs_lstat(filename, &stat);
586 if (!ret)
587 ret = cp_stat64(statbuf, &stat);
588 return ret;
589}
590
Al Viro24954a12006-02-01 05:16:15 -0500591asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
593 struct kstat stat;
594 int ret = vfs_fstat(fd, &stat);
595 if (!ret)
596 ret = cp_stat64(statbuf, &stat);
597 return ret;
598}
599
David Howellsc7887322010-08-11 11:26:22 +0100600asmlinkage long sys32_fstatat64(unsigned int dfd, const char __user *filename,
Heiko Carstensed3d0212006-02-17 13:52:50 -0800601 struct stat64_emu31 __user* statbuf, int flag)
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100602{
603 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400604 int error;
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100605
Oleg Drokin0112fc22009-04-08 20:05:42 +0400606 error = vfs_fstatat(dfd, filename, &stat, flag);
607 if (error)
608 return error;
609 return cp_stat64(statbuf, &stat);
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/*
613 * Linux/i386 didn't use to be able to handle more than
614 * 4 system call parameters, so these system calls used a memory
615 * block for parameter passing..
616 */
617
618struct mmap_arg_struct_emu31 {
Heiko Carstensd3815892010-01-13 20:44:39 +0100619 compat_ulong_t addr;
620 compat_ulong_t len;
621 compat_ulong_t prot;
622 compat_ulong_t flags;
623 compat_ulong_t fd;
624 compat_ulong_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625};
626
Heiko Carstensd3815892010-01-13 20:44:39 +0100627asmlinkage unsigned long old32_mmap(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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (a.offset & ~PAGE_MASK)
Heiko Carstensd3815892010-01-13 20:44:39 +0100634 return -EINVAL;
635 a.addr = (unsigned long) compat_ptr(a.addr);
636 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
637 a.offset >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Heiko Carstensd3815892010-01-13 20:44:39 +0100640asmlinkage long sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 struct mmap_arg_struct_emu31 a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 if (copy_from_user(&a, arg, sizeof(a)))
Heiko Carstensd3815892010-01-13 20:44:39 +0100645 return -EFAULT;
646 a.addr = (unsigned long) compat_ptr(a.addr);
647 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Al Viro24954a12006-02-01 05:16:15 -0500650asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 if ((compat_ssize_t) count < 0)
653 return -EINVAL;
654
655 return sys_read(fd, buf, count);
656}
657
David Howellsc7887322010-08-11 11:26:22 +0100658asmlinkage long sys32_write(unsigned int fd, const char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 if ((compat_ssize_t) count < 0)
661 return -EINVAL;
662
663 return sys_write(fd, buf, count);
664}
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666/*
Martin Schwidefsky068e1b92005-07-13 01:10:46 -0700667 * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
668 * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
669 * because the 31 bit values differ from the 64 bit values.
670 */
671
672asmlinkage long
673sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
674{
675 if (advise == 4)
676 advise = POSIX_FADV_DONTNEED;
677 else if (advise == 5)
678 advise = POSIX_FADV_NOREUSE;
679 return sys_fadvise64(fd, offset, len, advise);
680}
681
682struct fadvise64_64_args {
683 int fd;
684 long long offset;
685 long long len;
686 int advice;
687};
688
689asmlinkage long
690sys32_fadvise64_64(struct fadvise64_64_args __user *args)
691{
692 struct fadvise64_64_args a;
693
694 if ( copy_from_user(&a, args, sizeof(a)) )
695 return -EFAULT;
696 if (a.advice == 4)
697 a.advice = POSIX_FADV_DONTNEED;
698 else if (a.advice == 5)
699 a.advice = POSIX_FADV_NOREUSE;
700 return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
701}