blob: 24b218737b9b6ed628366daa5837e15593891a91 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/sem.h>
29#include <linux/msg.h>
30#include <linux/shm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/quota.h>
33#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/poll.h>
35#include <linux/personality.h>
36#include <linux/stat.h>
37#include <linux/filter.h>
38#include <linux/highmem.h>
39#include <linux/highuid.h>
40#include <linux/mman.h>
41#include <linux/ipv6.h>
42#include <linux/in.h>
43#include <linux/icmpv6.h>
44#include <linux/syscalls.h>
45#include <linux/sysctl.h>
46#include <linux/binfmts.h>
Randy Dunlapa9415642006-01-11 12:17:48 -080047#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/compat.h>
49#include <linux/vfs.h>
50#include <linux/ptrace.h>
Martin Schwidefsky068e1b92005-07-13 01:10:46 -070051#include <linux/fadvise.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070052#include <linux/ipc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#include <net/scm.h>
59#include <net/sock.h>
60
61#include "compat_linux.h"
62
Martin Schwidefskyb50511e2011-10-30 15:16:50 +010063u32 psw32_user_bits = PSW32_MASK_DAT | PSW32_MASK_IO | PSW32_MASK_EXT |
64 PSW32_DEFAULT_KEY | PSW32_MASK_BASE | PSW32_MASK_MCHECK |
65 PSW32_MASK_PSTATE | PSW32_ASC_HOME;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* For this source file, we want overflow handling. */
68
69#undef high2lowuid
70#undef high2lowgid
71#undef low2highuid
72#undef low2highgid
73#undef SET_UID16
74#undef SET_GID16
75#undef NEW_TO_OLD_UID
76#undef NEW_TO_OLD_GID
77#undef SET_OLDSTAT_UID
78#undef SET_OLDSTAT_GID
79#undef SET_STAT_UID
80#undef SET_STAT_GID
81
82#define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
83#define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
84#define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid)
85#define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid)
86#define SET_UID16(var, uid) var = high2lowuid(uid)
87#define SET_GID16(var, gid) var = high2lowgid(gid)
88#define NEW_TO_OLD_UID(uid) high2lowuid(uid)
89#define NEW_TO_OLD_GID(gid) high2lowgid(gid)
90#define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
91#define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
92#define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
93#define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
94
Al Viro24954a12006-02-01 05:16:15 -050095asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 return sys_chown(filename, low2highuid(user), low2highgid(group));
98}
99
Al Viro24954a12006-02-01 05:16:15 -0500100asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 return sys_lchown(filename, low2highuid(user), low2highgid(group));
103}
104
105asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
106{
107 return sys_fchown(fd, low2highuid(user), low2highgid(group));
108}
109
110asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
111{
112 return sys_setregid(low2highgid(rgid), low2highgid(egid));
113}
114
115asmlinkage long sys32_setgid16(u16 gid)
116{
117 return sys_setgid((gid_t)gid);
118}
119
120asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
121{
122 return sys_setreuid(low2highuid(ruid), low2highuid(euid));
123}
124
125asmlinkage long sys32_setuid16(u16 uid)
126{
127 return sys_setuid((uid_t)uid);
128}
129
130asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
131{
132 return sys_setresuid(low2highuid(ruid), low2highuid(euid),
133 low2highuid(suid));
134}
135
Al Viro24954a12006-02-01 05:16:15 -0500136asmlinkage long sys32_getresuid16(u16 __user *ruid, u16 __user *euid, u16 __user *suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 int retval;
139
David Howellsb6dff3e2008-11-14 10:39:16 +1100140 if (!(retval = put_user(high2lowuid(current->cred->uid), ruid)) &&
141 !(retval = put_user(high2lowuid(current->cred->euid), euid)))
142 retval = put_user(high2lowuid(current->cred->suid), suid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 return retval;
145}
146
147asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
148{
149 return sys_setresgid(low2highgid(rgid), low2highgid(egid),
150 low2highgid(sgid));
151}
152
Al Viro24954a12006-02-01 05:16:15 -0500153asmlinkage long sys32_getresgid16(u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 int retval;
156
David Howellsb6dff3e2008-11-14 10:39:16 +1100157 if (!(retval = put_user(high2lowgid(current->cred->gid), rgid)) &&
158 !(retval = put_user(high2lowgid(current->cred->egid), egid)))
159 retval = put_user(high2lowgid(current->cred->sgid), sgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 return retval;
162}
163
164asmlinkage long sys32_setfsuid16(u16 uid)
165{
166 return sys_setfsuid((uid_t)uid);
167}
168
169asmlinkage long sys32_setfsgid16(u16 gid)
170{
171 return sys_setfsgid((gid_t)gid);
172}
173
Al Viro24954a12006-02-01 05:16:15 -0500174static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 int i;
177 u16 group;
178
179 for (i = 0; i < group_info->ngroups; i++) {
180 group = (u16)GROUP_AT(group_info, i);
181 if (put_user(group, grouplist+i))
182 return -EFAULT;
183 }
184
185 return 0;
186}
187
Al Viro24954a12006-02-01 05:16:15 -0500188static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 int i;
191 u16 group;
192
193 for (i = 0; i < group_info->ngroups; i++) {
194 if (get_user(group, grouplist+i))
195 return -EFAULT;
196 GROUP_AT(group_info, i) = (gid_t)group;
197 }
198
199 return 0;
200}
201
Al Viro24954a12006-02-01 05:16:15 -0500202asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 int i;
205
206 if (gidsetsize < 0)
207 return -EINVAL;
208
David Howellsb6dff3e2008-11-14 10:39:16 +1100209 get_group_info(current->cred->group_info);
210 i = current->cred->group_info->ngroups;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (gidsetsize) {
212 if (i > gidsetsize) {
213 i = -EINVAL;
214 goto out;
215 }
David Howellsb6dff3e2008-11-14 10:39:16 +1100216 if (groups16_to_user(grouplist, current->cred->group_info)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 i = -EFAULT;
218 goto out;
219 }
220 }
221out:
David Howellsb6dff3e2008-11-14 10:39:16 +1100222 put_group_info(current->cred->group_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return i;
224}
225
Al Viro24954a12006-02-01 05:16:15 -0500226asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct group_info *group_info;
229 int retval;
230
231 if (!capable(CAP_SETGID))
232 return -EPERM;
233 if ((unsigned)gidsetsize > NGROUPS_MAX)
234 return -EINVAL;
235
236 group_info = groups_alloc(gidsetsize);
237 if (!group_info)
238 return -ENOMEM;
239 retval = groups16_from_user(group_info, grouplist);
240 if (retval) {
241 put_group_info(group_info);
242 return retval;
243 }
244
245 retval = set_current_groups(group_info);
246 put_group_info(group_info);
247
248 return retval;
249}
250
251asmlinkage long sys32_getuid16(void)
252{
David Howellsb6dff3e2008-11-14 10:39:16 +1100253 return high2lowuid(current->cred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256asmlinkage long sys32_geteuid16(void)
257{
David Howellsb6dff3e2008-11-14 10:39:16 +1100258 return high2lowuid(current->cred->euid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261asmlinkage long sys32_getgid16(void)
262{
David Howellsb6dff3e2008-11-14 10:39:16 +1100263 return high2lowgid(current->cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266asmlinkage long sys32_getegid16(void)
267{
David Howellsb6dff3e2008-11-14 10:39:16 +1100268 return high2lowgid(current->cred->egid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*
272 * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
273 *
274 * This is really horribly ugly.
275 */
Cedric Le Goater1df23952006-10-18 18:30:41 +0200276#ifdef CONFIG_SYSVIPC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
278{
279 if (call >> 16) /* hack for backward compatibility */
280 return -EINVAL;
281
282 call &= 0xffff;
283
284 switch (call) {
285 case SEMTIMEDOP:
286 return compat_sys_semtimedop(first, compat_ptr(ptr),
287 second, compat_ptr(third));
288 case SEMOP:
289 /* struct sembuf is the same on 32 and 64bit :)) */
290 return sys_semtimedop(first, compat_ptr(ptr),
291 second, NULL);
292 case SEMGET:
293 return sys_semget(first, second, third);
294 case SEMCTL:
295 return compat_sys_semctl(first, second, third,
296 compat_ptr(ptr));
297 case MSGSND:
298 return compat_sys_msgsnd(first, second, third,
299 compat_ptr(ptr));
300 case MSGRCV:
301 return compat_sys_msgrcv(first, second, 0, third,
302 0, compat_ptr(ptr));
303 case MSGGET:
304 return sys_msgget((key_t) first, second);
305 case MSGCTL:
306 return compat_sys_msgctl(first, second, compat_ptr(ptr));
307 case SHMAT:
308 return compat_sys_shmat(first, second, third,
309 0, compat_ptr(ptr));
310 case SHMDT:
311 return sys_shmdt(compat_ptr(ptr));
312 case SHMGET:
313 return sys_shmget(first, (unsigned)second, third);
314 case SHMCTL:
315 return compat_sys_shmctl(first, second, compat_ptr(ptr));
316 }
317
318 return -ENOSYS;
319}
Cedric Le Goater1df23952006-10-18 18:30:41 +0200320#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Al Viro24954a12006-02-01 05:16:15 -0500322asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 if ((int)high < 0)
325 return -EINVAL;
326 else
327 return sys_truncate(path, (high << 32) | low);
328}
329
330asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
331{
332 if ((int)high < 0)
333 return -EINVAL;
334 else
335 return sys_ftruncate(fd, (high << 32) | low);
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
339 struct compat_timespec __user *interval)
340{
341 struct timespec t;
342 int ret;
343 mm_segment_t old_fs = get_fs ();
344
345 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100346 ret = sys_sched_rr_get_interval(pid,
347 (struct timespec __force __user *) &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 set_fs (old_fs);
349 if (put_compat_timespec(&t, interval))
350 return -EFAULT;
351 return ret;
352}
353
354asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
355 compat_sigset_t __user *oset, size_t sigsetsize)
356{
357 sigset_t s;
358 compat_sigset_t s32;
359 int ret;
360 mm_segment_t old_fs = get_fs();
361
362 if (set) {
363 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
364 return -EFAULT;
365 switch (_NSIG_WORDS) {
366 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
367 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
368 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
369 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
370 }
371 }
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) {
380 switch (_NSIG_WORDS) {
381 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
382 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
383 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
384 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
385 }
386 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
387 return -EFAULT;
388 }
389 return 0;
390}
391
392asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
393 size_t sigsetsize)
394{
395 sigset_t s;
396 compat_sigset_t s32;
397 int ret;
398 mm_segment_t old_fs = get_fs();
399
400 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100401 ret = sys_rt_sigpending((sigset_t __force __user *) &s, sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 set_fs (old_fs);
403 if (!ret) {
404 switch (_NSIG_WORDS) {
405 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
406 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
407 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
408 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
409 }
410 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
411 return -EFAULT;
412 }
413 return ret;
414}
415
416asmlinkage long
417sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
418{
419 siginfo_t info;
420 int ret;
421 mm_segment_t old_fs = get_fs();
422
423 if (copy_siginfo_from_user32(&info, uinfo))
424 return -EFAULT;
425 set_fs (KERNEL_DS);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100426 ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __force __user *) &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 set_fs (old_fs);
428 return ret;
429}
430
431/*
432 * sys32_execve() executes a new program after the asm stub has set
433 * things up for us. This should basically do what I want it to.
434 */
David Howellsc7887322010-08-11 11:26:22 +0100435asmlinkage long sys32_execve(const char __user *name, compat_uptr_t __user *argv,
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200436 compat_uptr_t __user *envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200438 struct pt_regs *regs = task_pt_regs(current);
439 char *filename;
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200440 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200442 filename = getname(name);
443 rc = PTR_ERR(filename);
444 if (IS_ERR(filename))
445 return rc;
446 rc = compat_do_execve(filename, argv, envp, regs);
447 if (rc)
448 goto out;
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200449 current->thread.fp_regs.fpc=0;
450 asm volatile("sfpc %0,0" : : "d" (0));
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200451 rc = regs->gprs[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452out:
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200453 putname(filename);
454 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Al Viro24954a12006-02-01 05:16:15 -0500457asmlinkage long sys32_pread64(unsigned int fd, 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_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
463}
464
Al Viro24954a12006-02-01 05:16:15 -0500465asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 size_t count, u32 poshi, u32 poslo)
467{
468 if ((compat_ssize_t) count < 0)
469 return -EINVAL;
470 return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
471}
472
473asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
474{
475 return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
476}
477
Al Viro24954a12006-02-01 05:16:15 -0500478asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 mm_segment_t old_fs = get_fs();
481 int ret;
482 off_t of;
483
484 if (offset && get_user(of, offset))
485 return -EFAULT;
486
487 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200488 ret = sys_sendfile(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100489 offset ? (off_t __force __user *) &of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 set_fs(old_fs);
491
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +0200492 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return -EFAULT;
494
495 return ret;
496}
497
498asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
Al Viro24954a12006-02-01 05:16:15 -0500499 compat_loff_t __user *offset, s32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 mm_segment_t old_fs = get_fs();
502 int ret;
503 loff_t lof;
504
505 if (offset && get_user(lof, offset))
506 return -EFAULT;
507
508 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200509 ret = sys_sendfile64(out_fd, in_fd,
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100510 offset ? (loff_t __force __user *) &lof : NULL,
511 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 set_fs(old_fs);
513
514 if (offset && put_user(lof, offset))
515 return -EFAULT;
516
517 return ret;
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520struct stat64_emu31 {
521 unsigned long long st_dev;
522 unsigned int __pad1;
523#define STAT64_HAS_BROKEN_ST_INO 1
524 u32 __st_ino;
525 unsigned int st_mode;
526 unsigned int st_nlink;
527 u32 st_uid;
528 u32 st_gid;
529 unsigned long long st_rdev;
530 unsigned int __pad3;
531 long st_size;
532 u32 st_blksize;
533 unsigned char __pad4[4];
534 u32 __pad5; /* future possible st_blocks high bits */
535 u32 st_blocks; /* Number 512-byte blocks allocated. */
536 u32 st_atime;
537 u32 __pad6;
538 u32 st_mtime;
539 u32 __pad7;
540 u32 st_ctime;
541 u32 __pad8; /* will be high 32 bits of ctime someday */
542 unsigned long st_ino;
543};
544
Al Viro24954a12006-02-01 05:16:15 -0500545static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 struct stat64_emu31 tmp;
548
549 memset(&tmp, 0, sizeof(tmp));
550
551 tmp.st_dev = huge_encode_dev(stat->dev);
552 tmp.st_ino = stat->ino;
553 tmp.__st_ino = (u32)stat->ino;
554 tmp.st_mode = stat->mode;
555 tmp.st_nlink = (unsigned int)stat->nlink;
556 tmp.st_uid = stat->uid;
557 tmp.st_gid = stat->gid;
558 tmp.st_rdev = huge_encode_dev(stat->rdev);
559 tmp.st_size = stat->size;
560 tmp.st_blksize = (u32)stat->blksize;
561 tmp.st_blocks = (u32)stat->blocks;
562 tmp.st_atime = (u32)stat->atime.tv_sec;
563 tmp.st_mtime = (u32)stat->mtime.tv_sec;
564 tmp.st_ctime = (u32)stat->ctime.tv_sec;
565
566 return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
567}
568
David Howellsc7887322010-08-11 11:26:22 +0100569asmlinkage long sys32_stat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 struct kstat stat;
572 int ret = vfs_stat(filename, &stat);
573 if (!ret)
574 ret = cp_stat64(statbuf, &stat);
575 return ret;
576}
577
David Howellsc7887322010-08-11 11:26:22 +0100578asmlinkage long sys32_lstat64(const char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 struct kstat stat;
581 int ret = vfs_lstat(filename, &stat);
582 if (!ret)
583 ret = cp_stat64(statbuf, &stat);
584 return ret;
585}
586
Al Viro24954a12006-02-01 05:16:15 -0500587asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct kstat stat;
590 int ret = vfs_fstat(fd, &stat);
591 if (!ret)
592 ret = cp_stat64(statbuf, &stat);
593 return ret;
594}
595
David Howellsc7887322010-08-11 11:26:22 +0100596asmlinkage long sys32_fstatat64(unsigned int dfd, const char __user *filename,
Heiko Carstensed3d0212006-02-17 13:52:50 -0800597 struct stat64_emu31 __user* statbuf, int flag)
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100598{
599 struct kstat stat;
Oleg Drokin0112fc22009-04-08 20:05:42 +0400600 int error;
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100601
Oleg Drokin0112fc22009-04-08 20:05:42 +0400602 error = vfs_fstatat(dfd, filename, &stat, flag);
603 if (error)
604 return error;
605 return cp_stat64(statbuf, &stat);
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100606}
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608/*
609 * Linux/i386 didn't use to be able to handle more than
610 * 4 system call parameters, so these system calls used a memory
611 * block for parameter passing..
612 */
613
614struct mmap_arg_struct_emu31 {
Heiko Carstensd3815892010-01-13 20:44:39 +0100615 compat_ulong_t addr;
616 compat_ulong_t len;
617 compat_ulong_t prot;
618 compat_ulong_t flags;
619 compat_ulong_t fd;
620 compat_ulong_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621};
622
Heiko Carstensd3815892010-01-13 20:44:39 +0100623asmlinkage unsigned long old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct mmap_arg_struct_emu31 a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 if (copy_from_user(&a, arg, sizeof(a)))
Heiko Carstensd3815892010-01-13 20:44:39 +0100628 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (a.offset & ~PAGE_MASK)
Heiko Carstensd3815892010-01-13 20:44:39 +0100630 return -EINVAL;
631 a.addr = (unsigned long) compat_ptr(a.addr);
632 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
633 a.offset >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Heiko Carstensd3815892010-01-13 20:44:39 +0100636asmlinkage long sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 struct mmap_arg_struct_emu31 a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 if (copy_from_user(&a, arg, sizeof(a)))
Heiko Carstensd3815892010-01-13 20:44:39 +0100641 return -EFAULT;
642 a.addr = (unsigned long) compat_ptr(a.addr);
643 return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Al Viro24954a12006-02-01 05:16:15 -0500646asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 if ((compat_ssize_t) count < 0)
649 return -EINVAL;
650
651 return sys_read(fd, buf, count);
652}
653
David Howellsc7887322010-08-11 11:26:22 +0100654asmlinkage long sys32_write(unsigned int fd, const char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 if ((compat_ssize_t) count < 0)
657 return -EINVAL;
658
659 return sys_write(fd, buf, count);
660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662/*
Martin Schwidefsky068e1b92005-07-13 01:10:46 -0700663 * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
664 * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
665 * because the 31 bit values differ from the 64 bit values.
666 */
667
668asmlinkage long
669sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
670{
671 if (advise == 4)
672 advise = POSIX_FADV_DONTNEED;
673 else if (advise == 5)
674 advise = POSIX_FADV_NOREUSE;
675 return sys_fadvise64(fd, offset, len, advise);
676}
677
678struct fadvise64_64_args {
679 int fd;
680 long long offset;
681 long long len;
682 int advice;
683};
684
685asmlinkage long
686sys32_fadvise64_64(struct fadvise64_64_args __user *args)
687{
688 struct fadvise64_64_args a;
689
690 if ( copy_from_user(&a, args, sizeof(a)) )
691 return -EFAULT;
692 if (a.advice == 4)
693 a.advice = POSIX_FADV_DONTNEED;
694 else if (a.advice == 5)
695 a.advice = POSIX_FADV_NOREUSE;
696 return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
697}