1 #ifndef _ASM_X86_COMPAT_H
2 #define _ASM_X86_COMPAT_H
5 * Architecture specific compatibility types
7 #include <linux/types.h>
8 #include <linux/sched.h>
9 #include <asm/processor.h>
10 #include <asm/user32.h>
11 #include <asm/unistd.h>
13 #define COMPAT_USER_HZ 100
14 #define COMPAT_UTS_MACHINE "i686\0\0"
16 typedef u32 compat_size_t
;
17 typedef s32 compat_ssize_t
;
18 typedef s32 compat_time_t
;
19 typedef s32 compat_clock_t
;
20 typedef s32 compat_pid_t
;
21 typedef u16 __compat_uid_t
;
22 typedef u16 __compat_gid_t
;
23 typedef u32 __compat_uid32_t
;
24 typedef u32 __compat_gid32_t
;
25 typedef u16 compat_mode_t
;
26 typedef u32 compat_ino_t
;
27 typedef u16 compat_dev_t
;
28 typedef s32 compat_off_t
;
29 typedef s64 compat_loff_t
;
30 typedef u16 compat_nlink_t
;
31 typedef u16 compat_ipc_pid_t
;
32 typedef s32 compat_daddr_t
;
33 typedef u32 compat_caddr_t
;
34 typedef __kernel_fsid_t compat_fsid_t
;
35 typedef s32 compat_timer_t
;
36 typedef s32 compat_key_t
;
38 typedef s32 compat_int_t
;
39 typedef s32 compat_long_t
;
40 typedef s64
__attribute__((aligned(4))) compat_s64
;
41 typedef u32 compat_uint_t
;
42 typedef u32 compat_ulong_t
;
43 typedef u32 compat_u32
;
44 typedef u64
__attribute__((aligned(4))) compat_u64
;
45 typedef u32 compat_uptr_t
;
47 struct compat_timespec
{
52 struct compat_timeval
{
61 compat_mode_t st_mode
;
62 compat_nlink_t st_nlink
;
63 __compat_uid_t st_uid
;
64 __compat_gid_t st_gid
;
88 #define F_GETLK64 12 /* using 'struct flock64' */
93 * IA32 uses 4 byte alignment for 64 bit quantities,
94 * so we need to pack this structure.
96 struct compat_flock64
{
99 compat_loff_t l_start
;
102 } __attribute__((packed
));
104 struct compat_statfs
{
112 compat_fsid_t f_fsid
;
113 int f_namelen
; /* SunOS ignores this field. */
119 #define COMPAT_RLIM_INFINITY 0xffffffff
121 typedef u32 compat_old_sigset_t
; /* at least 32 bits */
123 #define _COMPAT_NSIG 64
124 #define _COMPAT_NSIG_BPW 32
126 typedef u32 compat_sigset_word
;
128 typedef union compat_sigval
{
129 compat_int_t sival_int
;
130 compat_uptr_t sival_ptr
;
133 typedef struct compat_siginfo
{
139 int _pad
[128/sizeof(int) - 3];
143 unsigned int _pid
; /* sender's pid */
144 unsigned int _uid
; /* sender's uid */
147 /* POSIX.1b timers */
149 compat_timer_t _tid
; /* timer id */
150 int _overrun
; /* overrun count */
151 compat_sigval_t _sigval
; /* same as below */
152 int _sys_private
; /* not to be passed to user */
153 int _overrun_incr
; /* amount to add to overrun */
156 /* POSIX.1b signals */
158 unsigned int _pid
; /* sender's pid */
159 unsigned int _uid
; /* sender's uid */
160 compat_sigval_t _sigval
;
165 unsigned int _pid
; /* which child */
166 unsigned int _uid
; /* sender's uid */
167 int _status
; /* exit code */
168 compat_clock_t _utime
;
169 compat_clock_t _stime
;
172 /* SIGCHLD (x32 version) */
174 unsigned int _pid
; /* which child */
175 unsigned int _uid
; /* sender's uid */
176 int _status
; /* exit code */
181 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
183 unsigned int _addr
; /* faulting insn/memory ref. */
184 short int _addr_lsb
; /* Valid LSB of the reported address. */
186 /* used when si_code=SEGV_BNDERR */
188 compat_uptr_t _lower
;
189 compat_uptr_t _upper
;
191 /* used when si_code=SEGV_PKUERR */
198 int _band
; /* POLL_IN, POLL_OUT, POLL_MSG */
203 unsigned int _call_addr
; /* calling insn */
204 int _syscall
; /* triggering system call number */
205 unsigned int _arch
; /* AUDIT_ARCH_* of syscall */
210 #define COMPAT_OFF_T_MAX 0x7fffffff
211 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
213 struct compat_ipc64_perm
{
215 __compat_uid32_t uid
;
216 __compat_gid32_t gid
;
217 __compat_uid32_t cuid
;
218 __compat_gid32_t cgid
;
220 unsigned short __pad1
;
222 unsigned short __pad2
;
223 compat_ulong_t unused1
;
224 compat_ulong_t unused2
;
227 struct compat_semid64_ds
{
228 struct compat_ipc64_perm sem_perm
;
229 compat_time_t sem_otime
;
230 compat_ulong_t __unused1
;
231 compat_time_t sem_ctime
;
232 compat_ulong_t __unused2
;
233 compat_ulong_t sem_nsems
;
234 compat_ulong_t __unused3
;
235 compat_ulong_t __unused4
;
238 struct compat_msqid64_ds
{
239 struct compat_ipc64_perm msg_perm
;
240 compat_time_t msg_stime
;
241 compat_ulong_t __unused1
;
242 compat_time_t msg_rtime
;
243 compat_ulong_t __unused2
;
244 compat_time_t msg_ctime
;
245 compat_ulong_t __unused3
;
246 compat_ulong_t msg_cbytes
;
247 compat_ulong_t msg_qnum
;
248 compat_ulong_t msg_qbytes
;
249 compat_pid_t msg_lspid
;
250 compat_pid_t msg_lrpid
;
251 compat_ulong_t __unused4
;
252 compat_ulong_t __unused5
;
255 struct compat_shmid64_ds
{
256 struct compat_ipc64_perm shm_perm
;
257 compat_size_t shm_segsz
;
258 compat_time_t shm_atime
;
259 compat_ulong_t __unused1
;
260 compat_time_t shm_dtime
;
261 compat_ulong_t __unused2
;
262 compat_time_t shm_ctime
;
263 compat_ulong_t __unused3
;
264 compat_pid_t shm_cpid
;
265 compat_pid_t shm_lpid
;
266 compat_ulong_t shm_nattch
;
267 compat_ulong_t __unused4
;
268 compat_ulong_t __unused5
;
272 * The type of struct elf_prstatus.pr_reg in compatible core dumps.
274 typedef struct user_regs_struct compat_elf_gregset_t
;
276 /* Full regset -- prstatus on x32, otherwise on ia32 */
277 #define PRSTATUS_SIZE(S, R) (R != sizeof(S.pr_reg) ? 144 : 296)
278 #define SET_PR_FPVALID(S, V, R) \
279 do { *(int *) (((void *) &((S)->pr_reg)) + R) = (V); } \
282 #ifdef CONFIG_X86_X32_ABI
283 #define COMPAT_USE_64BIT_TIME \
284 (!!(task_pt_regs(current)->orig_ax & __X32_SYSCALL_BIT))
288 * A pointer passed in from user mode. This should not
289 * be used for syscall parameters, just declare them
290 * as pointers because the syscall entry code will have
291 * appropriately converted them already.
294 static inline void __user
*compat_ptr(compat_uptr_t uptr
)
296 return (void __user
*)(unsigned long)uptr
;
299 static inline compat_uptr_t
ptr_to_compat(void __user
*uptr
)
301 return (u32
)(unsigned long)uptr
;
304 static inline void __user
*arch_compat_alloc_user_space(long len
)
308 if (test_thread_flag(TIF_IA32
)) {
309 sp
= task_pt_regs(current
)->sp
;
311 /* -128 for the x32 ABI redzone */
312 sp
= task_pt_regs(current
)->sp
- 128;
315 return (void __user
*)round_down(sp
- len
, 16);
318 static inline bool in_x32_syscall(void)
320 #ifdef CONFIG_X86_X32_ABI
321 if (task_pt_regs(current
)->orig_ax
& __X32_SYSCALL_BIT
)
327 static inline bool in_compat_syscall(void)
329 return in_ia32_syscall() || in_x32_syscall();
331 #define in_compat_syscall in_compat_syscall /* override the generic impl */
333 #endif /* _ASM_X86_COMPAT_H */