4 * Architecture specific compatibility types
6 #include <linux/thread_info.h>
7 #include <linux/types.h>
9 #include <asm/ptrace.h>
11 #define COMPAT_USER_HZ 100
12 #define COMPAT_UTS_MACHINE "mips\0\0\0"
14 typedef u32 compat_size_t
;
15 typedef s32 compat_ssize_t
;
16 typedef s32 compat_time_t
;
17 typedef s32 compat_clock_t
;
18 typedef s32 compat_suseconds_t
;
20 typedef s32 compat_pid_t
;
21 typedef s32 __compat_uid_t
;
22 typedef s32 __compat_gid_t
;
23 typedef __compat_uid_t __compat_uid32_t
;
24 typedef __compat_gid_t __compat_gid32_t
;
25 typedef u32 compat_mode_t
;
26 typedef u32 compat_ino_t
;
27 typedef u32 compat_dev_t
;
28 typedef s32 compat_off_t
;
29 typedef s64 compat_loff_t
;
30 typedef u32 compat_nlink_t
;
31 typedef s32 compat_ipc_pid_t
;
32 typedef s32 compat_daddr_t
;
33 typedef s32 compat_caddr_t
;
37 typedef s32 compat_timer_t
;
38 typedef s32 compat_key_t
;
40 typedef s32 compat_int_t
;
41 typedef s32 compat_long_t
;
42 typedef s64 compat_s64
;
43 typedef u32 compat_uint_t
;
44 typedef u32 compat_ulong_t
;
45 typedef u64 compat_u64
;
46 typedef u32 compat_uptr_t
;
48 struct compat_timespec
{
53 struct compat_timeval
{
62 compat_mode_t st_mode
;
63 compat_nlink_t st_nlink
;
64 __compat_uid_t st_uid
;
65 __compat_gid_t st_gid
;
70 compat_time_t st_atime
;
72 compat_time_t st_mtime
;
74 compat_time_t st_ctime
;
96 struct compat_flock64
{
99 compat_loff_t l_start
;
104 struct compat_statfs
{
113 compat_fsid_t f_fsid
;
119 #define COMPAT_RLIM_INFINITY 0x7fffffffUL
121 typedef u32 compat_old_sigset_t
; /* at least 32 bits */
123 #define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */
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 /* Can't use the generic version because si_code and si_errno are swapped */
135 #define SI_PAD_SIZE32 (128/sizeof(int) - 3)
137 typedef struct compat_siginfo
{
143 int _pad
[128 / sizeof(int) - 3];
147 compat_pid_t _pid
; /* sender's pid */
148 __compat_uid32_t _uid
; /* sender's uid */
151 /* POSIX.1b timers */
153 compat_timer_t _tid
; /* timer id */
154 int _overrun
; /* overrun count */
155 compat_sigval_t _sigval
; /* same as below */
158 /* POSIX.1b signals */
160 compat_pid_t _pid
; /* sender's pid */
161 __compat_uid32_t _uid
; /* sender's uid */
162 compat_sigval_t _sigval
;
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
;
174 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
176 compat_uptr_t _addr
; /* faulting insn/memory ref. */
177 #ifdef __ARCH_SI_TRAPNO
178 int _trapno
; /* TRAP # which caused the signal */
180 short _addr_lsb
; /* LSB of the reported address */
182 compat_uptr_t _lower
;
183 compat_uptr_t _upper
;
189 compat_long_t _band
; /* POLL_IN, POLL_OUT, POLL_MSG */
194 compat_uptr_t _call_addr
; /* calling insn */
195 int _syscall
; /* triggering system call number */
196 compat_uint_t _arch
; /* AUDIT_ARCH_* of syscall */
201 #define COMPAT_OFF_T_MAX 0x7fffffff
202 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
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
208 * appropriately converted them already.
211 static inline void __user
*compat_ptr(compat_uptr_t uptr
)
213 /* cast to a __user pointer via "unsigned long" makes sparse happy */
214 return (void __user
*)(unsigned long)(long)uptr
;
217 static inline compat_uptr_t
ptr_to_compat(void __user
*uptr
)
219 return (u32
)(unsigned long)uptr
;
222 static inline void __user
*arch_compat_alloc_user_space(long len
)
224 struct pt_regs
*regs
= (struct pt_regs
*)
225 ((unsigned long) current_thread_info() + THREAD_SIZE
- 32) - 1;
227 return (void __user
*) (regs
->regs
[29] - len
);
230 struct compat_ipc64_perm
{
232 __compat_uid32_t uid
;
233 __compat_gid32_t gid
;
234 __compat_uid32_t cuid
;
235 __compat_gid32_t cgid
;
238 unsigned short __pad2
;
239 compat_ulong_t __unused1
;
240 compat_ulong_t __unused2
;
243 struct 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
;
252 struct compat_msqid64_ds
{
253 struct compat_ipc64_perm msg_perm
;
254 #ifndef CONFIG_CPU_LITTLE_ENDIAN
255 compat_ulong_t __unused1
;
257 compat_time_t msg_stime
;
258 #ifdef CONFIG_CPU_LITTLE_ENDIAN
259 compat_ulong_t __unused1
;
261 #ifndef CONFIG_CPU_LITTLE_ENDIAN
262 compat_ulong_t __unused2
;
264 compat_time_t msg_rtime
;
265 #ifdef CONFIG_CPU_LITTLE_ENDIAN
266 compat_ulong_t __unused2
;
268 #ifndef CONFIG_CPU_LITTLE_ENDIAN
269 compat_ulong_t __unused3
;
271 compat_time_t msg_ctime
;
272 #ifdef CONFIG_CPU_LITTLE_ENDIAN
273 compat_ulong_t __unused3
;
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
;
284 struct 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
;
297 /* MIPS has unusual order of fields in stack_t */
298 typedef struct compat_sigaltstack
{
300 compat_size_t ss_size
;
303 #define compat_sigaltstack compat_sigaltstack
305 static inline int is_compat_task(void)
307 return test_thread_flag(TIF_32BIT_ADDR
);
310 #endif /* _ASM_COMPAT_H */