blob: c46e3d48e4104d827abc7c17c40bed215fe70461 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include <asm/types.h>
63#include <asm/ipc.h>
64#include <asm/uaccess.h>
65#include <asm/semaphore.h>
66
67#include <net/scm.h>
68#include <net/sock.h>
69
70#include "compat_linux.h"
71
72
73/* For this source file, we want overflow handling. */
74
75#undef high2lowuid
76#undef high2lowgid
77#undef low2highuid
78#undef low2highgid
79#undef SET_UID16
80#undef SET_GID16
81#undef NEW_TO_OLD_UID
82#undef NEW_TO_OLD_GID
83#undef SET_OLDSTAT_UID
84#undef SET_OLDSTAT_GID
85#undef SET_STAT_UID
86#undef SET_STAT_GID
87
88#define high2lowuid(uid) ((uid) > 65535) ? (u16)overflowuid : (u16)(uid)
89#define high2lowgid(gid) ((gid) > 65535) ? (u16)overflowgid : (u16)(gid)
90#define low2highuid(uid) ((uid) == (u16)-1) ? (uid_t)-1 : (uid_t)(uid)
91#define low2highgid(gid) ((gid) == (u16)-1) ? (gid_t)-1 : (gid_t)(gid)
92#define SET_UID16(var, uid) var = high2lowuid(uid)
93#define SET_GID16(var, gid) var = high2lowgid(gid)
94#define NEW_TO_OLD_UID(uid) high2lowuid(uid)
95#define NEW_TO_OLD_GID(gid) high2lowgid(gid)
96#define SET_OLDSTAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
97#define SET_OLDSTAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
98#define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid)
99#define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid)
100
Al Viro24954a12006-02-01 05:16:15 -0500101asmlinkage long sys32_chown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 return sys_chown(filename, low2highuid(user), low2highgid(group));
104}
105
Al Viro24954a12006-02-01 05:16:15 -0500106asmlinkage long sys32_lchown16(const char __user * filename, u16 user, u16 group)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 return sys_lchown(filename, low2highuid(user), low2highgid(group));
109}
110
111asmlinkage long sys32_fchown16(unsigned int fd, u16 user, u16 group)
112{
113 return sys_fchown(fd, low2highuid(user), low2highgid(group));
114}
115
116asmlinkage long sys32_setregid16(u16 rgid, u16 egid)
117{
118 return sys_setregid(low2highgid(rgid), low2highgid(egid));
119}
120
121asmlinkage long sys32_setgid16(u16 gid)
122{
123 return sys_setgid((gid_t)gid);
124}
125
126asmlinkage long sys32_setreuid16(u16 ruid, u16 euid)
127{
128 return sys_setreuid(low2highuid(ruid), low2highuid(euid));
129}
130
131asmlinkage long sys32_setuid16(u16 uid)
132{
133 return sys_setuid((uid_t)uid);
134}
135
136asmlinkage long sys32_setresuid16(u16 ruid, u16 euid, u16 suid)
137{
138 return sys_setresuid(low2highuid(ruid), low2highuid(euid),
139 low2highuid(suid));
140}
141
Al Viro24954a12006-02-01 05:16:15 -0500142asmlinkage long sys32_getresuid16(u16 __user *ruid, u16 __user *euid, u16 __user *suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
144 int retval;
145
146 if (!(retval = put_user(high2lowuid(current->uid), ruid)) &&
147 !(retval = put_user(high2lowuid(current->euid), euid)))
148 retval = put_user(high2lowuid(current->suid), suid);
149
150 return retval;
151}
152
153asmlinkage long sys32_setresgid16(u16 rgid, u16 egid, u16 sgid)
154{
155 return sys_setresgid(low2highgid(rgid), low2highgid(egid),
156 low2highgid(sgid));
157}
158
Al Viro24954a12006-02-01 05:16:15 -0500159asmlinkage long sys32_getresgid16(u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 int retval;
162
163 if (!(retval = put_user(high2lowgid(current->gid), rgid)) &&
164 !(retval = put_user(high2lowgid(current->egid), egid)))
165 retval = put_user(high2lowgid(current->sgid), sgid);
166
167 return retval;
168}
169
170asmlinkage long sys32_setfsuid16(u16 uid)
171{
172 return sys_setfsuid((uid_t)uid);
173}
174
175asmlinkage long sys32_setfsgid16(u16 gid)
176{
177 return sys_setfsgid((gid_t)gid);
178}
179
Al Viro24954a12006-02-01 05:16:15 -0500180static int groups16_to_user(u16 __user *grouplist, struct group_info *group_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 int i;
183 u16 group;
184
185 for (i = 0; i < group_info->ngroups; i++) {
186 group = (u16)GROUP_AT(group_info, i);
187 if (put_user(group, grouplist+i))
188 return -EFAULT;
189 }
190
191 return 0;
192}
193
Al Viro24954a12006-02-01 05:16:15 -0500194static int groups16_from_user(struct group_info *group_info, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 int i;
197 u16 group;
198
199 for (i = 0; i < group_info->ngroups; i++) {
200 if (get_user(group, grouplist+i))
201 return -EFAULT;
202 GROUP_AT(group_info, i) = (gid_t)group;
203 }
204
205 return 0;
206}
207
Al Viro24954a12006-02-01 05:16:15 -0500208asmlinkage long sys32_getgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 int i;
211
212 if (gidsetsize < 0)
213 return -EINVAL;
214
215 get_group_info(current->group_info);
216 i = current->group_info->ngroups;
217 if (gidsetsize) {
218 if (i > gidsetsize) {
219 i = -EINVAL;
220 goto out;
221 }
222 if (groups16_to_user(grouplist, current->group_info)) {
223 i = -EFAULT;
224 goto out;
225 }
226 }
227out:
228 put_group_info(current->group_info);
229 return i;
230}
231
Al Viro24954a12006-02-01 05:16:15 -0500232asmlinkage long sys32_setgroups16(int gidsetsize, u16 __user *grouplist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct group_info *group_info;
235 int retval;
236
237 if (!capable(CAP_SETGID))
238 return -EPERM;
239 if ((unsigned)gidsetsize > NGROUPS_MAX)
240 return -EINVAL;
241
242 group_info = groups_alloc(gidsetsize);
243 if (!group_info)
244 return -ENOMEM;
245 retval = groups16_from_user(group_info, grouplist);
246 if (retval) {
247 put_group_info(group_info);
248 return retval;
249 }
250
251 retval = set_current_groups(group_info);
252 put_group_info(group_info);
253
254 return retval;
255}
256
257asmlinkage long sys32_getuid16(void)
258{
259 return high2lowuid(current->uid);
260}
261
262asmlinkage long sys32_geteuid16(void)
263{
264 return high2lowuid(current->euid);
265}
266
267asmlinkage long sys32_getgid16(void)
268{
269 return high2lowgid(current->gid);
270}
271
272asmlinkage long sys32_getegid16(void)
273{
274 return high2lowgid(current->egid);
275}
276
277/* 32-bit timeval and related flotsam. */
278
Al Viro24954a12006-02-01 05:16:15 -0500279static inline long get_tv32(struct timeval *o, struct compat_timeval __user *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Martin Schwidefskya63a4932006-01-06 00:19:09 -0800281 return (!access_ok(VERIFY_READ, o, sizeof(*o)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 (__get_user(o->tv_sec, &i->tv_sec) ||
283 __get_user(o->tv_usec, &i->tv_usec)));
284}
285
Al Viro24954a12006-02-01 05:16:15 -0500286static inline long put_tv32(struct compat_timeval __user *o, struct timeval *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
289 (__put_user(i->tv_sec, &o->tv_sec) ||
290 __put_user(i->tv_usec, &o->tv_usec)));
291}
292
293/*
294 * sys32_ipc() is the de-multiplexer for the SysV IPC calls in 32bit emulation.
295 *
296 * This is really horribly ugly.
297 */
298asmlinkage long sys32_ipc(u32 call, int first, int second, int third, u32 ptr)
299{
300 if (call >> 16) /* hack for backward compatibility */
301 return -EINVAL;
302
303 call &= 0xffff;
304
305 switch (call) {
306 case SEMTIMEDOP:
307 return compat_sys_semtimedop(first, compat_ptr(ptr),
308 second, compat_ptr(third));
309 case SEMOP:
310 /* struct sembuf is the same on 32 and 64bit :)) */
311 return sys_semtimedop(first, compat_ptr(ptr),
312 second, NULL);
313 case SEMGET:
314 return sys_semget(first, second, third);
315 case SEMCTL:
316 return compat_sys_semctl(first, second, third,
317 compat_ptr(ptr));
318 case MSGSND:
319 return compat_sys_msgsnd(first, second, third,
320 compat_ptr(ptr));
321 case MSGRCV:
322 return compat_sys_msgrcv(first, second, 0, third,
323 0, compat_ptr(ptr));
324 case MSGGET:
325 return sys_msgget((key_t) first, second);
326 case MSGCTL:
327 return compat_sys_msgctl(first, second, compat_ptr(ptr));
328 case SHMAT:
329 return compat_sys_shmat(first, second, third,
330 0, compat_ptr(ptr));
331 case SHMDT:
332 return sys_shmdt(compat_ptr(ptr));
333 case SHMGET:
334 return sys_shmget(first, (unsigned)second, third);
335 case SHMCTL:
336 return compat_sys_shmctl(first, second, compat_ptr(ptr));
337 }
338
339 return -ENOSYS;
340}
341
Al Viro24954a12006-02-01 05:16:15 -0500342asmlinkage long sys32_truncate64(const char __user * path, unsigned long high, unsigned long low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 if ((int)high < 0)
345 return -EINVAL;
346 else
347 return sys_truncate(path, (high << 32) | low);
348}
349
350asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low)
351{
352 if ((int)high < 0)
353 return -EINVAL;
354 else
355 return sys_ftruncate(fd, (high << 32) | low);
356}
357
Al Viro24954a12006-02-01 05:16:15 -0500358int cp_compat_stat(struct kstat *stat, struct compat_stat __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 int err;
361
362 if (!old_valid_dev(stat->dev) || !old_valid_dev(stat->rdev))
363 return -EOVERFLOW;
364
365 err = put_user(old_encode_dev(stat->dev), &statbuf->st_dev);
366 err |= put_user(stat->ino, &statbuf->st_ino);
367 err |= put_user(stat->mode, &statbuf->st_mode);
368 err |= put_user(stat->nlink, &statbuf->st_nlink);
369 err |= put_user(high2lowuid(stat->uid), &statbuf->st_uid);
370 err |= put_user(high2lowgid(stat->gid), &statbuf->st_gid);
371 err |= put_user(old_encode_dev(stat->rdev), &statbuf->st_rdev);
372 err |= put_user(stat->size, &statbuf->st_size);
373 err |= put_user(stat->atime.tv_sec, &statbuf->st_atime);
374 err |= put_user(stat->atime.tv_nsec, &statbuf->st_atime_nsec);
375 err |= put_user(stat->mtime.tv_sec, &statbuf->st_mtime);
376 err |= put_user(stat->mtime.tv_nsec, &statbuf->st_mtime_nsec);
377 err |= put_user(stat->ctime.tv_sec, &statbuf->st_ctime);
378 err |= put_user(stat->ctime.tv_nsec, &statbuf->st_ctime_nsec);
379 err |= put_user(stat->blksize, &statbuf->st_blksize);
380 err |= put_user(stat->blocks, &statbuf->st_blocks);
381/* fixme
382 err |= put_user(0, &statbuf->__unused4[0]);
383 err |= put_user(0, &statbuf->__unused4[1]);
384*/
385 return err;
386}
387
388struct sysinfo32 {
389 s32 uptime;
390 u32 loads[3];
391 u32 totalram;
392 u32 freeram;
393 u32 sharedram;
394 u32 bufferram;
395 u32 totalswap;
396 u32 freeswap;
397 unsigned short procs;
398 unsigned short pads;
399 u32 totalhigh;
400 u32 freehigh;
401 unsigned int mem_unit;
402 char _f[8];
403};
404
405asmlinkage long sys32_sysinfo(struct sysinfo32 __user *info)
406{
407 struct sysinfo s;
408 int ret, err;
409 mm_segment_t old_fs = get_fs ();
410
411 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200412 ret = sys_sysinfo((struct sysinfo __user *) &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 set_fs (old_fs);
414 err = put_user (s.uptime, &info->uptime);
415 err |= __put_user (s.loads[0], &info->loads[0]);
416 err |= __put_user (s.loads[1], &info->loads[1]);
417 err |= __put_user (s.loads[2], &info->loads[2]);
418 err |= __put_user (s.totalram, &info->totalram);
419 err |= __put_user (s.freeram, &info->freeram);
420 err |= __put_user (s.sharedram, &info->sharedram);
421 err |= __put_user (s.bufferram, &info->bufferram);
422 err |= __put_user (s.totalswap, &info->totalswap);
423 err |= __put_user (s.freeswap, &info->freeswap);
424 err |= __put_user (s.procs, &info->procs);
425 err |= __put_user (s.totalhigh, &info->totalhigh);
426 err |= __put_user (s.freehigh, &info->freehigh);
427 err |= __put_user (s.mem_unit, &info->mem_unit);
428 if (err)
429 return -EFAULT;
430 return ret;
431}
432
433asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
434 struct compat_timespec __user *interval)
435{
436 struct timespec t;
437 int ret;
438 mm_segment_t old_fs = get_fs ();
439
440 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200441 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *) &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 set_fs (old_fs);
443 if (put_compat_timespec(&t, interval))
444 return -EFAULT;
445 return ret;
446}
447
448asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
449 compat_sigset_t __user *oset, size_t sigsetsize)
450{
451 sigset_t s;
452 compat_sigset_t s32;
453 int ret;
454 mm_segment_t old_fs = get_fs();
455
456 if (set) {
457 if (copy_from_user (&s32, set, sizeof(compat_sigset_t)))
458 return -EFAULT;
459 switch (_NSIG_WORDS) {
460 case 4: s.sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
461 case 3: s.sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
462 case 2: s.sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
463 case 1: s.sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
464 }
465 }
466 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200467 ret = sys_rt_sigprocmask(how,
468 set ? (sigset_t __user *) &s : NULL,
469 oset ? (sigset_t __user *) &s : NULL,
470 sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 set_fs (old_fs);
472 if (ret) return ret;
473 if (oset) {
474 switch (_NSIG_WORDS) {
475 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
476 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
477 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
478 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
479 }
480 if (copy_to_user (oset, &s32, sizeof(compat_sigset_t)))
481 return -EFAULT;
482 }
483 return 0;
484}
485
486asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
487 size_t sigsetsize)
488{
489 sigset_t s;
490 compat_sigset_t s32;
491 int ret;
492 mm_segment_t old_fs = get_fs();
493
494 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200495 ret = sys_rt_sigpending((sigset_t __user *) &s, sigsetsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 set_fs (old_fs);
497 if (!ret) {
498 switch (_NSIG_WORDS) {
499 case 4: s32.sig[7] = (s.sig[3] >> 32); s32.sig[6] = s.sig[3];
500 case 3: s32.sig[5] = (s.sig[2] >> 32); s32.sig[4] = s.sig[2];
501 case 2: s32.sig[3] = (s.sig[1] >> 32); s32.sig[2] = s.sig[1];
502 case 1: s32.sig[1] = (s.sig[0] >> 32); s32.sig[0] = s.sig[0];
503 }
504 if (copy_to_user (set, &s32, sizeof(compat_sigset_t)))
505 return -EFAULT;
506 }
507 return ret;
508}
509
510asmlinkage long
511sys32_rt_sigqueueinfo(int pid, int sig, compat_siginfo_t __user *uinfo)
512{
513 siginfo_t info;
514 int ret;
515 mm_segment_t old_fs = get_fs();
516
517 if (copy_siginfo_from_user32(&info, uinfo))
518 return -EFAULT;
519 set_fs (KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200520 ret = sys_rt_sigqueueinfo(pid, sig, (siginfo_t __user *) &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 set_fs (old_fs);
522 return ret;
523}
524
525/*
526 * sys32_execve() executes a new program after the asm stub has set
527 * things up for us. This should basically do what I want it to.
528 */
529asmlinkage long
530sys32_execve(struct pt_regs regs)
531{
532 int error;
533 char * filename;
534
535 filename = getname(compat_ptr(regs.orig_gpr2));
536 error = PTR_ERR(filename);
537 if (IS_ERR(filename))
538 goto out;
539 error = compat_do_execve(filename, compat_ptr(regs.gprs[3]),
540 compat_ptr(regs.gprs[4]), &regs);
541 if (error == 0)
542 {
543 task_lock(current);
544 current->ptrace &= ~PT_DTRACE;
545 task_unlock(current);
546 current->thread.fp_regs.fpc=0;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200547 asm volatile("sfpc %0,0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 putname(filename);
550out:
551 return error;
552}
553
554
555#ifdef CONFIG_MODULES
556
557asmlinkage long
558sys32_init_module(void __user *umod, unsigned long len,
559 const char __user *uargs)
560{
561 return sys_init_module(umod, len, uargs);
562}
563
564asmlinkage long
565sys32_delete_module(const char __user *name_user, unsigned int flags)
566{
567 return sys_delete_module(name_user, flags);
568}
569
570#else /* CONFIG_MODULES */
571
572asmlinkage long
573sys32_init_module(void __user *umod, unsigned long len,
574 const char __user *uargs)
575{
576 return -ENOSYS;
577}
578
579asmlinkage long
580sys32_delete_module(const char __user *name_user, unsigned int flags)
581{
582 return -ENOSYS;
583}
584
585#endif /* CONFIG_MODULES */
586
587/* Translations due to time_t size differences. Which affects all
588 sorts of things, like timeval and itimerval. */
589
590extern struct timezone sys_tz;
591
Al Viro24954a12006-02-01 05:16:15 -0500592asmlinkage long sys32_gettimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 if (tv) {
595 struct timeval ktv;
596 do_gettimeofday(&ktv);
597 if (put_tv32(tv, &ktv))
598 return -EFAULT;
599 }
600 if (tz) {
601 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
602 return -EFAULT;
603 }
604 return 0;
605}
606
Al Viro24954a12006-02-01 05:16:15 -0500607static inline long get_ts32(struct timespec *o, struct compat_timeval __user *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 long usec;
610
611 if (!access_ok(VERIFY_READ, i, sizeof(*i)))
612 return -EFAULT;
613 if (__get_user(o->tv_sec, &i->tv_sec))
614 return -EFAULT;
615 if (__get_user(usec, &i->tv_usec))
616 return -EFAULT;
617 o->tv_nsec = usec * 1000;
618 return 0;
619}
620
Al Viro24954a12006-02-01 05:16:15 -0500621asmlinkage long sys32_settimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 struct timespec kts;
624 struct timezone ktz;
625
626 if (tv) {
627 if (get_ts32(&kts, tv))
628 return -EFAULT;
629 }
630 if (tz) {
631 if (copy_from_user(&ktz, tz, sizeof(ktz)))
632 return -EFAULT;
633 }
634
635 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
636}
637
638/* These are here just in case some old sparc32 binary calls it. */
639asmlinkage long sys32_pause(void)
640{
641 current->state = TASK_INTERRUPTIBLE;
642 schedule();
643 return -ERESTARTNOHAND;
644}
645
Al Viro24954a12006-02-01 05:16:15 -0500646asmlinkage long sys32_pread64(unsigned int fd, char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 size_t count, u32 poshi, u32 poslo)
648{
649 if ((compat_ssize_t) count < 0)
650 return -EINVAL;
651 return sys_pread64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
652}
653
Al Viro24954a12006-02-01 05:16:15 -0500654asmlinkage long sys32_pwrite64(unsigned int fd, const char __user *ubuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 size_t count, u32 poshi, u32 poslo)
656{
657 if ((compat_ssize_t) count < 0)
658 return -EINVAL;
659 return sys_pwrite64(fd, ubuf, count, ((loff_t)AA(poshi) << 32) | AA(poslo));
660}
661
662asmlinkage compat_ssize_t sys32_readahead(int fd, u32 offhi, u32 offlo, s32 count)
663{
664 return sys_readahead(fd, ((loff_t)AA(offhi) << 32) | AA(offlo), count);
665}
666
Al Viro24954a12006-02-01 05:16:15 -0500667asmlinkage long sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 mm_segment_t old_fs = get_fs();
670 int ret;
671 off_t of;
672
673 if (offset && get_user(of, offset))
674 return -EFAULT;
675
676 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200677 ret = sys_sendfile(out_fd, in_fd,
678 offset ? (off_t __user *) &of : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 set_fs(old_fs);
680
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +0200681 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return -EFAULT;
683
684 return ret;
685}
686
687asmlinkage long sys32_sendfile64(int out_fd, int in_fd,
Al Viro24954a12006-02-01 05:16:15 -0500688 compat_loff_t __user *offset, s32 count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 mm_segment_t old_fs = get_fs();
691 int ret;
692 loff_t lof;
693
694 if (offset && get_user(lof, offset))
695 return -EFAULT;
696
697 set_fs(KERNEL_DS);
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200698 ret = sys_sendfile64(out_fd, in_fd,
699 offset ? (loff_t __user *) &lof : NULL, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 set_fs(old_fs);
701
702 if (offset && put_user(lof, offset))
703 return -EFAULT;
704
705 return ret;
706}
707
Eric W. Biedermanb89a8172006-09-27 01:51:04 -0700708#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709struct __sysctl_args32 {
710 u32 name;
711 int nlen;
712 u32 oldval;
713 u32 oldlenp;
714 u32 newval;
715 u32 newlen;
716 u32 __unused[4];
717};
718
Al Viro24954a12006-02-01 05:16:15 -0500719asmlinkage long sys32_sysctl(struct __sysctl_args32 __user *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
721 struct __sysctl_args32 tmp;
722 int error;
Al Viro24954a12006-02-01 05:16:15 -0500723 size_t oldlen;
724 size_t __user *oldlenp = NULL;
725 unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 if (copy_from_user(&tmp, args, sizeof(tmp)))
728 return -EFAULT;
729
730 if (tmp.oldval && tmp.oldlenp) {
731 /* Duh, this is ugly and might not work if sysctl_args
732 is in read-only memory, but do_sysctl does indirectly
733 a lot of uaccess in both directions and we'd have to
734 basically copy the whole sysctl.c here, and
735 glibc's __sysctl uses rw memory for the structure
736 anyway. */
Al Viro24954a12006-02-01 05:16:15 -0500737 if (get_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)) ||
738 put_user(oldlen, (size_t __user *)addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -EFAULT;
Al Viro24954a12006-02-01 05:16:15 -0500740 oldlenp = (size_t __user *)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
743 lock_kernel();
Al Viro24954a12006-02-01 05:16:15 -0500744 error = do_sysctl(compat_ptr(tmp.name), tmp.nlen, compat_ptr(tmp.oldval),
745 oldlenp, compat_ptr(tmp.newval), tmp.newlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 unlock_kernel();
747 if (oldlenp) {
748 if (!error) {
Al Viro24954a12006-02-01 05:16:15 -0500749 if (get_user(oldlen, (size_t __user *)addr) ||
750 put_user(oldlen, (u32 __user *)compat_ptr(tmp.oldlenp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 error = -EFAULT;
752 }
753 copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused));
754 }
755 return error;
756}
757#endif
758
759struct stat64_emu31 {
760 unsigned long long st_dev;
761 unsigned int __pad1;
762#define STAT64_HAS_BROKEN_ST_INO 1
763 u32 __st_ino;
764 unsigned int st_mode;
765 unsigned int st_nlink;
766 u32 st_uid;
767 u32 st_gid;
768 unsigned long long st_rdev;
769 unsigned int __pad3;
770 long st_size;
771 u32 st_blksize;
772 unsigned char __pad4[4];
773 u32 __pad5; /* future possible st_blocks high bits */
774 u32 st_blocks; /* Number 512-byte blocks allocated. */
775 u32 st_atime;
776 u32 __pad6;
777 u32 st_mtime;
778 u32 __pad7;
779 u32 st_ctime;
780 u32 __pad8; /* will be high 32 bits of ctime someday */
781 unsigned long st_ino;
782};
783
Al Viro24954a12006-02-01 05:16:15 -0500784static int cp_stat64(struct stat64_emu31 __user *ubuf, struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 struct stat64_emu31 tmp;
787
788 memset(&tmp, 0, sizeof(tmp));
789
790 tmp.st_dev = huge_encode_dev(stat->dev);
791 tmp.st_ino = stat->ino;
792 tmp.__st_ino = (u32)stat->ino;
793 tmp.st_mode = stat->mode;
794 tmp.st_nlink = (unsigned int)stat->nlink;
795 tmp.st_uid = stat->uid;
796 tmp.st_gid = stat->gid;
797 tmp.st_rdev = huge_encode_dev(stat->rdev);
798 tmp.st_size = stat->size;
799 tmp.st_blksize = (u32)stat->blksize;
800 tmp.st_blocks = (u32)stat->blocks;
801 tmp.st_atime = (u32)stat->atime.tv_sec;
802 tmp.st_mtime = (u32)stat->mtime.tv_sec;
803 tmp.st_ctime = (u32)stat->ctime.tv_sec;
804
805 return copy_to_user(ubuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
806}
807
Al Viro24954a12006-02-01 05:16:15 -0500808asmlinkage long sys32_stat64(char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct kstat stat;
811 int ret = vfs_stat(filename, &stat);
812 if (!ret)
813 ret = cp_stat64(statbuf, &stat);
814 return ret;
815}
816
Al Viro24954a12006-02-01 05:16:15 -0500817asmlinkage long sys32_lstat64(char __user * filename, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 struct kstat stat;
820 int ret = vfs_lstat(filename, &stat);
821 if (!ret)
822 ret = cp_stat64(statbuf, &stat);
823 return ret;
824}
825
Al Viro24954a12006-02-01 05:16:15 -0500826asmlinkage long sys32_fstat64(unsigned long fd, struct stat64_emu31 __user * statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 struct kstat stat;
829 int ret = vfs_fstat(fd, &stat);
830 if (!ret)
831 ret = cp_stat64(statbuf, &stat);
832 return ret;
833}
834
Heiko Carstensed3d0212006-02-17 13:52:50 -0800835asmlinkage long sys32_fstatat64(unsigned int dfd, char __user *filename,
836 struct stat64_emu31 __user* statbuf, int flag)
Heiko Carstens19bf9cb2006-02-12 12:35:03 +0100837{
838 struct kstat stat;
839 int error = -EINVAL;
840
841 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
842 goto out;
843
844 if (flag & AT_SYMLINK_NOFOLLOW)
845 error = vfs_lstat_fd(dfd, filename, &stat);
846 else
847 error = vfs_stat_fd(dfd, filename, &stat);
848
849 if (!error)
850 error = cp_stat64(statbuf, &stat);
851out:
852 return error;
853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*
856 * Linux/i386 didn't use to be able to handle more than
857 * 4 system call parameters, so these system calls used a memory
858 * block for parameter passing..
859 */
860
861struct mmap_arg_struct_emu31 {
862 u32 addr;
863 u32 len;
864 u32 prot;
865 u32 flags;
866 u32 fd;
867 u32 offset;
868};
869
870/* common code for old and new mmaps */
871static inline long do_mmap2(
872 unsigned long addr, unsigned long len,
873 unsigned long prot, unsigned long flags,
874 unsigned long fd, unsigned long pgoff)
875{
876 struct file * file = NULL;
877 unsigned long error = -EBADF;
878
879 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
880 if (!(flags & MAP_ANONYMOUS)) {
881 file = fget(fd);
882 if (!file)
883 goto out;
884 }
885
886 down_write(&current->mm->mmap_sem);
887 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
888 if (!IS_ERR((void *) error) && error + len >= 0x80000000ULL) {
889 /* Result is out of bounds. */
890 do_munmap(current->mm, addr, len);
891 error = -ENOMEM;
892 }
893 up_write(&current->mm->mmap_sem);
894
895 if (file)
896 fput(file);
897out:
898 return error;
899}
900
901
902asmlinkage unsigned long
Al Viro24954a12006-02-01 05:16:15 -0500903old32_mmap(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct mmap_arg_struct_emu31 a;
906 int error = -EFAULT;
907
908 if (copy_from_user(&a, arg, sizeof(a)))
909 goto out;
910
911 error = -EINVAL;
912 if (a.offset & ~PAGE_MASK)
913 goto out;
914
915 error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset >> PAGE_SHIFT);
916out:
917 return error;
918}
919
920asmlinkage long
Al Viro24954a12006-02-01 05:16:15 -0500921sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 struct mmap_arg_struct_emu31 a;
924 int error = -EFAULT;
925
926 if (copy_from_user(&a, arg, sizeof(a)))
927 goto out;
928 error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
929out:
930 return error;
931}
932
Al Viro24954a12006-02-01 05:16:15 -0500933asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 if ((compat_ssize_t) count < 0)
936 return -EINVAL;
937
938 return sys_read(fd, buf, count);
939}
940
Al Viro24954a12006-02-01 05:16:15 -0500941asmlinkage long sys32_write(unsigned int fd, char __user * buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 if ((compat_ssize_t) count < 0)
944 return -EINVAL;
945
946 return sys_write(fd, buf, count);
947}
948
949asmlinkage long sys32_clone(struct pt_regs regs)
950{
951 unsigned long clone_flags;
952 unsigned long newsp;
Al Viro24954a12006-02-01 05:16:15 -0500953 int __user *parent_tidptr, *child_tidptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 clone_flags = regs.gprs[3] & 0xffffffffUL;
956 newsp = regs.orig_gpr2 & 0x7fffffffUL;
Al Viro24954a12006-02-01 05:16:15 -0500957 parent_tidptr = compat_ptr(regs.gprs[4]);
958 child_tidptr = compat_ptr(regs.gprs[5]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (!newsp)
960 newsp = regs.gprs[15];
961 return do_fork(clone_flags, newsp, &regs, 0,
962 parent_tidptr, child_tidptr);
963}
964
965/*
Martin Schwidefsky068e1b92005-07-13 01:10:46 -0700966 * 31 bit emulation wrapper functions for sys_fadvise64/fadvise64_64.
967 * These need to rewrite the advise values for POSIX_FADV_{DONTNEED,NOREUSE}
968 * because the 31 bit values differ from the 64 bit values.
969 */
970
971asmlinkage long
972sys32_fadvise64(int fd, loff_t offset, size_t len, int advise)
973{
974 if (advise == 4)
975 advise = POSIX_FADV_DONTNEED;
976 else if (advise == 5)
977 advise = POSIX_FADV_NOREUSE;
978 return sys_fadvise64(fd, offset, len, advise);
979}
980
981struct fadvise64_64_args {
982 int fd;
983 long long offset;
984 long long len;
985 int advice;
986};
987
988asmlinkage long
989sys32_fadvise64_64(struct fadvise64_64_args __user *args)
990{
991 struct fadvise64_64_args a;
992
993 if ( copy_from_user(&a, args, sizeof(a)) )
994 return -EFAULT;
995 if (a.advice == 4)
996 a.advice = POSIX_FADV_DONTNEED;
997 else if (a.advice == 5)
998 a.advice = POSIX_FADV_NOREUSE;
999 return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
1000}