blob: 6ea4cdb3c6a03e3ab5991969bd485047cac23bc3 [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
13 */
14
15/* Adjust unistd.h to provide 32-bit numbers and functions. */
16#define __SYSCALL_COMPAT
17
18#include <linux/compat.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040019#include <linux/syscalls.h>
20#include <linux/kdev_t.h>
21#include <linux/fs.h>
22#include <linux/fcntl.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040023#include <linux/uaccess.h>
24#include <linux/signal.h>
25#include <asm/syscalls.h>
26
27/*
28 * Syscalls that take 64-bit numbers traditionally take them in 32-bit
29 * "high" and "low" value parts on 32-bit architectures.
30 * In principle, one could imagine passing some register arguments as
31 * fully 64-bit on TILE-Gx in 32-bit mode, but it seems easier to
32 * adapt the usual convention.
33 */
34
Chris Metcalf87c319a2013-03-04 13:37:32 -050035COMPAT_SYSCALL_DEFINE4(truncate64, char __user *, filename, u32, dummy,
36 u32, low, u32, high)
Chris Metcalf867e3592010-05-28 23:09:12 -040037{
38 return sys_truncate(filename, ((loff_t)high << 32) | low);
39}
40
Chris Metcalf87c319a2013-03-04 13:37:32 -050041COMPAT_SYSCALL_DEFINE4(ftruncate64, unsigned int, fd, u32, dummy,
42 u32, low, u32, high)
Chris Metcalf867e3592010-05-28 23:09:12 -040043{
44 return sys_ftruncate(fd, ((loff_t)high << 32) | low);
45}
46
Chris Metcalf87c319a2013-03-04 13:37:32 -050047COMPAT_SYSCALL_DEFINE6(pread64, unsigned int, fd, char __user *, ubuf,
48 size_t, count, u32, dummy, u32, low, u32, high)
Chris Metcalf867e3592010-05-28 23:09:12 -040049{
50 return sys_pread64(fd, ubuf, count, ((loff_t)high << 32) | low);
51}
52
Chris Metcalf87c319a2013-03-04 13:37:32 -050053COMPAT_SYSCALL_DEFINE6(pwrite64, unsigned int, fd, char __user *, ubuf,
54 size_t, count, u32, dummy, u32, low, u32, high)
Chris Metcalf867e3592010-05-28 23:09:12 -040055{
56 return sys_pwrite64(fd, ubuf, count, ((loff_t)high << 32) | low);
57}
58
Chris Metcalf87c319a2013-03-04 13:37:32 -050059COMPAT_SYSCALL_DEFINE4(lookup_dcookie, u32, low, u32, high,
60 char __user *, buf, size_t, len)
Chris Metcalf867e3592010-05-28 23:09:12 -040061{
62 return sys_lookup_dcookie(((loff_t)high << 32) | low, buf, len);
63}
64
Chris Metcalf87c319a2013-03-04 13:37:32 -050065COMPAT_SYSCALL_DEFINE6(sync_file_range2, int, fd, unsigned int, flags,
66 u32, offset_lo, u32, offset_hi,
67 u32, nbytes_lo, u32, nbytes_hi)
Chris Metcalf867e3592010-05-28 23:09:12 -040068{
69 return sys_sync_file_range(fd, ((loff_t)offset_hi << 32) | offset_lo,
70 ((loff_t)nbytes_hi << 32) | nbytes_lo,
71 flags);
72}
73
Chris Metcalf87c319a2013-03-04 13:37:32 -050074COMPAT_SYSCALL_DEFINE6(fallocate, int, fd, int, mode,
75 u32, offset_lo, u32, offset_hi,
76 u32, len_lo, u32, len_hi)
Chris Metcalf867e3592010-05-28 23:09:12 -040077{
78 return sys_fallocate(fd, mode, ((loff_t)offset_hi << 32) | offset_lo,
79 ((loff_t)len_hi << 32) | len_lo);
80}
81
Chris Metcalf5a114b92013-03-04 11:19:09 -050082/*
83 * Avoid bug in generic sys_llseek() that specifies offset_high and
84 * offset_low as "unsigned long", thus making it possible to pass
85 * a sign-extended high 32 bits in offset_low.
86 */
Chris Metcalf87c319a2013-03-04 13:37:32 -050087COMPAT_SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned int, offset_high,
88 unsigned int, offset_low, loff_t __user *, result,
89 unsigned int, origin)
Chris Metcalf5a114b92013-03-04 11:19:09 -050090{
91 return sys_llseek(fd, offset_high, offset_low, result, origin);
92}
93
Chris Metcalf867e3592010-05-28 23:09:12 -040094/* Provide the compat syscall number to call mapping. */
95#undef __SYSCALL
Chris Metcalfbe84cb42011-05-09 13:12:30 -040096#define __SYSCALL(nr, call) [nr] = (call),
Chris Metcalf867e3592010-05-28 23:09:12 -040097
Chris Metcalf867e3592010-05-28 23:09:12 -040098/* See comments in sys.c */
Chris Metcalf867e3592010-05-28 23:09:12 -040099#define compat_sys_fadvise64_64 sys32_fadvise64_64
100#define compat_sys_readahead sys32_readahead
Chris Metcalf5a114b92013-03-04 11:19:09 -0500101#define sys_llseek compat_sys_llseek
Chris Metcalf867e3592010-05-28 23:09:12 -0400102
Chris Metcalf6b14e412012-10-23 13:30:54 -0400103/* Call the assembly trampolines where necessary. */
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400104#define compat_sys_rt_sigreturn _compat_sys_rt_sigreturn
105#define sys_clone _sys_clone
106
Chris Metcalf0707ad32010-06-25 17:04:17 -0400107/*
108 * Note that we can't include <linux/unistd.h> here since the header
109 * guard will defeat us; <asm/unistd.h> checks for __SYSCALL as well.
110 */
Chris Metcalf867e3592010-05-28 23:09:12 -0400111void *compat_sys_call_table[__NR_syscalls] = {
112 [0 ... __NR_syscalls-1] = sys_ni_syscall,
113#include <asm/unistd.h>
114};