blob: a9580097cba8fe0d7db36793c8f8cf831323579e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_COMPAT_H
2#define _ASM_COMPAT_H
3/*
4 * Architecture specific compatibility types
5 */
Ralf Baechle4302e5d2009-03-05 11:45:48 +01006#include <linux/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/types.h>
8#include <asm/page.h>
Ralf Baechleb7237822006-12-11 00:43:58 +00009#include <asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Christoph Hellwige28cbf22010-03-10 15:21:19 -080011#define COMPAT_USER_HZ 100
12#define COMPAT_UTS_MACHINE "mips\0\0\0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14typedef u32 compat_size_t;
15typedef s32 compat_ssize_t;
16typedef s32 compat_time_t;
17typedef s32 compat_clock_t;
18typedef s32 compat_suseconds_t;
19
20typedef s32 compat_pid_t;
Ralf Baechle4ee13032005-10-29 19:32:40 +010021typedef s32 __compat_uid_t;
22typedef s32 __compat_gid_t;
23typedef __compat_uid_t __compat_uid32_t;
24typedef __compat_gid_t __compat_gid32_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025typedef u32 compat_mode_t;
26typedef u32 compat_ino_t;
27typedef u32 compat_dev_t;
28typedef s32 compat_off_t;
29typedef s64 compat_loff_t;
30typedef u32 compat_nlink_t;
31typedef s32 compat_ipc_pid_t;
32typedef s32 compat_daddr_t;
33typedef s32 compat_caddr_t;
34typedef struct {
35 s32 val[2];
36} compat_fsid_t;
Stephen Rothwell0d77e5a2005-06-23 00:10:14 -070037typedef s32 compat_timer_t;
Atsushi Nemoto05e43962006-11-07 18:02:44 +090038typedef s32 compat_key_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40typedef s32 compat_int_t;
41typedef s32 compat_long_t;
Arnd Bergmann4b777582007-07-15 23:41:11 -070042typedef s64 compat_s64;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043typedef u32 compat_uint_t;
44typedef u32 compat_ulong_t;
Arnd Bergmann4b777582007-07-15 23:41:11 -070045typedef u64 compat_u64;
Denys Vlasenko751f4092012-10-04 17:15:31 -070046typedef u32 compat_uptr_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48struct compat_timespec {
49 compat_time_t tv_sec;
50 s32 tv_nsec;
51};
52
53struct compat_timeval {
54 compat_time_t tv_sec;
55 s32 tv_usec;
56};
57
58struct compat_stat {
59 compat_dev_t st_dev;
60 s32 st_pad1[3];
61 compat_ino_t st_ino;
62 compat_mode_t st_mode;
63 compat_nlink_t st_nlink;
Ralf Baechle4ee13032005-10-29 19:32:40 +010064 __compat_uid_t st_uid;
65 __compat_gid_t st_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 compat_dev_t st_rdev;
67 s32 st_pad2[2];
68 compat_off_t st_size;
69 s32 st_pad3;
70 compat_time_t st_atime;
71 s32 st_atime_nsec;
72 compat_time_t st_mtime;
73 s32 st_mtime_nsec;
74 compat_time_t st_ctime;
75 s32 st_ctime_nsec;
76 s32 st_blksize;
77 s32 st_blocks;
78 s32 st_pad4[14];
79};
80
81struct compat_flock {
82 short l_type;
83 short l_whence;
84 compat_off_t l_start;
85 compat_off_t l_len;
86 s32 l_sysid;
87 compat_pid_t l_pid;
88 short __unused;
89 s32 pad[4];
90};
91
92#define F_GETLK64 33
93#define F_SETLK64 34
94#define F_SETLKW64 35
95
96struct compat_flock64 {
97 short l_type;
98 short l_whence;
99 compat_loff_t l_start;
100 compat_loff_t l_len;
101 compat_pid_t l_pid;
102};
103
104struct compat_statfs {
105 int f_type;
106 int f_bsize;
107 int f_frsize;
108 int f_blocks;
109 int f_bfree;
110 int f_files;
111 int f_ffree;
112 int f_bavail;
113 compat_fsid_t f_fsid;
114 int f_namelen;
Eric W. Biederman1448c722011-10-17 13:40:02 -0700115 int f_flags;
116 int f_spare[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117};
118
119#define COMPAT_RLIM_INFINITY 0x7fffffffUL
120
121typedef u32 compat_old_sigset_t; /* at least 32 bits */
122
Ralf Baechle70342282013-01-22 12:59:30 +0100123#define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define _COMPAT_NSIG_BPW 32
125
126typedef u32 compat_sigset_word;
127
Denys Vlasenko751f4092012-10-04 17:15:31 -0700128typedef union compat_sigval {
129 compat_int_t sival_int;
130 compat_uptr_t sival_ptr;
131} compat_sigval_t;
132
Amanieu d'Antrasd00d9202015-11-05 00:50:24 +0000133/* Can't use the generic version because si_code and si_errno are swapped */
134
Denys Vlasenko751f4092012-10-04 17:15:31 -0700135#define SI_PAD_SIZE32 (128/sizeof(int) - 3)
136
137typedef struct compat_siginfo {
138 int si_signo;
139 int si_code;
140 int si_errno;
141
142 union {
Amanieu d'Antrasd00d9202015-11-05 00:50:24 +0000143 int _pad[128 / sizeof(int) - 3];
Denys Vlasenko751f4092012-10-04 17:15:31 -0700144
145 /* kill() */
146 struct {
147 compat_pid_t _pid; /* sender's pid */
Amanieu d'Antrasd00d9202015-11-05 00:50:24 +0000148 __compat_uid32_t _uid; /* sender's uid */
Denys Vlasenko751f4092012-10-04 17:15:31 -0700149 } _kill;
150
Denys Vlasenko751f4092012-10-04 17:15:31 -0700151 /* POSIX.1b timers */
152 struct {
Amanieu d'Antrasd00d9202015-11-05 00:50:24 +0000153 compat_timer_t _tid; /* timer id */
Denys Vlasenko751f4092012-10-04 17:15:31 -0700154 int _overrun; /* overrun count */
Amanieu d'Antrasd00d9202015-11-05 00:50:24 +0000155 compat_sigval_t _sigval; /* same as below */
Denys Vlasenko751f4092012-10-04 17:15:31 -0700156 } _timer;
157
158 /* POSIX.1b signals */
159 struct {
160 compat_pid_t _pid; /* sender's pid */
Amanieu d'Antrasd00d9202015-11-05 00:50:24 +0000161 __compat_uid32_t _uid; /* sender's uid */
Denys Vlasenko751f4092012-10-04 17:15:31 -0700162 compat_sigval_t _sigval;
163 } _rt;
164
Amanieu d'Antrasd00d9202015-11-05 00:50:24 +0000165 /* SIGCHLD */
166 struct {
167 compat_pid_t _pid; /* which child */
168 __compat_uid32_t _uid; /* sender's uid */
169 int _status; /* exit code */
170 compat_clock_t _utime;
171 compat_clock_t _stime;
172 } _sigchld;
173
174 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
175 struct {
176 compat_uptr_t _addr; /* faulting insn/memory ref. */
177#ifdef __ARCH_SI_TRAPNO
178 int _trapno; /* TRAP # which caused the signal */
179#endif
180 short _addr_lsb; /* LSB of the reported address */
181 struct {
182 compat_uptr_t _lower;
183 compat_uptr_t _upper;
184 } _addr_bnd;
185 } _sigfault;
186
187 /* SIGPOLL */
188 struct {
189 compat_long_t _band; /* POLL_IN, POLL_OUT, POLL_MSG */
190 int _fd;
191 } _sigpoll;
192
193 struct {
194 compat_uptr_t _call_addr; /* calling insn */
195 int _syscall; /* triggering system call number */
196 compat_uint_t _arch; /* AUDIT_ARCH_* of syscall */
197 } _sigsys;
Denys Vlasenko751f4092012-10-04 17:15:31 -0700198 } _sifields;
199} compat_siginfo_t;
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#define COMPAT_OFF_T_MAX 0x7fffffff
202#define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
203
204/*
205 * A pointer passed in from user mode. This should not
206 * be used for syscall parameters, just declare them
207 * as pointers because the syscall entry code will have
Marcin Ĺšlusarz8b3de0d2008-02-03 16:32:51 +0200208 * appropriately converted them already.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900211static inline void __user *compat_ptr(compat_uptr_t uptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Atsushi Nemoto01bebc62007-07-13 23:51:38 +0900213 /* cast to a __user pointer via "unsigned long" makes sparse happy */
214 return (void __user *)(unsigned long)(long)uptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Ingo Molnar62ac2852006-03-27 01:16:13 -0800217static inline compat_uptr_t ptr_to_compat(void __user *uptr)
218{
219 return (u32)(unsigned long)uptr;
220}
221
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700222static inline void __user *arch_compat_alloc_user_space(long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct pt_regs *regs = (struct pt_regs *)
225 ((unsigned long) current_thread_info() + THREAD_SIZE - 32) - 1;
226
Atsushi Nemoto219ac732006-02-21 16:05:11 +0900227 return (void __user *) (regs->regs[29] - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Atsushi Nemoto05e43962006-11-07 18:02:44 +0900230struct compat_ipc64_perm {
231 compat_key_t key;
232 __compat_uid32_t uid;
233 __compat_gid32_t gid;
234 __compat_uid32_t cuid;
235 __compat_gid32_t cgid;
236 compat_mode_t mode;
237 unsigned short seq;
238 unsigned short __pad2;
239 compat_ulong_t __unused1;
240 compat_ulong_t __unused2;
241};
242
243struct compat_semid64_ds {
244 struct compat_ipc64_perm sem_perm;
245 compat_time_t sem_otime;
246 compat_time_t sem_ctime;
247 compat_ulong_t sem_nsems;
248 compat_ulong_t __unused1;
249 compat_ulong_t __unused2;
250};
251
252struct compat_msqid64_ds {
253 struct compat_ipc64_perm msg_perm;
254#ifndef CONFIG_CPU_LITTLE_ENDIAN
255 compat_ulong_t __unused1;
256#endif
257 compat_time_t msg_stime;
258#ifdef CONFIG_CPU_LITTLE_ENDIAN
259 compat_ulong_t __unused1;
260#endif
261#ifndef CONFIG_CPU_LITTLE_ENDIAN
262 compat_ulong_t __unused2;
263#endif
264 compat_time_t msg_rtime;
265#ifdef CONFIG_CPU_LITTLE_ENDIAN
266 compat_ulong_t __unused2;
267#endif
268#ifndef CONFIG_CPU_LITTLE_ENDIAN
269 compat_ulong_t __unused3;
270#endif
271 compat_time_t msg_ctime;
272#ifdef CONFIG_CPU_LITTLE_ENDIAN
273 compat_ulong_t __unused3;
274#endif
275 compat_ulong_t msg_cbytes;
276 compat_ulong_t msg_qnum;
277 compat_ulong_t msg_qbytes;
278 compat_pid_t msg_lspid;
279 compat_pid_t msg_lrpid;
280 compat_ulong_t __unused4;
281 compat_ulong_t __unused5;
282};
283
284struct compat_shmid64_ds {
285 struct compat_ipc64_perm shm_perm;
286 compat_size_t shm_segsz;
287 compat_time_t shm_atime;
288 compat_time_t shm_dtime;
289 compat_time_t shm_ctime;
290 compat_pid_t shm_cpid;
291 compat_pid_t shm_lpid;
292 compat_ulong_t shm_nattch;
293 compat_ulong_t __unused1;
294 compat_ulong_t __unused2;
295};
296
Al Viroea536ad2012-12-23 03:13:40 -0500297/* MIPS has unusual order of fields in stack_t */
298typedef struct compat_sigaltstack {
299 compat_uptr_t ss_sp;
300 compat_size_t ss_size;
301 int ss_flags;
302} compat_stack_t;
303#define compat_sigaltstack compat_sigaltstack
304
Ralf Baechle4302e5d2009-03-05 11:45:48 +0100305static inline int is_compat_task(void)
306{
Ralf Baechle6ad560b2012-11-08 23:59:31 +0100307 return test_thread_flag(TIF_32BIT_ADDR);
Ralf Baechle4302e5d2009-03-05 11:45:48 +0100308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310#endif /* _ASM_COMPAT_H */