Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 1 | /* |
| 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 Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 19 | #include <linux/syscalls.h> |
| 20 | #include <linux/kdev_t.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/fcntl.h> |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 23 | #include <linux/uaccess.h> |
| 24 | #include <linux/signal.h> |
| 25 | #include <asm/syscalls.h> |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 26 | #include <asm/byteorder.h> |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Syscalls that take 64-bit numbers traditionally take them in 32-bit |
| 30 | * "high" and "low" value parts on 32-bit architectures. |
| 31 | * In principle, one could imagine passing some register arguments as |
| 32 | * fully 64-bit on TILE-Gx in 32-bit mode, but it seems easier to |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 33 | * adopt the usual convention. |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 34 | */ |
| 35 | |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 36 | #ifdef __BIG_ENDIAN |
| 37 | #define SYSCALL_PAIR(name) u32, name ## _hi, u32, name ## _lo |
| 38 | #else |
| 39 | #define SYSCALL_PAIR(name) u32, name ## _lo, u32, name ## _hi |
| 40 | #endif |
| 41 | |
Chris Metcalf | 87c319a | 2013-03-04 13:37:32 -0500 | [diff] [blame] | 42 | COMPAT_SYSCALL_DEFINE4(truncate64, char __user *, filename, u32, dummy, |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 43 | SYSCALL_PAIR(length)) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 44 | { |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 45 | return sys_truncate(filename, ((loff_t)length_hi << 32) | length_lo); |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 46 | } |
| 47 | |
Chris Metcalf | 87c319a | 2013-03-04 13:37:32 -0500 | [diff] [blame] | 48 | COMPAT_SYSCALL_DEFINE4(ftruncate64, unsigned int, fd, u32, dummy, |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 49 | SYSCALL_PAIR(length)) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 50 | { |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 51 | return sys_ftruncate(fd, ((loff_t)length_hi << 32) | length_lo); |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 52 | } |
| 53 | |
Chris Metcalf | 87c319a | 2013-03-04 13:37:32 -0500 | [diff] [blame] | 54 | COMPAT_SYSCALL_DEFINE6(pread64, unsigned int, fd, char __user *, ubuf, |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 55 | size_t, count, u32, dummy, SYSCALL_PAIR(offset)) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 56 | { |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 57 | return sys_pread64(fd, ubuf, count, |
| 58 | ((loff_t)offset_hi << 32) | offset_lo); |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 59 | } |
| 60 | |
Chris Metcalf | 87c319a | 2013-03-04 13:37:32 -0500 | [diff] [blame] | 61 | COMPAT_SYSCALL_DEFINE6(pwrite64, unsigned int, fd, char __user *, ubuf, |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 62 | size_t, count, u32, dummy, SYSCALL_PAIR(offset)) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 63 | { |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 64 | return sys_pwrite64(fd, ubuf, count, |
| 65 | ((loff_t)offset_hi << 32) | offset_lo); |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 66 | } |
| 67 | |
Chris Metcalf | 87c319a | 2013-03-04 13:37:32 -0500 | [diff] [blame] | 68 | COMPAT_SYSCALL_DEFINE6(sync_file_range2, int, fd, unsigned int, flags, |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 69 | SYSCALL_PAIR(offset), SYSCALL_PAIR(nbytes)) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 70 | { |
| 71 | return sys_sync_file_range(fd, ((loff_t)offset_hi << 32) | offset_lo, |
| 72 | ((loff_t)nbytes_hi << 32) | nbytes_lo, |
| 73 | flags); |
| 74 | } |
| 75 | |
Chris Metcalf | 87c319a | 2013-03-04 13:37:32 -0500 | [diff] [blame] | 76 | COMPAT_SYSCALL_DEFINE6(fallocate, int, fd, int, mode, |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 77 | SYSCALL_PAIR(offset), SYSCALL_PAIR(len)) |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 78 | { |
| 79 | return sys_fallocate(fd, mode, ((loff_t)offset_hi << 32) | offset_lo, |
| 80 | ((loff_t)len_hi << 32) | len_lo); |
| 81 | } |
| 82 | |
Chris Metcalf | 5a114b9 | 2013-03-04 11:19:09 -0500 | [diff] [blame] | 83 | /* |
| 84 | * Avoid bug in generic sys_llseek() that specifies offset_high and |
| 85 | * offset_low as "unsigned long", thus making it possible to pass |
| 86 | * a sign-extended high 32 bits in offset_low. |
Chris Metcalf | ca76866 | 2016-06-15 15:19:04 -0400 | [diff] [blame] | 87 | * Note that we do not use SYSCALL_PAIR here since glibc passes the |
| 88 | * high and low parts explicitly in that order. |
Chris Metcalf | 5a114b9 | 2013-03-04 11:19:09 -0500 | [diff] [blame] | 89 | */ |
Chris Metcalf | 87c319a | 2013-03-04 13:37:32 -0500 | [diff] [blame] | 90 | COMPAT_SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned int, offset_high, |
| 91 | unsigned int, offset_low, loff_t __user *, result, |
| 92 | unsigned int, origin) |
Chris Metcalf | 5a114b9 | 2013-03-04 11:19:09 -0500 | [diff] [blame] | 93 | { |
| 94 | return sys_llseek(fd, offset_high, offset_low, result, origin); |
| 95 | } |
Chris Metcalf | e823acc | 2013-09-16 14:41:21 -0400 | [diff] [blame] | 96 | |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 97 | /* Provide the compat syscall number to call mapping. */ |
| 98 | #undef __SYSCALL |
Chris Metcalf | be84cb4 | 2011-05-09 13:12:30 -0400 | [diff] [blame] | 99 | #define __SYSCALL(nr, call) [nr] = (call), |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 100 | |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 101 | /* See comments in sys.c */ |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 102 | #define compat_sys_fadvise64_64 sys32_fadvise64_64 |
| 103 | #define compat_sys_readahead sys32_readahead |
Chris Metcalf | 5a114b9 | 2013-03-04 11:19:09 -0500 | [diff] [blame] | 104 | #define sys_llseek compat_sys_llseek |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 105 | |
Chris Metcalf | 6b14e41 | 2012-10-23 13:30:54 -0400 | [diff] [blame] | 106 | /* Call the assembly trampolines where necessary. */ |
Chris Metcalf | d929b6a | 2010-10-14 14:34:33 -0400 | [diff] [blame] | 107 | #define compat_sys_rt_sigreturn _compat_sys_rt_sigreturn |
| 108 | #define sys_clone _sys_clone |
| 109 | |
Chris Metcalf | 0707ad3 | 2010-06-25 17:04:17 -0400 | [diff] [blame] | 110 | /* |
| 111 | * Note that we can't include <linux/unistd.h> here since the header |
| 112 | * guard will defeat us; <asm/unistd.h> checks for __SYSCALL as well. |
| 113 | */ |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 114 | void *compat_sys_call_table[__NR_syscalls] = { |
| 115 | [0 ... __NR_syscalls-1] = sys_ni_syscall, |
| 116 | #include <asm/unistd.h> |
| 117 | }; |