diff options
Diffstat (limited to 'arch/tile/kernel/compat.c')
-rw-r--r-- | arch/tile/kernel/compat.c | 183 |
1 files changed, 183 insertions, 0 deletions
diff --git a/arch/tile/kernel/compat.c b/arch/tile/kernel/compat.c new file mode 100644 index 000000000000..a374c99deeb6 --- /dev/null +++ b/arch/tile/kernel/compat.c | |||
@@ -0,0 +1,183 @@ | |||
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> | ||
19 | #include <linux/msg.h> | ||
20 | #include <linux/syscalls.h> | ||
21 | #include <linux/kdev_t.h> | ||
22 | #include <linux/fs.h> | ||
23 | #include <linux/fcntl.h> | ||
24 | #include <linux/smp_lock.h> | ||
25 | #include <linux/uaccess.h> | ||
26 | #include <linux/signal.h> | ||
27 | #include <asm/syscalls.h> | ||
28 | |||
29 | /* | ||
30 | * Syscalls that take 64-bit numbers traditionally take them in 32-bit | ||
31 | * "high" and "low" value parts on 32-bit architectures. | ||
32 | * In principle, one could imagine passing some register arguments as | ||
33 | * fully 64-bit on TILE-Gx in 32-bit mode, but it seems easier to | ||
34 | * adapt the usual convention. | ||
35 | */ | ||
36 | |||
37 | long compat_sys_truncate64(char __user *filename, u32 dummy, u32 low, u32 high) | ||
38 | { | ||
39 | return sys_truncate(filename, ((loff_t)high << 32) | low); | ||
40 | } | ||
41 | |||
42 | long compat_sys_ftruncate64(unsigned int fd, u32 dummy, u32 low, u32 high) | ||
43 | { | ||
44 | return sys_ftruncate(fd, ((loff_t)high << 32) | low); | ||
45 | } | ||
46 | |||
47 | long compat_sys_pread64(unsigned int fd, char __user *ubuf, size_t count, | ||
48 | u32 dummy, u32 low, u32 high) | ||
49 | { | ||
50 | return sys_pread64(fd, ubuf, count, ((loff_t)high << 32) | low); | ||
51 | } | ||
52 | |||
53 | long compat_sys_pwrite64(unsigned int fd, char __user *ubuf, size_t count, | ||
54 | u32 dummy, u32 low, u32 high) | ||
55 | { | ||
56 | return sys_pwrite64(fd, ubuf, count, ((loff_t)high << 32) | low); | ||
57 | } | ||
58 | |||
59 | long compat_sys_lookup_dcookie(u32 low, u32 high, char __user *buf, size_t len) | ||
60 | { | ||
61 | return sys_lookup_dcookie(((loff_t)high << 32) | low, buf, len); | ||
62 | } | ||
63 | |||
64 | long compat_sys_sync_file_range2(int fd, unsigned int flags, | ||
65 | u32 offset_lo, u32 offset_hi, | ||
66 | u32 nbytes_lo, u32 nbytes_hi) | ||
67 | { | ||
68 | return sys_sync_file_range(fd, ((loff_t)offset_hi << 32) | offset_lo, | ||
69 | ((loff_t)nbytes_hi << 32) | nbytes_lo, | ||
70 | flags); | ||
71 | } | ||
72 | |||
73 | long compat_sys_fallocate(int fd, int mode, | ||
74 | u32 offset_lo, u32 offset_hi, | ||
75 | u32 len_lo, u32 len_hi) | ||
76 | { | ||
77 | return sys_fallocate(fd, mode, ((loff_t)offset_hi << 32) | offset_lo, | ||
78 | ((loff_t)len_hi << 32) | len_lo); | ||
79 | } | ||
80 | |||
81 | |||
82 | |||
83 | long compat_sys_sched_rr_get_interval(compat_pid_t pid, | ||
84 | struct compat_timespec __user *interval) | ||
85 | { | ||
86 | struct timespec t; | ||
87 | int ret; | ||
88 | mm_segment_t old_fs = get_fs(); | ||
89 | |||
90 | set_fs(KERNEL_DS); | ||
91 | ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t); | ||
92 | set_fs(old_fs); | ||
93 | if (put_compat_timespec(&t, interval)) | ||
94 | return -EFAULT; | ||
95 | return ret; | ||
96 | } | ||
97 | |||
98 | ssize_t compat_sys_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, | ||
99 | size_t count) | ||
100 | { | ||
101 | mm_segment_t old_fs = get_fs(); | ||
102 | int ret; | ||
103 | off_t of; | ||
104 | |||
105 | if (offset && get_user(of, offset)) | ||
106 | return -EFAULT; | ||
107 | |||
108 | set_fs(KERNEL_DS); | ||
109 | ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, | ||
110 | count); | ||
111 | set_fs(old_fs); | ||
112 | |||
113 | if (offset && put_user(of, offset)) | ||
114 | return -EFAULT; | ||
115 | return ret; | ||
116 | } | ||
117 | |||
118 | |||
119 | /* | ||
120 | * The usual compat_sys_msgsnd() and _msgrcv() seem to be assuming | ||
121 | * some different calling convention than our normal 32-bit tile code. | ||
122 | */ | ||
123 | |||
124 | /* Already defined in ipc/compat.c, but we need it here. */ | ||
125 | struct compat_msgbuf { | ||
126 | compat_long_t mtype; | ||
127 | char mtext[1]; | ||
128 | }; | ||
129 | |||
130 | long tile_compat_sys_msgsnd(int msqid, | ||
131 | struct compat_msgbuf __user *msgp, | ||
132 | size_t msgsz, int msgflg) | ||
133 | { | ||
134 | compat_long_t mtype; | ||
135 | |||
136 | if (get_user(mtype, &msgp->mtype)) | ||
137 | return -EFAULT; | ||
138 | return do_msgsnd(msqid, mtype, msgp->mtext, msgsz, msgflg); | ||
139 | } | ||
140 | |||
141 | long tile_compat_sys_msgrcv(int msqid, | ||
142 | struct compat_msgbuf __user *msgp, | ||
143 | size_t msgsz, long msgtyp, int msgflg) | ||
144 | { | ||
145 | long err, mtype; | ||
146 | |||
147 | err = do_msgrcv(msqid, &mtype, msgp->mtext, msgsz, msgtyp, msgflg); | ||
148 | if (err < 0) | ||
149 | goto out; | ||
150 | |||
151 | if (put_user(mtype, &msgp->mtype)) | ||
152 | err = -EFAULT; | ||
153 | out: | ||
154 | return err; | ||
155 | } | ||
156 | |||
157 | /* Provide the compat syscall number to call mapping. */ | ||
158 | #undef __SYSCALL | ||
159 | #define __SYSCALL(nr, call) [nr] = (compat_##call), | ||
160 | |||
161 | /* The generic versions of these don't work for Tile. */ | ||
162 | #define compat_sys_msgrcv tile_compat_sys_msgrcv | ||
163 | #define compat_sys_msgsnd tile_compat_sys_msgsnd | ||
164 | |||
165 | /* See comments in sys.c */ | ||
166 | #define compat_sys_fadvise64 sys32_fadvise64 | ||
167 | #define compat_sys_fadvise64_64 sys32_fadvise64_64 | ||
168 | #define compat_sys_readahead sys32_readahead | ||
169 | #define compat_sys_sync_file_range compat_sys_sync_file_range2 | ||
170 | |||
171 | /* The native 64-bit "struct stat" matches the 32-bit "struct stat64". */ | ||
172 | #define compat_sys_stat64 sys_newstat | ||
173 | #define compat_sys_lstat64 sys_newlstat | ||
174 | #define compat_sys_fstat64 sys_newfstat | ||
175 | #define compat_sys_fstatat64 sys_newfstatat | ||
176 | |||
177 | /* Pass full 64-bit values through ptrace. */ | ||
178 | #define compat_sys_ptrace tile_compat_sys_ptrace | ||
179 | |||
180 | void *compat_sys_call_table[__NR_syscalls] = { | ||
181 | [0 ... __NR_syscalls-1] = sys_ni_syscall, | ||
182 | #include <asm/unistd.h> | ||
183 | }; | ||